diff --git a/.changelog.d/changelog_template.jinja b/.changelog.d/changelog_template.jinja deleted file mode 100644 index b4e1f900..00000000 --- a/.changelog.d/changelog_template.jinja +++ /dev/null @@ -1,15 +0,0 @@ -{% if sections[""] %} -{% for category, val in definitions.items() if category in sections[""] %} - -### {{ definitions[category]['name'] }} - -{% for text, values in sections[""][category].items() %} -- {{ text }} {{ values | join(', ') }} -{% endfor %} - -{% endfor %} -{% else %} -No significant changes. - - -{% endif %} diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile deleted file mode 100644 index 24c07af2..00000000 --- a/.devcontainer/Dockerfile +++ /dev/null @@ -1 +0,0 @@ -FROM joamatab/gdsfactory:latest diff --git a/.devcontainer/Dockerfile.dev b/.devcontainer/Dockerfile.dev deleted file mode 100644 index c02f051b..00000000 --- a/.devcontainer/Dockerfile.dev +++ /dev/null @@ -1,36 +0,0 @@ -FROM jupyter/base-notebook:python-3.8.8 -# FROM jupyter/base-notebook -# FROM continuumio/miniconda3 - -# expose klive and Jupyter Notebook ports -EXPOSE 8082 -EXPOSE 8083 -EXPOSE 8888 - -USER root -RUN apt-get update --yes && \ - apt-get install --yes --no-install-recommends \ - make \ - git \ - htop \ - neovim - -USER jovyan -# COPY . /home/jovyan/gdfactory -COPY --chown=jovyan docs/notebooks /home/jovyan/notebooks -#COPY docs/notebooks/00__git.ipynb /home/jovyan/ -RUN conda init bash - -# RUN git clone https://github.com/gdsfactory/gdsfactory.git -# USER ${NB_UID} -# RUN apt update -# RUN apt install gcc -# RUN conda install -c conda-forge pymeep -y - -RUN mamba install gdstk -y -RUN mamba install gdspy -y -RUN mamba install pymeep=*=mpi_mpich_* -y - -RUN pip install gdsfactory[full,gmsh,tidy3d,devsim,meow,sax] -WORKDIR /home/jovyan -# VOLUME /home/jovyan/work diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index 63907ad4..00000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "image": "mcr.microsoft.com/devcontainers/universal:2", - "hostRequirements": { - "cpus": 4 - }, - "waitFor": "onCreateCommand", - "updateContentCommand": "python3 -m pip install ubcpdk --upgrade", - "postCreateCommand": "", - "customizations": { - "codespaces": { - "openFiles": [] - }, - "vscode": { - "extensions": [ - "ms-toolsai.jupyter", - "ms-python.python" - ] - } - } -} diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 1d69c04e..00000000 --- a/.gitattributes +++ /dev/null @@ -1,2 +0,0 @@ -*.gds binary -*.oas binary diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS deleted file mode 100644 index c544f1a8..00000000 --- a/.github/CODEOWNERS +++ /dev/null @@ -1 +0,0 @@ -* @joamatab @ThomasPluck @nikosavola @sheron-lian @thanojo @Alex-l-r diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index d64b1d20..00000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,24 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "uv" - cooldown: - default-days: 7 - directory: "/" - schedule: - interval: monthly - ignore: - - dependency-name: "doplaydo/*" - - dependency-name: "jupyter-book" - - - package-ecosystem: github-actions - cooldown: - default-days: 7 - directory: / - schedule: - interval: monthly - ignore: - - dependency-name: "doplaydo/*" - # actions/deploy-pages is pinned in templates/.github/workflows/pages.yml - # and kept in sync by check_template_drift.py. Bumping it here causes drift - # churn — upgrades are owned by the pdk-ci-workflow repo. - - dependency-name: "actions/deploy-pages" diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml deleted file mode 100644 index 17868e8e..00000000 --- a/.github/release-drafter.yml +++ /dev/null @@ -1,67 +0,0 @@ -name-template: 'v$RESOLVED_VERSION' -tag-template: 'v$RESOLVED_VERSION' -change-template: '- $TITLE (#$NUMBER)' -change-title-escapes: '\<*_&' -template: | - # What's Changed - - $CHANGES -categories: - - title: 'Breaking' - label: 'breaking' - - title: 'New' - labels: - - 'feature' - - 'enhancement' - - title: 'Bug Fixes' - label: 'bug' - - title: 'Maintenance' - labels: - - 'maintenance' - - 'github_actions' - - title: 'Documentation' - label: 'documentation' - - title: 'Dependency Updates' - label: 'dependencies' - collapse-after: 5 - -version-resolver: - major: - labels: - - 'breaking' - - 'major' - minor: - labels: - - 'feature' - - 'minor' - - 'enhancement' - patch: - labels: - - 'bug' - - 'maintenance' - - 'github_actions' - - 'documentation' - - 'dependencies' - - 'security' - default: patch - -exclude-labels: - - 'skip-changelog' - -autolabeler: - - label: 'documentation' - files: - - '*.md' - branch: - - '/docs-.+/' - - label: 'bug' - branch: - - '/fix-.+/' - title: - - '/fix/i' - - label: 'enhancement' - branch: - - '/feature-.+/' - - '/add-.+/' - title: - - '/^add\s/i' diff --git a/.github/workflows/auto-label-pdk.yml b/.github/workflows/auto-label-pdk.yml deleted file mode 100644 index 7ed6a7ac..00000000 --- a/.github/workflows/auto-label-pdk.yml +++ /dev/null @@ -1,71 +0,0 @@ -name: Auto-label PDK issues - -on: - issues: - types: - - opened - - edited - - deleted - - pinned - - unpinned - - closed - - reopened - - assigned - - unassigned - - unlabeled - - locked - - unlocked - - transferred - - milestoned - - demilestoned - -permissions: - issues: write - -jobs: - label: - runs-on: ubuntu-latest - steps: - - name: Apply pdk: label to the issue - uses: actions/github-script@v9 - with: - script: | - const slug = context.repo.repo.toLowerCase(); - const label = `pdk:${slug}`; - - // Ensure the label exists in the repo (idempotent). - try { - await github.rest.issues.getLabel({ ...context.repo, name: label }); - } catch (e) { - if (e.status === 404) { - await github.rest.issues.createLabel({ - ...context.repo, - name: label, - color: 'a855f7', - description: 'PDK this issue belongs to', - }); - } else { - throw e; - } - } - - // Apply the label to the triggering issue. Some events (deleted, - // transferred) may leave the issue unreachable — swallow 404s. - const issueNumber = context.payload.issue && context.payload.issue.number; - if (!issueNumber) { - core.info('No issue number on payload — nothing to label.'); - return; - } - try { - await github.rest.issues.addLabels({ - ...context.repo, - issue_number: issueNumber, - labels: [label], - }); - } catch (e) { - if (e.status === 404 || e.status === 410) { - core.info(`Issue unreachable (${e.status}); skipping label apply.`); - } else { - throw e; - } - } diff --git a/.github/workflows/claude-pr-review.yml b/.github/workflows/claude-pr-review.yml deleted file mode 100644 index 7f55b903..00000000 --- a/.github/workflows/claude-pr-review.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: Claude PR Review -on: - pull_request: - types: [opened, synchronize, reopened] - issue_comment: - types: [created] - -jobs: - review: - uses: doplaydo/pdk-ci-workflow/.github/workflows/claude-pr-review.yml@main - secrets: - ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} diff --git a/.github/workflows/drc.yml b/.github/workflows/drc.yml deleted file mode 100644 index 0d4a0213..00000000 --- a/.github/workflows/drc.yml +++ /dev/null @@ -1,11 +0,0 @@ -name: DRC Check -on: - workflow_dispatch: - push: - branches: [main] - -jobs: - drc: - uses: doplaydo/pdk-ci-workflow/.github/workflows/drc.yml@main - secrets: - GFP_API_KEY: ${{ secrets.GFP_API_KEY }} diff --git a/.github/workflows/issue.yml b/.github/workflows/issue.yml deleted file mode 100644 index 3a24d7af..00000000 --- a/.github/workflows/issue.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Auto-label PDK issues -on: - issues: - types: - - opened - - edited - - deleted - - pinned - - unpinned - - closed - - reopened - - assigned - - unassigned - - unlabeled - - locked - - unlocked - - transferred - - milestoned - - demilestoned - -jobs: - label: - uses: doplaydo/pdk-ci-workflow/.github/workflows/issue.yml@main diff --git a/.github/workflows/model_coverage.yml b/.github/workflows/model_coverage.yml deleted file mode 100644 index 8b29ca7a..00000000 --- a/.github/workflows/model_coverage.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: Model Coverage -on: - pull_request: - push: - branches: [main] - workflow_dispatch: - -jobs: - model-coverage: - uses: doplaydo/pdk-ci-workflow/.github/workflows/model_coverage.yml@main - secrets: - GFP_API_KEY: ${{ secrets.GFP_API_KEY }} diff --git a/.github/workflows/model_regression.yml b/.github/workflows/model_regression.yml deleted file mode 100644 index ac00911b..00000000 --- a/.github/workflows/model_regression.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: Model Regression -on: - pull_request: - push: - branches: [main] - workflow_dispatch: - -jobs: - model-regression: - uses: doplaydo/pdk-ci-workflow/.github/workflows/model_regression.yml@main - secrets: - GFP_API_KEY: ${{ secrets.GFP_API_KEY }} diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml deleted file mode 100644 index da6d9543..00000000 --- a/.github/workflows/pages.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Build docs -on: - pull_request: - push: - branches: [main] - workflow_dispatch: - -jobs: - docs: - uses: doplaydo/pdk-ci-workflow/.github/workflows/pages.yml@main - secrets: - GFP_API_KEY: ${{ secrets.GFP_API_KEY }} - SIMCLOUD_APIKEY: ${{ secrets.SIMCLOUD_APIKEY }} - deploy-docs: - needs: docs - if: ${{ github.ref == 'refs/heads/main' }} - permissions: - pages: write - id-token: write - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5.0.0 diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml deleted file mode 100644 index c71127d2..00000000 --- a/.github/workflows/release-drafter.yml +++ /dev/null @@ -1,11 +0,0 @@ -name: Release Drafter -on: - push: - branches: [main] - workflow_dispatch: - -jobs: - draft: - uses: doplaydo/pdk-ci-workflow/.github/workflows/release-drafter.yml@main - secrets: - ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index ba674a9b..00000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: Release package - -on: - push: - tags: "v*" - -jobs: - release_pypi: - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') - runs-on: ubuntu-latest - container: ghcr.io/gdsfactory/gdsfactory:main - steps: - - uses: actions/checkout@v5 - - name: Remove samples - run: make rm-samples - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install setuptools wheel twine - - name: Build and publish - env: - TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} - TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} - run: | - make build - twine upload dist/* - release_github: - needs: release_pypi - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - uses: actions/checkout@v5 - - name: Create GitHub Release - run: | - gh release create ${{ github.ref_name }} --title "${{ github.ref_name }}" --generate-notes --latest - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test_code.yml b/.github/workflows/test_code.yml deleted file mode 100644 index 376829c3..00000000 --- a/.github/workflows/test_code.yml +++ /dev/null @@ -1,11 +0,0 @@ -name: Test code -on: - pull_request: - push: - branches: [main] - -jobs: - test: - uses: doplaydo/pdk-ci-workflow/.github/workflows/test_code.yml@main - secrets: - GFP_API_KEY: ${{ secrets.GFP_API_KEY }} diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml deleted file mode 100644 index 5e428306..00000000 --- a/.github/workflows/test_coverage.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: Test Coverage -on: - pull_request: - push: - branches: [main] - workflow_dispatch: - -jobs: - coverage: - uses: doplaydo/pdk-ci-workflow/.github/workflows/test_coverage.yml@main - secrets: - GFP_API_KEY: ${{ secrets.GFP_API_KEY }} diff --git a/.github/workflows/update_badges.yml b/.github/workflows/update_badges.yml deleted file mode 100644 index 534d51ec..00000000 --- a/.github/workflows/update_badges.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Update Badges -on: - push: - branches: [main] - schedule: - - cron: "0 0 * * *" - workflow_dispatch: - -jobs: - badges: - uses: doplaydo/pdk-ci-workflow/.github/workflows/update_badges.yml@main - secrets: - GFP_API_KEY: ${{ secrets.GFP_API_KEY }} diff --git a/.github/write_components_autodoc.py b/.github/write_components_autodoc.py deleted file mode 100644 index 92db22fc..00000000 --- a/.github/write_components_autodoc.py +++ /dev/null @@ -1,59 +0,0 @@ -import inspect - -from ubcpdk import PDK -from ubcpdk.config import PATH - -filepath = PATH.repo / "docs" / "components.rst" - -skip = { - "LIBRARY", - "circuit_names", - "cells", - "component_names", - "container_names", - "component_names_test_ports", - "component_names_skip_test", - "component_names_skip_test_ports", - "dataclasses", - "library", - "waveguide_template", - "add_ports_m1", - "add_ports_m2", - "add_ports", - "import_gds", -} - -skip_plot = {} -skip_settings = {"flatten", "safe_cell_names"} -cells = PDK.cells - - -with open(filepath, "w+") as f: - f.write( - """ - -Cells summary -============================= - -.. currentmodule:: ubcpdk.cells - -.. autosummary:: - :toctree: _autosummary/ - -""" - ) - - for name in sorted(cells.keys()): - if name in skip or name.startswith("_"): - continue - print(name) - sig = inspect.signature(cells[name]) - kwargs = ", ".join( - [ - f"{p}={repr(sig.parameters[p].default)}" - for p in sig.parameters - if isinstance(sig.parameters[p].default, int | float | str | tuple) - and p not in skip_settings - ] - ) - f.write(f" {name}\n") diff --git a/.github/write_components_plot.py b/.github/write_components_plot.py deleted file mode 100644 index 52c2d5b0..00000000 --- a/.github/write_components_plot.py +++ /dev/null @@ -1,101 +0,0 @@ -import inspect -from enum import Enum - -from ubcpdk import PDK -from ubcpdk.config import PATH - -filepath = PATH.repo / "docs" / "components_plot.rst" - -skip = { - "LIBRARY", - "circuit_names", - "component_factory", - "component_names", - "container_names", - "component_names_test_ports", - "component_names_skip_test", - "component_names_skip_test_ports", - "dataclasses", - "library", - "waveguide_template", -} - -skip_plot: tuple[str, ...] = ("add_fiber_array_siepic",) -skip_settings: tuple[str, ...] = ("flatten", "safe_cell_names") - -cells = PDK.cells - - -with open(filepath, "w+") as f: - f.write( - """ - -Here are the components available in the PDK - - -Cells -============================= -""" - ) - - for name in sorted(cells.keys()): - if name in skip or name.startswith("_"): - continue - print(name) - sig = inspect.signature(cells[name]) - - # Check if function has required parameters (no default value) - has_required_params = any( - param.default == inspect.Parameter.empty - for param in sig.parameters.values() - ) - - kwargs_list = [] - for p in sig.parameters: - default = sig.parameters[p].default - if p in skip_settings: - continue - # Handle enum types - if isinstance(default, Enum): - enum_class = type(default).__name__ - enum_value = default.name - kwargs_list.append(f"{p}={enum_class}.{enum_value}") - # Handle basic types - elif isinstance(default, int | float | str | tuple): - kwargs_list.append(f"{p}={repr(default)}") - kwargs = ", ".join(kwargs_list) - - # Skip plotting if function has required params or is in skip_plot list - if name in skip_plot or has_required_params: - f.write( - f""" - -{name} ----------------------------------------------------- - -.. autofunction:: ubcpdk.cells.{name} - -""" - ) - else: - f.write( - f""" - -{name} ----------------------------------------------------- - -.. autofunction:: ubcpdk.cells.{name} - -.. plot:: - :include-source: - - from ubcpdk import PDK, cells - from ubcpdk.tech import LayerMapUbc - - PDK.activate() - - c = cells.{name}({kwargs}) - c.plot() - -""" - ) diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 82b8478c..00000000 --- a/.gitignore +++ /dev/null @@ -1,181 +0,0 @@ -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class -run_layouts/ -ref_layouts/ -gds_diff/ -gds_run/ -ubcpdk/tests/test_components.gds/gds_run/ -ubcpdk/tests/test_components.gds/gds_diff/ -.dvc/ -.virtual_documents -tests/ref/*.oas -ubcpdk/gds/*.oas -uv.lock - -docs/components.rst -docs/components_plot.rst - -# C extensions -*.so -*.json -*.sqlite3 -*.png -*.db -*.pkl -.idea/ -poetry.lock -Pipfile -modes/ -docs/_autosummary - -ubcpdk/gds/EBeam_SiN/*.oas -ubcpdk/gds/ANT/*.oas -ubcpdk/gds/EBeam/*.oas -ubcpdk/gds/EBeam_Beta/*.oas -ubcpdk/gds/EBeam_SiN/*.oas -ubcpdk/gds/EBeam_Dream/*.oas - - -# Distribution / packaging -.Python -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -extra/ -share/python-wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.nox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -*.py,cover -.hypothesis/ -.pytest_cache/ -cover/ - -# Translations -*.mo -*.pot -*.pdf -*.bib -report/report.md - -# Django stuff: -*.log -local_settings.py -db.sqlite3 -db.sqlite3-journal - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -.pybuilder/ -target/ - -# Jupyter Notebook -.ipynb_checkpoints -**/*.ipynb_checkpoints/ - -# IPython -profile_default/ -ipython_config.py - -# pyenv -# For a library or package, you might want to ignore these files since the code is -# intended to run in multiple environments; otherwise, check them in: -# .python-version - -# pipenv -# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. -# However, in case of collaboration, if having platform-specific dependencies or dependencies -# having no cross-platform support, pipenv may install dependencies that don't work, or not -# install all needed dependencies. -#Pipfile.lock - -# PEP 582; used by e.g. github.com/David-OConnor/pyflow -__pypackages__/ - -# Celery stuff -celerybeat-schedule -celerybeat.pid - -# SageMath parsed files -*.sage.py - -# Environments -.env -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ -.dmypy.json -dmypy.json - -# Pyre type checker -.pyre/ - -# pytype static type analyzer -.pytype/ - -# Cython debug symbols -cython_debug/ - -*.DS_Store -.DS_Store -*Thumbs.db -test_diffs/ -.pre-commit-config.yaml diff --git a/AGENTS.md b/AGENTS.md deleted file mode 100644 index 4ce584bb..00000000 --- a/AGENTS.md +++ /dev/null @@ -1,9 +0,0 @@ -# Agents - -## Code Standards - -### Required Before Each Commit - -- **ALWAYS** run `pre-commit run --all-files` before committing any changes -- Pre-commit hooks will automatically run code formatting (ruff), linting, and other quality checks -- All pre-commit hooks must pass before any changes can be committed diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index e9306667..00000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,336 +0,0 @@ -# Changelog - - - -## [3.3.4](https://github.com/gdsfactory/ubc/releases/tag/v3.3.4) - 2026-02-24 - -No significant changes. - - -## [3.3.2](https://github.com/gdsfactory/ubc/releases/tag/v3.3.2) - 2025-11-26 - -No significant changes. - - -## [3.3.1](https://github.com/gdsfactory/ubc/releases/tag/v3.3.1) - 2025-11-26 - -No significant changes. - - -## [3.3.0](https://github.com/gdsfactory/ubc/releases/tag/v3.3.0) - 2025-11-26 - -No significant changes. - - -## [3.2.0](https://github.com/gdsfactory/ubc/releases/tag/v3.2.0) - 2025-09-10 - -- add missing layer [#446](https://github.com/gdsfactory/ubc/pull/446) -- better models [#445](https://github.com/gdsfactory/ubc/pull/445) - -## [3.1.0](https://github.com/gdsfactory/ubc/releases/tag/v3.1.0) - 2025-09-08 - -- improve models [#443](https://github.com/gdsfactory/ubc/pull/443) - -## [3.0.0](https://github.com/gdsfactory/ubc/releases/tag/v3.0.0) - 2025-09-08 - -- update ubcpdk2 and gdsfactory 9.14.0 [#442](https://github.com/gdsfactory/ubc/pull/442) -- Update gdsfactory818 [#416](https://github.com/gdsfactory/ubc/pull/416) -- update_gdsfactory9 [#432](https://github.com/gdsfactory/ubc/pull/432) -- Update gdsfactory818 [#416](https://github.com/gdsfactory/ubc/pull/416) -- Update gdsfactory889 [#404](https://github.com/gdsfactory/ubc/pull/404) - -## [2.7.0](https://github.com/gdsfactory/ubc/releases/tag/v2.7.0) - 2024-11-10 - -- update to gdsfactory 8.18.0 - -## [2.6.3](https://github.com/gdsfactory/ubc/releases/tag/v2.6.3) - 2024-09-28 - -- Update gdsfactory889 [#404](https://github.com/gdsfactory/ubc/pull/404) - -## [2.6.2](https://github.com/gdsfactory/ubc/releases/tag/v2.6.2) - 2024-09-04 - -- remove old mmi2x2 [#400](https://github.com/gdsfactory/ubc/pull/400) -- update gdsfactory 862 [#399](https://github.com/gdsfactory/ubc/pull/399) - -## [2.6.0](https://github.com/gdsfactory/ubc/releases/tag/v2.6.0) - 2024-07-15 - -- update to gdsfactory8 - -## [2.5.0](https://github.com/gdsfactory/ubc/releases/tag/v2.5.0) - 2024-03-24 - -- Update gdsfactory to latest version 7.23 [#370](https://github.com/gdsfactory/ubc/pull/370) -- simpler pdk init [#363](https://github.com/gdsfactory/ubc/pull/363) -- add models [#362](https://github.com/gdsfactory/ubc/pull/362) - -## [2.4.1](https://github.com/gdsfactory/ubc/releases/tag/v2.4.1) - 2024-03-05 - -- update to latest gdsfactory 7.17.0 [#361](https://github.com/gdsfactory/ubc/pull/361) - -## [2.4.0](https://github.com/gdsfactory/ubc/releases/tag/v2.4.0) - 2024-03-03 - -- Update gdsfactory 7.15.2 [#359](https://github.com/gdsfactory/ubc/pull/359) - -## [2.3.5](https://github.com/gdsfactory/ubc/releases/tag/v2.3.5) - 2024-02-24 - -- update to latest gdsfactory [#351](https://github.com/gdsfactory/ubc/pull/351) -- Bump actions/deploy-pages from 2 to 4 [#344](https://github.com/gdsfactory/ubc/pull/344) -- add verification [#335](https://github.com/gdsfactory/ubc/pull/335) - -## [2.3.4](https://github.com/gdsfactory/ubc/releases/tag/v2.3.4) - 2023-11-19 - -- update to latest gdsfactory [#334](https://github.com/gdsfactory/ubc/pull/334) - -## [2.3.3](https://github.com/gdsfactory/ubc/releases/tag/v2.3.3) - 2023-10-28 - -- update to latest gdsfactory and fix labels [#327](https://github.com/gdsfactory/ubc/pull/327) -- **Full Changelog**: https://github.com/gdsfactory/ubc/compare/v2.3.2...v2.3.3 - -## [2.3.2](https://github.com/gdsfactory/gdsfactory/releases/tag/v2.3.2) - 2023-10-21 - -- fix ring_heater_single - -## [2.3.1](https://github.com/gdsfactory/gdsfactory/releases/tag/v2.3.1) - 2023-10-21 - -- No significant changes. - -## [2.3.0](https://github.com/gdsfactory/gdsfactory/releases/tag/v2.3.0) - 2023-10-21 - -* add bbox (#324) @joamatab -* update to latest version (#323) @joamatab - -## [2.2.2](https://github.com/gdsfactory/gdsfactory/releases/tag/v2.2.2) - 2023-10-02 - -- No significant changes. - -## [Unreleased](https://github.com/gdsfactory/ubc/compare/v2.1.1...main) - -## [2.1.1](https://github.com/gdsfactory/ubc/compare/v2.1.0...v2.1.1) - -- update to gdsfactory 7.4.6 - -## [2.1.0](https://github.com/gdsfactory/ubc/compare/v2.0.0...v2.1.0) - -- update to gdsfactory 7.4.2 - -## [2.0.0](https://github.com/gdsfactory/ubc/pull/291) - -- update to gdsfactory 7.0.2 - -## [1.21.0](https://github.com/gdsfactory/ubc/pull/203) - -- use jupyterbook for docs -- use py notebooks instead of ipynb -- update to latest gdsfactory - -## [1.20.0](https://github.com/gdsfactory/ubc/pull/194) - -- update floorplan size -- fix optical labels, make sure optical and electrical labels match -- fix pads spacing to 125um -- flip orientation of heated rings - -## [1.19.0](https://github.com/gdsfactory/ubc/pull/186) - -- update to gdsfactory 6.37.0 -- fix drc errors - -## [1.18.0](https://github.com/gdsfactory/ubc/pull/158) - -- update to gdsfactory 6.35.1 -- use bbox_layers - -## [1.15.0](https://github.com/gdsfactory/ubc/pull/158) - -- update to gdsfactory 6.21.1 -- use o1, o2, o3 port naming convention instead of opt1, opt2, opt3 - -## [1.14.0](https://github.com/gdsfactory/ubc/pull/157) -- update to gdsfactory 6.20.0 - -## [1.13.0](https://github.com/gdsfactory/ubc/pull/146) - -- update to gdsfactory 6.19.0 -- simpler installer - -## 1.12.0 - -- update to gdsfactory 6.16.3 - -## 1.11.0 - -- update to gdsfactory 6.16.1 [PR](https://github.com/gdsfactory/ubc/pull/146) - -## 1.10.0 - -- update to gdsfactory 6.2.1 [PR](https://github.com/gdsfactory/ubc/pull/120) - -## [1.9.0](https://github.com/gdsfactory/ubc/pull/116) - -- update to gdsfactory 6.0.3 - - -## 1.8.0 - -- update to gdsfactory 5.50.3 - -## [1.6.6](https://github.com/gdsfactory/ubc/pull/65) - -- update to gdsfactory 5.13.0 - - -## [1.6.5](https://github.com/gdsfactory/ubc/pull/57) - -- update to gdsfactory 5.12.9 - -## [1.6.4](https://github.com/gdsfactory/ubc/pull/52) - -- update interconnect plugin [PR](https://github.com/gdsfactory/ubc/pull/51) - -## [1.6.1](https://github.com/gdsfactory/ubc/pull/49) - -- update to gdsfactory 5.10.1 - -## [1.6.0](https://github.com/gdsfactory/ubc/pull/45) - -- update to gdsfactory 5.8.7 - -## [1.5.10](https://github.com/gdsfactory/ubc/pull/43) - -- update to gdsfactory 5.7.1 - -## [1.5.9](https://github.com/gdsfactory/ubc/pull/41) - -- update to latest gdsfactory - -## [1.5.8](https://github.com/gdsfactory/ubc/pull/39) - -- update to latest gdsfactory - -## [1.5.7](https://github.com/gdsfactory/ubc/pull/31) - -- update to gdsfactory 5.5.1 - -## [1.5.6](https://github.com/gdsfactory/ubc/pull/30) - -- update to gdsfactory 5.4.2 - -## [1.5.5](https://github.com/gdsfactory/ubc/pull/29) - -- update gdsfactory -- register `*.pic.yml` - -## [1.5.4](https://github.com/gdsfactory/ubc/pull/27) - -- update gdsfactory - -## [1.5.3](https://github.com/gdsfactory/ubc/pull/26) - -- [PR](https://github.com/gdsfactory/ubc/pull/24) replaced bbox with Section in strip cross_section -- [PR](https://github.com/gdsfactory/ubc/pull/25) assumes that the imported gds file is already siepic-compatible and adds ports where it finds siepic pins. - -## [1.5.2](https://github.com/gdsfactory/ubc/pull/23) - -- compatible with gdsfactory 5.2.0 - -## [1.5.1](https://github.com/gdsfactory/ubc/pull/22) - -- add fiber accepts ComponentSpec -- register gdsfactory containers together with cells - -## [1.5.0](https://github.com/gdsfactory/ubc/pull/21) - -- update tests to pass for gdsfactory 5.0.1 - -## [1.4.2](https://github.com/gdsfactory/ubc/pull/20) - -- rename component_factory to cells and cross_section_factory to cross_sections - - -## [1.4.1](https://github.com/gdsfactory/ubc/pull/19) - -- update layer_stack to be compatible with latest gdsfactory 4.7.1 - -## [1.4.0](https://github.com/gdsfactory/ubc/pull/18) - -- simpler component_factory thanks to `import_module_factories` function from gf.cell - -## [1.3.9](https://github.com/gdsfactory/ubc/pull/17) - -- add circuit samples - -## [1.3.7](https://github.com/gdsfactory/ubc/pull/15) - -- add interconnect [plugin](https://github.com/gdsfactory/ubc/pull/14) - -## [1.3.6](https://github.com/gdsfactory/ubc/pull/11) - -- change pin length from 100nm to 10nm - -## [1.3.5](https://github.com/gdsfactory/ubc/pull/9) - -- pins are compatible with siepic - -## [1.3.4](https://github.com/gdsfactory/ubc/pull/8) - -- add pins also adds the device recognition layer - -## 1.3.3 - -- enable dispersive fdtd simulations in tidy3d thanks to gdsfactory 4.3.4 - -## [1.3.1](https://github.com/gdsfactory/ubc/pull/7) - -- update gdsfactory>=4.2.16 -- add tidy3d simulations - -## 1.3.0 - -- update gdsfactory>=4.2.1 - -## 1.1.0 - -- remove triangle from requirements.txt -- enforce gdsfactory>=4.0.0 -- simplify grating couplers definition -- add meep and lumerical simulation functions - -## 1.0.6 - -- move ubcpdk.simulations to ubcpdk.simulation for consistency with gdsfactory -- add ubcpdk.simulation.gmeep -- move tests to ubcpdk/tests - -## 1.0.5 - -- move sample data into the module - -## 1.0.0 - -- rename package from ubc to ubcpdk to match pypi name -- move ubcsp into ubcpdk/simulation/circuits -- rename ubcpdk/da as ubcpdk/data - -## 0.0.12 - -- fix installation by adding lyp files to MANIFEST -- compatible with latest gdsfactory -- `pip install ubcpdk` has less dependencies than `pip install ubc[full]` - -## 0.0.6 - -- compatible with gdsfactory 3.9.12 -- merge mask metadata -- replace `-` with `_` in measurement names - -## 0.0.4 - -- compatible with gdsfactory 3.1.5 - -## 0.0.3 - -- components in different folders - -## 0.0.2 - -- added pins to components -- added notebooks diff --git a/LICENSE b/LICENSE deleted file mode 100644 index b2a8230b..00000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2020 gdsfactory - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Makefile b/Makefile deleted file mode 100644 index 793620aa..00000000 --- a/Makefile +++ /dev/null @@ -1,57 +0,0 @@ -install: - uv sync --extra docs --extra dev - -all: - uv run python ubcpdk/samples/all_cells.py - -rm-samples: - rm -rf ubcpdk/samples - -dev: install - curl -sf https://raw.githubusercontent.com/doplaydo/pdk-ci-workflow/main/templates/.pre-commit-config.yaml -o .pre-commit-config.yaml - uv run pre-commit install - -update-pre: - pre-commit autoupdate - -tech: - python install_tech.py - -test: - uv run pytest -s - -test-ports: - uv run pytest -s tests/test_si220_cband.py::test_optical_port_positions - -test-force: install - uv run pytest -s --update-gds-refs --force-regen - -cov: - uv run pytest --cov=ubcpdk - -git-rm-merged: - git branch -D `git branch --merged | grep -v \* | xargs` - -meep: - conda install -n base conda-libmamba-solver - conda config --set solver libmamba - conda install -c conda-forge pymeep=*=mpi_mpich_* nlopt -y - -release: - git push - git push origin --tags - -build: - rm -rf dist - pip install build - python -m build - -docs: - uv run python .github/write_components_plot.py - uv run python .github/write_components_autodoc.py - uv run jb build docs - -mask: - python ubcpdk/samples/test_masks.py - -.PHONY: drc doc docs install diff --git a/README.md b/README.md deleted file mode 100644 index 36cb71ca..00000000 --- a/README.md +++ /dev/null @@ -1,87 +0,0 @@ -# ubcpdk (SiEPIC Ebeam PDK) 3.3.4 - - -[![Docs](https://github.com/gdsfactory/ubc/actions/workflows/pages.yml/badge.svg)](https://github.com/gdsfactory/ubc/actions/workflows/pages.yml) -[![Tests](https://github.com/gdsfactory/ubc/actions/workflows/test_code.yml/badge.svg)](https://github.com/gdsfactory/ubc/actions/workflows/test_code.yml) -[![DRC](https://github.com/gdsfactory/ubc/raw/badges/drc.svg)](https://github.com/gdsfactory/ubc/actions/workflows/drc.yml) -[![Model Regression](https://github.com/gdsfactory/ubc/actions/workflows/model_regression.yml/badge.svg)](https://github.com/gdsfactory/ubc/actions/workflows/model_regression.yml) -[![Test Coverage](https://github.com/gdsfactory/ubc/raw/badges/coverage.svg)](https://github.com/gdsfactory/ubc/actions/workflows/test_coverage.yml) -[![Model Coverage](https://github.com/gdsfactory/ubc/raw/badges/model_coverage.svg)](https://github.com/gdsfactory/ubc/actions/workflows/model_coverage.yml) -[![Issues](https://github.com/gdsfactory/ubc/raw/badges/issues.svg)](https://github.com/gdsfactory/ubc/issues) -[![PRs](https://github.com/gdsfactory/ubc/raw/badges/prs.svg)](https://github.com/gdsfactory/ubc/pulls) - - - -[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/gdsfactory/binder-sandbox/HEAD) -[![pypi](https://img.shields.io/pypi/v/ubcpdk)](https://pypi.org/project/ubcpdk/) -[![mit](https://img.shields.io/github/license/gdsfactory/ubc)](https://choosealicense.com/licenses/mit/) -[![codecov](https://codecov.io/gh/gdsfactory/ubc/branch/main/graph/badge.svg?token=T3kCV2gYE9)](https://codecov.io/gh/gdsfactory/ubc) -[![black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) - -SiEPIC Ebeam PDK adapted from [siepic Ebeam PDK](https://github.com/lukasc-ubc/SiEPIC_EBeam_PDK) for gdsfactory. -It provides a fully python driven flow alternative for the most advanced users taking the [edx course](https://www.edx.org/course/silicon-photonics-design-fabrication-and-data-ana) - -## Installation - -We recommend `uv` - -```bash -# On macOS and Linux. -curl -LsSf https://astral.sh/uv/install.sh | sh -``` - -```bash -# On Windows. -powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex" -``` - -### Installation for users - -Use python 3.11, 3.12 or 3.13. We recommend [VSCode](https://code.visualstudio.com/) as an IDE. - -``` -uv pip install ubcpdk --upgrade -``` - -Then you need to restart Klayout to make sure the new technology installed appears. - -### Installation for contributors - - -Then you can install with: - -```bash -git clone https://github.com/gdsfactory/ubc.git -cd ubc -uv venv --python 3.12 -uv sync --extra docs --extra dev -``` - -## Documentation - -- [gdsfactory docs](https://gdsfactory.github.io/gdsfactory/) -- [UBCpdk docs](https://gdsfactory.github.io/ubc/) and [code](https://github.com/gdsfactory/ubc) -- [ubc1](https://github.com/gdsfactory/ubc1) - -## Pre-commit - -```bash -make pre-commit -``` - -## Release - -1. Bump the version: - -```bash -tbump 0.0.1 -``` - -2. Push the tag: - -```bash -git push --tags -``` -This triggers the release workflow that builds wheels and uploads them. - -3. Create a pull request with the updated changelog since last release. diff --git a/badges/coverage.svg b/badges/coverage.svg deleted file mode 100644 index d493a07d..00000000 --- a/badges/coverage.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - coverage - coverage - 78% - 78% - - diff --git a/badges/drc.svg b/badges/drc.svg deleted file mode 100644 index cabc21b1..00000000 --- a/badges/drc.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - DRC errors - - 0 - - diff --git a/badges/issues.svg b/badges/issues.svg deleted file mode 100644 index e0f56325..00000000 --- a/badges/issues.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - issues - issues - 3 - 3 - - diff --git a/badges/model_coverage.svg b/badges/model_coverage.svg deleted file mode 100644 index 348d17fe..00000000 --- a/badges/model_coverage.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - models - models - 9% - 9% - - diff --git a/badges/prs.svg b/badges/prs.svg deleted file mode 100644 index 2302b548..00000000 --- a/badges/prs.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - PRs - PRs - 1 - 1 - - diff --git a/docs/_config.yml b/docs/_config.yml deleted file mode 100644 index a370e569..00000000 --- a/docs/_config.yml +++ /dev/null @@ -1,83 +0,0 @@ -# Book settings -# Learn more at https://jupyterbook.org/customize/config.html - -title: ubc -author: SiEPIC - -# Force re-execution of notebooks on each build. -# See https://jupyterbook.org/content/execute.html -execute: - execute_notebooks: cache - timeout: -1 - allow_errors: false - # timeout: -1 - # execute_notebooks: force - # execute_notebooks: "off" - # exclude_patterns: - # - '*notebooks/devsim/01_pin_waveguide*' - -latex: - latex_engine: pdflatex # one of 'pdflatex', 'xelatex' (recommended for unicode), 'luatex', 'platex', 'uplatex' - use_jupyterbook_latex: true # use sphinx-jupyterbook-latex for pdf builds as default - -# Add a bibtex file so that we can create citations - -html: - home_page_in_navbar: true - use_edit_page_button: false - use_repository_button: false - use_issues_button: false - baseurl: https://github.com/gdsfactory/ubc - -# Information about where the book exists on the web -repository: - url: https://github.com/gdsfactory/ubc - path_to_book: docs # Optional path to your book, relative to the repository root - branch: main # Which branch of the repository should be used when creating links (optional) - -# launch_buttons: -# notebook_interface: jupyterlab -# colab_url: "https://colab.research.google.com" - -sphinx: - local_extensions: - activate_pdk: _ext - extra_extensions: - - "sphinx.ext.autodoc" - - "sphinx.ext.autodoc.typehints" - - "sphinx.ext.autosummary" - - "sphinx.ext.napoleon" - - "sphinx.ext.viewcode" - - "matplotlib.sphinxext.plot_directive" - - "sphinxcontrib.autodoc_pydantic" - config: - #autodoc_typehints: description - html_js_files: - - https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js - autodoc_typehints: description - autodoc_typehints_format: short - python_use_unqualified_type_names: True - autodoc_type_aliases: - "ComponentFactory": "ComponentFactory" - "ComponentSpec": "ComponentSpec" - "CrossSectionFactory": "CrossSectionFactory" - "CrossSectionSpec": "CrossSectionSpec" - "LayerSpec": "LayerSpec" - "LayerSpecs": "LayerSpecs" - "Layer": "Layer" - "Layers": "Layers" - "PathType": "PathType" - "SDict": "sax.SDict" - "sax.SDict": "sax.SDict" - "gdsfactory.typings.ComponentFactory": "ComponentFactory" - "gdsfactory.typings.ComponentSpec": "ComponentSpec" - "gdsfactory.typings.CrossSectionFactory": "CrossSectionFactory" - "gdsfactory.typings.CrossSectionSpec": "CrossSectionSpec" - "gdsfactory.typings.LayerSpec": "LayerSpec" - "gdsfactory.typings.LayerSpecs": "LayerSpecs" - "gdsfactory.typings.Layer": "Layer" - "gdsfactory.typings.Layers": "Layers" - "gdsfactory.typings.PathType": "PathType" - "CrossSection | str | dict[str, Any] | Callable[[...], CrossSection] | SymmetricalCrossSection | DCrossSection": "CrossSectionSpec" - "Component | ComponentAllAngle | str | dict[str, Any] | Callable[[...], Component]": "ComponentSpec" - nb_execution_raise_on_error: true diff --git a/docs/_ext/activate_pdk.py b/docs/_ext/activate_pdk.py deleted file mode 100644 index 11130c64..00000000 --- a/docs/_ext/activate_pdk.py +++ /dev/null @@ -1,13 +0,0 @@ -"""Sphinx extension: activate ubcpdk PDK for docs build. - -Autodoc renders cell docstrings that instantiate partials requiring an -active PDK. The package itself no longer activates on import, so we -activate here for the docs build only. -""" - -import ubcpdk - - -def setup(app): - ubcpdk.PDK.activate() - return {"version": "0.1", "parallel_read_safe": True} diff --git a/docs/_toc.yml b/docs/_toc.yml deleted file mode 100644 index ba29aec2..00000000 --- a/docs/_toc.yml +++ /dev/null @@ -1,34 +0,0 @@ -# Table of contents -# Learn more at https://jterbook.org/customize/toc.html - -format: jb-book -root: index -parts: - - caption: Introduction - chapters: - - file: tech - - file: components - - file: components_plot - - file: notebooks/00_layout - - file: simulations - sections: - - file: notebooks/meep_ybranch - - file: notebooks/11_sparameters - - file: notebooks/11_sparameters_gratings - - file: notebooks/12_sim_plugins_tidy3d - - file: notebooks/13_sim_plugins - - file: notebooks/14_sax_tidy3d - - file: data_analysis - sections: - - file: notebooks/31_data_analysis_mzi - - file: notebooks/32_data_analysis_ring - - file: notebooks/33_data_analysis_dbr - - caption: Reference - chapters: - - file: changelog - - url: https://gdsfactory.github.io/gplugins/ - title: Plugins - - url: https://gdsfactory.github.io/gdsfactory - title: gdsfactory - - url: https://gdsfactory.github.io/gdsfactory-photonics-training/ - title: gdsfactory-photonics-training diff --git a/docs/changelog.md b/docs/changelog.md deleted file mode 100644 index 66efc0fe..00000000 --- a/docs/changelog.md +++ /dev/null @@ -1,2 +0,0 @@ -```{include} ../CHANGELOG.md -``` diff --git a/docs/data_analysis.md b/docs/data_analysis.md deleted file mode 100644 index 7bb22160..00000000 --- a/docs/data_analysis.md +++ /dev/null @@ -1,4 +0,0 @@ -# Data Analysis - -```{tableofcontents} -``` diff --git a/docs/index.md b/docs/index.md deleted file mode 100644 index 451bedae..00000000 --- a/docs/index.md +++ /dev/null @@ -1,2 +0,0 @@ -```{include} ../README.md -``` diff --git a/docs/notebooks/00_layout.ipynb b/docs/notebooks/00_layout.ipynb deleted file mode 100644 index 6ebdffc8..00000000 --- a/docs/notebooks/00_layout.ipynb +++ /dev/null @@ -1,422 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "0", - "metadata": {}, - "source": [ - "# Layout\n", - "\n", - "All UBC ubcpdk.cells are conveniently combined into the ubcpdk.components module." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "1", - "metadata": {}, - "outputs": [], - "source": [ - "import gdsfactory as gf\n", - "\n", - "from ubcpdk import PDK, cells\n", - "\n", - "PDK.activate()" - ] - }, - { - "cell_type": "markdown", - "id": "2", - "metadata": {}, - "source": [ - "## Fixed Component cells\n", - "\n", - "Most `ubcpdk` components are imported from GDS files as fixed cells." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "3", - "metadata": {}, - "outputs": [], - "source": [ - "c = cells.ebeam_crossing4()\n", - "c.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "4", - "metadata": {}, - "outputs": [], - "source": [ - "c = cells.ebeam_swg_edgecoupler()\n", - "c.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "5", - "metadata": {}, - "outputs": [], - "source": [ - "c = cells.ebeam_bdc_te1550()\n", - "c.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "6", - "metadata": {}, - "outputs": [], - "source": [ - "c = cells.ebeam_adiabatic_te1550()\n", - "c.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "7", - "metadata": {}, - "outputs": [], - "source": [ - "c = cells.ebeam_y_adiabatic()\n", - "c.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "8", - "metadata": {}, - "outputs": [], - "source": [ - "c = cells.ebeam_y_1550()\n", - "c.plot()" - ] - }, - { - "cell_type": "markdown", - "id": "9", - "metadata": {}, - "source": [ - "## Parametric Component PCells\n", - "\n", - "You can also define cells adapted from gdsfactory generic pdk." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "10", - "metadata": {}, - "outputs": [], - "source": [ - "c = cells.straight(length=2)\n", - "c.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "11", - "metadata": {}, - "outputs": [], - "source": [ - "c = cells.bend_euler(radius=5)\n", - "c.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "12", - "metadata": {}, - "outputs": [], - "source": [ - "c = cells.spiral()\n", - "c.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "13", - "metadata": {}, - "outputs": [], - "source": [ - "c = cells.ring_single_heater()\n", - "c.plot()" - ] - }, - { - "cell_type": "markdown", - "id": "14", - "metadata": {}, - "source": [ - "## Components with grating couplers\n", - "\n", - "To test your devices you can add grating couplers. Both for single fibers and for fiber arrays." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "15", - "metadata": {}, - "outputs": [], - "source": [ - "splitter = cells.ebeam_y_1550()\n", - "mzi = gf.components.mzi(splitter=splitter)\n", - "mzi.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "16", - "metadata": {}, - "outputs": [], - "source": [ - "component_fiber_array = cells.add_fiber_array(component=mzi, fanout_length=5)\n", - "component_fiber_array.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "17", - "metadata": {}, - "outputs": [], - "source": [ - "c = cells.ring_single_heater()\n", - "c = cells.add_fiber_array_pads_rf(c)\n", - "c.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "18", - "metadata": {}, - "outputs": [], - "source": [ - "c = cells.mzi_heater()\n", - "c = cells.add_fiber_array_pads_rf(c)\n", - "c.plot()" - ] - }, - { - "cell_type": "markdown", - "id": "19", - "metadata": {}, - "source": [ - "## 3D rendering" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "20", - "metadata": {}, - "outputs": [], - "source": [ - "scene = c.to_3d()\n", - "scene.show()" - ] - }, - { - "cell_type": "markdown", - "id": "21", - "metadata": {}, - "source": [ - "## Die assembly" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "22", - "metadata": {}, - "outputs": [], - "source": [ - "from functools import partial\n", - "\n", - "import gdsfactory as gf\n", - "\n", - "from ubcpdk.tech import LAYER\n", - "\n", - "size = (440, 470)\n", - "add_gc = cells.add_fiber_array\n", - "\n", - "\n", - "@gf.cell\n", - "def EBeam_JoaquinMatres_1() -> gf.Component:\n", - " \"\"\"Add DBR cavities.\"\"\"\n", - " e = [add_gc(cells.straight())]\n", - " e += [add_gc(cells.mzi(delta_length=dl)) for dl in [9.32, 93.19]]\n", - " e += [\n", - " add_gc(cells.ring_single(radius=12, gap=gap, length_x=coupling_length))\n", - " for gap in [0.2]\n", - " for coupling_length in [2.5, 4.5, 6.5]\n", - " ]\n", - "\n", - " c = gf.Component()\n", - " _ = c << gf.pack(e, max_size=size, spacing=2)[0]\n", - " _ = c << gf.components.rectangle(size=size, layer=LAYER.FLOORPLAN)\n", - " return c\n", - "\n", - "\n", - "c = EBeam_JoaquinMatres_1()\n", - "c.show() # show in klayout\n", - "c.plot() # plot in notebook" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "23", - "metadata": {}, - "outputs": [], - "source": [ - "def EBeam_JoaquinMatres_2() -> gf.Component:\n", - " \"\"\"spirals for extracting straight waveguide loss\"\"\"\n", - "\n", - " e = [\n", - " cells.add_fiber_array(component=cells.spiral(n_loops=8, length=length))\n", - " for length in [0, 100, 200]\n", - " ]\n", - "\n", - " c = gf.Component()\n", - " _ = c << gf.pack(e, max_size=size, spacing=2)[0]\n", - " _ = c << gf.components.rectangle(size=size, layer=LAYER.FLOORPLAN)\n", - " return c\n", - "\n", - "\n", - "c = EBeam_JoaquinMatres_2()\n", - "c.show() # show in klayout\n", - "c.plot() # plot in notebook" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "24", - "metadata": {}, - "outputs": [], - "source": [ - "def EBeam_JoaquinMatres_3() -> gf.Component:\n", - " \"\"\"Contains mirror cavities and structures inside a resonator.\"\"\"\n", - " e = []\n", - " e += [add_gc(cells.ebeam_crossing4())]\n", - " e += [add_gc(cells.ebeam_adiabatic_te1550())]\n", - " e += [add_gc(cells.ebeam_bdc_te1550())]\n", - " e += [add_gc(cells.ebeam_y_1550())]\n", - " e += [add_gc(cells.straight(), component_name=f\"straight_{i}\") for i in range(2)]\n", - " c = gf.Component()\n", - " _ = c << gf.pack(e, max_size=size, spacing=2)[0]\n", - " _ = c << gf.components.rectangle(size=size, layer=LAYER.FLOORPLAN)\n", - " return c\n", - "\n", - "\n", - "c = EBeam_JoaquinMatres_3()\n", - "c.show() # show in klayout\n", - "c.plot() # plot in notebook" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "25", - "metadata": {}, - "outputs": [], - "source": [ - "def EBeam_JoaquinMatres_4() -> gf.Component:\n", - " \"\"\"MZI interferometers.\"\"\"\n", - " mzi = partial(gf.components.mzi, splitter=cells.ebeam_y_1550)\n", - " mzis = [mzi(delta_length=delta_length) for delta_length in [10, 40]]\n", - " mzis_gc = [cells.add_fiber_array(mzi, fanout_length=5) for mzi in mzis]\n", - "\n", - " mzis = [cells.mzi_heater(delta_length=delta_length) for delta_length in [40]]\n", - " mzis_heater_gc = [\n", - " cells.add_fiber_array_pads_rf(mzi, orientation=90) for mzi in mzis\n", - " ]\n", - "\n", - " e = mzis_gc + mzis_heater_gc\n", - " c = gf.Component()\n", - " _ = c << gf.pack(e, max_size=size, spacing=2)[0]\n", - " _ = c << gf.components.rectangle(size=size, layer=LAYER.FLOORPLAN)\n", - " return c\n", - "\n", - "\n", - "c = EBeam_JoaquinMatres_4()\n", - "c.show() # show in klayout\n", - "c.plot() # plot in notebook" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "26", - "metadata": {}, - "outputs": [], - "source": [ - "def EBeam_JoaquinMatres_5() -> gf.Component:\n", - " \"\"\"Ring resonators.\"\"\"\n", - "\n", - " rings = []\n", - " for length_x in [4, 6]:\n", - " ring = cells.ring_single_heater(length_x=length_x)\n", - " ring_gc = cells.add_fiber_array_pads_rf(ring, pad_yspacing=10)\n", - " rings.append(ring_gc)\n", - "\n", - " c = gf.Component()\n", - " _ = c << gf.pack(rings, max_size=size, spacing=2)[0]\n", - " _ = c << gf.components.rectangle(size=size, layer=LAYER.FLOORPLAN)\n", - " return c\n", - "\n", - "\n", - "c = EBeam_JoaquinMatres_5()\n", - "c.show() # show in klayout\n", - "c.plot() # plot in notebook" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "27", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "jupytext": { - "custom_cell_magics": "kql" - }, - "kernelspec": { - "display_name": "base", - "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.12.9" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/docs/notebooks/11_sparameters.ipynb b/docs/notebooks/11_sparameters.ipynb deleted file mode 100644 index 8c290b60..00000000 --- a/docs/notebooks/11_sparameters.ipynb +++ /dev/null @@ -1,202 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "0", - "metadata": {}, - "source": [ - "# Tidy3D Simulations\n", - "\n", - "Thanks to the GDSFactory plugin you can directly run simulations in different FDTD solvers.\n", - "\n", - "See [tutorial](https://gdsfactory.github.io/gdsfactory/plugins_fdtd.html)" - ] - }, - { - "cell_type": "markdown", - "id": "1", - "metadata": {}, - "source": [ - "Meep is open source and does not require a license. However, both tidy3d and Lumerical require licenses to use.\n", - "\n", - "## Tidy3d\n", - "\n", - "[tidy3D](https://docs.flexcompute.com/projects/tidy3d/en/latest/) is a fast GPU based FDTD tool developed by flexcompute.\n", - "\n", - "To run, you need to [create an account](https://simulation.cloud/) and add credits. The number of credits that each simulation takes depends on the simulation size and computation time.\n", - "\n", - "![cloud_model](https://i.imgur.com/5VTCPLR.png)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "2", - "metadata": {}, - "outputs": [], - "source": [ - "import gplugins as sim\n", - "import gplugins.tidy3d as gt\n", - "\n", - "from ubcpdk import PDK, cells\n", - "from ubcpdk.config import PATH\n", - "\n", - "PDK.activate()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "3", - "metadata": {}, - "outputs": [], - "source": [ - "c = cells.ebeam_y_1550()\n", - "c.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "4", - "metadata": {}, - "outputs": [], - "source": [ - "sp = gt.write_sparameters(c, filepath=PATH.sparameters / \"ebeam_y_1550_20634f71.npz\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "5", - "metadata": {}, - "outputs": [], - "source": [ - "sp.keys()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "6", - "metadata": {}, - "outputs": [], - "source": [ - "sim.plot.plot_sparameters(sp)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "7", - "metadata": {}, - "outputs": [], - "source": [ - "sim.plot.plot_loss1x2(sp)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "8", - "metadata": {}, - "outputs": [], - "source": [ - "sim.plot.plot_imbalance1x2(sp)" - ] - }, - { - "cell_type": "markdown", - "id": "9", - "metadata": {}, - "source": [ - "## Lumerical FDTD\n", - "\n", - "You can write the [Sparameters](https://en.wikipedia.org/wiki/Scattering_parameters) for all components in the UBC `ubcpdk.components` PDK using lumerical FDTD plugin in gplugins" - ] - }, - { - "cell_type": "markdown", - "id": "10", - "metadata": {}, - "source": [ - "To run simulations uncomment the following lines" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "11", - "metadata": {}, - "outputs": [], - "source": [ - "import gplugins as sim" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "12", - "metadata": { - "lines_to_next_cell": 2 - }, - "outputs": [], - "source": [ - "for f in [\n", - " cells.bend_euler,\n", - " cells.coupler,\n", - " cells.coupler_ring,\n", - " cells.ebeam_y_1550,\n", - " cells.ebeam_crossing4,\n", - "]:\n", - " component = f()\n", - " component.plot()\n", - " # ls.write_sparameters_lumerical(component=component)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "13", - "metadata": {}, - "outputs": [], - "source": [ - "# sp = ls.read.read_sparameters_lumerical(component=ubcpdk.components.straight())" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "14", - "metadata": {}, - "outputs": [], - "source": [ - "# sim.plot_sparameters(sp)" - ] - } - ], - "metadata": { - "jupytext": { - "custom_cell_magics": "kql" - }, - "kernelspec": { - "display_name": "base", - "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.12.9" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/docs/notebooks/11_sparameters_gratings.ipynb b/docs/notebooks/11_sparameters_gratings.ipynb deleted file mode 100644 index 6d0f01ff..00000000 --- a/docs/notebooks/11_sparameters_gratings.ipynb +++ /dev/null @@ -1,195 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "0", - "metadata": {}, - "source": [ - "# Tidy3D: grating coupler\n", - "\n", - "You can also expand the planar component simulations to simulate an out-of-plane grating coupler.\n", - "\n", - "You can run grating coupler simulations in 2D to save time, and for accuracy you can also run them in 3D\n", - "\n", - "## tidy3d" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "1", - "metadata": {}, - "outputs": [], - "source": [ - "import gplugins.tidy3d as gt\n", - "import matplotlib.pyplot as plt\n", - "import numpy as np\n", - "\n", - "from ubcpdk import PDK, cells\n", - "from ubcpdk.config import PATH\n", - "\n", - "PDK.activate()\n", - "\n", - "c = cells.ebeam_gc_te1550()\n", - "\n", - "c = c.copy()\n", - "c.add_port(\n", - " name=\"o2\",\n", - " center=(-20, 0),\n", - " orientation=180,\n", - " port_type=\"vertical_te\",\n", - " layer=(1, 0),\n", - " width=3,\n", - ")\n", - "c.draw_ports()\n", - "c.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "2", - "metadata": {}, - "outputs": [], - "source": [ - "fiber_angle_deg = -31\n", - "s = gt.get_simulation_grating_coupler(\n", - " c, is_3d=False, fiber_angle_deg=fiber_angle_deg, fiber_xoffset=0\n", - ")\n", - "f = gt.plot_simulation(s)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "3", - "metadata": {}, - "outputs": [], - "source": [ - "def log(x):\n", - " return 20 * np.log10(x)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "4", - "metadata": {}, - "outputs": [], - "source": [ - "sp = gt.write_sparameters_grating_coupler(\n", - " c,\n", - " is_3d=False,\n", - " fiber_angle_deg=fiber_angle_deg,\n", - " fiber_xoffset=0,\n", - " filepath=PATH.sparameters / \"gc_te1550.npz\",\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "5", - "metadata": {}, - "outputs": [], - "source": [ - "offsets = np.arange(-5, 5 + 1, 5)\n", - "offsets" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "6", - "metadata": {}, - "outputs": [], - "source": [ - "jobs = [\n", - " dict(\n", - " component=c,\n", - " is_3d=False,\n", - " fiber_angle_deg=fiber_angle_deg,\n", - " fiber_xoffset=fiber_xoffset,\n", - " dirpath=PATH.sparameters,\n", - " filepath=PATH.sparameters\n", - " / f\"gc_{fiber_angle_deg:.1f}deg_{fiber_xoffset:.1f}um.npz\",\n", - " )\n", - " for fiber_xoffset in offsets\n", - "]\n", - "sps = gt.write_sparameters_grating_coupler_batch(jobs)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "7", - "metadata": {}, - "outputs": [], - "source": [ - "sps[0].result()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "8", - "metadata": {}, - "outputs": [], - "source": [ - "for fiber_xoffset in offsets:\n", - " sp = gt.write_sparameters_grating_coupler(\n", - " c,\n", - " is_3d=False,\n", - " fiber_angle_deg=fiber_angle_deg,\n", - " fiber_xoffset=fiber_xoffset,\n", - " filepath=PATH.sparameters\n", - " / f\"gc_{fiber_angle_deg:.1f}deg_{fiber_xoffset:.1f}um.npz\",\n", - " )\n", - " plt.plot(\n", - " sp[\"wavelengths\"],\n", - " 20 * np.log10(np.abs(sp[\"o2@0,o1@0\"])),\n", - " label=str(fiber_xoffset),\n", - " )\n", - "\n", - "plt.xlabel(\"wavelength (um\")\n", - "plt.ylabel(\"Transmission (dB)\")\n", - "plt.title(\"transmission vs fiber xoffset (um)\")\n", - "plt.legend()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "9", - "metadata": {}, - "outputs": [], - "source": [ - "help(gt.write_sparameters_grating_coupler)" - ] - } - ], - "metadata": { - "jupytext": { - "custom_cell_magics": "kql" - }, - "kernelspec": { - "display_name": "base", - "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.12.9" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/docs/notebooks/12_sim_plugins_tidy3d.ipynb b/docs/notebooks/12_sim_plugins_tidy3d.ipynb deleted file mode 100644 index a7e26732..00000000 --- a/docs/notebooks/12_sim_plugins_tidy3d.ipynb +++ /dev/null @@ -1,277 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "0", - "metadata": {}, - "source": [ - "# Circuit simulations (tidy3d + SAX)\n", - "\n", - "![](https://i.imgur.com/RSOTDIN.png)\n", - "\n", - "Sparameters are common in RF and photonic simulation.\n", - "\n", - "We are going to simulate a MZI interferometer circuit.\n", - "\n", - "For that we need to simulate each of the component Sparameters in tidy3d and then SAX Sparameter circuit solver to solve the Sparameters for the circuit.\n", - "\n", - "We will be using SAX which is open source and tidy3d which requires you to create an account to run simulations in tidy3d cloud.\n" - ] - }, - { - "cell_type": "markdown", - "id": "1", - "metadata": {}, - "source": [ - "## tidy3d FDTD simulations\n", - "\n", - "Lets compute the Sparameters of a 1x2 power splitter using tidy3d.\n", - "\n", - "[tidy3D](https://docs.flexcompute.com/projects/tidy3d/en/latest/) is a fast GPU based FDTD tool developed by flexcompute.\n", - "\n", - "To run, you need to [create an account](https://simulation.cloud/) and add credits. The number of credits that each simulation takes depends on the simulation computation time.\n", - "\n", - "![cloud_model](https://i.imgur.com/5VTCPLR.png)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "2", - "metadata": {}, - "outputs": [], - "source": [ - "import gplugins as sim\n", - "import gplugins.tidy3d as gt\n", - "\n", - "from ubcpdk import PDK, cells\n", - "from ubcpdk.config import PATH\n", - "\n", - "PDK.activate()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "3", - "metadata": {}, - "outputs": [], - "source": [ - "c = cells.ebeam_y_1550()\n", - "c.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "4", - "metadata": {}, - "outputs": [], - "source": [ - "sp = gt.write_sparameters(c, filepath=PATH.sparameters / \"ebeam_y_1550_20634f71.npz\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "5", - "metadata": {}, - "outputs": [], - "source": [ - "sim.plot.plot_sparameters(sp)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "6", - "metadata": {}, - "outputs": [], - "source": [ - "sim.plot.plot_loss1x2(sp)" - ] - }, - { - "cell_type": "markdown", - "id": "7", - "metadata": {}, - "source": [ - "## Circuit simulation\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "8", - "metadata": {}, - "outputs": [], - "source": [ - "mzi10 = cells.mzi_1x1(splitter=c, delta_length=10)\n", - "mzi10.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "9", - "metadata": {}, - "outputs": [], - "source": [ - "import gplugins.sax as gsax\n", - "import jax.numpy as jnp\n", - "import matplotlib.pyplot as plt\n", - "import numpy as np\n", - "import sax" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "10", - "metadata": {}, - "outputs": [], - "source": [ - "def straight(wl=1.5, length=10.0, neff=2.4) -> sax.SDict:\n", - " return sax.reciprocal({(\"o1\", \"o2\"): jnp.exp(2j * jnp.pi * neff * length / wl)})\n", - "\n", - "\n", - "def bend_euler(wl=1.5, length=20.0):\n", - " \"\"\"Assumes a reduced transmission for the euler bend compared to a straight\"\"\"\n", - " return {k: 0.99 * v for k, v in straight(wl=wl, length=length).items()}" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "11", - "metadata": {}, - "outputs": [], - "source": [ - "ebeam_y_1550 = gsax.read.model_from_npz(sp)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "12", - "metadata": {}, - "outputs": [], - "source": [ - "netlist = mzi10.get_netlist()\n", - "circuit, _ = sax.circuit(\n", - " netlist=netlist,\n", - " models={\n", - " \"bend_euler\": bend_euler,\n", - " \"ebeam_y_1550\": ebeam_y_1550,\n", - " \"straight\": straight,\n", - " },\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "13", - "metadata": {}, - "outputs": [], - "source": [ - "wl = np.linspace(1.5, 1.6)\n", - "S = circuit(wl=wl)\n", - "plt.figure(figsize=(14, 4))\n", - "plt.title(\"MZI\")\n", - "plt.plot(1e3 * wl, 10 * np.log10(jnp.abs(S[\"o1\", \"o2\"]) ** 2))\n", - "plt.xlabel(\"λ [nm]\")\n", - "plt.ylabel(\"T\")\n", - "plt.grid(True)\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "14", - "metadata": {}, - "outputs": [], - "source": [ - "mzi20 = cells.mzi_1x1(splitter=c, delta_length=20)\n", - "mzi20.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "15", - "metadata": {}, - "outputs": [], - "source": [ - "netlist = mzi20.get_netlist()\n", - "circuit, _ = sax.circuit(\n", - " netlist=netlist,\n", - " models={\n", - " \"bend_euler\": bend_euler,\n", - " \"ebeam_y_1550\": ebeam_y_1550,\n", - " \"straight\": straight,\n", - " },\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "16", - "metadata": {}, - "outputs": [], - "source": [ - "wl = np.linspace(1.5, 1.6)\n", - "S = circuit(wl=wl)\n", - "plt.figure(figsize=(14, 4))\n", - "plt.title(\"MZI\")\n", - "plt.plot(1e3 * wl, 10 * np.log10(jnp.abs(S[\"o1\", \"o2\"]) ** 2))\n", - "plt.xlabel(\"λ [nm]\")\n", - "plt.ylabel(\"T\")\n", - "plt.grid(True)\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "17", - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "18", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "jupytext": { - "custom_cell_magics": "kql" - }, - "kernelspec": { - "display_name": "base", - "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.12.9" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/docs/notebooks/14_sax_tidy3d.ipynb b/docs/notebooks/14_sax_tidy3d.ipynb deleted file mode 100644 index 29aa46bd..00000000 --- a/docs/notebooks/14_sax_tidy3d.ipynb +++ /dev/null @@ -1,862 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "0", - "metadata": {}, - "source": [ - "# SAX circuit simulator\n", - "\n", - "[SAX](https://flaport.github.io/sax/) is a circuit solver written in JAX, writing your component models in SAX enables you not only to get the function values but the gradients, this is useful for circuit optimization.\n", - "\n", - "This tutorial has been adapted from the SAX Quick Start.\n", - "\n", - "You can install sax with pip (read the SAX install instructions [here](https://github.com/flaport/sax#installation))\n", - "\n", - "```\n", - "pip install 'gplugins[sax]'\n", - "```" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "1", - "metadata": {}, - "outputs": [], - "source": [ - "from functools import partial\n", - "from pprint import pprint\n", - "\n", - "import gdsfactory as gf\n", - "import gplugins.sax as gs\n", - "import gplugins.tidy3d as gt\n", - "import jax.numpy as jnp\n", - "import matplotlib.pyplot as plt\n", - "import numpy as np\n", - "import sax\n", - "\n", - "# Activate the generic PDK for gdsfactory components\n", - "gf.gpdk.PDK.activate()" - ] - }, - { - "cell_type": "markdown", - "id": "2", - "metadata": {}, - "source": [ - "## Scatter *dictionaries*\n", - "\n", - "The core datastructure for specifying scatter parameters in SAX is a dictionary... more specifically a dictionary which maps a port combination (2-tuple) to a scatter parameter (or an array of scatter parameters when considering multiple wavelengths for example). Such a specific dictionary mapping is called ann `SDict` in SAX (`SDict ≈ Dict[Tuple[str,str], float]`).\n", - "\n", - "Dictionaries are in fact much better suited for characterizing S-parameters than, say, (jax-)numpy arrays due to the inherent sparse nature of scatter parameters. Moreover, dictionaries allow for string indexing, which makes them much more pleasant to use in this context.\n", - "\n", - "```\n", - "o2 o3\n", - " \\ /\n", - " ========\n", - " / \\\n", - "o1 o4\n", - "```" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "3", - "metadata": {}, - "outputs": [], - "source": [ - "nm = 1e-3\n", - "coupling = 0.5\n", - "kappa = coupling**0.5\n", - "tau = (1 - coupling) ** 0.5\n", - "coupler_dict = {\n", - " (\"o1\", \"o4\"): tau,\n", - " (\"o4\", \"o1\"): tau,\n", - " (\"o1\", \"o3\"): 1j * kappa,\n", - " (\"o3\", \"o1\"): 1j * kappa,\n", - " (\"o2\", \"o4\"): 1j * kappa,\n", - " (\"o4\", \"o2\"): 1j * kappa,\n", - " (\"o2\", \"o3\"): tau,\n", - " (\"o3\", \"o2\"): tau,\n", - "}\n", - "coupler_dict" - ] - }, - { - "cell_type": "markdown", - "id": "4", - "metadata": {}, - "source": [ - " it can still be tedious to specify every port in the circuit manually. SAX therefore offers the `reciprocal` function, which auto-fills the reverse connection if the forward connection exist. For example:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "5", - "metadata": {}, - "outputs": [], - "source": [ - "coupler_dict = sax.reciprocal(\n", - " {\n", - " (\"o1\", \"o4\"): tau,\n", - " (\"o1\", \"o3\"): 1j * kappa,\n", - " (\"o2\", \"o4\"): 1j * kappa,\n", - " (\"o2\", \"o3\"): tau,\n", - " }\n", - ")\n", - "\n", - "coupler_dict" - ] - }, - { - "cell_type": "markdown", - "id": "6", - "metadata": { - "lines_to_next_cell": 2 - }, - "source": [ - "## Parametrized Models\n", - "\n", - "Constructing such an `SDict` is easy, however, usually we're more interested in having parametrized models for our components. To parametrize the coupler `SDict`, just wrap it in a function to obtain a SAX `Model`, which is a keyword-only function mapping to an `SDict`:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "7", - "metadata": {}, - "outputs": [], - "source": [ - "def coupler(coupling=0.5) -> sax.SDict:\n", - " kappa = coupling**0.5\n", - " tau = (1 - coupling) ** 0.5\n", - " return sax.reciprocal(\n", - " {\n", - " (\"o1\", \"o4\"): tau,\n", - " (\"o1\", \"o3\"): 1j * kappa,\n", - " (\"o2\", \"o4\"): 1j * kappa,\n", - " (\"o2\", \"o3\"): tau,\n", - " }\n", - " )\n", - "\n", - "\n", - "coupler(coupling=0.3)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "8", - "metadata": {}, - "outputs": [], - "source": [ - "def waveguide(wl=1.55, wl0=1.55, neff=2.34, ng=3.4, length=10.0, loss=0.0) -> sax.SDict:\n", - " dwl = wl - wl0\n", - " dneff_dwl = (ng - neff) / wl0\n", - " neff = neff - dwl * dneff_dwl\n", - " phase = 2 * jnp.pi * neff * length / wl\n", - " transmission = 10 ** (-loss * length / 20) * jnp.exp(1j * phase)\n", - " return sax.reciprocal(\n", - " {\n", - " (\"o1\", \"o2\"): transmission,\n", - " }\n", - " )" - ] - }, - { - "cell_type": "markdown", - "id": "9", - "metadata": {}, - "source": [ - "### Waveguide model\n", - "\n", - "You can create a dispersive waveguide model in SAX." - ] - }, - { - "cell_type": "markdown", - "id": "10", - "metadata": {}, - "source": [ - "Lets compute the effective index `neff` and group index `ng` for a 1550nm 500nm straight waveguide" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "11", - "metadata": { - "lines_to_next_cell": 2 - }, - "outputs": [], - "source": [ - "strip = gt.modes.Waveguide(\n", - " wavelength=1.55,\n", - " core_width=0.5,\n", - " core_thickness=0.22,\n", - " slab_thickness=0.0,\n", - " core_material=\"si\",\n", - " clad_material=\"sio2\",\n", - " group_index_step=10 * nm,\n", - ")\n", - "strip.plot_field(field_name=\"Ex\", mode_index=0) # TE" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "12", - "metadata": {}, - "outputs": [], - "source": [ - "neff = strip.n_eff[0]\n", - "print(neff)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "13", - "metadata": {}, - "outputs": [], - "source": [ - "ng = strip.n_group[0]\n", - "print(ng)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "14", - "metadata": {}, - "outputs": [], - "source": [ - "straight_sc = partial(gs.models.straight, neff=float(neff), ng=ng)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "15", - "metadata": {}, - "outputs": [], - "source": [ - "gs.plot_model(straight_sc)\n", - "plt.ylim(-1, 1)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "16", - "metadata": {}, - "outputs": [], - "source": [ - "gs.plot_model(straight_sc, phase=True)" - ] - }, - { - "cell_type": "markdown", - "id": "17", - "metadata": {}, - "source": [ - "### Coupler model\n", - "\n", - "Lets define the model for an evanescent coupler" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "18", - "metadata": {}, - "outputs": [], - "source": [ - "c = gf.components.coupler(length=10, gap=0.2)\n", - "c.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "19", - "metadata": { - "lines_to_next_cell": 2 - }, - "outputs": [], - "source": [ - "nm = 1e-3\n", - "cp = gt.modes.WaveguideCoupler(\n", - " wavelength=1.55,\n", - " core_width=(500 * nm, 500 * nm),\n", - " gap=200 * nm,\n", - " core_thickness=220 * nm,\n", - " slab_thickness=0 * nm,\n", - " core_material=\"si\",\n", - " clad_material=\"sio2\",\n", - ")\n", - "\n", - "cp.plot_field(field_name=\"Ex\", mode_index=0) # even mode\n", - "cp.plot_field(field_name=\"Ex\", mode_index=1) # odd mode" - ] - }, - { - "cell_type": "markdown", - "id": "20", - "metadata": {}, - "source": [ - "For a 200nm gap the effective index difference `dn` is `0.026`, which means that there is 100% power coupling over 29.4" - ] - }, - { - "cell_type": "markdown", - "id": "21", - "metadata": {}, - "source": [ - "If we ignore the coupling from the bend `coupling0 = 0` we know that for a 3dB coupling we need half of the `lc` length, which is the length needed to coupler `100%` of power." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "22", - "metadata": {}, - "outputs": [], - "source": [ - "coupler_sc = partial(gs.models.coupler, dn=0.026, length=29.4 / 2, coupling0=0)\n", - "gs.plot_model(coupler_sc)" - ] - }, - { - "cell_type": "markdown", - "id": "23", - "metadata": {}, - "source": [ - "## SAX gdsfactory Compatibility\n", - "> From Layout to Circuit Model\n", - "\n", - "If you define your SAX S parameter models for your components, you can directly simulate your circuits from gdsfactory" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "24", - "metadata": {}, - "outputs": [], - "source": [ - "mzi = gf.components.mzi(delta_length=10)\n", - "mzi.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "25", - "metadata": { - "lines_to_next_cell": 2 - }, - "outputs": [], - "source": [ - "netlist = mzi.get_netlist()\n", - "pprint(netlist[\"nets\"])" - ] - }, - { - "cell_type": "markdown", - "id": "26", - "metadata": { - "lines_to_next_cell": 2 - }, - "source": [ - "The netlist has three different components:\n", - "\n", - "1. straight\n", - "2. mmi1x2\n", - "3. bend_euler\n", - "\n", - "You need models for each subcomponents to simulate the Component." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "27", - "metadata": {}, - "outputs": [], - "source": [ - "def straight(wl=1.5, length=10.0, neff=2.4) -> sax.SDict:\n", - " return sax.reciprocal({(\"o1\", \"o2\"): jnp.exp(2j * jnp.pi * neff * length / wl)})\n", - "\n", - "\n", - "def mmi1x2():\n", - " \"\"\"Assumes a perfect 1x2 splitter\"\"\"\n", - " return sax.reciprocal(\n", - " {\n", - " (\"o1\", \"o2\"): 0.5**0.5,\n", - " (\"o1\", \"o3\"): 0.5**0.5,\n", - " }\n", - " )\n", - "\n", - "\n", - "def bend_euler(wl=1.5, length=20.0):\n", - " \"\"\" \"Let's assume a reduced transmission for the euler bend compared to a straight\"\"\"\n", - " return {k: 0.99 * v for k, v in straight(wl=wl, length=length).items()}\n", - "\n", - "\n", - "models = {\n", - " \"bend_euler\": bend_euler,\n", - " \"mmi1x2\": mmi1x2,\n", - " \"straight\": straight,\n", - "}" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "28", - "metadata": {}, - "outputs": [], - "source": [ - "circuit, _ = sax.circuit(netlist=netlist, models=models)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "29", - "metadata": {}, - "outputs": [], - "source": [ - "circuit, _ = sax.circuit(netlist=netlist, models=models)\n", - "wl = np.linspace(1.5, 1.6)\n", - "S = circuit(wl=wl)\n", - "\n", - "plt.figure(figsize=(14, 4))\n", - "plt.title(\"MZI\")\n", - "plt.plot(1e3 * wl, jnp.abs(S[\"o1\", \"o2\"]) ** 2)\n", - "plt.xlabel(\"λ [nm]\")\n", - "plt.ylabel(\"T\")\n", - "plt.grid(True)\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "30", - "metadata": {}, - "outputs": [], - "source": [ - "mzi = gf.components.mzi(delta_length=20) # Double the length, reduces FSR by 1/2\n", - "mzi.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "31", - "metadata": {}, - "outputs": [], - "source": [ - "circuit, _ = sax.circuit(netlist=mzi.get_netlist(), models=models)\n", - "\n", - "wl = np.linspace(1.5, 1.6, 256)\n", - "S = circuit(wl=wl)\n", - "\n", - "plt.figure(figsize=(14, 4))\n", - "plt.title(\"MZI\")\n", - "plt.plot(1e3 * wl, jnp.abs(S[\"o1\", \"o2\"]) ** 2)\n", - "plt.xlabel(\"λ [nm]\")\n", - "plt.ylabel(\"T\")\n", - "plt.grid(True)\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "32", - "metadata": {}, - "source": [ - "## Heater model\n", - "\n", - "You can make a phase shifter model that depends on the applied volage. For that you need first to figure out what's the model associated to your phase shifter, and what is the parameter that you need to tune." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "33", - "metadata": {}, - "outputs": [], - "source": [ - "delta_length = 10\n", - "mzi_component = gf.components.mzi_phase_shifter(delta_length=delta_length)\n", - "mzi_component.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "34", - "metadata": {}, - "outputs": [], - "source": [ - "def straight(wl=1.5, length=10.0, neff=2.4) -> sax.SDict:\n", - " return sax.reciprocal({(\"o1\", \"o2\"): jnp.exp(2j * jnp.pi * neff * length / wl)})\n", - "\n", - "\n", - "def mmi1x2() -> sax.SDict:\n", - " \"\"\"Returns a perfect 1x2 splitter.\"\"\"\n", - " return sax.reciprocal(\n", - " {\n", - " (\"o1\", \"o2\"): 0.5**0.5,\n", - " (\"o1\", \"o3\"): 0.5**0.5,\n", - " }\n", - " )\n", - "\n", - "\n", - "def bend_euler(wl=1.5, length=20.0) -> sax.SDict:\n", - " \"\"\"Returns bend Sparameters with reduced transmission compared to a straight.\"\"\"\n", - " return {k: 0.99 * v for k, v in straight(wl=wl, length=length).items()}\n", - "\n", - "\n", - "def phase_shifter_heater(\n", - " wl: float = 1.55,\n", - " neff: float = 2.34,\n", - " voltage: float = 0,\n", - " length: float = 10,\n", - " loss: float = 0.0,\n", - ") -> sax.SDict:\n", - " \"\"\"Returns simple phase shifter model.\n", - "\n", - " Args:\n", - " wl: wavelength.\n", - " neff: effective index.\n", - " voltage: voltage.\n", - " length: length.\n", - " loss: loss in dB/cm.\n", - " \"\"\"\n", - " deltaphi = voltage * jnp.pi\n", - " phase = 2 * jnp.pi * neff * length / wl + deltaphi\n", - " amplitude = jnp.asarray(10 ** (-loss * length / 20), dtype=complex)\n", - " transmission = amplitude * jnp.exp(1j * phase)\n", - " return sax.reciprocal(\n", - " {\n", - " (\"o1\", \"o2\"): transmission,\n", - " (\"l_e1\", \"r_e1\"): 0.0,\n", - " (\"l_e2\", \"r_e2\"): 0.0,\n", - " (\"l_e3\", \"r_e3\"): 0.0,\n", - " (\"l_e4\", \"r_e4\"): 0.0,\n", - " }\n", - " )\n", - "\n", - "\n", - "models = {\n", - " \"bend_euler\": bend_euler,\n", - " \"mmi1x2\": mmi1x2,\n", - " \"straight\": straight,\n", - " \"straight_heater_metal_undercut\": phase_shifter_heater,\n", - "}" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "35", - "metadata": {}, - "outputs": [], - "source": [ - "mzi_component = gf.components.mzi_phase_shifter(delta_length=delta_length)\n", - "netlist = mzi_component.get_netlist()\n", - "mzi_circuit, _ = sax.circuit(netlist=netlist, models=models)\n", - "S = mzi_circuit(wl=1.55)\n", - "S" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "36", - "metadata": {}, - "outputs": [], - "source": [ - "wl = np.linspace(1.5, 1.6, 256)\n", - "S = mzi_circuit(wl=wl)\n", - "\n", - "plt.figure(figsize=(14, 4))\n", - "plt.title(\"MZI\")\n", - "plt.plot(1e3 * wl, jnp.abs(S[\"o1\", \"o2\"]) ** 2)\n", - "plt.xlabel(\"λ [nm]\")\n", - "plt.ylabel(\"T\")\n", - "plt.grid(True)\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "37", - "metadata": {}, - "source": [ - "Now you can tune the phase shift applied to one of the arms.\n", - "\n", - "How do you find out what's the name of the netlist component that you want to tune?\n", - "\n", - "You can backannotate the netlist and read the labels on the backannotated netlist or you can plot the netlist" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "38", - "metadata": {}, - "outputs": [], - "source": [ - "mzi_component.plot_netlist()" - ] - }, - { - "cell_type": "markdown", - "id": "39", - "metadata": {}, - "source": [ - "As you can see the top phase shifter instance `sxt` is hard to see on the netlist.\n", - "You can also reconstruct the component using the netlist and look at the labels in klayout." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "40", - "metadata": {}, - "outputs": [], - "source": [ - "mzi_yaml = mzi_component.get_netlist()\n", - "mzi_component2 = gf.read.from_yaml(mzi_yaml)\n", - "fig = mzi_component2.plot()" - ] - }, - { - "cell_type": "markdown", - "id": "41", - "metadata": {}, - "source": [ - "The best way to get a deterministic name of the `instance` is naming the reference on your Pcell." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "42", - "metadata": {}, - "outputs": [], - "source": [ - "voltages = np.linspace(-1, 1, num=5)\n", - "voltages = [-0.5, 0, 0.5]\n", - "\n", - "for voltage in voltages:\n", - " S = mzi_circuit(\n", - " wl=wl,\n", - " sxt={\"voltage\": voltage},\n", - " )\n", - " plt.plot(wl * 1e3, abs(S[\"o1\", \"o2\"]) ** 2, label=f\"{voltage}V\")\n", - " plt.xlabel(\"λ [nm]\")\n", - " plt.ylabel(\"T\")\n", - " plt.ylim(-0.05, 1.05)\n", - " plt.grid(True)\n", - "\n", - "plt.title(\"MZI vs voltage\")\n", - "plt.legend()" - ] - }, - { - "cell_type": "markdown", - "id": "43", - "metadata": { - "lines_to_next_cell": 2 - }, - "source": [ - "## Variable splitter\n", - "\n", - "You can build a variable splitter by adding a delta length between two 50% power splitters\n", - "\n", - "![](https://i.imgur.com/xoyIGLn.png)\n", - "\n", - "For example adding a 60um delta length you can build a 90% power splitter" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "44", - "metadata": {}, - "outputs": [], - "source": [ - "@gf.cell\n", - "def variable_splitter(delta_length: float, splitter=gf.c.mmi2x2):\n", - " return gf.c.mzi2x2_2x2(splitter=splitter, delta_length=delta_length)\n", - "\n", - "\n", - "nm = 1e-3\n", - "c = variable_splitter(delta_length=60 * nm)\n", - "c.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "45", - "metadata": {}, - "outputs": [], - "source": [ - "models = {\n", - " \"bend_euler\": gs.models.bend,\n", - " \"mmi2x2\": gs.models.mmi2x2,\n", - " \"straight\": gs.models.straight,\n", - "}\n", - "\n", - "netlist = c.get_netlist()\n", - "circuit, _ = sax.circuit(netlist=netlist, models=models)\n", - "wl = np.linspace(1.5, 1.6)\n", - "S = circuit(wl=wl)\n", - "\n", - "plt.figure(figsize=(14, 4))\n", - "plt.title(\"MZI\")\n", - "plt.plot(1e3 * wl, jnp.abs(S[\"o1\", \"o3\"]) ** 2, label=\"T\")\n", - "plt.xlabel(\"λ [nm]\")\n", - "plt.ylabel(\"T\")\n", - "plt.grid(True)\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "46", - "metadata": {}, - "source": [ - "## Coupler sim\n", - "\n", - "Lets compare one coupler versus two coupler" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "47", - "metadata": {}, - "outputs": [], - "source": [ - "c = gf.components.coupler(length=29.4, gap=0.2)\n", - "c.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "48", - "metadata": { - "lines_to_next_cell": 2 - }, - "outputs": [], - "source": [ - "coupler50 = partial(gs.models.coupler, dn=0.026, length=29.4 / 2, coupling0=0)\n", - "gs.plot_model(coupler50)" - ] - }, - { - "cell_type": "markdown", - "id": "49", - "metadata": { - "lines_to_next_cell": 2 - }, - "source": [ - "As you can see the 50% coupling is only at one wavelength (1550nm)\n", - "\n", - "You can chain two couplers to increase the wavelength range for 50% operation." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "50", - "metadata": {}, - "outputs": [], - "source": [ - "@gf.cell\n", - "def broadband_coupler(delta_length=0, splitter=gf.c.coupler):\n", - " return gf.c.mzi2x2_2x2(\n", - " splitter=splitter, combiner=splitter, delta_length=delta_length\n", - " )\n", - "\n", - "\n", - "c = broadband_coupler(delta_length=120 * nm)\n", - "c.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "51", - "metadata": {}, - "outputs": [], - "source": [ - "c = broadband_coupler(delta_length=164 * nm)\n", - "models = {\n", - " \"bend_euler\": gs.models.bend,\n", - " \"coupler\": coupler50,\n", - " \"straight\": gs.models.straight,\n", - "}\n", - "\n", - "netlist = c.get_netlist()\n", - "circuit, _ = sax.circuit(netlist=netlist, models=models)\n", - "wl = np.linspace(1.5, 1.6)\n", - "S = circuit(wl=wl)\n", - "\n", - "plt.figure(figsize=(14, 4))\n", - "plt.title(\"MZI\")\n", - "# plt.plot(1e3 * wl, jnp.abs(S[\"o1\", \"o3\"]) ** 2, label='T')\n", - "plt.plot(1e3 * wl, 20 * np.log10(jnp.abs(S[\"o1\", \"o3\"])), label=\"T\")\n", - "plt.plot(1e3 * wl, 20 * np.log10(jnp.abs(S[\"o1\", \"o4\"])), label=\"K\")\n", - "plt.xlabel(\"λ [nm]\")\n", - "plt.ylabel(\"T\")\n", - "plt.legend()\n", - "plt.grid(True)" - ] - }, - { - "cell_type": "markdown", - "id": "52", - "metadata": {}, - "source": [ - "As you can see two couplers have more broadband response" - ] - } - ], - "metadata": { - "jupytext": { - "custom_cell_magics": "kql" - }, - "kernelspec": { - "display_name": "base", - "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.12.9" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/docs/notebooks/31_data_analysis_mzi.ipynb b/docs/notebooks/31_data_analysis_mzi.ipynb deleted file mode 100644 index f212fe52..00000000 --- a/docs/notebooks/31_data_analysis_mzi.ipynb +++ /dev/null @@ -1,288 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "0", - "metadata": {}, - "source": [ - "# Data analysis MZI\n", - "\n", - "We analyze the following MZI samples from the edx course\n", - "\n", - "MZI1:\n", - "dL_wg=0\n", - "\n", - "MZI2:\n", - "r=5\n", - "dL_path = (208.40000 - 148.15000) * 2\n", - "dL_wg = dL_path + 2*pi*r - 4*2*r\n", - "= 111.915\n", - "\n", - "MZI3:\n", - "r=5\n", - "dL_path = (259.55000-148.15000) * 2\n", - "dL_wg = dL_path + 2*pi*r - 4*2*r ; dL_wg\n", - "= 214.215\n", - "\n", - "MZI4:\n", - "r1 = 435.90000-427.60000; r1\n", - "r2 = 10\n", - "dL_path = (259.55000-148.15000) * 2\n", - "dL_wg = dL_path + pi*(r1+r2) - 4*(r1+r2) ; dL_wg\n", - "= 207.08945\n", - "\n", - "MZI5:\n", - "r1 = 556.35000-547.60000; r1\n", - "r2 = 10\n", - "dL_path = (259.55000-148.15000) * 2\n", - "dL_wg = dL_path + pi*(r1+r2) - 4*(r1+r2) ; dL_wg\n", - "= 206.703125\n", - "\n", - "MZI6:\n", - "r=4\n", - "dL_path = (259.55000-148.15000) * 2\n", - "dL_wg = dL_path + 2*pi*r - 4*2*r ; dL_wg\n", - "= 215.932\n", - "\n", - "MZI8:\n", - "r=3\n", - "dL_path = (259.55000-148.15000) * 2\n", - "dL_wg = dL_path + 2*pi*r - 4*2*r ; dL_wg\n", - "= 217.649\n", - "\n", - "MZI17:\n", - "r=2\n", - "dL_path = (259.55000-148.15000) * 2\n", - "dL_wg = dL_path + 2*pi*r - 4*2*r ; dL_wg\n", - "= 219.366" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "1", - "metadata": {}, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n", - "import numpy as np\n", - "\n", - "import ubcpdk\n", - "from ubcpdk.simulation.circuits.mzi_spectrum import mzi_spectrum" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "2", - "metadata": {}, - "outputs": [], - "source": [ - "w, p = ubcpdk.data.read_mat(ubcpdk.PATH.mzi1, port=0)\n", - "plt.plot(w, p)" - ] - }, - { - "cell_type": "markdown", - "id": "3", - "metadata": {}, - "source": [ - "For some reason this MZI has an interference pattern. This is strange because the lengths of both arms are the same. This means that there was a strong height variation on the chip." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "4", - "metadata": {}, - "outputs": [], - "source": [ - "w, p = ubcpdk.data.read_mat(ubcpdk.PATH.mzi3, port=0)\n", - "plt.plot(w, p)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "5", - "metadata": {}, - "outputs": [], - "source": [ - "wr = np.linspace(1520, 1580, 1200) * 1e-3\n", - "pr = mzi_spectrum(L1_um=0, L2_um=214.215, wavelength_um=wr)\n", - "plt.plot(wr * 1e3, 10 * np.log10(pr))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "6", - "metadata": {}, - "outputs": [], - "source": [ - "w, p = ubcpdk.data.read_mat(ubcpdk.PATH.mzi3, port=0)\n", - "pb = ubcpdk.data.remove_baseline(w, p)\n", - "plt.plot(w, pb)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "7", - "metadata": {}, - "outputs": [], - "source": [ - "plt.plot(w, pb, label=\"measurement\")\n", - "plt.plot(wr * 1e3, 10 * np.log10(pr), label=\"analytical\")\n", - "plt.legend()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "8", - "metadata": {}, - "outputs": [], - "source": [ - "ms.sweep_wavelength?" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "9", - "metadata": {}, - "outputs": [], - "source": [ - "from scipy.optimize import curve_fit\n", - "\n", - "L1_um = 40\n", - "L2_um = L1_um + 215.932\n", - "\n", - "\n", - "def mzi_logscale(wavelength_um, alpha, n1, n2, n3):\n", - " return 10 * np.log10(\n", - " mzi_spectrum(\n", - " L1_um=L1_um,\n", - " L2_um=L2_um,\n", - " wavelength_um=wavelength_um,\n", - " alpha=alpha,\n", - " n1=n1,\n", - " n2=n2,\n", - " n3=n3,\n", - " )\n", - " )\n", - "\n", - "\n", - "w, p = ubcpdk.data.read_mat(ubcpdk.PATH.mzi6, port=0)\n", - "wum = w * 1e-3\n", - "pb = ubcpdk.data.remove_baseline(w, p)\n", - "\n", - "p0 = [1e-3, 2.4, -1, 0]\n", - "plt.plot(w, pb, label=\"data\")\n", - "plt.plot(w, mzi_logscale(wum, *p0), label=\"initial condition\")\n", - "plt.legend()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "10", - "metadata": {}, - "outputs": [], - "source": [ - "params, params_covariance = curve_fit(mzi_logscale, wum, pb, p0=[1e-3, 2.4, -1, 0])" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "11", - "metadata": {}, - "outputs": [], - "source": [ - "params" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "12", - "metadata": {}, - "outputs": [], - "source": [ - "plt.plot(w, pb, label=\"data\")\n", - "plt.plot(w, mzi_logscale(wum, *params), label=\"fit\")\n", - "plt.legend()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "13", - "metadata": {}, - "outputs": [], - "source": [ - "L1_um = 40\n", - "L2_um = L1_um + 215.932\n", - "\n", - "\n", - "def mzi(wavelength_um, alpha, n1, n2, n3):\n", - " return mzi_spectrum(\n", - " L1_um=L1_um,\n", - " L2_um=L2_um,\n", - " wavelength_um=wavelength_um,\n", - " alpha=alpha,\n", - " n1=n1,\n", - " n2=n2,\n", - " n3=n3,\n", - " )\n", - "\n", - "\n", - "w, p = ubcpdk.data.read_mat(ubcpdk.PATH.mzi6, port=0)\n", - "wum = w * 1e-3\n", - "pb = ubcpdk.data.remove_baseline(w, p)\n", - "pb_linear = 10 ** (pb / 10)\n", - "\n", - "p0 = [1e-3, 2.4, -1, 0]\n", - "plt.plot(w, pb_linear, label=\"data\")\n", - "plt.plot(w, mzi(wum, *p0), label=\"initial condition\")\n", - "plt.legend()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "14", - "metadata": {}, - "outputs": [], - "source": [ - "params, params_covariance = curve_fit(mzi, wum, pb, p0=p0)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "15", - "metadata": {}, - "outputs": [], - "source": [ - "plt.plot(w, pb_linear, label=\"data\")\n", - "plt.plot(w, mzi(wum, *params), label=\"fit\")\n", - "plt.legend()" - ] - } - ], - "metadata": { - "jupytext": { - "custom_cell_magics": "kql" - }, - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/docs/notebooks/32_data_analysis_ring.ipynb b/docs/notebooks/32_data_analysis_ring.ipynb deleted file mode 100644 index 72350eed..00000000 --- a/docs/notebooks/32_data_analysis_ring.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "0", - "metadata": {}, - "source": [ - "# Data analysis ring\n", - "\n", - "We analyze the following ring samples from the edx course\n", - "\n", - "Double-bus ring resonators\n", - "symmetrically coupled\n", - "\n", - "TE:\n", - "R = [3]\n", - "g = [50, 100, 150]\n", - "\n", - "R = [10]\n", - "g = [50, 100, 150, 200]\n", - "\n", - "TM:\n", - "R = [30]\n", - "g = [150, 200, 250]" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "1", - "metadata": { - "attributes": { - "classes": [], - "id": "", - "n": "2" - } - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n", - "\n", - "import ubcpdk" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "2", - "metadata": { - "attributes": { - "classes": [], - "id": "", - "n": "3" - } - }, - "outputs": [], - "source": [ - "w, p = ubcpdk.data.read_mat(ubcpdk.PATH.ring_te_r3_g100, port=0)\n", - "plt.plot(w * 1e9, p)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/docs/notebooks/33_data_analysis_dbr.ipynb b/docs/notebooks/33_data_analysis_dbr.ipynb deleted file mode 100644 index d799a9f5..00000000 --- a/docs/notebooks/33_data_analysis_dbr.ipynb +++ /dev/null @@ -1,147 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "0", - "metadata": {}, - "source": [ - "# Data analysis DBR\n", - "\n", - "We analyze the following DBR samples from the edx course\n", - "\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "1", - "metadata": { - "attributes": { - "classes": [], - "id": "", - "n": "2" - } - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n", - "\n", - "import ubcpdk\n", - "from ubcpdk.data.dbr import dbrs" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "2", - "metadata": { - "attributes": { - "classes": [], - "id": "", - "n": "3" - } - }, - "outputs": [], - "source": [ - "w, p = ubcpdk.data.read_mat(dbrs[\"1_10\"], 1)\n", - "plt.plot(w * 1e9, p)\n", - "plt.xlim([1530, 1600])" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "3", - "metadata": {}, - "outputs": [], - "source": [ - "for key in dbrs.keys():\n", - " w, p = ubcpdk.data.read_mat(dbrs[key], 1)\n", - " # plt.figure()\n", - " # plt.title(key)\n", - " plt.plot(w * 1e9, p, label=key)\n", - " plt.xlim([1530, 1600])" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "4", - "metadata": {}, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n", - "import numpy as np\n", - "\n", - "from ubcpdk import data\n", - "from ubcpdk.data.dbr import dbrs\n", - "\n", - "r1_names = [f\"1_{i}\" for i in list(range(1, 12, 2))]\n", - "r1_dw = [5, 10, 20, 40, 60, 80]\n", - "s1_names = [f\"1_{i}\" for i in list(range(2, 12, 2))]\n", - "s1_dw = [200, 180, 160, 140, 120]\n", - "\n", - "r2_names = [f\"2_{i}\" for i in list(range(13, 24, 2))]\n", - "r2_dw = [100, 120, 140, 160, 180, 200]\n", - "s2_names = [f\"2_{i}\" for i in list(range(12, 25, 2))]\n", - "s2_dw = [100, 80, 60, 40, 20, 10, 5]\n", - "\n", - "r4_names = [f\"4_{i}\" for i in list(range(1, 25, 2))]\n", - "r4_dw = list(range(20, 32))\n", - "s4_names = [f\"4_{i}\" for i in list(range(2, 25, 2))]\n", - "s4_dw = list(range(31, 19, -1))\n", - "\n", - "\n", - "def find_banwidths(names, dw, title=None):\n", - " bw = np.zeros_like(names, dtype=float)\n", - " for i, key in enumerate(names):\n", - " w, p = data.read_mat(dbrs[key], port=1)\n", - " wc, pc = data.chop(w, p, ymin=-60)\n", - " pw = data.windowed_mean(pc)\n", - " bw[i] = data.find_bandwidth(wc, pw)\n", - "\n", - " plt.plot(dw, bw * 1e9, \".-\")\n", - " plt.xlabel(\"dw (nm)\")\n", - " plt.ylabel(\"bandwidth (nm)\")\n", - " if title:\n", - " plt.title(title)\n", - "\n", - "\n", - "bw = find_banwidths(r1_names, r1_dw, title=\"rectangular DBR\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "5", - "metadata": {}, - "outputs": [], - "source": [ - "bw = find_banwidths(r1_names, r1_dw, title=\"rectangular DBR\")\n", - "bw = find_banwidths(r2_names, r2_dw, title=\"rectangular DBR\")\n", - "bw = find_banwidths(r4_names, r4_dw, title=\"rectangular DBR\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "6", - "metadata": {}, - "outputs": [], - "source": [ - "bw = find_banwidths(s1_names, s1_dw, title=\"sinusoidal DBR\")\n", - "bw = find_banwidths(s2_names, s2_dw, title=\"sinusoidal DBR\")\n", - "bw = find_banwidths(s4_names, s4_dw, title=\"sinusoidal DBR\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/docs/notebooks/Makefile b/docs/notebooks/Makefile deleted file mode 100644 index 273734ff..00000000 --- a/docs/notebooks/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -format: - jupytext --pipe black *.ipynb - -sync: - jupytext --sync *.ipynb - -convert: - jupytext *.ipynb --to *.py - -clean: - nbstripout --drop-empty-cells *.ipynb - nbstripout --drop-empty-cells **/*.ipynb diff --git a/docs/notebooks/meep_ybranch.ipynb b/docs/notebooks/meep_ybranch.ipynb deleted file mode 100644 index 67ce5039..00000000 --- a/docs/notebooks/meep_ybranch.ipynb +++ /dev/null @@ -1,143 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "0", - "metadata": {}, - "source": [ - "# FDTD on GDSFactory+ Cloud\n", - "\n", - "[MEEP](https://meep.readthedocs.io/) is an open-source FDTD electromagnetic simulator. This notebook demonstrates using the `gsim.meep` API to run an S-parameter simulation on a photonic Y-branch.\n", - "\n", - "**Requirements:**\n", - "\n", - "- UBC PDK: `uv pip install ubcpdk`\n", - "- GDSFactory Simulation SDK: `uv pip install gsim`\n", - "- [GDSFactory+](https://gdsfactory.com) account for cloud simulation" - ] - }, - { - "cell_type": "markdown", - "id": "1", - "metadata": {}, - "source": [ - "### Load a pcell from UBC PDK" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "2", - "metadata": {}, - "outputs": [], - "source": [ - "from ubcpdk import PDK, cells\n", - "\n", - "PDK.activate()\n", - "\n", - "c = cells.ebeam_y_1550()\n", - "c" - ] - }, - { - "cell_type": "markdown", - "id": "3", - "metadata": {}, - "source": [ - "### Configure and run simulation" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "4", - "metadata": {}, - "outputs": [], - "source": [ - "from gsim import meep\n", - "\n", - "sim = meep.Simulation()\n", - "\n", - "sim.geometry(component=c, z_crop=\"auto\")\n", - "sim.materials = {\"si\": 3.47, \"SiO2\": 1.44}\n", - "sim.source(port=\"o1\", wavelength=1.55, wavelength_span=0.01, num_freqs=11)\n", - "sim.monitors = [\"o1\", \"o2\", \"o3\"]\n", - "sim.domain(pml=1.0, margin=0.5)\n", - "sim.solver(resolution=20, simplify_tol=0.01, save_animation=True, verbose_interval=5.0)\n", - "sim.solver.stop_when_energy_decayed()\n", - "\n", - "print(sim.validate_config())" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "5", - "metadata": {}, - "outputs": [], - "source": [ - "sim.plot_2d(slices=\"xyz\")" - ] - }, - { - "cell_type": "markdown", - "id": "6", - "metadata": {}, - "source": [ - "### Run simulation on cloud" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "7", - "metadata": {}, - "outputs": [], - "source": [ - "# Run on GDSFactory+ cloud\n", - "result = sim.run()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "8", - "metadata": {}, - "outputs": [], - "source": [ - "result.plot(db=True)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "9", - "metadata": {}, - "outputs": [], - "source": [ - "result.show_animation()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "ubc", - "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.12.10" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/docs/notebooks/sdl_demo.pic.yml b/docs/notebooks/sdl_demo.pic.yml deleted file mode 100644 index 2daba31b..00000000 --- a/docs/notebooks/sdl_demo.pic.yml +++ /dev/null @@ -1,44 +0,0 @@ -schema_version: 1 -schema: null -instances: - mmi1: - component: mmi1x2 - settings: {gap_mmi: 1.0} - mmi2: - component: mmi2x2 - settings: {gap_mmi: 0.7} - s1: - component: straight - settings: {length: 20, npoints: 2, layer: null, width: null, add_pins: true, cross_section: xs_sc, - add_bbox: null, post_process: null} - s2: - component: straight - settings: {length: 40, npoints: 2, layer: null, width: null, add_pins: true, cross_section: xs_sc, - add_bbox: null, post_process: null} -placements: - mmi1: {x: null, y: null, port: null, rotation: 0.0, dx: -22.832156230736544, dy: -0.9358105716724547, - mirror: null} - mmi2: {x: null, y: null, port: null, rotation: 0.0, dx: 130.94675850281985, dy: -0.39903161225107286, - mirror: null} - s1: {x: null, y: null, port: null, rotation: 0.0, dx: 55.26042176045793, dy: 32.1189871057287, - mirror: null} - s2: {x: null, y: null, port: null, rotation: 0.0, dx: 44.25454877902524, dy: -45.88086750118762, - mirror: null} -routes: - r0: - routing_strategy: route_bundle - settings: {cross_section: xs_sc, separation: 5.0} - links: {'mmi1,o2': 's1,o1'} - r1: - routing_strategy: route_bundle - settings: {cross_section: xs_sc, separation: 5.0} - links: {'mmi2,o2': 's1,o2'} - r2: - routing_strategy: route_bundle - settings: {cross_section: xs_sc, separation: 5.0} - links: {'mmi1,o3': 's2,o1'} - r3: - routing_strategy: route_bundle - settings: {cross_section: xs_sc, separation: 5.0} - links: {'mmi2,o1': 's2,o2'} -ports: {o1: 'mmi1,o1', o2: 'mmi2,o3', o3: 'mmi2,o4'} diff --git a/docs/notebooks/test.schem.yml b/docs/notebooks/test.schem.yml deleted file mode 100644 index f0c3b0fa..00000000 --- a/docs/notebooks/test.schem.yml +++ /dev/null @@ -1,32 +0,0 @@ -schema: null -instances: - mmi1: - component: mmi1x2 - settings: {gap_mmi: 1.0} - mmi2: - component: mmi2x2 - settings: {gap_mmi: 0.7} - s1: - component: straight - settings: {length: 20, npoints: 2, layer: null, width: null, add_pins: true, cross_section: xs_sc, - add_bbox: null, post_process: null} - s2: - component: straight - settings: {length: 40, npoints: 2, layer: null, width: null, add_pins: true, cross_section: xs_sc, - add_bbox: null, post_process: null} -schematic_placements: - mmi1: {x: null, y: null, port: null, rotation: 0.0, dx: -22.832156230736544, dy: -0.9358105716724547, - mirror: null} - mmi2: {x: null, y: null, port: null, rotation: 0.0, dx: 130.94675850281985, dy: -0.39903161225107286, - mirror: null} - s1: {x: null, y: null, port: null, rotation: 0.0, dx: 55.26042176045793, dy: 32.1189871057287, - mirror: null} - s2: {x: null, y: null, port: null, rotation: 0.0, dx: 44.25454877902524, dy: -45.88086750118762, - mirror: null} -nets: -- ['mmi1,o2', 's1,o1'] -- ['mmi2,o2', 's1,o2'] -- ['mmi1,o3', 's2,o1'] -- ['mmi2,o1', 's2,o2'] -ports: {o1: 'mmi1,o1', o2: 'mmi2,o3', o3: 'mmi2,o4'} -schema_version: 1 diff --git a/docs/simulations.md b/docs/simulations.md deleted file mode 100644 index 4adc0c2a..00000000 --- a/docs/simulations.md +++ /dev/null @@ -1,4 +0,0 @@ -# Simulations - -```{tableofcontents} -``` diff --git a/import_pdk.py b/import_pdk.py deleted file mode 100644 index 8b2a1be8..00000000 --- a/import_pdk.py +++ /dev/null @@ -1,149 +0,0 @@ -"""From a list of GDS files, generate a script to import the cells from a pdk.""" - -import pathlib - -from gdsfactory import logger -from gdsfactory.typings import PathType -from gdsfactory.write_cells import clean_name - -from ubcpdk.config import PATH - -script_prefix = """ -from pathlib import Path -from functools import partial -import gdsfactory as gf - -from ubcpdk.config import PATH -from ubcpdk.import_gds import import_gds - -""" - -prefix_ant = """ -gdsdir = PATH.gds_ant -""" - -prefix_ebeam = """ -gdsdir = PATH.gds_ebeam -""" - -prefix_beta = """ -gdsdir = PATH.gds_beta -""" -prefix_dream = """ -gdsdir = PATH.gds_dream -""" -prefix_single = """ -gdsdir = PATH.gds_single -""" - -script_prefix_ant = script_prefix + prefix_ant -script_prefix_ebeam = script_prefix + prefix_ebeam -script_prefix_beta = script_prefix + prefix_beta -script_prefix_dream = script_prefix + prefix_dream -script_prefix_single = script_prefix + prefix_single - - -def get_script( - gdspath: PathType, module: str | None = None, skip: list[str] | None = None -) -> str: - """Returns script for importing a fixed cell. - - Args: - gdspath: fixed cell gdspath. - module: if any includes plot directive. - skip: list of cells to skip. - - """ - skip = skip or [] - gdspath = pathlib.Path(gdspath) - cell = clean_name(gdspath.stem) - - for s in skip: - if s in cell: - return "" - - gdspath = gdspath.stem + gdspath.suffix - - package = module.split(".")[0] if module and "." in module else module - if module: - return f""" - -@gf.cell -def {cell}()->gf.Component: - '''Returns {cell} fixed cell. - - .. plot:: - :include-source: - - import {package} - - c = {module}.{cell}() - c.plot() - ''' - return import_gds(gdsdir/{str(gdspath)!r}) - -""" - - return f""" - -@gf.cell -def {cell}()->gf.Component: - '''Returns {cell} fixed cell.''' - return import_gds(gdsdir/{str(gdspath)!r}) - -""" - - -def get_import_gds_script( - dirpath: PathType, - module: str | None = None, - skip: list[str] | None = None, - script_prefix=script_prefix_single, -) -> str: - """Returns import_gds script from a directory with all the GDS files. - - Args: - dirpath: fixed cell directory path. - module: Optional plot directive to plot imported component. - skip: list of strings to skip. - script_prefix: prefix for the script. - - """ - dirpath = pathlib.Path(dirpath) - if not dirpath.exists(): - raise ValueError(f"{str(dirpath.absolute())!r} does not exist.") - - gdspaths = list(dirpath.glob("*.gds")) + list(dirpath.glob("*.GDS")) - - if not gdspaths: - raise ValueError(f"No GDS files found at {dirpath.absolute()!r}.") - - logger.info(f"Writing {len(gdspaths)} cells from {dirpath.absolute()!r}") - - script = [script_prefix] - cells = [get_script(gdspath, module=module, skip=skip) for gdspath in gdspaths] - script += sorted(cells) - return "\n".join(script) - - -if __name__ == "__main__": - s = get_import_gds_script(PATH.gds_ant, skip=[], script_prefix=script_prefix_ant) - PATH.fixed_ant.write_text(s) - - s = get_import_gds_script( - PATH.gds_ebeam, skip=[], script_prefix=script_prefix_ebeam - ) - PATH.fixed_ebeam.write_text(s) - - s = get_import_gds_script(PATH.gds_beta, skip=[], script_prefix=script_prefix_beta) - PATH.fixed_beta.write_text(s) - - s = get_import_gds_script( - PATH.gds_dream, skip=[], script_prefix=script_prefix_dream - ) - PATH.fixed_dream.write_text(s) - - s = get_import_gds_script( - PATH.gds_single, skip=[], script_prefix=script_prefix_single - ) - PATH.fixed_single.write_text(s) diff --git a/install.sh b/install.sh deleted file mode 100755 index 2d4348cf..00000000 --- a/install.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -pip install -e . -pip install pre-commit -pre-commit install -python install_tech.py diff --git a/install_tech.py b/install_tech.py deleted file mode 100644 index da740b39..00000000 --- a/install_tech.py +++ /dev/null @@ -1,41 +0,0 @@ -"""Symlink tech to klayout.""" - -import os -import pathlib -import shutil -import sys - - -def remove_path_or_dir(dest: pathlib.Path): - if dest.is_dir(): - os.unlink(dest) - else: - os.remove(dest) - - -def make_link(src, dest, overwrite: bool = True) -> None: - dest = pathlib.Path(dest) - if dest.exists() and not overwrite: - print(f"{dest} already exists") - return - if dest.exists() or dest.is_symlink(): - print(f"removing {dest} already installed") - remove_path_or_dir(dest) - try: - os.symlink(src, dest, target_is_directory=True) - except OSError: - shutil.copy(src, dest) - print("link made:") - print(f"From: {src}") - print(f"To: {dest}") - - -if __name__ == "__main__": - klayout_folder = "KLayout" if sys.platform == "win32" else ".klayout" - cwd = pathlib.Path(__file__).resolve().parent - home = pathlib.Path.home() - src = cwd / "ubcpdk" / "klayout" / "tech" - dest_folder = home / klayout_folder / "tech" - dest_folder.mkdir(exist_ok=True, parents=True) - dest = dest_folder / "ubcpdk" - make_link(src=src, dest=dest) diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index d2aac86b..00000000 --- a/pyproject.toml +++ /dev/null @@ -1,198 +0,0 @@ -# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html - -[build-system] -build-backend = "flit_core.buildapi" -requires = ["flit_core >=3.2,<4"] - -[project] -authors = [{name = "gdsfactory", email = "contact@gdsfactory.com"}] -classifiers = [ - "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", - "Operating System :: OS Independent" -] -dependencies = [ - "gdsfactory>=9.39,<9.41", - "gplugins[sax,tidy3d]~=2.0.0", - "jsondiff", - "doroutes>=0.3.0", - "gdsfactoryplus", - "pytz" -] -description = "ubcpdk pdk" -keywords = ["python"] -license = {file = "LICENSE"} -name = "ubcpdk" -readme = "README.md" -requires-python = ">=3.12,<3.13" -version = "3.3.5" - -[project.optional-dependencies] -dev = [ - "pytest", - "gdsfactoryplus", - "pytest-cov", - "pytest_regressions", - "pytest-github-actions-annotate-failures", - "pre-commit" -] -docs = ["autodoc_pydantic", "jupytext", "jupyter-book==1.0.3", "gsim"] - -[tool.codespell] -ignore-words-list = "te, te/tm, te, ba, fpr, fpr_spacing, ro, nd, donot, schem" - -[tool.gdsfactoryplus] -name = "ubcpdk" - -[tool.gdsfactoryplus.drc] -timeout = 300 - -[tool.gdsfactoryplus.pdk] -name = "ubcpdk" - -[tool.gdsfactoryplus.sim.wls] -max = 1.6 -min = 1.5 -num = 1000 - -[tool.mypy] -python_version = "3.11" -strict = true - -[tool.pydocstyle] -add-ignore = ["D100", "D101", "D102", "D103", "D104", "D203", "D405", "D417"] -convention = "google" -inherit = false -match = "(?!test).*\\.py" - -[tool.pylsp-mypy] -enabled = true -live_mode = true -strict = true - -[tool.pytest.ini_options] -# testpaths = ["ubcpdk/samples", "tests"] -# addopts = --tb=no -# addopts = '--tb=short' -# python_files = ["ubcpdk/samples*.py", "tests/*.py"] -python_files = ["tests/*.py"] -testpaths = ["tests"] - -[tool.ruff] -fix = true - -[tool.ruff.lint] -ignore = [ - "E501", # line too long, handled by black - "B008", # do not perform function calls in argument defaults - "C901", # too complex - "B905", # `zip()` without an explicit `strict=` parameter - "C408" # C408 Unnecessary `dict` call (rewrite as a literal) -] -select = [ - "E", # pycodestyle errors - "W", # pycodestyle warnings - "F", # pyflakes - "I", # isort - "C", # flake8-comprehensions - "B", # flake8-bugbear - "UP" -] - -[tool.ruff.lint.per-file-ignores] -"docs/notebooks/11_sparameters.py" = ['E402'] -"docs/notebooks/12_sim_plugins_tidy3d.py" = ['E402'] -"docs/notebooks/13_sim_plugins.py" = ['E402'] -"docs/notebooks/14_sax_tidy3d.py" = ['E402'] -"docs/notebooks/21_schematic_driven_layout.py" = ['E402'] -"docs/notebooks/31_data_analysis_mzi.py" = ['E402'] -"docs/notebooks/33_data_analysis_dbr.py" = ['E402'] -"ubcpdk/cells/__init__.py" = ["F403"] # allowing star imports to aggregate cells -"ubcpdk/models/__init__.py" = ["F403"] # allowing star imports to aggregate cells - -[tool.setuptools.package-data] -"*" = ["*.csv", "*.yaml", "*.yml", "*.gds", "*.lyp", "*.oas", "*.lyt", '*.nc', "*.json", "*.txt", "*.md", "*.png", "*.jpg", "*.jpeg", "*.svg", "*.GDS", "*.OAS"] - -[tool.setuptools.packages] -find = {} - -[tool.tbump] - -[[tool.tbump.before_commit]] -cmd = "towncrier build --yes --version {new_version}" -name = "create & check changelog" - -[[tool.tbump.before_commit]] -cmd = "git add CHANGELOG.md" -name = "create & check changelog" - -[[tool.tbump.before_commit]] -cmd = "grep -q -F {new_version} CHANGELOG.md" -name = "create & check changelog" - -[[tool.tbump.file]] -src = "README.md" - -[[tool.tbump.file]] -src = "pyproject.toml" - -[[tool.tbump.file]] -src = "ubcpdk/__init__.py" - -[[tool.tbump.file]] -src = "ubcpdk/klayout/tech/pymacros/set_menus.lym" - -[tool.tbump.git] -message_template = "Bump to {new_version}" -tag_template = "v{new_version}" - -[tool.tbump.version] -current = "3.3.5" -regex = ''' - (?P\d+) - \. - (?P\d+) - \. - (?P\d+) - ''' - -[tool.towncrier] -directory = ".changelog.d" -filename = "CHANGELOG.md" -issue_format = "[#{issue}](https://github.com/gdsfactory/ubc/issues/{issue})" -package = "gdsfactory" -start_string = "\n" -template = ".changelog.d/changelog_template.jinja" -title_format = "## [{version}](https://github.com/gdsfactory/ubc/releases/tag/v{version}) - {project_date}" -underlines = ["", "", ""] - -[[tool.towncrier.type]] -directory = "security" -name = "Security" -showcontent = true - -[[tool.towncrier.type]] -directory = "removed" -name = "Removed" -showcontent = true - -[[tool.towncrier.type]] -directory = "deprecated" -name = "Deprecated" -showcontent = true - -[[tool.towncrier.type]] -directory = "added" -name = "Added" -showcontent = true - -[[tool.towncrier.type]] -directory = "changed" -name = "Changed" -showcontent = true - -[[tool.towncrier.type]] -directory = "fixed" -name = "Fixed" -showcontent = true diff --git a/sparameters/bend_euler_radius3_349755f7.npz b/sparameters/bend_euler_radius3_349755f7.npz deleted file mode 100644 index 63b24478..00000000 Binary files a/sparameters/bend_euler_radius3_349755f7.npz and /dev/null differ diff --git a/sparameters/bend_euler_radius3_349755f7.yml b/sparameters/bend_euler_radius3_349755f7.yml deleted file mode 100644 index 5eb0d209..00000000 --- a/sparameters/bend_euler_radius3_349755f7.yml +++ /dev/null @@ -1,92 +0,0 @@ -resolution: 30 -port_symmetries: - o1@0,o1@0: - - o2@0,o2@0 - o2@0,o1@0: - - o1@0,o2@0 -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 0.0 -ymargin_bot: 3.0 -xmargin_left: 0 -xmargin_right: 3.0 -is_3d: false -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - thickness_tolerance: null - zmin: 0.0 - material: si - sidewall_angle: 0.0 - width_to_z: 0.0 - z_to_bias: null - info: {} - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - thickness_tolerance: null - zmin: 0.0 - material: si - sidewall_angle: 0.0 - width_to_z: 0.0 - z_to_bias: null - info: {} -component: - name: bend_euler_radius3 - settings: - name: bend_euler_radius3 - module: gdsfactory.components.bend_euler - function_name: bend_euler - info: - length: 4.991 - dy: 3.0 - radius_min: 2.118 - radius: 3.0 - width: 0.5 - interconnect: - model: ebeam_wg_integral_1550 - layout_model_property_pairs: - wg_length: - - length - - 1.0e-06 - wg_width: - - width - - 1.0e-06 - layout_model_port_pairs: - o1: port 1 - o2: port 2 - properties: - annotate: false - info_version: 2 - full: - angle: 90.0 - p: 0.5 - with_arc_floorplan: true - npoints: 720 - direction: ccw - with_bbox: true - cross_section: strip - radius: 3 - changed: - radius: 3 - default: - angle: 90.0 - p: 0.5 - with_arc_floorplan: true - npoints: 720 - direction: ccw - with_bbox: true - cross_section: strip - child: null -compute_time_seconds: 107.85163831710815 -compute_time_minutes: 1.797527305285136 diff --git a/sparameters/bend_euler_radius3_6ad1d010.npz b/sparameters/bend_euler_radius3_6ad1d010.npz deleted file mode 100644 index d8f1d2f3..00000000 Binary files a/sparameters/bend_euler_radius3_6ad1d010.npz and /dev/null differ diff --git a/sparameters/bend_euler_radius3_6ad1d010.yml b/sparameters/bend_euler_radius3_6ad1d010.yml deleted file mode 100644 index 2c7fcfb0..00000000 --- a/sparameters/bend_euler_radius3_6ad1d010.yml +++ /dev/null @@ -1,86 +0,0 @@ -resolution: 30 -port_symmetries: - o1@0,o1@0: - - o2@0,o2@0 - o2@0,o1@0: - - o1@0,o2@0 -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 0.0 -ymargin_bot: 3.0 -xmargin_left: 0 -xmargin_right: 3.0 -is_3d: false -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - info: {} - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - info: {} -component: - name: bend_euler_radius3 - settings: - name: bend_euler_radius3 - module: gdsfactory.components.bend_euler - function_name: bend_euler - info: - length: 4.991 - dy: 3.0 - radius_min: 2.118 - radius: 3.0 - width: 0.5 - interconnect: - model: ebeam_wg_integral_1550 - layout_model_property_pairs: - wg_length: - - length - - 1.0e-06 - wg_width: - - width - - 1.0e-06 - layout_model_port_pairs: - o1: port 1 - o2: port 2 - properties: - annotate: false - info_version: 2 - full: - angle: 90.0 - p: 0.5 - with_arc_floorplan: true - npoints: 720 - direction: ccw - with_bbox: true - cross_section: strip - radius: 3 - changed: - radius: 3 - default: - angle: 90.0 - p: 0.5 - with_arc_floorplan: true - npoints: 720 - direction: ccw - with_bbox: true - cross_section: strip - child: null -compute_time_seconds: 133.15807580947876 -compute_time_minutes: 2.2193012634913125 diff --git a/sparameters/bend_euler_radius3_6c2f97b7.csv b/sparameters/bend_euler_radius3_6c2f97b7.csv deleted file mode 100644 index c1b8d95d..00000000 --- a/sparameters/bend_euler_radius3_6c2f97b7.csv +++ /dev/null @@ -1,51 +0,0 @@ -s11a,s11m,s21a,s21m,s22m,s22a,s12m,s12a,wavelengths,freqs -3.0539956783588518,0.02810112990279709,-1.9936464393984814,0.9879117819400738,0.02810112990279709,3.0539956783588518,0.9879117819400738,-1.9936464393984814,1.5,0.6666666666666666 -3.0013938608083612,0.027680009216183334,-2.0912405340619484,0.9879930390476017,0.027680009216183334,3.0013938608083612,0.9879930390476017,-2.0912405340619484,1.5020408163265306,0.6657608695652174 -2.9496554552916527,0.027141725791647014,-2.1885631954979727,0.988073184046553,0.027141725791647014,2.9496554552916527,0.988073184046553,-2.1885631954979727,1.5040816326530613,0.6648575305291723 -2.8990379467238743,0.026492076292738198,-2.285615464704388,0.9881522458879506,0.026492076292738198,2.8990379467238743,0.9881522458879506,-2.285615464704388,1.506122448979592,0.6639566395663956 -2.849824731205795,0.025737777750262685,-2.382398376263952,0.9882302636425636,0.025737777750262685,2.849824731205795,0.9882302636425636,-2.382398376263952,1.5081632653061225,0.6630581867388362 -2.8023348608411323,0.024886446288062965,-2.4789129593221295,0.9883072875422864,0.024886446288062965,2.8023348608411323,0.9883072875422864,-2.4789129593221295,1.510204081632653,0.6621621621621622 -2.7569348022481055,0.023946587170507436,-2.575160238897637,0.9883833801090154,0.023946587170507436,2.7569348022481055,0.9883833801090154,-2.575160238897637,1.5122448979591836,0.6612685560053981 -2.7140529244106646,0.022927600923567024,-2.6711412375501653,0.988458617239232,0.022927600923567024,2.7140529244106646,0.988458617239232,-2.6711412375501653,1.5142857142857142,0.6603773584905661 -2.6741975796239377,0.02183981203415798,-2.7668569774090304,0.9885330891368588,0.02183981203415798,2.6741975796239377,0.9885330891368588,-2.7668569774090304,1.5163265306122449,0.6594885598923285 -2.6379797749959035,0.020694529171932673,-2.862308482533814,0.9886069009759739,0.020694529171932673,2.6379797749959035,0.9886069009759739,-2.862308482533814,1.5183673469387755,0.6586021505376344 -2.6061414630728734,0.01950414901120849,-2.957496781551501,0.988680173185044,0.01950414901120849,2.6061414630728734,0.988680173185044,-2.957496781551501,1.5204081632653061,0.6577181208053691 -2.5795902007682177,0.018282319517326028,-3.052422910495264,0.9887530412666834,0.018282319517326028,2.5795902007682177,0.9887530412666834,-3.052422910495264,1.5224489795918368,0.6568364611260054 -2.559439876270577,0.017044182519841466,-3.1470879157466713,0.9888256550781948,0.017044182519841466,2.559439876270577,0.9888256550781948,-3.1470879157466713,1.5244897959183674,0.6559571619812583 -2.5470544280094294,0.015806717500788815,-3.2414928569738275,0.9888981775306201,0.015806717500788815,2.5470544280094294,0.9888981775306201,-3.2414928569738275,1.526530612244898,0.6550802139037433 -2.5440851160523326,0.014589203705507805,-3.335638809944975,0.9889707826796549,0.014589203705507805,2.5440851160523326,0.9889707826796549,-3.335638809944975,1.5285714285714287,0.6542056074766355 -2.552478738285609,0.013413793627823509,-3.4295268690983014,0.9890436532187481,0.013413793627823509,2.552478738285609,0.9890436532187481,-3.4295268690983014,1.530612244897959,0.6533333333333333 -2.574409938690388,0.012306122443015464,-3.5231581497456315,0.9891169773960317,0.012306122443015464,2.574409938690388,0.9891169773960317,-3.5231581497456315,1.5326530612244897,0.6524633821571239 -2.6120540872967744,0.011295722006702761,-3.6165337898001004,0.9891909454179796,0.011295722006702761,2.6120540872967744,0.9891909454179796,-3.6165337898001004,1.5346938775510204,0.6515957446808511 -2.6670841606943774,0.0104157209009748,-3.7096549509270327,0.989265745416499,0.0104157209009748,2.6670841606943774,0.989265745416499,-3.7096549509270327,1.536734693877551,0.650730411686587 -2.739809277864864,0.009700940613244207,-3.8025228190309703,0.9893415590704349,0.009700940613244207,2.739809277864864,0.9893415590704349,-3.8025228190309703,1.5387755102040817,0.649867374005305 -2.828097206649491,0.009183397041476865,-3.89513860401786,0.9894185570058421,0.009183397041476865,2.828097206649491,0.9894185570058421,-3.89513860401786,1.5408163265306123,0.6490066225165563 -2.9266776000229013,0.008885166689669145,-3.9875035387832503,0.9894968940887242,0.008885166689669145,2.9266776000229013,0.9894968940887242,-3.9875035387832503,1.542857142857143,0.6481481481481481 -3.027700850386133,0.00881097000805512,-4.079618877410772,0.9895767047569602,0.00881097000805512,3.027700850386133,0.9895767047569602,-4.079618877410772,1.5448979591836736,0.6472919418758256 -3.122774930813966,0.00894483546475113,-4.171485892580447,0.9896580985163355,0.00894483546475113,3.122774930813966,0.9896580985163355,-4.171485892580447,1.5469387755102042,0.646437994722955 -3.2053571270751995,0.00925355184729929,-4.263105872217123,0.9897411557449198,0.00925355184729929,3.2053571270751995,0.9897411557449198,-4.263105872217123,1.5489795918367348,0.6455862977602107 -3.272004099879121,0.009694871855510228,-4.354480115429374,0.9898259239348626,0.009694871855510228,3.272004099879121,0.9898259239348626,-4.354480115429374,1.5510204081632653,0.6447368421052632 -3.322122269614495,0.010225778620105548,-4.445609927811342,0.9899124144912649,0.010225778620105548,3.322122269614495,0.9899124144912649,-4.445609927811342,1.5530612244897959,0.6438896189224704 -3.3569533584785067,0.010807752813533618,-4.5364966162008935,0.9900006001999649,0.010807752813533618,3.3569533584785067,0.9900006001999649,-4.5364966162008935,1.5551020408163265,0.6430446194225722 -3.378579699885402,0.011408831992422817,-4.627141483004615,0.9900904134548602,0.011408831992422817,3.378579699885402,0.9900904134548602,-4.627141483004615,1.5571428571428572,0.6422018348623854 -3.3892696131623867,0.012003641049307064,-4.717545820213131,0.990181745323632,0.012003641049307064,3.3892696131623867,0.990181745323632,-4.717545820213131,1.5591836734693878,0.6413612565445026 -3.3911467778490616,0.012572548588732132,-4.807710903242288,0.9902744454993174,0.012572548588732132,3.3911467778490616,0.9902744454993174,-4.807710903242288,1.5612244897959184,0.6405228758169934 -3.3860673713735316,0.013100632584151251,-4.897637984743353,0.9903683231788687,0.013100632584151251,3.3860673713735316,0.9903683231788687,-4.897637984743353,1.563265306122449,0.639686684073107 -3.375604479578181,0.013576750632334031,-4.98732828852649,0.9904631488708958,0.013576750632334031,3.375604479578181,0.9904631488708958,-4.98732828852649,1.5653061224489797,0.6388526727509778 -3.3610783122726446,0.013992799209053379,-5.076783003745237,0.990558657123459,0.013992799209053379,3.3610783122726446,0.990558657123459,-5.076783003745237,1.5673469387755103,0.6380208333333333 -3.3436007162571735,0.014343157304219348,-5.166003279482481,0.9906545501346145,0.014343157304219348,3.3436007162571735,0.9906545501346145,-5.166003279482481,1.569387755102041,0.6371911573472041 -3.3241199075749037,0.014624282088094525,-5.254990219874225,0.9907505021901348,0.014624282088094525,3.3241199075749037,0.9907505021901348,-5.254990219874225,1.5714285714285714,0.6363636363636364 -3.3034601433708666,0.014834421775517987,-5.343744879893269,0.9908461648469034,0.014834421775517987,3.3034601433708666,0.9908461648469034,-5.343744879893269,1.573469387755102,0.6355382619974059 -3.2823550353586595,0.01497341662242716,-5.432268261906322,0.9909411727688664,0.01497341662242716,3.2823550353586595,0.9909411727688664,-5.432268261906322,1.5755102040816327,0.6347150259067358 -3.2614747682109924,0.015042566095569027,-5.520561313097038,0.9910351501016376,0.015042566095569027,3.2614747682109924,0.9910351501016376,-5.520561313097038,1.5775510204081633,0.6338939197930142 -3.2414479005552024,0.0150445463466258,-5.608624923832909,0.9911277172577526,0.0150445463466258,3.2414479005552024,0.9911277172577526,-5.608624923832909,1.579591836734694,0.6330749354005167 -3.2228783118867934,0.014983366574268207,-5.696459927031976,0.9912184979765479,0.014983366574268207,3.2228783118867934,0.9912184979765479,-5.696459927031976,1.5816326530612246,0.632258064516129 -3.2063574869721605,0.014864355616373316,-5.784067098565023,0.9913071265125106,0.014864355616373316,3.2063574869721605,0.9913071265125106,-5.784067098565023,1.5836734693877552,0.6314432989690721 -3.192471806781493,0.014694171181180838,-5.871447158705564,0.9913932548007649,0.014694171181180838,3.192471806781493,0.9913932548007649,-5.871447158705564,1.5857142857142859,0.6306306306306306 -3.1818038801433204,0.014480823364101201,-5.9586007746189935,0.9914765594478936,0.014480823364101201,3.1818038801433204,0.9914765594478936,-5.9586007746189935,1.5877551020408165,0.6298200514138816 -3.174926242317865,0.014233701213661038,-6.04552856539609,0.991556746343137,0.014233701213661038,3.174926242317865,0.991556746343137,-6.04552856539609,1.5897959183673471,0.6290115532734274 -3.1723850671786518,0.013963585719892565,-6.1322311003099195,0.9916335651136848,0.013963585719892565,3.1723850671786518,0.9916335651136848,-6.1322311003099195,1.5918367346938775,0.6282051282051282 -3.174671132095205,0.01368262448704563,-6.2187089134905245,0.9917068022677362,0.01368262448704563,3.174671132095205,0.9917068022677362,-6.2187089134905245,1.5938775510204082,0.6274007682458387 -3.182175609595985,0.01340423307002563,-6.304962503761089,0.991776294382603,0.01340423307002563,3.182175609595985,0.991776294382603,-6.304962503761089,1.5959183673469388,0.6265984654731458 -3.1951300637836617,0.013142877726704595,-6.390992342998458,0.991841930019807,0.013142877726704595,3.1951300637836617,0.991841930019807,-6.390992342998458,1.5979591836734695,0.6257982120051085 -3.213534121459556,0.012913689298934508,-6.476798883458401,0.9919036527893608,0.012913689298934508,3.213534121459556,0.9919036527893608,-6.476798883458401,1.6,0.625 diff --git a/sparameters/bend_euler_radius3_6c2f97b7.yml b/sparameters/bend_euler_radius3_6c2f97b7.yml deleted file mode 100644 index 76663c3d..00000000 --- a/sparameters/bend_euler_radius3_6c2f97b7.yml +++ /dev/null @@ -1,85 +0,0 @@ -resolution: 30 -port_symmetries: - o1: - s11: - - s22 - s21: - - s12 -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 0.0 -ymargin_bot: 3.0 -xmargin_left: 0 -xmargin_right: 3.0 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -component: - name: bend_euler_radius3 - version: 0.0.1 - settings: - name: bend_euler_radius3 - module: gdsfactory.components.bend_euler - function_name: bend_euler - info: - length: 4.991 - dy: 3.0 - radius_min: 2.118 - radius: 3.0 - width: 0.5 - interconnect: - model: ebeam_wg_integral_1550 - layout_model_property_pairs: - wg_length: - - length - - 1.0e-06 - wg_width: - - width - - 1.0e-06 - layout_model_port_pairs: - o1: port 1 - o2: port 2 - properties: - annotate: false - info_version: 2 - full: - angle: 90.0 - p: 0.5 - with_arc_floorplan: true - npoints: 720 - direction: ccw - with_bbox: true - cross_section: strip - radius: 3 - changed: - radius: 3 - default: - angle: 90.0 - p: 0.5 - with_arc_floorplan: true - npoints: 720 - direction: ccw - with_bbox: true - cross_section: strip - child: null -compute_time_seconds: 47.81067228317261 -compute_time_minutes: 0.7968445380528768 diff --git a/sparameters/coupler_gap0p13_length8_b7d54138.csv b/sparameters/coupler_gap0p13_length8_b7d54138.csv deleted file mode 100644 index 5ff22268..00000000 --- a/sparameters/coupler_gap0p13_length8_b7d54138.csv +++ /dev/null @@ -1,51 +0,0 @@ -s11a,s11m,s21a,s21m,s31a,s31m,s41a,s41m,s12a,s12m,s22a,s22m,s32a,s32m,s42a,s42m,s13a,s13m,s23a,s23m,s33a,s33m,s43a,s43m,s14a,s14m,s24a,s24m,s34a,s34m,s44a,s44m,wavelengths,freqs -3.0126995077756598,0.013157502194273155,-0.8555882557986194,0.007381449195718136,2.7877153382739954,0.6026367230550355,1.2106453329296247,0.7881307531371607,-0.8555882775989356,0.007381449581765965,3.01269949680666,0.013157503457867573,1.2106453347731578,0.7881307555550836,2.787715338380531,0.6026367229700125,2.7881412299594057,0.6021338440663401,1.2099618593360268,0.7877531582991312,2.942372128264398,0.01350128210267721,-0.8449956541423621,0.009526286835845185,1.209961857541944,0.7877531558721564,2.788141229836159,0.6021338441642148,-0.8449956339821965,0.009526286319471236,2.942372136377779,0.013501280550643712,1.5,0.6666666666666666 -2.9678853186617102,0.011982473194092838,-1.5921312603627937,0.006932291819695667,2.195985311781615,0.6051818431738113,0.6191126475678589,0.7866188085346187,-1.5921312885068568,0.006932292165184468,2.9678852312658806,0.011982473975280485,0.6191126502807285,0.7866188105944109,2.1959853119439328,0.6051818431440795,2.196440750653994,0.6046964922931171,0.6184471989398523,0.7862438907518174,2.8655634613539482,0.01185160588339468,-1.5819579836434667,0.008963330047072568,0.6184471962467006,0.786243888654099,2.196440750459753,0.6046964923266683,-1.5819579570668914,0.00896332958042018,2.865563563205597,0.011851604833228993,1.5020408163265306,0.6657608695652174 -3.0318666828234893,0.010921460509314205,-2.340755809020148,0.0062515464026560415,1.6057411579683387,0.6077492859975508,0.029110636644352535,0.7851286117911604,-2.340755843901812,0.00625154670889338,3.031866563601173,0.010921460141346331,0.029110639935033242,0.7851286133237626,1.605741158094105,0.6077492860307697,1.6062169626845382,0.6072804724386347,0.02845795566154552,0.7847555039945647,2.9374846942297737,0.010211402140504682,-2.3305109078242165,0.00810208399294536,0.0284579523780288,0.7847555023963969,1.6062169625327765,0.6072804723955643,-2.330510874435673,0.008102083573775117,2.937484853243758,0.010211402482379405,1.5040816326530613,0.6648575305291723 -3.1586425386497305,0.011060048917258399,-3.1153946468411458,0.00540413215425864,1.0169886048058114,0.6103124864459347,-0.5593737211612541,0.7836330149040958,-3.1153946889114232,0.0054041324275538455,3.158642497537691,0.0110600475855585,-0.5593737176318089,0.7836330157378416,1.016988604823236,0.6103124865083919,1.017480197750395,0.6098567742841727,-0.5600150775448797,0.7832583248004176,3.1209429345534776,0.010147691306920868,-3.1042573890920804,0.0070237918990876565,-0.5600150810690766,0.783258323885576,1.0174801977266212,0.6098567742069815,-3.104257348408277,0.007023791522154218,3.120942991605147,0.010147692934098883,1.506122448979592,0.6639566395663956 -3.2208355893038987,0.012430726152691068,-3.938981953464141,0.00448293085300043,0.4297476774096783,0.6128530529666631,-1.146339681239711,0.7821144027101419,-3.93898200246772,0.004482931105095347,3.220835651663239,0.01243072491337352,-1.1463396777803028,0.7821144027219313,0.4297476773188868,0.6128530530034799,0.4302560670877373,0.6124072873068144,-1.1469665436712209,0.7817355385390339,3.216719283402396,0.011833549775948526,-3.9254641447766976,0.005845413771542267,-1.1469665471240658,0.7817355384517942,0.430256067195299,0.6124072872607662,-3.925464097116846,0.005845413421652658,3.216719200588743,0.01183355127871758,1.5081632653061225,0.6630581867388362 -3.177168370251699,0.014034517034308703,-4.848950086586113,0.003627993980832166,-0.1559598255334608,0.6153621629671888,-1.7317836637403718,0.7805659575526905,-4.848950138642932,0.0036279942295481156,3.1771684746913356,0.014034516673412895,-1.7317836606059474,0.7805659567195563,-0.15595982566617234,0.6153621629420621,-0.15543055744218362,0.6149256486994547,-1.732390838456822,0.7801836435507394,3.164738260037451,0.013861974171544176,-4.830395113878644,0.004743437617996176,-1.7323908415940128,0.7801836443306721,-0.15543055728179678,0.6149256487284882,-4.830395063232271,0.004743437272393635,3.164738130086884,0.013861974598179226,1.510204081632653,0.6621621621621622 -3.0677577706825865,0.01494677541676896,-5.883259567351412,0.0030551522880881182,-0.740119302422551,0.6178367312363389,-2.3157068630274695,0.7789864180287862,-5.88325960874956,0.0030551525492616585,3.0677578635451015,0.014946776096835212,-2.3157068604308693,0.778986416457128,-0.7401193025079275,0.6178367311539176,-0.7395660421040426,0.6174115554411173,-2.316291146333199,0.7786047980775398,3.029500301520775,0.015033939582684192,-5.856816082851706,0.003989800799540527,-2.3162911489591567,0.7786047996211466,-0.7395660420000933,0.6174115555407347,-5.856816043033635,0.003989800438469823,3.0295001874600294,0.015033938780945838,1.5122448979591836,0.6612685560053981 -2.9408698365140795,0.014753709499011678,-6.996028095295011,0.002996848525843894,-1.3227242577789462,0.6202736965909064,-2.89811511084907,0.7773727862606447,-6.996028110491354,0.0029968487892737053,2.940869881682487,0.014753710918619042,-2.8981151089905293,0.7773727841696617,-1.3227242577647071,0.6202736964944852,-1.3221476926966569,0.6198631818717718,-2.8986780089834827,0.7769972050815256,2.871695972029829,0.014848062623165566,-6.96450419908078,0.0038838967361588465,-2.8986780109043226,0.7769972071623619,-1.3221476927126363,0.6198631819888614,-6.9645041862804415,0.003883896371787509,2.87169591140848,0.014848060929422398,1.5142857142857142,0.6603773584905661 -2.8402217266800043,0.013548407403720798,-8.039309042052693,0.0034535686124288678,-1.903770236844483,0.6226665604009822,-3.479012129530557,0.7757162053082342,-8.039309039042754,0.003453568856963284,2.840221696208407,0.013548408927846896,-3.479012128602209,0.7757162029793856,-1.9037702367449878,0.6226665603430314,-1.9031747746429566,0.6222730287368232,-3.4795595963964203,0.775350235274472,2.7413025455091313,0.013392458502417062,-8.009724796325585,0.004442863014886987,-3.4795595974132354,0.7753502375976777,-1.9031747747635297,0.6222730288081613,-8.009724802795567,0.004442862675116255,2.7413025720645754,0.013392456606696523,1.5163265306122449,0.6594885598923285 -2.8091095361764147,0.011882949424922646,-8.954492173470408,0.00418846181177415,-2.4832472007867668,0.6250064214075572,-4.058391606043978,0.7740036397052346,-8.95449216661072,0.004188462032445809,2.809109421306297,0.011882950224094291,-4.058391606198343,0.7740036374216771,-2.483247200669343,0.6250064214160922,-2.4826382768327906,0.6246297965008871,-4.058931123751044,0.7736472829744712,2.69439373955088,0.011291360678701191,-8.928813594445915,0.005371140736189094,-4.058931123689758,0.7736472852499294,-2.482638276975115,0.6246297964919274,-8.928813605010085,0.0053711404266442745,2.6943938783514367,0.011291359550643101,1.5183673469387755,0.6586021505376344 -2.8698971807008786,0.01063565295380297,-9.775987221302689,0.004988341330092792,-3.061136269393758,0.627286603861786,-4.636233999925378,0.7722239919094016,-9.775987216449057,0.004988341528249069,2.869897040657,0.010635652420568444,-4.636234001222954,0.7722239899105284,-3.0611362693362616,0.6272866039249724,-3.060516999206033,0.6269247375984645,-4.636770980796352,0.7718741116767027,2.7784877859899844,0.00965899365347684,-9.753301277614593,0.00639046807821642,-4.6367709795712795,0.7718741136692286,-3.0605169992727443,0.6269247375226439,-9.753301285931407,0.006390467795041714,2.77848797851388,0.009658994175199059,1.5204081632653061,0.6577181208053691 -2.9655885475456887,0.010463138658044695,-10.541598948143251,0.00572993494451958,-3.637413486690533,0.6295076262002838,-5.212510701847698,0.7703744732498415,-10.541598946343681,0.005729935120884013,2.9655885006810907,0.010463137150124393,-5.212510704207536,0.7703744717189593,-3.637413486731108,0.629507626274485,-3.6367829218437318,0.6291580747088124,-5.213046491819962,0.7700270392685412,2.9252419485140275,0.009500895712392878,-10.52098728979252,0.007337667667985401,-5.213046489499398,0.7700270408046839,-3.6367829217895338,0.629158074620035,-10.520987294608869,0.007337667409603339,2.925242015197099,0.00950089754306733,1.5224489795918368,0.6568364611260054 -2.9945981771530437,0.011058083704487057,-11.274229864689936,0.006343815656034762,-4.2120585343042976,0.6316791061163342,-5.78719341005376,0.7684630558086377,-11.274229865575,0.006343815809099976,2.9945982506749056,0.011058082329053273,-5.787193413241836,0.7684630548849298,-4.212058534419324,0.6316791061542273,-4.21141264542622,0.6313411581215576,-5.78772603615231,0.7681156786575124,2.971223909082764,0.010453337311043445,-11.255211723903829,0.008121362609146586,-5.787726032972407,0.7681156796081993,-4.211412645281008,0.6313411580776852,-11.25521172556697,0.008121362377083765,2.971223814340049,0.010453338994873098,1.5244897959183674,0.6559571619812583 -2.9322408976949355,0.011479663322398873,-11.98699127593145,0.006787890637567475,-4.785063150043847,0.633817203903203,-6.36026341152296,0.7665054503593761,-11.986991278759119,0.006787890765429123,2.9322410333903495,0.011479662872854245,-6.360263415187619,0.7665054501540607,-4.785063150164032,0.6338172038822463,-4.784397887006108,0.6334928387616754,-6.3607904394051795,0.7661585863257904,2.885307359934306,0.011228836907396934,-11.969395737196956,0.008687233799852798,-6.360790435731015,0.7661585865813563,-4.784397886855217,0.6334928387893345,-11.969395736469618,0.008687233596385574,2.885307191593007,0.011228837508250933,1.526530612244898,0.6550802139037433 -2.8160274435765706,0.010983709597090737,-12.68808086440948,0.007035936673576646,-5.356434255441344,0.6359390059857246,-6.931715693891655,0.7645184957044427,-12.688080868412584,0.00703593677474687,2.8160275814981466,0.010983710267983657,-6.9317156976362115,0.7645184962998667,-5.356434255499565,0.635939005922122,-5.355748754594799,0.6356321632180459,-6.932237277396126,0.7641746159274018,2.720847413165813,0.010894139529880751,-12.671898825205075,0.009002417267372873,-6.932237273640819,0.7641746153950869,-5.3557487545240665,0.635632163297467,-12.671898822822493,0.009002417095879336,2.7208472377993385,0.010894138852775643,1.5285714285714287,0.6542056074766355 -2.7015394623597535,0.00929662586227882,-13.383582701496598,0.007073713213796503,-5.926190102544226,0.6380570781207379,-7.501556119091951,0.7625139451585149,-13.383582705970845,0.007073713287715421,2.70153954385959,0.009296627386984719,-7.50155612254148,0.762513946591256,-5.92619010250833,0.6380570780551972,-5.925488072216166,0.6377716745277772,-7.502076280928472,0.7621752522381023,2.5307902806979303,0.009096674027200375,-13.368858397487024,0.009049796122936103,-7.502076277470671,0.7621752508663114,-5.9254880722596885,0.637771674606691,-13.368858394197542,0.009049795982889595,2.5307901488265636,0.009096672326043331,1.530612244897959,0.6533333333333333 -2.689750529488244,0.006664593638301884,-14.07914494374161,0.006898756405904857,-6.494351940915273,0.6401772121314018,-8.0697940837568,0.7604962092694437,-14.079144948026894,0.006898756453326625,2.6897504452931966,0.006664595300938122,-8.069794086612264,0.7604962114962913,-6.49435194081358,0.6401772121062529,-6.493640405169737,0.6399150903160883,-8.070319410983595,0.7601623500716229,2.389081029539164,0.005958321141114236,-14.065894150939284,0.008827183886099226,-8.070319408116806,0.760162347888528,-6.493640405291981,0.6399150903430375,-14.065894147352052,0.008827183777489872,2.3890810446558204,0.005958318999534374,1.5326530612244897,0.6524633821571239 -3.071473900909561,0.004348691452268212,-14.78128432937567,0.006522207079470705,-7.060936225375465,0.6423003790192049,-8.636435618855975,0.7584650729385245,-14.781284332781587,0.006522207102666274,3.071473486044384,0.004348691586846954,-8.636435620902878,0.7584650758169572,-7.06093622527294,0.6423003790510557,-7.060222390653899,0.6420603862887633,-8.636972137202058,0.7581322547481868,2.7383016387166603,0.002338016139292733,-14.769420595441394,0.008349292288613908,-8.636972135128568,0.7581322518895255,-7.060222390775083,0.6420603862448555,-14.769420592174386,0.008349292209896428,2.7383025120111926,0.0023380152991486726,1.5346938775510204,0.6515957446808511 -3.751562313697185,0.005334831870207792,-15.498835888325361,0.005972187534276574,-7.625951825325021,0.6444273617934122,-9.201481332933266,0.756421374645863,-15.49883589009703,0.00597218753502985,3.7515622496066263,0.005334830040949296,-9.2014813340298,0.7564213779377267,-7.625951825286636,0.6444273618649097,-7.625239903737139,0.6442060696590911,-9.202031389337616,0.7560834239625791,4.145591174844734,0.0038437753999769186,-15.488081509649799,0.007651825013939971,-9.202031388189804,0.7560834206706332,-7.625239903779205,0.6442060695674113,-15.488081507396855,0.00765182496397649,4.145591041941607,0.0038437776115770217,1.536734693877551,0.650730411686587 -3.89979338208256,0.008610428200277988,-16.24493383243189,0.005299349165326802,-8.189403524144023,0.6465629897788983,-9.764930445434127,0.7543719200618123,-16.244933831679845,0.005299349144766564,3.8997935307074836,0.00861042678767679,-9.764930445492098,0.7543719234678459,-8.189403524196013,0.6465629898492138,-8.188693307138946,0.646356603161548,-9.765491384757553,0.7540226783368971,4.14999103763206,0.008063778457595773,-16.234681847307936,0.006798374119392443,-9.765491384624568,0.7540226749219933,-8.188693307072066,0.6463566030731794,-16.234681846956008,0.0067983740971127,4.149990794343822,0.008063779704699525,1.5387755102040817,0.649867374005305 -3.807168309886671,0.011751981909031341,-17.039240704142273,0.004586559323765044,-8.75129927305337,0.6487172123726348,-10.3267883489231,0.7523304513884436,-17.03924070000797,0.0045865592814622776,3.807168472990943,0.01175198159832822,-10.326788347904442,0.7523304546011077,-8.75129927316858,0.648717212401748,-8.750587177545754,0.6485235519463436,-10.327353696561618,0.7519661557423226,3.9613422659872817,0.011640375516209856,-17.028351248646985,0.00589242630791196,-10.32735369749347,0.7519661525230135,-8.750587177403425,0.6485235519095769,-17.028351251232397,0.005892426312854114,3.961342062496534,0.011640375487740391,1.5408163265306123,0.6490066225165563 -3.6523807636191097,0.013908446977650236,-17.906292155372515,0.003963512021302843,-9.311656448476812,0.6509021981244227,-10.887072940936571,0.7503139021693347,-17.9062921478741,0.003963511954855516,3.652380891096778,0.013908447827639735,-10.88707293887362,0.7503139049215605,-9.311656448595262,0.6509021980964262,-9.31093832192616,0.6507216415167117,-10.887635365711544,0.7499342613491549,3.748705902970046,0.013960672847517955,-17.89305767743061,0.005095410908261343,-10.887635367697023,0.7499342585942791,-9.310938321786335,0.650721641550224,-17.89305768348136,0.005095410943385775,3.7487057574949336,0.013960671569113833,1.542857142857143,0.6481481481481481 -3.49729912979465,0.014813705399831149,-18.854940738606444,0.0036080430057363723,-9.8705029962708,0.6531270420131658,-11.445815617498118,0.7483359644920456,-18.85494073046153,0.0036080429103302492,3.4972991959742536,0.01481370711855138,-11.445815614518636,0.7483359665900532,-9.87050299633178,0.6531270419438978,-9.869777008044629,0.6529619478446447,-11.446369989263165,0.7479434302086481,3.555390085530635,0.014818785124048788,-18.838294781770255,0.004629135658037981,-11.446369992190224,0.7479434281071409,-9.86977700797988,0.652961947927031,-18.838294789700377,0.004629135728504422,3.555390015747768,0.014818782940513949,1.5448979591836736,0.6472919418758256 -3.3792925292481257,0.014608291732809222,-19.836448967678606,0.0036698592736612236,-10.427872372844668,0.6553931039342323,-12.003055862415062,0.7464015495708682,-19.83644896337498,0.003669859147270493,3.3792925124779183,0.01460829369720071,-12.003055858760536,0.7464015508992534,-10.427872372823597,0.6553931038618331,-10.4271403536684,0.6552461210523524,-12.003600753488671,0.7459993086150697,3.4143303291848173,0.014404558737224345,-19.818417203917633,0.004684600819870824,-12.003600757120644,0.7459993072737473,-10.427140353705049,0.6552461211357834,-19.818417209877957,0.004684600928600746,3.4143303586504925,0.014404556356976697,1.5469387755102042,0.646437994722955 -3.32950408695339,0.013852843137400551,-20.766496178378823,0.0041343307345937785,-10.98379480177624,0.6576926822424874,-12.558831987805364,0.744505194469361,-20.766496178803624,0.004134330579383655,3.329503981322369,0.013852844457870607,-12.558831983818898,0.7445051949796067,-10.9837948016969,0.6576926822053119,-10.983061344446744,0.6575649589414642,-12.55936891985497,0.744095080221025,3.3610841779864438,0.013390274086810696,-20.75056820174042,0.005251641205076623,-12.559368923842285,0.7440950796816715,-10.983061344553061,0.6575649589797332,-20.750568203956938,0.005251641349715468,3.3610843171129448,0.013390272562363328,1.5489795918367348,0.6455862977602107 -3.3549163806945264,0.013446961975331479,-21.61104184284959,0.0048456822443619305,-11.538289491790897,0.6600118712414889,-13.113172717863891,0.7426342332495605,-21.61104184548546,0.004845682062108878,3.3549162354690654,0.013446961863403658,-13.11317271394464,0.7426342329459809,-11.538289491707078,0.6600118712569498,-11.53755941567244,0.6599022003982631,-13.113703747103846,0.7422157290859036,3.4054109613507815,0.012896337628550395,-21.598557276774976,0.006137862199858296,-13.113703751034105,0.7422157293443763,-11.537559415781697,0.6599022003726721,-21.59855727667207,0.006137862377411323,3.4054111451482707,0.012896337923700875,1.5510204081632653,0.6447368421052632 -3.4015221741309816,0.014130115258574726,-22.385356376220617,0.005645619782406868,-12.091361951115823,0.6623361280121927,-13.666093802119727,0.740774909174559,-22.38535637866146,0.005645619571995482,3.4015220860493787,0.014130113770694282,-13.666093798662926,0.7407749081046245,-12.091361951083865,0.6623361280685425,-12.090637633848178,0.6622415088702461,-13.666618939099752,0.740345746535047,3.4709460235508187,0.013841405107819716,-22.375999277983254,0.007141241168771658,-13.66661894256452,0.7403457475536331,-12.09063763388997,0.6622415087974499,-22.375999277491825,0.007141241378956592,3.470946121751914,0.013841407046980536,1.5530612244897959,0.6438896189224704 -3.390523012982606,0.01578382155351817,-23.112985331331043,0.006426752419055737,-12.643007719445482,0.6646555783349861,-14.217601031507716,0.7389180248688906,-23.11298533198639,0.006426752180372133,3.3905230211450132,0.01578381962994173,-14.217601028842353,0.7389180231284503,-12.643007719490427,0.6646555783990856,-12.642287835625742,0.6645728687266429,-14.21811703098092,0.73847596207907,3.454918610487306,0.015974943974116577,-23.106107352356947,0.008122608429164627,-14.218117033647486,0.7384759637737446,-12.642287835573178,0.6645728686489619,-23.106107352916045,0.008122608671911096,3.4549185889227814,0.01597494630203636,1.5551020408163265,0.6430446194225722 -3.2981193237026867,0.01758241907013004,-23.81114861964127,0.0071232055552777895,-13.193220315521076,0.6669672486000257,-14.767697504278095,0.7370610595242126,-23.811148617478203,0.007123205288734752,3.2981193984716137,0.017582417662894468,-14.767697502630005,0.7370610572648427,-13.193220315628379,0.6669672486364318,-13.192500707841297,0.6668949723285984,-14.768198749261902,0.73660577393589,3.340114844284536,0.018226604685469466,-23.806230010774627,0.008996071085676554,-14.76819875090986,0.7366057761652027,-13.1925007077162,0.6668949722888976,-23.806230013402676,0.008996071360764126,3.3401147509842795,0.018226606308424143,1.5571428571428572,0.6422018348623854 -3.1444563898384876,0.01867043915965349,-24.490759188033294,0.007694759094067435,-13.741998922874481,0.6692731290009671,-15.316390706731106,0.7352057120902674,-24.490759182249814,0.007694758802112537,3.1444564915845765,0.0186704387808982,-15.316390706210921,0.7352057095242157,-13.741998922997611,0.6692731289909136,-13.741275141278079,0.669212420799959,-15.316871723842308,0.7347396937546923,3.1574194069593284,0.01961172366254473,-24.48747161099571,0.00970924077540754,-15.31687172437157,0.7347396963092376,-13.74127514114047,0.6692124208188183,-24.48747161651307,0.009709241080790151,3.157419288100043,0.019611724060191273,1.5591836734693878,0.6413612565445026 -2.9566366327572906,0.018485686517539332,-25.158702856838552,0.008116535751061322,-14.28935154647102,0.671575294085175,-15.86369517510277,0.7333524087535471,-25.158702846727127,0.008116535437365131,2.9566367310394166,0.01848568725862027,-15.86369517571929,0.7333524061421579,-14.28935154655825,0.6715752940357003,-14.288621684422377,0.6715294389202477,-15.86415341426349,0.7328803075410014,2.936820487437232,0.019523035405636685,-25.156882313360175,0.010230074725180524,-15.864153413672684,0.7328803101558043,-14.288621684333311,0.6715294389859814,-25.156882322493217,0.010230075056807416,2.936820373570838,0.019523034513586356,1.5612244897959184,0.6405228758169934 -2.7594456092082265,0.016805550055499077,-25.819600197090136,0.008373092406708244,-14.835291916916361,0.6738709456647891,-16.409629038554524,0.7314950149961338,-25.81960018196414,0.008373092076746927,2.7594456779475673,0.016805551685131346,-16.409629040237338,0.7314950126214597,-14.835291916937981,0.6738709456037544,-14.834558224931383,0.6738437260209197,-16.410066403288624,0.7310217348300023,2.700677362924496,0.017725687358044494,-25.81921020797357,0.010539251159525111,-16.410066401648425,0.7310217372144848,-14.834558224923304,0.6738437260976957,-25.81921022140767,0.010539251511621767,2.7006772783797772,0.017725685435118856,1.563265306122449,0.639686684073107 -2.5828038811003546,0.013735505097895452,-26.476964324573686,0.0084553453340521,-15.379831878006085,0.6761503131362929,-16.954206191714903,0.7296189108561326,-26.476964303727684,0.008455344994710139,2.5828038868819414,0.013735507133117804,-16.9542061943325,0.7296189089818238,-15.379831877968021,0.6761503130966207,-15.379100290162825,0.6761440067334994,-16.954628463351376,0.7291474076112516,2.471325682281506,0.014318188666919694,-26.478063122217137,0.010626121981488601,-16.954628460785525,0.7291474094931591,-15.379100290225503,0.676144006781369,-26.47806314064092,0.010626122347155705,2.47132565846642,0.014318186206146484,1.5653061224489797,0.6388526727509778 -2.48917177650405,0.009731554078946603,-27.134016250085622,0.0083595901488204,-15.922973498201625,0.6783988257601636,-17.49742834011374,0.7277038027426534,-27.13401622272378,0.008359589806009775,2.4891716542675444,0.009731555775046294,-17.497428343480784,0.7277038015757329,-15.92297349813985,0.6783988257625841,-15.922251294559981,0.6784128755156744,-17.497842727345727,0.7272336923799289,2.2930838476150996,0.009706500162223393,-27.13673033954848,0.010487304321376416,-17.49784272402585,0.7272336935504223,-15.922251294644337,0.6784128755116559,-27.136730363714786,0.010487304693657325,2.2930839555791827,0.009706497865361588,1.5673469387755103,0.6380208333333333 -2.680810489837474,0.005920371497752646,-27.794376748882996,0.008088284375045673,-16.46470538084198,0.6806026781622184,-18.03928138729247,0.725730127393092,-27.7943767140535,0.008088284034220357,2.680810136270545,0.0059203715641719945,-18.03928139116989,0.7257301270571777,-16.46470538080346,0.6806026782051373,-16.463998155424346,0.6806337085583688,-18.03969337965473,0.7252577929744031,2.369843761687222,0.00476065817922684,-27.798883710632673,0.010127495142911894,-18.039693375809435,0.7252577933118748,-16.46399815547493,0.6806337085072638,-27.798883741447522,0.010127495516523565,2.3698442683512684,0.0047606573527469035,1.569387755102041,0.6371911573472041 -3.3784611508192683,0.005318395653451127,-28.462807388430864,0.00765244346863728,-17.005005505932886,0.6827550537399204,-18.57973848341797,0.7236859797356716,-28.462807344954477,0.007652443133331646,3.3784610820776773,0.005318393586555523,-18.579738487512508,0.7236859802652514,-17.005005505947924,0.6827550538015099,-17.00431494067187,0.6827982221309957,-18.58014951778656,0.7232061103253502,3.5530793093768245,0.003505882027520773,-28.469331993999248,0.009562325568492134,-18.58014951370485,0.7232061098010839,-17.004314940655284,0.6827982220612144,-28.469332032583488,0.009562325939861137,3.553079300144516,0.0035058845803953606,1.5714285714285714,0.6363636363636364 -3.677205444884555,0.008304325670012195,-29.14615332615483,0.007075779285598924,-17.543849550248535,0.6848598324504638,-19.118768663790053,0.7215711706095816,-29.146153272587494,0.007075778955170113,3.6772056334302863,0.008304324296882687,-19.1187686677689,0.7215711719576012,-17.543849550318715,0.6848598325004656,-17.54317306094424,0.6849108350431763,-19.11917567800766,0.7210789629386098,3.876073356885906,0.0075312131406464235,-29.154979408979536,0.008823418273226457,-19.119175674026078,0.7210789616051154,-17.543173060862582,0.6849108349910482,-29.154979456702733,0.00882341864327183,3.8760730630078015,0.0075312143701564286,1.573469387755102,0.6355382619974059 -3.6262700935635785,0.011466973546262981,-29.85454776280528,0.006401272209412041,-18.081220779227376,0.6869308344475514,-19.656347148776266,0.7193964600960611,-29.854547697639166,0.006401271877196965,3.6262702718157382,0.011466973458838,-19.656347152296288,0.7193964621529988,-18.081220779325605,0.6869308344627497,-18.08055314282884,0.6869875755766734,-19.65674413864212,0.7188894193098935,3.7474662751443564,0.01122683729958612,-29.866037657529848,0.007966506137674228,-19.65674413511276,0.7188894172780492,-18.080553142717775,0.6869875755678216,-29.866037715814603,0.007966506514127685,3.747466054595834,0.011226837067516031,1.5755102040816327,0.6347150259067358 -3.479881906876335,0.013553667856664214,-30.602348300498754,0.005701423234402582,-18.617116775440227,0.6889869019868368,-20.192462545692194,0.7171784522591009,-30.602348223052612,0.00570142288505597,3.479882032669681,0.01355366888709316,-20.192462548441668,0.7171784548724532,-18.617116775525698,0.6889869019617131,-18.61645286970899,0.6890500314286818,-20.19284326183789,0.7166569752917683,3.549399596004046,0.013525106747397698,-30.616919607829733,0.0070841041594518735,-20.192843259081634,0.7166569727099942,-18.616452869618676,0.6890500314661807,-30.616919677302064,0.007084104559938011,3.5493994511876066,0.013525105321914008,1.5775510204081633,0.6338939197930142 -3.320311854607147,0.014245923980004776,-31.40588663781231,0.005091394189461067,-19.15154987805535,0.6910452131626648,-20.727117801607278,0.714932787369728,-31.405886550674676,0.0050913937979379245,3.3203119130193692,0.014245925718761772,-20.727117803348587,0.7149327903590874,-19.151549878093117,0.6910452131110366,-19.150887156261625,0.6911173220327684,-20.72747821256095,0.7143993512566845,3.3528141125546433,0.014195362428354098,-31.423779317571125,0.0063214116653833525,-20.72747821081988,0.714399348298914,-19.150887156230596,0.6911173220974334,-31.423779395713886,0.006321412118111485,3.3528140486315046,0.014195360265067448,1.579591836734694,0.6330749354005167 -3.1918915755165713,0.013660044805329953,-32.27032336799969,0.004730258293634142,-19.684541387390723,0.6931160666140684,-21.260324935237634,0.712669021023986,-32.27032328048052,0.004730257833402388,3.191891551746025,0.01366004663669814,-21.260324935839826,0.71266902418887,-19.684541387368835,0.6931160665607303,-19.683880901609133,0.6931999976826734,-21.26066427188482,0.7121264885931186,3.1977109740112546,0.013395606479044574,-32.290947459495506,0.005876096462060804,-21.260664271288217,0.7121264854540131,-19.683880901646184,0.693199997744394,-32.29094753751344,0.005876096996258815,3.197711007342015,0.013395604257440323,1.5816326530612246,0.632258064516129 -3.1377443413165707,0.012324018073881783,-33.16569003169787,0.004767747374641889,-20.216112682860587,0.6952015667748574,-21.792096670413773,0.7103895938925433,-33.165689956838555,0.004767746837561317,3.137744228690778,0.012324019215909412,-21.792096669865497,0.7103895970181419,-20.21611268279424,0.6952015667427214,-20.21545823051487,0.6952987095179131,-21.79241662596974,0.7098395500335785,3.133391723713396,0.011722033431627447,-33.187250858196286,0.005929056801400769,-21.79241662652344,0.7098395469245177,-20.215458230598266,0.6952987095509808,-33.18725092415921,0.005929057424950509,3.1333918696349308,0.01172203205985553,1.5836734693877552,0.6314432989690721 -3.1919855190024893,0.011204835468775513,-34.033190771432295,0.005236722866830938,-20.74627784998234,0.6972986189665221,-22.32243954160979,0.7080931261910521,-34.033190713656296,0.00523672226972697,3.19198536444684,0.011204835231201304,-22.322439540010766,0.7080931290576504,-20.746277849904125,0.6972986189656287,-20.7456337532035,0.6974080352749608,-22.32274213392713,0.707535093777906,3.211309410291635,0.01033202660684647,-34.054034292764975,0.0065122292431281465,-22.32274213552528,0.7075350909192414,-20.745633753293674,0.6974080352702223,-34.054034343002215,0.006512229936286348,3.211309613853952,0.010332026971973909,1.5857142857142859,0.6306306306306306 -3.3096748796362854,0.011354668505480975,-34.835620744670386,0.006029149813419939,-21.2750415191848,0.6994044467255228,-22.85135215034463,0.7057800386057509,-34.835620698065554,0.006029149179961618,3.3096748018670334,0.011354667032182684,-22.851352147882196,0.7057800410034862,-21.27504151912814,0.6994044467488051,-21.274410198477565,0.6995232391994544,-22.851637403174916,0.7052119495023651,3.3737327773557357,0.010583997594183865,-34.855442523888996,0.007485876031072038,-22.851637405627102,0.7052119471068958,-21.274410198538085,0.699523239167435,-34.855442564102724,0.007485876767692522,3.3737328655374617,0.010583999474483864,1.5877551020408165,0.6298200514138816 -3.362832674112082,0.012889188767986465,-35.57370646669185,0.006989324377484943,-21.80240287028061,0.7015215726321317,-23.378829504423912,0.7034573246508232,-35.573706423771306,0.006989323726307094,3.362832712177198,0.01288918713036341,-23.378829501342974,0.7034573264001905,-21.8024028702644,0.7015215726593252,-21.801783440217253,0.7016462843177106,-23.379094168567576,0.7028769824546343,3.4379872764811292,0.012546266554450892,-35.5929472254395,0.008656153052435119,-23.379094171629838,0.702876980706726,-21.801783440228675,0.7016462842831982,-35.592947262555356,0.008656153812147195,3.437987214686798,0.012546268494866706,1.5897959183673471,0.6290115532734274 -3.299055807225739,0.014877695821084086,-36.26334479158205,0.007984252508859955,-22.32836355559043,0.7036594951723595,-23.90487117417287,0.7011397537442082,-36.26334474740871,0.007984251856116816,3.2990559046831374,0.01487769489088232,-23.904871170748088,0.7011397547186665,-22.328363555610697,0.7036594951801523,-22.32775213729377,0.7037878229248515,-23.905109174950702,0.7005465348774553,3.354131850497106,0.01496683485562645,-36.28246558922536,0.009859585256647707,-23.905109178353094,0.7005465339058059,-22.327752137264884,0.703787822913737,-36.28246562783829,0.009859586022037903,3.354131727249441,0.014966835869751383,1.5918367346938775,0.6282051282051282 -3.1464718167071286,0.016325060566802933,-36.91982374881714,0.008915353979930417,-22.852935263421532,0.7058319979131565,-24.429488972755074,0.6988466196830007,-36.91982370061343,0.008915353341954,3.1464719239657017,0.016325060637384575,-24.429488969270015,0.698846619826758,-22.85293526345524,0.7058319978859529,-22.852326852113293,0.7059639552595145,-24.42969341267817,0.6982425508143504,3.1712044384549043,0.01670637964332061,-36.93910961671694,0.01097598004667685,-24.429693416142612,0.6982425506751582,-22.85232685207176,0.7059639552876873,-36.93910965943598,0.010975980799589252,3.1712043107436636,0.01670637947940696,1.5938775510204082,0.6274007682458387 -2.938865419703671,0.01659410855470743,-37.55438973290037,0.009710766458144325,-23.376142797206178,0.7080512716301147,-24.952710026698586,0.6965954155941876,-37.554389679175124,0.009710765853024045,2.938865509788487,0.016594109541152157,-24.952710023431724,0.6965954149317677,-23.37614279722171,0.7080512715674835,-23.375533766695092,0.7081892129660834,-24.952875815390705,0.6959850765585756,2.928648375526091,0.017108206484501527,-37.57396902037469,0.011918573858472389,-24.9528758186426,0.6959850772251814,-23.375533766676362,0.7081892130318488,-37.57396906865558,0.011918574578479535,2.928648268990531,0.01710820527962106,1.5959183673469388,0.6265984654731458 -2.6965977993964643,0.015391275769217871,-38.17498303516238,0.010318135108730673,-23.89802077509831,0.7103216739239963,-25.47457333874775,0.6943953638242317,-38.174982975030304,0.010318134555295715,2.69659785556757,0.015391277381403029,-25.474573335962177,0.6943953624553885,-23.898020775072343,0.7103216738401331,-23.897410802949445,0.7104691438440448,-25.474699224250237,0.6937846288163925,2.6435917066433574,0.015901241848516306,-38.19487442450599,0.012625040111219732,-25.474699227027497,0.6937846301860526,-23.897410802977696,0.7104691439301564,-38.194874479260136,0.012625040776697488,2.6435916352389772,0.01590123993017821,1.5979591836734695,0.6257982120051085 -2.4280773208799613,0.012707161649504242,-38.78748079865804,0.010700804673932841,-24.418605208786303,0.7126361823179556,-25.99512110630263,0.6922438097154417,-38.78748073151906,0.010700804190525581,2.428077325939751,0.012707163506568414,-25.995121104234013,0.6922438078002565,-24.4186052087147,0.7126361822351661,-24.417997688534047,0.7127961113638286,-25.99521016548001,0.6916379789355815,2.3130902745197717,0.013131829494161617,-38.807625525454206,0.01305266384070789,-25.99521016754526,0.6916379808452865,-24.417997688612264,0.7127961114452477,-38.807625587357336,0.013052664430378795,2.3130902507326576,0.01313182725385483,1.6,0.625 diff --git a/sparameters/coupler_gap0p13_length8_b7d54138.yml b/sparameters/coupler_gap0p13_length8_b7d54138.yml deleted file mode 100644 index 9331f2b9..00000000 --- a/sparameters/coupler_gap0p13_length8_b7d54138.yml +++ /dev/null @@ -1,67 +0,0 @@ -resolution: 30 -port_symmetries: {} -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3 -ymargin_bot: 3 -xmargin_left: 0 -xmargin_right: 0 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -component: - name: coupler_gap0p13_length8 - version: 0.0.1 - settings: - name: coupler_gap0p13_length8 - module: gdsfactory.components.coupler - function_name: coupler - info: - length: 10.33 - min_bend_radius: 9.264 - info_version: 2 - full: - gap: 0.13 - length: 8 - coupler_symmetric: - function: coupler_symmetric - coupler_straight: - function: coupler_straight - dy: 5.0 - dx: 10.0 - cross_section: strip - changed: - gap: 0.13 - length: 8 - default: - gap: 0.236 - length: 20.0 - coupler_symmetric: - function: coupler_symmetric - coupler_straight: - function: coupler_straight - dy: 5.0 - dx: 10.0 - cross_section: strip - child: null -compute_time_seconds: 367.65554642677307 -compute_time_minutes: 6.127592440446218 diff --git a/sparameters/coupler_gap0p13_length8_e8c7ce5e.npz b/sparameters/coupler_gap0p13_length8_e8c7ce5e.npz deleted file mode 100644 index 3c4f41a8..00000000 Binary files a/sparameters/coupler_gap0p13_length8_e8c7ce5e.npz and /dev/null differ diff --git a/sparameters/coupler_gap0p13_length8_e8c7ce5e.yml b/sparameters/coupler_gap0p13_length8_e8c7ce5e.yml deleted file mode 100644 index 24ad81ae..00000000 --- a/sparameters/coupler_gap0p13_length8_e8c7ce5e.yml +++ /dev/null @@ -1,69 +0,0 @@ -resolution: 30 -port_symmetries: {} -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3 -ymargin_bot: 3 -xmargin_left: 0 -xmargin_right: 0 -is_3d: false -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - info: {} - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - info: {} -component: - name: coupler_gap0p13_length8 - settings: - name: coupler_gap0p13_length8 - module: gdsfactory.components.coupler - function_name: coupler - info: - length: 10.33 - min_bend_radius: 9.264 - info_version: 2 - full: - gap: 0.13 - length: 8 - coupler_symmetric: - function: coupler_symmetric - coupler_straight: - function: coupler_straight - dy: 5.0 - dx: 10.0 - cross_section: strip - changed: - gap: 0.13 - length: 8 - default: - gap: 0.236 - length: 20.0 - coupler_symmetric: - function: coupler_symmetric - coupler_straight: - function: coupler_straight - dy: 5.0 - dx: 10.0 - cross_section: strip - child: null -compute_time_seconds: 864.1240878105164 -compute_time_minutes: 14.402068130175273 diff --git a/sparameters/coupler_ring_225c8f23.csv b/sparameters/coupler_ring_225c8f23.csv deleted file mode 100644 index 30058643..00000000 --- a/sparameters/coupler_ring_225c8f23.csv +++ /dev/null @@ -1,51 +0,0 @@ -s22a,s22m,s12a,s12m,s32a,s32m,s42a,s42m,s21a,s21m,s11a,s11m,s31a,s31m,s41a,s41m,s23a,s23m,s13a,s13m,s33a,s33m,s43a,s43m,s24a,s24m,s14a,s14m,s34a,s34m,s44a,s44m,wavelengths,freqs --2.999626171003539,0.012899710795027844,-1.5172911621342275,0.0011541067288236844,-2.0906909229160147,1.086688249556997,0.7008006505172304,0.2426261855343981,-1.59651632243567,0.0011639968067682072,-3.134848805874487,0.015000539451958486,0.7003235695466,0.21731831458233386,0.35061625139172875,0.9760592231424338,-2.090690922909145,1.0866882495560555,0.7007977759301626,0.21739740480901348,-2.999626168254294,0.012899710786608773,-1.5255807622658628,0.0012919162458228865,0.7003251338148556,0.2425452214807877,0.350616647570022,0.9760611614434417,-1.5965121428975868,0.0012991145384572676,-3.1333784529828006,0.015006024704981245,1.5,0.6666666666666666 --2.886680110227921,0.01511197618358958,-1.9736062372204763,0.0011394972677964167,-2.5158957256130403,1.086064408123523,0.3457717061717669,0.24383130134372907,-2.0545165774011513,0.0011598991265449393,-3.134126248552141,0.014997544190024283,0.3453156095196845,0.2184847773693524,0.06565371612699845,0.9757940264656775,-2.5158957256090893,1.0860644081246786,0.3457694263077898,0.21855200999452898,-2.8866801080901543,0.015111976187886372,-1.981656986934214,0.0012750979018375916,0.3453173135355499,0.24376370847593096,0.06565407421988893,0.9757954713839426,-2.0545121352313434,0.0012940991784967733,-3.1326188179324226,0.015010961368757422,1.5020408163265306,0.6657608695652174 --2.8817547619711505,0.01755749002809416,-2.431092889223864,0.001108393821213026,-2.9399215168718276,1.0854224959701841,-0.008265498468963954,0.24504034274172998,-2.5113586691054377,0.0011385395431356342,-3.1346579915511517,0.015004546367204982,-0.00871821818201201,0.2196573950465467,-0.21852098050178637,0.9755267009486294,-2.9399215168713684,1.0854224959712822,-0.008267548853715978,0.2197105385061248,-2.8817547604493656,0.017557490036277146,-2.4389199913695783,0.0012397213633166854,-0.008716156048019808,0.24498856962425536,-0.21852046072657363,0.9755276394743854,-2.511353781576392,0.0012698364623148215,-3.133358074177174,0.015027502646784473,1.5040816326530613,0.6648575305291723 --2.9362902225091703,0.019496202936061555,-2.8921486464704373,0.0010616107294454866,-3.362770720334269,1.0847721787131213,-0.36131722347207285,0.2462554844638107,-2.9697201314101886,0.001100059386363436,-3.1368769428417553,0.015009504006874817,-0.3617852899361228,0.22083584812660517,-0.5019113503894563,0.9752578742573955,-3.362770720336819,1.0847721787119233,-0.3613193613701658,0.22087492821827087,-2.936290221294601,0.0194962029422179,-2.8998398966423338,0.0011867935778112266,-0.3617826607750524,0.24621946907831,-0.5019104762852833,0.9752583827854927,-2.9697146169189765,0.0012265035996449137,-3.136116516589914,0.015041367900973428,1.506122448979592,0.6639566395663956 --3.015156256097968,0.020597273720246265,-3.359958431810457,0.0010006118594910612,-3.7844511980317748,1.0841215602545349,-0.7133947464875477,0.24747840016004008,-3.4329497537325357,0.0010454701231478324,-3.1406766535686517,0.01499739094525242,-0.7138925489622537,0.2220196660633507,-0.7845211150690486,0.9749880125612829,-3.7844511980359306,1.0841215602493564,-0.7133972311464025,0.22204667486178142,-3.015156254899999,0.020597273722098585,-3.3676580552173974,0.0011180739385295516,-0.7138891948455466,0.24745590104486928,-0.7845197408861871,0.9749882474109709,-3.4329434716819938,0.0011652471935501613,-3.1407738607472075,0.015034549236791187,1.5081632653061225,0.6630581867388362 --3.094938804673308,0.020795743901878157,-3.838952276046032,0.0009277428989836484,-4.204974328700542,1.0834744084349037,-1.0645122969591405,0.2487096440185121,-3.9054714827118704,0.000976868474076688,-3.145370942704944,0.014955408954457499,-1.0650463422369274,0.22320824285325452,-1.066354111127232,0.9747173492701134,-4.204974328704345,1.0834744084251546,-1.0645153252844113,0.22322627616918989,-3.094938803249297,0.020795743900349207,-3.846834059589001,0.0010363191886305614,-1.0650421905883984,0.2486972028608165,-1.0663521710630401,0.9747175198874548,-3.905464365124867,0.0010884212674949522,-3.146515800505467,0.014991554101607376,1.510204081632653,0.6621621621621622 --3.157388458109885,0.020230051346330866,-4.33538715355491,0.0008466041585406474,-4.6243521276842205,1.0828290305384936,-1.4146840719847453,0.24994839467147334,-4.39330082339948,0.0008977553503008858,-3.149842807098775,0.014877714767436857,-1.415252273635518,0.22440086409590776,-1.3474141782565403,0.9744458615999904,-4.62435212768559,1.0828290305245676,-1.4146877783167597,0.22441299991829533,-3.157388456216141,0.020230051345097328,-4.343601074465012,0.0009456809025662292,-1.4152473563281245,0.2499425818049213,-1.3474117047305434,0.9744461908057539,-4.393292889853144,0.0009999404948406326,-3.1520048655694795,0.014905126586893712,1.5122448979591836,0.6612685560053981 --3.186678726890089,0.01922099863367608,-4.857870640430461,0.0007626249381423986,-5.04259436777383,1.082179011819847,-1.7639212931913053,0.2511926236858301,-4.904535035944651,0.0008135161601937812,-3.152829474739023,0.014768213578102254,-1.7645150941475591,0.22559674450388012,-1.627705052717794,0.9741732945992436,-5.042594367771098,1.0821790118031025,-1.7639257527731402,0.22560503265472923,-3.186678724374307,0.019220998639712376,-4.866429392309001,0.0008523174527692903,-1.7645095460976463,0.25119115543768367,-1.6277021746713403,0.9741739737451524,-4.9045263875870235,0.0009058124543546241,-3.1557123726516756,0.014779719143784877,1.5142857142857142,0.6603773584905661 --3.1724946780820877,0.018246262513402244,-5.416952477124463,0.000683837887447683,-5.459706584124567,1.081515458584589,-2.1122301862623245,0.2524396203635641,-5.449142700661423,0.0007320752650925344,-3.1532736508208106,0.014640603269804934,-2.112838645215732,0.22679507290550693,-1.907230284999907,0.9738992232305134,-5.459706584116859,1.081515458567141,-2.1122354216244035,0.22679994869718023,-3.1724946750502276,0.01824626253554946,-5.425510438766879,0.0007652020757770995,-2.112832681673161,0.2524420026787657,-1.9072272053981378,0.9739003718707713,-5.449133498503512,0.0008148627274103372,-3.1563348074410538,0.014631725198082098,1.5163265306122449,0.6594885598923285 --3.120353164501067,0.017839411170284033,-6.021273528659983,0.0006214446234869974,-5.875689517941153,1.0808299668831751,-2.4596114350013085,0.25368670277705213,-6.03606291001563,0.0006644200290287177,-3.150662664952028,0.014515523686821578,-2.4602258636198977,0.22799506052930596,-2.1859931934520818,0.9736231374065362,-5.875689517928491,1.080829966867219,-2.459617424449753,0.22799534736058868,-3.1203531615205375,0.01783941121599108,-6.028835873247625,0.0006966495772554391,-2.460219740204337,0.25369422086151416,-2.185990149977788,0.9736247765346533,-6.036053359850866,0.0007393135100906681,-3.1532105544920923,0.014486221938063952,1.5183673469387755,0.6586021505376344 --3.0590286020918884,0.01835587348481018,-6.667090514728715,0.0005886143443860852,-6.290540088250309,1.0801173757931144,-2.8060611953589554,0.254931899022185,-6.664641574333023,0.0006237368252169268,-3.145261041251721,0.014415360355295734,-2.8066788479020204,0.2291959879424692,-2.4639968576756206,0.9733445329953971,-6.290540088233618,1.0801173757806175,-2.8060678827661083,0.22918946461497106,-3.059028599997982,0.018355873554735766,-6.672078932255405,0.0006608729161492462,-2.8066728114789647,0.25494698296415863,-2.4639940746171947,0.9733465781162334,-6.664631949025343,0.0006938171423039423,-3.1466253434263294,0.014370753247691584,1.5204081632653061,0.6577181208053691 --3.0248728066837525,0.01975131458137803,-7.327538932823125,0.0005953497466673388,-6.704253522887439,1.0793774873228015,-3.1515732958159735,0.25617440224079574,-7.313796144046932,0.0006210750595703589,-3.1381356654097647,0.014357996466982532,-3.1521989788463394,0.23039724637428624,-2.741244148259971,0.9730629932846941,-6.704253522868207,1.0793774873150555,-3.151580600961889,0.2303815824809912,-3.02487280598472,0.0197513146681884,-7.3288426154771,0.0006684050208870645,-3.152193219544504,0.25619958918586994,-2.7412417897845485,0.973065269251511,-7.313786804799374,0.0006906307542250509,-3.137870430875358,0.014307618980682762,1.5224489795918368,0.6568364611260054 --3.0363976321900212,0.02163638339650201,-7.963232299754397,0.0006419308568766204,-7.116825960022166,1.078615287635732,-3.496141930105852,0.25741467857613387,-7.946974860394384,0.0006587798428953255,-3.130917169878305,0.01435140088712318,-3.496787081118166,0.23159837007582829,-3.017737784176882,0.9727782491715269,-7.116825960002081,1.0786152876329749,-3.496149758899654,0.23157212702367327,-3.036397632820716,0.021636383490623263,-7.961287742010256,0.0007192730799959554,-3.4967816956146,0.2574515078924469,-3.0177359189957835,0.9727805238838516,-7.946966147047404,0.0007323198672808286,-3.1289612942554785,0.014307010585407363,1.5244897959183674,0.6559571619812583 --3.0914217522403407,0.023522381623258704,-8.54967163402031,0.0007189172720554007,-7.528256732385435,1.077839668807725,-3.839764048731529,0.25865421374931596,-8.53657687140373,0.0007289306365658814,-3.12534971393662,0.014390935511468252,-3.8404436102263824,0.2327990575874709,-3.293480406230532,0.9724902112114091,-7.528256732366058,1.0778396688097418,-3.839772302743241,0.23276244138863988,-3.0914217539490365,0.023522381714709113,-8.545903963624937,0.0008031814260693235,-3.840438583926574,0.25870240244869136,-3.29347899116748,0.9724922411156,-8.536568927011558,0.0008100390609799113,-3.1220697995122237,0.014363482657213548,1.526530612244898,0.6550802139037433 --3.1789077150009324,0.024994123433054873,-9.085042547753456,0.0008134679485667408,-7.938549680704033,1.0770610845027104,-4.182440789932176,0.2598949886643907,-9.076522554519626,0.0008188215592823892,-3.1227941296306305,0.014460371181179297,-4.183168848337468,0.23399918106596854,-3.5684746542466925,0.9721989715769146,-7.938549680686465,1.0770610845085873,-4.1824493747796145,0.23395431456227456,-3.1789077175117817,0.024994123514655724,-9.080753128685442,0.0009062209056685748,-4.183164059890759,0.2599521422805769,-3.5684735400435423,0.9722005494139324,-9.076515295475058,0.0009096385129779269,-3.11888830192554,0.014457143409888636,1.5285714285714287,0.6542056074766355 --3.287052361711664,0.025763474302445872,-9.578637493710863,0.0009141821474596141,-8.347713155447376,1.0762888541689812,-4.524177603430864,0.26113884729125364,-9.57395680992361,0.0009164496739186697,-3.123873114282277,0.014536166496419376,-4.52496309362446,0.23519878399414776,-3.84272323667929,0.9719047782507936,-8.347713155432071,1.076288854177382,-4.524186435685415,0.23514941234158418,-3.2870523648192296,0.02576347436921071,-9.574637710131425,0.001016007783007752,-4.5249583403625415,0.261200798378334,-3.842722194539854,0.9719057732005982,-9.573950010551195,0.0010177675061491581,-3.1201833527042777,0.01455900803417827,1.530612244897959,0.6533333333333333 --3.405479754607521,0.025670408798175687,-10.04104269342011,0.001012308477810567,-8.755758755300876,1.0755288905440135,-4.86498310987541,0.26238694243223215,-10.038956657884878,0.001012422564914326,-3.128360006187785,0.01459342955828684,-4.8658268302055285,0.23639806856955276,-4.116228983454558,0.9716079870935546,-8.755758755287824,1.0755288905539746,-4.864992122269919,0.23634877751096006,-3.4054797581834597,0.025670408845859475,-10.03776159017408,0.0011230071743912155,-4.865821868718507,0.26244862511995365,-4.116227746477343,0.9716083693545368,-10.038950038520131,0.001123990818094432,-3.125670505082356,0.014638425794367083,1.5326530612244897,0.6524633821571239 --3.524752709855326,0.02467305964135576,-10.480794300159808,0.001101370017912667,-9.162699202480438,1.0747824651526905,-5.204867091032937,0.2636394140791677,-10.480162641708697,0.0010998246073911234,-3.135292438547072,0.014611723349057564,-5.205760868841088,0.23759737481271018,-4.3889948756966435,0.9713089997097988,-9.162699202469263,1.0747824651634776,-5.204876235866365,0.2375525388010644,-3.524752713803109,0.024673059667613757,-10.478440234928248,0.0012201545112377813,-5.205755461979345,0.2636960315908811,-4.38899318644697,0.9713088451076749,-10.48015593377569,0.001220635496953347,-3.134171196685468,0.014670212572287658,1.5346938775510204,0.6515957446808511 --3.6349465839409922,0.022839260774766595,-10.904135716637319,0.0011766020174903654,-9.568545975154613,1.0740463073980915,-5.54383822665067,0.2648953830576123,-10.90403603359914,0.0011736572796131005,-3.1432250025357646,0.014579355628014637,-5.544766452089619,0.23879715394545611,-4.661024049200368,0.9710081961489445,-9.568545975144854,1.0740463074095734,-5.543847477290568,0.23875990365375152,-3.6349465881704215,0.022839260778044396,-10.902800610277945,0.0013022544784561708,-5.544760412756378,0.26494354642663237,-4.661021703745281,0.9710076710261615,-10.90402902689955,0.0013021653494429124,-3.143927945277255,0.014639844234647663,1.536734693877551,0.650730411686587 --3.7236156255566266,0.020343529561356228,-11.315560190681985,0.0012345588405806305,-9.973307355389153,1.073313952801742,-5.881902232075729,0.26615325177804,-11.315244179622486,0.0012303874355227866,-3.150536728998983,0.014495493171919439,-5.882845321378478,0.23999793885865925,-4.932319771674036,0.9707058731096975,-9.9733073553804,1.0733139528138596,-5.881911583142289,0.23996942798965787,-3.7236156299239305,0.02034352954175086,-11.315274553212666,0.0013655520110123225,-5.882838544808594,0.26619178021235024,-4.93231665194029,0.9707052018876549,-11.315236753618718,0.0013646763921260458,-3.152970050520641,0.014546013394805296,1.5387755102040817,0.649867374005305 --3.773076672678342,0.017474464611971323,-11.718369751561088,0.0012728832434070318,-10.376987408818952,1.072577920348595,-6.219060911236483,0.26741121923994066,-11.717189007556831,0.0012676554754495572,-3.155740998574421,0.014369980158487599,-6.21999974722665,0.24120031449422535,-5.202885397729025,0.9704021938178783,-10.3769874088112,1.0725779203616976,-6.219070376819105,0.24117947996922157,-3.7730766768802813,0.017474464570786004,-11.719129741850852,0.0014074763532597669,-6.219992226136187,0.26744138996282824,-5.202881486337161,0.9704016192504383,-11.717181144824231,0.0014055705957497359,-3.1594749209760318,0.01440046514671299,1.5408163265306123,0.6490066225165563 --3.7584154494984197,0.014658703488014103,-12.115099430915384,0.0012901735001471758,-10.779586138379807,1.0718320938460748,-6.555312364499905,0.26866786197520415,-12.112434432457144,0.001284091220822442,-3.1577673727027884,0.01422106247405908,-6.556232527388251,0.2424048906848273,-5.472724307891457,0.9700971600401052,-10.77958613837334,1.071832093860344,-6.55532197460355,0.24238876416609295,-3.758415452861955,0.014658703429610717,-12.116879490788058,0.0014264920055686644,-6.556224348233951,0.26869304831748364,-5.4727196838455034,0.9700969019367232,-12.112426213570181,0.001423349677048207,-3.162102538359875,0.014225366746163376,1.542857142857143,0.6481481481481481 --3.655558387590295,0.012480448707485142,-12.507822067758951,0.001285897932685013,-11.181100728978688,1.0710736549009572,-6.890652264913112,0.2699226187839975,-12.50301739418565,0.001279188143314752,-3.1561820277882484,0.014071453011167865,-6.8915469605982285,0.2436122794179018,-5.741839840361507,0.9697906092370076,-11.181100728974117,1.071073654916494,-6.890662062619217,0.24359676002303518,-3.6555583889548493,0.012480448641558773,-12.510580507935309,0.0014220030395066387,-6.891538283291521,0.2699474199125011,-5.7418346584165825,0.9697908296511702,-12.503008976573625,0.0014174739915407922,-3.160273329208495,0.014048645436409758,1.5448979591836736,0.6472919418758256 --3.479290771943984,0.011543902194327185,-12.898377025629841,0.0012603266646616673,-11.581527512231768,1.0703040640349264,-7.225075838147509,0.271176047966193,-12.890677514026653,0.0012532050708072317,-3.1512966025753926,0.013943449107664912,-7.225946805431042,0.24482307765576972,-6.010235227190587,0.9694822363061877,-11.581527512229744,1.0703040640511932,-7.22508587358366,0.24480395585064815,-3.479290770583881,0.011543902137211882,-12.902057240553187,0.0013942777874976168,-7.225937831555944,0.2712051456248133,-6.010229685129262,0.9694830183629223,-12.890669099851657,0.001388252172063273,-3.1543271210888455,0.013898035195588684,1.5469387755102042,0.646437994722955 --3.311309239616587,0.012000244893393894,-13.288563564950511,0.0012144659799785045,-11.98086410527606,1.0695288632677389,-7.5585799918899585,0.2724297909537436,-13.277044323267688,0.001207079394706466,-3.1441119211904485,0.013854131048588214,-7.559436234159137,0.24603785584855434,-6.277913543189105,0.9691716399153857,-11.980864105277158,1.0695288632839917,-7.558590318005385,0.2460118181094575,-3.3113092366919497,0.012000244857564433,-13.293092851511412,0.0013443784589569996,-7.559427170596095,0.27246683401188126,-6.277907844993531,0.9691729812427033,-13.277036123195789,0.0013367437401487555,-3.1454816677725774,0.013795034074883143,1.5489795918367348,0.6455862977602107 --3.220666424196283,0.013326358095800425,-13.680336583366557,0.0011499921314013437,-12.379111156150861,1.0687563975345584,-7.891165036802898,0.2736862565299614,-13.663819392576707,0.001142346081297293,-3.1360798637731375,0.013811845368394466,-7.8920197902111875,0.24725715127061001,-6.54487767776723,0.9688583835360576,-12.379111156155291,1.0687563975496106,-7.89117570373339,0.2472225082856028,-3.2206664213192244,0.013326358080774073,-13.685621927349343,0.001274091392871158,-7.892010815179153,0.2737330581031449,-6.544871998976057,0.9688602051088598,-13.663811592598329,0.0012646683376902011,-3.135548604919633,0.013750320357438003,1.5510204081632653,0.6447368421052632 --3.2076291720234753,0.01482475093046908,-14.076047502621162,0.0010691909114364838,-12.77627325794506,1.0679958340291953,-8.222835558162835,0.27494811353579063,-14.052996090999029,0.001061064617643259,-3.128740185689919,0.01381494852335839,-8.223702355000597,0.24848146447872543,-6.81113033360606,0.9685420633699391,-12.776273257952592,1.0679958340418128,-8.222846608140003,0.24843842614410727,-3.2076291698547434,0.01482475092886938,-14.081967282241841,0.0011858649052806421,-8.223693592067164,0.27500435493767117,-6.8111247948200955,0.9685442301510556,-14.052988828104555,0.0011743239080515095,-3.1264684710171493,0.013761995264673995,1.5530612244897959,0.6438896189224704 --3.2445396852908264,0.016010645212544566,-14.47879118722118,0.0009749192812979551,-13.172358831945049,1.0672550252884383,-8.55360024300744,0.2762177270475882,-14.44718024496732,0.0009657641481676102,-3.1233530781831003,0.013853087184032411,-8.554489125973577,0.24971125670247207,-7.0766740531972925,0.9682223714176873,-13.17235883195498,1.0672550252974304,-8.553611705809233,0.24966170101266302,-3.244539683810314,0.016010645216885763,-14.485179477881168,0.001082771951349046,-8.554480629901864,0.2762812247276628,-7.076668705588087,0.9682247195483386,-14.447173596153284,0.0010685251450084515,-3.1198282764348835,0.013817142646952588,1.5551020408163265,0.6430446194225722 --3.30585575350744,0.016633989048408154,-14.89295723616376,0.0008706199573234013,-13.567379057592468,1.0665387767285064,-8.883470743500599,0.27749668284636064,-14.850124914926406,0.0008594296455861123,-3.1206499755888246,0.013910420904757118,-8.884385603468486,0.2509469459517364,-7.341511269124958,0.9678991432659766,-13.567379057603747,1.066538776733162,-8.883482632587445,0.25089376189970475,-3.3058557525471657,0.016633989052964624,-14.899573558822514,0.0009685306506887363,-8.884377358212857,0.27756412730023605,-7.3415060922489195,0.9679015090432843,-14.85011890106328,0.0009505874325634372,-3.116536083443066,0.013895935736215885,1.5571428571428572,0.6422018348623854 --3.371888698305092,0.01661968291070676,-15.32514304950325,0.0007604468253487183,-13.96134616980519,1.0658479483142294,-9.212459900300061,0.2787855168453419,-15.267702236842325,0.0007455778573852829,-3.1207613892713923,0.013969626827070534,-9.21339758024779,0.2521889000911682,-7.605644369793836,0.9675723826779851,-13.961346169816546,1.0658479483142234,-9.212472209865437,0.2521350921312763,-3.371888697644855,0.016619682911880127,-15.331613077552912,0.0008476445543875565,-9.213389508367532,0.27885347363164525,-7.605639280996654,0.9675746277730737,-15.267696843039936,0.0008244100769739239,-3.116734968024738,0.013976765423231612,1.5591836734693878,0.6413612565445026 --3.425908726027279,0.016031627321546657,-15.785616503531713,0.0006496107778001444,-14.354271592038454,1.0651795858984199,-9.540579797809603,0.28008370937002314,-15.709756083036202,0.0006285327749379557,-3.1233012777534808,0.01401551201825859,-9.541531125207234,0.2534374260061939,-7.869075769643432,0.9672422589911296,-14.354271592048585,1.0651795858938957,-9.540592500891083,0.25338522307374484,-3.4259087253568863,0.016031627317796282,-15.79131792231119,0.0007257792891599707,-9.541523104968261,0.28014961222917156,-7.86907064131378,0.967244289039296,-15.709751295795979,0.0006947799466151111,-3.1199226415174564,0.014040796359071798,1.5612244897959184,0.6405228758169934 --3.4518594781324974,0.015061280361142461,-16.290157811464105,0.0005451303463177713,-14.746164394313158,1.0645280057273856,-9.867840143988303,0.2813899345323962,-16.193577237254853,0.0005141574722726811,-3.1275420606690374,0.01403746130538633,-9.86879255231768,0.254692755100684,-8.131807972142141,0.9669090781076931,-14.746164394321063,1.0645280057192035,-9.867853191727257,0.254642958607808,-3.4518594771621283,0.015061280353605553,-16.294030336820487,0.0006105707461891512,-9.868784439089962,0.28145281083417983,-8.131802653397301,0.9669108525933631,-16.193573097491704,0.0005681789017417567,-3.1251816502018106,0.01407499781706422,1.563265306122449,0.639686684073107 --3.4355659144602537,0.014023901574283779,-16.859717979247744,0.00045710066172774676,-15.137030460833916,1.0638865155958384,-10.194247362503464,0.2827024904281174,-16.748940287407827,0.0004115854491555363,-3.132612276525015,0.014030458105961343,-10.19518836749671,0.25595502648756907,-8.393843615251333,0.96657323251338,-15.137030460838925,1.0638865155848634,-10.194260684686775,0.2559067635911074,-3.4355659128491616,0.014023901567361136,-16.860132860234362,0.0005129867764265066,-10.195180015593595,0.28276323557512867,-8.393837954206933,0.9665747660090832,-16.748936922767236,0.00045469399841021024,-3.1314291529267906,0.014073352416818265,1.5653061224489797,0.6388526727509778 --3.3732358427957463,0.013324016154575229,-17.50751181335478,0.0003994214485684005,-15.526872554049264,1.0632493062189268,-10.51980458775659,0.28401979236489716,-17.414504016975755,0.00033629780332308334,-3.1376697829101756,0.013994813637517683,-10.520725189515892,0.25722427012578475,-8.655185492678608,0.9662351388397222,-15.526872554051044,1.063249306206296,-10.519818094009619,0.25717520999415977,-3.3732358404483924,0.013324016155127159,-17.502993259633712,0.0004481514963021629,-10.520716471176845,0.28408093045355304,-8.655179355711503,0.9662364953872519,-17.41450142321047,0.0003714106588240707,-3.1376293298924836,0.014036455957801201,1.5673469387755103,0.6380208333333333 --3.285014999919965,0.013322302473266767,-18.20396068909767,0.00038534232760647146,-15.915691224806682,1.0626130200828923,-10.844512512829834,0.2853407991079002,-18.183016492598778,0.0003095359482798361,-3.142026039293678,0.013934969398679673,-10.845409645570331,0.2585003926287168,-8.915836547553873,0.9658951748682268,-15.915691224805325,1.0626130200695574,-10.8445260959498,0.25844736300507903,-3.2850149972195926,0.01332230248879329,-18.195517025305133,0.00043077431711794283,-10.84540046608573,0.28540580017764816,-8.915829835155758,0.9658964560723903,-18.183013764751422,0.00034175390934932656,-3.142942802154399,0.013970000555598213,1.569387755102041,0.6371911573472041 --3.211364581591902,0.01412286137773042,-18.87274213072734,0.0004159994079400268,-16.30348630289391,1.0619776041688296,-11.168370830732654,0.2866652630796691,-18.932799967513617,0.0003401642145248573,-3.1452129100599975,0.013857831485758837,-11.169248246825243,0.2597831684214883,-9.175799842490465,0.9655536241623607,-16.303486302889763,1.0619776041555244,-11.168384369607109,0.2597230082509522,-3.211364579268622,0.014122861411610742,-18.863915037963956,0.00046284240277013147,-11.169238553492589,0.2867375997627596,-9.175792498330186,0.9655549553743319,-18.932795763711542,0.0003754598252591385,-3.146806067237593,0.013882666811651234,1.5714285714285714,0.6363636363636364 --3.1833425141924967,0.015505617761454973,-19.46336163842751,0.0004782843595002196,-16.690258562258318,1.061346247905198,-11.491379859743372,0.28799374393446503,-19.563707098551145,0.00041129475132444595,-3.1469939827075963,0.013771092562483885,-11.492247253193295,0.2610722383684722,-9.43507851024677,0.9652106395527988,-16.690258562251802,1.0613462478925313,-11.491393224324323,0.26100266478706985,-3.183342512767881,0.015505617811553452,-19.45643949711753,0.0005305442762072257,-11.492237039628991,0.2880759326445993,-9.435070526078567,0.9652121535442423,-19.563701293999234,0.00045383773486166415,-3.148943954040464,0.013784027656369319,1.573469387755102,0.6355382619974059 --3.2064355061966388,0.017092098769263885,-19.97829081932696,0.0005567137121819035,-17.076011122979516,1.0607244454651847,-11.81354192071144,0.2893273869926535,-20.08693753296962,0.0005012119143947666,-3.147331250429617,0.013681915148219636,-11.814412539022252,0.26236711704772986,-9.693675696177603,0.9648662274039995,-17.076011122970964,1.060724445453279,-11.813554976720745,0.2622873848893288,-3.2064355058022715,0.017092098830674845,-19.973497222181386,0.0006168030072751397,-11.814401843930193,0.28942025898848195,-9.693667110699337,0.9648680490995896,-20.086930578863228,0.0005528939116960133,-3.1493272050865526,0.013682880889595012,1.5755102040816327,0.6347150259067358 --3.2709711144425118,0.01852332220960871,-20.438144996837195,0.000640530375095544,-17.46075023134152,1.0601184401306627,-12.134862105102405,0.2906675283164765,-20.54099107197438,0.0005966973598824873,-3.1463260356490084,0.01359619678428946,-12.135749471881192,0.2636672087074488,-9.951594501020782,0.9645202551422903,-17.46075023133136,1.06011844011976,-12.134874719180848,0.2635783961884705,-3.2709711150066605,0.018523322277285117,-20.43496471054776,0.0007094727852504681,-12.135738373611652,0.29076991374769817,-9.951585394387074,0.9645224875453126,-20.5409833302346,0.0006580336091278951,-3.1480968452678204,0.013586328751105861,1.5775510204081633,0.6338939197930142 --3.364366615164571,0.019528603730639135,-20.86054456233232,0.000723417069601792,-17.844485225364302,1.059533453760966,-12.455348241621438,0.2920152308522923,-20.952308399238074,0.0006909554948564227,-3.144157666547613,0.013518438618100748,-12.456262815230513,0.26497183082357645,-10.208837932982085,0.9641724787677753,-17.844485225352706,1.059533453751184,-12.455360287145751,0.2648766805753151,-3.364366616600529,0.01952860379888526,-20.858439417110368,0.0008013169812372215,-12.45625142240939,0.2921241333983681,-10.208828417564945,0.9641751907320328,-20.952300106005083,0.0007617599739514654,-3.1454842738539535,0.01349963125292635,1.579591836734694,0.6330749354005167 --3.4756947312586357,0.019931140247875203,-21.257096199820943,0.0008017600810901936,-18.227227700655178,1.058972143925028,-12.77501007750547,0.29337087134092577,-21.335849276537388,0.0007803955868666494,-3.1410412522476774,0.01345204547891763,-12.775956662836878,0.26628024328685823,-10.46540887655468,0.9638225828338562,-18.227227700642317,1.0589721439165558,-12.77502143962257,0.26618259845388526,-3.475694733491679,0.019931140312141788,-21.255669213124428,0.0008881482803669004,-12.775945101711459,0.29348208910473933,-10.465399083889576,0.9638258005248344,-21.335840596359475,0.0008601170472967067,-3.1417549456176275,0.013426632576294282,1.5816326530612246,0.632258064516129 --3.595935299412703,0.019638583177684132,-21.635023820930908,0.000873465059897407,-18.608990087450344,1.0584336608630087,-13.09385788232316,0.29473388317959487,-21.700015796823592,0.000862997444246754,-3.1372160355068277,0.013399760124903152,-13.094834408994762,0.26759168072022477,-10.721310079849985,0.9634702270762274,-18.608990087436364,1.058433660856116,-13.093868462975022,0.26749565385033414,-3.595935302420279,0.0196385832333874,-21.634015908314083,0.0009675120638255502,-13.094822808273733,0.29484292358634884,-10.721300145153323,0.9634739292745365,-21.700006849095814,0.0009508838551141028,-3.1371919960940606,0.013370381710948584,1.5836734693877552,0.6314432989690721 --3.716855766698303,0.018634288995877022,-21.99884412713442,0.0009373089643454227,-18.989783987184726,1.0579135189964735,-13.411900823212003,0.29610272036883756,-22.04971501856868,0.0009375746660384482,-3.132961267019136,0.013363921400834842,-13.412898754698842,0.26890538531144925,-10.976544161101337,0.9631150906864379,-18.98978398716999,1.0579135189915012,-13.41191054524406,0.26881445988567765,-3.7168557704862617,0.018634289039446177,-21.998102384746097,0.0010379580174404537,-13.412887229017873,0.2962057888109839,-10.976534206103496,0.9631192094873678,-22.049705882127316,0.0010327603490676647,-3.1321174776353504,0.01333353873621883,1.5857142857142859,0.6306306306306306 --3.8293278088946807,0.01697198746938141,-22.351461739307172,0.0009925912265566952,-19.369618665509677,1.0574042951725384,-13.72914550567975,0.29747505325946355,-22.387971417418697,0.0010034251021413991,-3.128622993287652,0.01334634018896069,-13.730151746536606,0.27022063780177846,-11.231113630192487,0.9627569092993461,-19.36961866549473,1.0574042951697904,-13.7291543166246,0.2701369146960354,-3.829327813511926,0.016971987497156577,-22.35091003173336,0.0010986473092838341,-13.730140380477422,0.29756988180691885,-11.23110374676565,0.9627613360000881,-22.38796212593687,0.001104981167949114,-3.1269305140202452,0.013318287503749025,1.5877551020408165,0.6298200514138816 --3.9207142778079143,0.014775646266968999,-22.694827893483076,0.0010389371884418977,-19.7485000505984,1.056896968164145,-14.045595029100996,0.2988481508387553,-22.71677534667572,0.001060145723417511,-3.1246282510593857,0.013347770979860651,-14.046594842700419,0.2715367847939332,-11.485020921237838,0.9623954988015313,-19.748500050584074,1.0568969681640807,-14.045602903518509,0.2714605472176794,-3.9207142833051973,0.014775646275797567,-22.694444176577797,0.0011491312726484013,-14.046583676857518,0.29893447652871147,-11.485011156743273,0.9624000962880964,-22.71676588193555,0.001167111071192667,-3.1221315722433527,0.013325693133590387,1.5897959183673471,0.6290115532734274 --3.9700859905784562,0.01225109945779015,-23.030337152174038,0.0010761789365191768,-20.12643045601638,1.056382567476401,-14.361248773198955,0.3002193606983719,-23.03754748201607,0.0011075188113969464,-3.121466323787148,0.013367154530291999,-14.36222899931871,0.27285326118551045,-11.73826842940126,0.9620307656499153,-20.126430456003607,1.0563825674788816,-14.36125571395963,0.272782952370703,-3.970085996922817,0.01225109944429828,-23.030135686467858,0.0011892171072691513,-14.362218021986317,0.30029894994973616,-11.738258777746847,0.9620353854396236,-23.03753777129956,0.0012189192195497442,-3.118305165038902,0.013354743922666971,1.5918367346938775,0.6282051282051282 --3.9398989178254253,0.009727819515126246,-23.359073730119558,0.0011042757400756662,-20.503409070021267,1.055853737004642,-14.67610295614819,0.30158657604124633,-23.35140534737471,0.00114542900896826,-3.119629477221835,0.013400944172538027,-14.677054770161883,0.2741696071670245,-11.990858546699215,0.9616627038133987,-20.503409070011156,1.0558537370092578,-14.676108994785453,0.27410221528562306,-3.9398989244194547,0.00972781947730149,-23.359090969806047,0.0012188775448881714,-14.677043915333961,0.30166280177909693,-11.990848945932957,0.9616672062693629,-23.351395266720928,0.001260287625328819,-3.1160497708655797,0.013401440136652792,1.5938775510204082,0.6274007682458387 --3.7746526656617827,0.007754399342063934,-23.681970837331907,0.001123254401825658,-20.879433071685284,1.0553058527714072,-14.990151824044172,0.3029485842198164,-23.659322696302766,0.0011737933225555365,-3.1195229595921488,0.01344284862054529,-14.991072413413544,0.27548547974055027,-12.242793692689155,0.9612913796162527,-20.879433071678793,1.0553058527773465,-14.990157019481734,0.275417228683249,-3.774652670191887,0.0077543992829640675,-23.68225416031441,0.0012381827388082542,-14.991061567408838,0.30302566714415125,-12.242784031159255,0.9612956547266025,-23.65931208237501,0.0012911339989388393,-3.1158668551973947,0.01345839985148916,1.5959183673469388,0.6265984654731458 --3.4763452928480465,0.007081848224098046,-23.99991831892385,0.0011331594249124387,-21.254499092167844,1.0547374528949047,-15.303389187433984,0.30430522165619595,-23.96222735110105,0.0011924971970039538,-3.121368090343845,0.013484215794168416,-15.304282000205882,0.27680065907700285,-12.494076336281982,0.9609169086876865,-21.254499092165705,1.054737452901219,-15.303393623601343,0.2767278348024366,-3.4763452919215725,0.007081848162287873,-24.000517441490153,0.0012472426698202888,-15.304271016536244,0.30438732256529977,-12.494066467294845,0.9609208936770055,-23.962216021179156,0.0013113413959430895,-3.1180398342838638,0.013515261320845955,1.5979591836734695,0.6257982120051085 --3.213852912712693,0.007948341174747315,-24.313838774623715,0.0011340088956043298,-21.628604669525718,1.054149910742966,-15.615809952579779,0.30565730733866686,-24.2610617438068,0.0012013361680021234,-3.1251264047945915,0.013515088668509177,-15.616683520697078,0.27811505024072397,-12.744709007264891,0.9605394278234629,-21.628604669528368,1.0541499107483372,-15.615813734753864,0.2780347662799492,-3.2138529081650438,0.007948341134001384,-24.314799985533128,0.0012461557384053493,-15.616672241763105,0.30574768572395744,-12.74469877074757,0.9605431183705709,-24.26104952212274,0.0013206941052967065,-3.1225390165787563,0.013559937749165944,1.6,0.625 diff --git a/sparameters/coupler_ring_225c8f23.yml b/sparameters/coupler_ring_225c8f23.yml deleted file mode 100644 index db80e654..00000000 --- a/sparameters/coupler_ring_225c8f23.yml +++ /dev/null @@ -1,69 +0,0 @@ -resolution: 30 -port_symmetries: {} -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 0.0 -ymargin_bot: 2.5 -xmargin_left: 2.5 -xmargin_right: 2.5 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -component: - name: coupler_ring - version: 0.0.1 - settings: - name: coupler_ring - module: gdsfactory.components.coupler_ring - function_name: coupler_ring - info: {} - info_version: 2 - full: - gap: 0.2 - radius: 5.0 - length_x: 4.0 - coupler90: - function: coupler90 - bend: null - straight: - function: straight - coupler_straight: - function: coupler_straight - cross_section: strip - bend_cross_section: null - changed: {} - default: - gap: 0.2 - radius: 5.0 - length_x: 4.0 - coupler90: - function: coupler90 - bend: null - straight: - function: straight - coupler_straight: - function: coupler_straight - cross_section: strip - bend_cross_section: null - child: null -compute_time_seconds: 477.8175082206726 -compute_time_minutes: 7.96362513701121 diff --git a/sparameters/coupler_ring_4778e15a.npz b/sparameters/coupler_ring_4778e15a.npz deleted file mode 100644 index 1c976e51..00000000 Binary files a/sparameters/coupler_ring_4778e15a.npz and /dev/null differ diff --git a/sparameters/coupler_ring_4778e15a.yml b/sparameters/coupler_ring_4778e15a.yml deleted file mode 100644 index 644c241c..00000000 --- a/sparameters/coupler_ring_4778e15a.yml +++ /dev/null @@ -1,73 +0,0 @@ -resolution: 30 -port_symmetries: {} -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 0.0 -ymargin_bot: 2.5 -xmargin_left: 2.5 -xmargin_right: 2.5 -is_3d: false -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - info: {} - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - info: {} -component: - name: coupler_ring - settings: - name: coupler_ring - module: gdsfactory.components.coupler_ring - function_name: coupler_ring - info: {} - info_version: 2 - full: - gap: 0.2 - radius: 5.0 - length_x: 4.0 - coupler90: - function: coupler90 - bend: - function: bend_euler - straight: - function: straight - coupler_straight: - function: coupler_straight - cross_section: strip - bend_cross_section: null - changed: {} - default: - gap: 0.2 - radius: 5.0 - length_x: 4.0 - coupler90: - function: coupler90 - bend: - function: bend_euler - straight: - function: straight - coupler_straight: - function: coupler_straight - cross_section: strip - bend_cross_section: null - child: null -compute_time_seconds: 220.58993411064148 -compute_time_minutes: 3.676498901844025 diff --git a/sparameters/crossing_524beede.csv b/sparameters/crossing_524beede.csv deleted file mode 100644 index 2336a880..00000000 --- a/sparameters/crossing_524beede.csv +++ /dev/null @@ -1,51 +0,0 @@ -s11a,s11m,s31a,s31m,s41a,s41m,s21a,s21m,s22m,s22a,s33m,s33a,s44m,s44a,s12m,s12a,s34m,s34a,s43m,s43a,s13m,s13a,s24m,s24a,s42m,s42a,s14m,s14a,s23m,s23a,s32m,s32a,wavelengths,freqs -2.4258661549433045,0.043060487988339065,-2.653078668079691,0.9533083719978945,-0.48955340480445064,0.007920245639886579,-0.49055162289982884,0.010281948066476213,0.043060487988339065,2.4258661549433045,0.043060487988339065,2.4258661549433045,0.043060487988339065,2.4258661549433045,0.010281948066476213,-0.49055162289982884,0.010281948066476213,-0.49055162289982884,0.010281948066476213,-0.49055162289982884,0.9533083719978945,-2.653078668079691,0.9533083719978945,-2.653078668079691,0.9533083719978945,-2.653078668079691,0.007920245639886579,-0.48955340480445064,0.007920245639886579,-0.48955340480445064,0.007920245639886579,-0.48955340480445064,1.5,0.6666666666666666 -2.348097311823561,0.03783428586153647,-2.818245866841021,0.9525171092706788,-0.6711790246590436,0.007639760298144976,-0.6721513486274786,0.009907891811026736,0.03783428586153647,2.348097311823561,0.03783428586153647,2.348097311823561,0.03783428586153647,2.348097311823561,0.009907891811026736,-0.6721513486274786,0.009907891811026736,-0.6721513486274786,0.009907891811026736,-0.6721513486274786,0.9525171092706788,-2.818245866841021,0.9525171092706788,-2.818245866841021,0.9525171092706788,-2.818245866841021,0.007639760298144976,-0.6711790246590436,0.007639760298144976,-0.6711790246590436,0.007639760298144976,-0.6711790246590436,1.5020408163265306,0.6657608695652174 -2.282292492525083,0.032297278756263585,-2.9828319070495612,0.9514784408350941,-0.8449862563750108,0.0073868812151288085,-0.8458734350845928,0.009570209219690552,0.032297278756263585,2.282292492525083,0.032297278756263585,2.282292492525083,0.032297278756263585,2.282292492525083,0.009570209219690552,-0.8458734350845928,0.009570209219690552,-0.8458734350845928,0.009570209219690552,-0.8458734350845928,0.9514784408350941,-2.9828319070495612,0.9514784408350941,-2.9828319070495612,0.9514784408350941,-2.9828319070495612,0.0073868812151288085,-0.8449862563750108,0.0073868812151288085,-0.8449862563750108,0.0073868812151288085,-0.8449862563750108,1.5040816326530613,0.6648575305291723 -2.23580627154066,0.026563031333032876,-3.1467948970800754,0.9502088699696241,-1.0117533405530674,0.007167153762507539,-1.0124977799490602,0.009276255075469244,0.026563031333032876,2.23580627154066,0.026563031333032876,2.23580627154066,0.026563031333032876,2.23580627154066,0.009276255075469244,-1.0124977799490602,0.009276255075469244,-1.0124977799490602,0.009276255075469244,-1.0124977799490602,0.9502088699696241,-3.1467948970800754,0.9502088699696241,-3.1467948970800754,0.9502088699696241,-3.1467948970800754,0.007167153762507539,-1.0117533405530674,0.007167153762507539,-1.0117533405530674,0.007167153762507539,-1.0117533405530674,1.506122448979592,0.6639566395663956 -2.2242673207120065,0.020781618022484568,-3.310092963662252,0.9487319021037817,-1.1724945061592478,0.006984161258756225,-1.1730541023115,0.009030756763865314,0.020781618022484568,2.2242673207120065,0.020781618022484568,2.2242673207120065,0.020781618022484568,2.2242673207120065,0.009030756763865314,-1.1730541023115,0.009030756763865314,-1.1730541023115,0.009030756763865314,-1.1730541023115,0.9487319021037817,-3.310092963662252,0.9487319021037817,-3.310092963662252,0.9487319021037817,-3.310092963662252,0.006984161258756225,-1.1724945061592478,0.006984161258756225,-1.1724945061592478,0.006984161258756225,-1.1724945061592478,1.5081632653061225,0.6630581867388362 -2.284838179292004,0.015210695015741797,-3.4726856574522564,0.9470798860236962,-1.3284076121911295,0.00683951624339146,-1.3287666153740818,0.008835772297312736,0.015210695015741797,2.284838179292004,0.015210695015741797,2.284838179292004,0.015210695015741797,2.284838179292004,0.008835772297312736,-1.3287666153740818,0.008835772297312736,-1.3287666153740818,0.008835772297312736,-1.3287666153740818,0.9470798860236962,-3.4726856574522564,0.9470798860236962,-3.4726856574522564,0.9470798860236962,-3.4726856574522564,0.00683951624339146,-1.3284076121911295,0.00683951624339146,-1.3284076121911295,0.00683951624339146,-1.3284076121911295,1.510204081632653,0.6621621621621622 -2.5125892157233465,0.01046116324925869,-3.634536882807646,0.9452952563065817,-1.480795623443495,0.006732929124370629,-1.4809689369932402,0.008690772934273701,0.01046116324925869,2.5125892157233465,0.01046116324925869,2.5125892157233465,0.01046116324925869,2.5125892157233465,0.008690772934273701,-1.4809689369932402,0.008690772934273701,-1.4809689369932402,0.008690772934273701,-1.4809689369932402,0.9452952563065817,-3.634536882807646,0.9452952563065817,-3.634536882807646,0.9452952563065817,-3.634536882807646,0.006732929124370629,-1.480795623443495,0.006732929124370629,-1.480795623443495,0.006732929124370629,-1.480795623443495,1.5122448979591836,0.6612685560053981 -3.0485780846374557,0.008181756887731649,-3.795618898446099,0.9434304002488312,-1.6309710396024653,0.006662354449166297,-1.6310003216367543,0.00859285559206046,0.008181756887731649,3.0485780846374557,0.008181756887731649,3.0485780846374557,0.008181756887731649,3.0485780846374557,0.00859285559206046,-1.6310003216367543,0.00859285559206046,-1.6310003216367543,0.00859285559206046,-1.6310003216367543,0.9434304002488312,-3.795618898446099,0.9434304002488312,-3.795618898446099,0.9434304002488312,-3.795618898446099,0.006662354449166297,-1.6309710396024653,0.006662354449166297,-1.6309710396024653,0.006662354449166297,-1.6309710396024653,1.5142857142857142,0.6603773584905661 -3.598859798441084,0.009997192777795177,-3.9559165525210958,0.9415457169683968,-1.780157425960797,0.006624211533172627,-1.7801002090953046,0.008537076496625107,0.009997192777795177,3.598859798441084,0.009997192777795177,3.598859798441084,0.009997192777795177,3.598859798441084,0.008537076496625107,-1.7801002090953046,0.008537076496625107,-1.7801002090953046,0.008537076496625107,-1.7801002090953046,0.9415457169683968,-3.9559165525210958,0.9415457169683968,-3.9559165525210958,0.9415457169683968,-3.9559165525210958,0.006624211533172627,-1.780157425960797,0.006624211533172627,-1.780157425960797,0.006624211533172627,-1.780157425960797,1.5163265306122449,0.6594885598923285 -3.8425316571591543,0.01413894974711091,-4.115430761523603,0.9397059065608729,-1.9294034051389275,0.006613669715721803,-1.9293188218961108,0.008516881011177273,0.01413894974711091,3.8425316571591543,0.01413894974711091,3.8425316571591543,0.01413894974711091,3.8425316571591543,0.008516881011177273,-1.9293188218961108,0.008516881011177273,-1.9293188218961108,0.008516881011177273,-1.9293188218961108,0.9397059065608729,-4.115430761523603,0.9397059065608729,-4.115430761523603,0.9397059065608729,-4.115430761523603,0.006613669715721803,-1.9294034051389275,0.006613669715721803,-1.9294034051389275,0.006613669715721803,-1.9294034051389275,1.5183673469387755,0.6586021505376344 -3.915392901778443,0.018828675058925732,-4.274180353161239,0.9379749858932414,-2.0795211503466096,0.006624981619473085,-2.079456643750256,0.00852459227941402,0.018828675058925732,3.915392901778443,0.018828675058925732,3.915392901778443,0.018828675058925732,3.915392901778443,0.00852459227941402,-2.079456643750256,0.00852459227941402,-2.079456643750256,0.00852459227941402,-2.079456643750256,0.9379749858932414,-4.274180353161239,0.9379749858932414,-4.274180353161239,0.9379749858932414,-4.274180353161239,0.006624981619473085,-2.0795211503466096,0.006624981619473085,-2.0795211503466096,0.006624981619473085,-2.0795211503466096,1.5204081632653061,0.6577181208053691 -3.917214381549977,0.023432592493754928,-4.432201725550327,0.9364108517223777,-2.231055003846336,0.0066518433980825705,-2.2310374538751807,0.00855191808845821,0.023432592493754928,3.917214381549977,0.023432592493754928,3.917214381549977,0.023432592493754928,3.917214381549977,0.00855191808845821,-2.2310374538751807,0.00855191808845821,-2.2310374538751807,0.00855191808845821,-2.2310374538751807,0.9364108517223777,-4.432201725550327,0.9364108517223777,-4.432201725550327,0.9364108517223777,-4.432201725550327,0.0066518433980825705,-2.231055003846336,0.0066518433980825705,-2.231055003846336,0.0066518433980825705,-2.231055003846336,1.5224489795918368,0.6568364611260054 -3.8876406102660708,0.027720313528452334,-4.589546238019088,0.935060327337016,-2.384279024031378,0.006687760456947555,-2.3843117779526413,0.0085904410938908,0.027720313528452334,3.8876406102660708,0.027720313528452334,3.8876406102660708,0.027720313528452334,3.8876406102660708,0.0085904410938908,-2.3843117779526413,0.0085904410938908,-2.3843117779526413,0.0085904410938908,-2.3843117779526413,0.935060327337016,-4.589546238019088,0.935060327337016,-4.589546238019088,0.935060327337016,-4.589546238019088,0.006687760456947555,-2.384279024031378,0.006687760456947555,-2.384279024031378,0.006687760456947555,-2.384279024031378,1.5244897959183674,0.6559571619812583 -3.8437859034764648,0.03160336204749956,-4.7462757181088495,0.9339555242931918,-2.539217416214512,0.006726399744599281,-2.5392827972811998,0.008632067965656427,0.03160336204749956,3.8437859034764648,0.03160336204749956,3.8437859034764648,0.03160336204749956,3.8437859034764648,0.008632067965656427,-2.5392827972811998,0.008632067965656427,-2.5392827972811998,0.008632067965656427,-2.5392827972811998,0.9339555242931918,-4.7462757181088495,0.9339555242931918,-4.7462757181088495,0.9339555242931918,-4.7462757181088495,0.006726399744599281,-2.539217416214512,0.006726399744599281,-2.539217416214512,0.006726399744599281,-2.539217416214512,1.526530612244898,0.6550802139037433 -3.7940322944992646,0.035065734969067085,-4.902456835459411,0.9331120707283462,-2.6956799038661448,0.006761913365411194,-2.6957455678248743,0.008669422846958052,0.035065734969067085,3.7940322944992646,0.035065734969067085,3.7940322944992646,0.035065734969067085,3.7940322944992646,0.008669422846958052,-2.6957455678248743,0.008669422846958052,-2.6957455678248743,0.008669422846958052,-2.6957455678248743,0.9331120707283462,-4.902456835459411,0.9331120707283462,-4.902456835459411,0.9331120707283462,-4.902456835459411,0.006761913365411194,-2.6956799038661448,0.006761913365411194,-2.6956799038661448,0.006761913365411194,-2.6956799038661448,1.5285714285714287,0.6542056074766355 -3.7427787461936677,0.03814022835675417,-5.0581552784711254,0.9325293815711487,-2.8533047164652605,0.006789221070266824,-2.8533318625414386,0.00869617643571792,0.03814022835675417,3.7427787461936677,0.03814022835675417,3.7427787461936677,0.03814022835675417,3.7427787461936677,0.00869617643571792,-2.8533318625414386,0.00869617643571792,-2.8533318625414386,0.00869617643571792,-2.8533318625414386,0.9325293815711487,-5.0581552784711254,0.9325293815711487,-5.0581552784711254,0.9325293815711487,-5.0581552784711254,0.006789221070266824,-2.8533047164652605,0.006789221070266824,-2.8533047164652605,0.006789221070266824,-2.8533047164652605,1.530612244897959,0.6533333333333333 -3.6922190167139948,0.040894466638487045,-5.2134306464917,0.932192763716711,-3.0116038612106872,0.00680424038487549,-3.0115555420560187,0.008707303533761979,0.040894466638487045,3.6922190167139948,0.040894466638487045,3.6922190167139948,0.040894466638487045,3.6922190167139948,0.008707303533761979,-3.0115555420560187,0.008707303533761979,-3.0115555420560187,0.008707303533761979,-3.0115555420560187,0.932192763716711,-5.2134306464917,0.932192763716711,-5.2134306464917,0.932192763716711,-5.2134306464917,0.00680424038487549,-3.0116038612106872,0.00680424038487549,-3.0116038612106872,0.00680424038487549,-3.0116038612106872,1.5326530612244897,0.6524633821571239 -3.6430738894382872,0.043416820156141005,-5.368332760968383,0.932076840788217,-3.170007583451813,0.006804053236091063,-3.1698558543034867,0.008699260757962433,0.043416820156141005,3.6430738894382872,0.043416820156141005,3.6430738894382872,0.043416820156141005,3.6430738894382872,0.008699260757962433,-3.1698558543034867,0.008699260757962433,-3.1698558543034867,0.008699260757962433,-3.1698558543034867,0.932076840788217,-5.368332760968383,0.932076840788217,-5.368332760968383,0.932076840788217,-5.368332760968383,0.006804053236091063,-3.170007583451813,0.006804053236091063,-3.170007583451813,0.006804053236091063,-3.170007583451813,1.5346938775510204,0.6515957446808511 -3.594965565690234,0.045799953269950684,-5.52289976524969,0.9321496034681859,-3.327906682092479,0.006786998154221828,-3.3276378232023895,0.00867007475388169,0.045799953269950684,3.594965565690234,0.045799953269950684,3.594965565690234,0.045799953269950684,3.594965565690234,0.00867007475388169,-3.3276378232023895,0.00867007475388169,-3.3276378232023895,0.00867007475388169,-3.3276378232023895,0.9321496034681859,-5.52289976524969,0.9321496034681859,-5.52289976524969,0.9321496034681859,-5.52289976524969,0.006786998154221828,-3.327906682092479,0.006786998154221828,-3.327906682092479,0.006786998154221828,-3.327906682092479,1.536734693877551,0.650730411686587 -3.5467173990507375,0.0481231335126187,-5.6771580090158285,0.9323763669206099,-3.48469233898088,0.0067526787348859505,-3.484309754870065,0.00861933183740238,0.0481231335126187,3.5467173990507375,0.0481231335126187,3.5467173990507375,0.0481231335126187,3.5467173990507375,0.00861933183740238,-3.484309754870065,0.00861933183740238,-3.484309754870065,0.00861933183740238,-3.484309754870065,0.9323763669206099,-5.6771580090158285,0.9323763669206099,-5.6771580090158285,0.9323763669206099,-5.6771580090158285,0.0067526787348859505,-3.48469233898088,0.0067526787348859505,-3.48469233898088,0.0067526787348859505,-3.48469233898088,1.5387755102040817,0.649867374005305 -3.496684932553063,0.05043635809318922,-5.831123384991976,0.9327230367682418,-3.639793337857327,0.006701882856599147,-3.639317973531615,0.008548063687718434,0.05043635809318922,3.496684932553063,0.05043635809318922,3.496684932553063,0.05043635809318922,3.496684932553063,0.008548063687718434,-3.639317973531615,0.008548063687718434,-3.639317973531615,0.008548063687718434,-3.639317973531615,0.9327230367682418,-5.831123384991976,0.9327230367682418,-5.831123384991976,0.9327230367682418,-5.831123384991976,0.006701882856599147,-3.639793337857327,0.006701882856599147,-3.639793337857327,0.006701882856599147,-3.639793337857327,1.5408163265306123,0.6490066225165563 -3.4431144065726,0.05274980731756136,-5.984803569423111,0.9331583095096424,-3.7927101174196194,0.006636413353603949,-3.7921783923987276,0.00845853068361248,0.05274980731756136,3.4431144065726,0.05274980731756136,3.4431144065726,0.05274980731756136,3.4431144065726,0.00845853068361248,-3.7921783923987276,0.00845853068361248,-3.7921783923987276,0.00845853068361248,-3.7921783923987276,0.9331583095096424,-5.984803569423111,0.9331583095096424,-5.984803569423111,0.9331583095096424,-5.984803569423111,0.006636413353603949,-3.7927101174196194,0.006636413353603949,-3.7927101174196194,0.006636413353603949,-3.7927101174196194,1.542857142857143,0.6481481481481481 -3.384462684549311,0.05503090765087952,-6.138200547076683,0.9336547023121248,-3.9430442150907363,0.006558839095101847,-3.942503640568867,0.008353914082239022,0.05503090765087952,3.384462684549311,0.05503090765087952,3.384462684549311,0.05503090765087952,3.384462684549311,0.008353914082239022,-3.942503640568867,0.008353914082239022,-3.942503640568867,0.008353914082239022,-3.942503640568867,0.9336547023121248,-6.138200547076683,0.9336547023121248,-6.138200547076683,0.9336547023121248,-6.138200547076683,0.006558839095101847,-3.9430442150907363,0.006558839095101847,-3.9430442150907363,0.006558839095101847,-3.9430442150907363,1.5448979591836736,0.6472919418758256 -3.3196084869012776,0.05720899114958809,-6.291312871539919,0.934188556613543,-4.090520576485611,0.006472185001751392,-4.090023454836017,0.008237939415333384,0.05720899114958809,3.3196084869012776,0.05720899114958809,3.3196084869012776,0.05720899114958809,3.3196084869012776,0.008237939415333384,-4.090023454836017,0.008237939415333384,-4.090023454836017,0.008237939415333384,-4.090023454836017,0.934188556613543,-6.291312871539919,0.934188556613543,-6.291312871539919,0.934188556613543,-6.291312871539919,0.006472185001751392,-4.090520576485611,0.006472185001751392,-4.090520576485611,0.006472185001751392,-4.090520576485611,1.5469387755102042,0.646437994722955 -3.2479264925253006,0.05918543893680288,-6.444137285157327,0.9347393376464226,-4.234999312138541,0.006379589415339719,-4.234595240926646,0.008114464848568915,0.05918543893680288,3.2479264925253006,0.05918543893680288,3.2479264925253006,0.05918543893680288,3.2479264925253006,0.008114464848568915,-4.234595240926646,0.008114464848568915,-4.234595240926646,0.008114464848568915,-4.234595240926646,0.9347393376464226,-6.444137285157327,0.9347393376464226,-6.444137285157327,0.9347393376464226,-6.444137285157327,0.006379589415339719,-4.234999312138541,0.006379589415339719,-4.234999312138541,0.006379589415339719,-4.234999312138541,1.5489795918367348,0.6455862977602107 -3.1692458734598765,0.0608462751785639,-6.596669544333908,0.9352886294626974,-4.3764732807880975,0.006283965942516125,-4.376201542826547,0.00798707803749431,0.0608462751785639,3.1692458734598765,0.0608462751785639,3.1692458734598765,0.0608462751785639,3.1692458734598765,0.00798707803749431,-4.376201542826547,0.00798707803749431,-4.376201542826547,0.00798707803749431,-4.376201542826547,0.9352886294626974,-6.596669544333908,0.9352886294626974,-6.596669544333908,0.9352886294626974,-6.596669544333908,0.006283965942516125,-4.3764732807880975,0.006283965942516125,-4.3764732807880975,0.006283965942516125,-4.3764732807880975,1.5510204081632653,0.6447368421052632 -3.083741834414959,0.06207450707705716,-6.748904507363232,0.9358192017019734,-4.51504886662485,0.006187712315469478,-4.514932055236981,0.007858750867433154,0.06207450707705716,3.083741834414959,0.06207450707705716,3.083741834414959,0.06207450707705716,3.083741834414959,0.007858750867433154,-4.514932055236981,0.007858750867433154,-4.514932055236981,0.007858750867433154,-4.514932055236981,0.9358192017019734,-6.748904507363232,0.9358192017019734,-6.748904507363232,0.9358192017019734,-6.748904507363232,0.006187712315469478,-4.51504886662485,0.006187712315469478,-4.51504886662485,0.006187712315469478,-4.51504886662485,1.5530612244897959,0.6438896189224704 -2.9918073770489855,0.0627604934669277,-6.900835698139709,0.9363144233054229,-4.650909722566938,0.00609250844595205,-4.650949963107105,0.0077316006821830496,0.0627604934669277,2.9918073770489855,0.0627604934669277,2.9918073770489855,0.0627604934669277,2.9918073770489855,0.0077316006821830496,-4.650949963107105,0.0077316006821830496,-4.650949963107105,0.0077316006821830496,-4.650949963107105,0.9363144233054229,-6.900835698139709,0.9363144233054229,-6.900835698139709,0.9363144233054229,-6.900835698139709,0.00609250844595205,-4.650909722566938,0.00609250844595205,-4.650909722566938,0.00609250844595205,-4.650909722566938,1.5551020408163265,0.6430446194225722 -2.8939356799057387,0.06280963372864054,-7.0524546356862166,0.9367581567314373,-4.7842667353876145,0.005999237675884149,-4.784445506112493,0.007606797038930754,0.06280963372864054,2.8939356799057387,0.06280963372864054,2.8939356799057387,0.06280963372864054,2.8939356799057387,0.007606797038930754,-4.784445506112493,0.007606797038930754,-4.784445506112493,0.007606797038930754,-4.784445506112493,0.9367581567314373,-7.0524546356862166,0.9367581567314373,-7.0524546356862166,0.9367581567314373,-7.0524546356862166,0.005999237675884149,-4.7842667353876145,0.005999237675884149,-4.7842667353876145,0.005999237675884149,-4.7842667353876145,1.5571428571428572,0.6422018348623854 -2.7906252594271295,0.06214737622829772,-7.203750214874793,0.9371351238001029,-4.915301065732793,0.005908049055939352,-4.915582916989697,0.007484634516180337,0.06214737622829772,2.7906252594271295,0.06214737622829772,2.7906252594271295,0.06214737622829772,2.7906252594271295,0.007484634516180337,-4.915582916989697,0.007484634516180337,-4.915582916989697,0.007484634516180337,-4.915582916989697,0.9371351238001029,-7.203750214874793,0.9371351238001029,-7.203750214874793,0.9371351238001029,-7.203750214874793,0.005908049055939352,-4.915301065732793,0.005908049055939352,-4.915301065732793,0.005908049055939352,-4.915301065732793,1.5591836734693878,0.6413612565445026 -2.682307209520403,0.06072192136829796,-7.354708355590616,0.9374316239353393,-5.0441095824270565,0.005818556874994106,-5.044449191654907,0.0073647674391369156,0.06072192136829796,2.682307209520403,0.06072192136829796,2.682307209520403,0.06072192136829796,2.682307209520403,0.0073647674391369156,-5.044449191654907,0.0073647674391369156,-5.044449191654907,0.0073647674391369156,-5.044449191654907,0.9374316239353393,-7.354708355590616,0.9374316239353393,-7.354708355590616,0.9374316239353393,-7.354708355590616,0.005818556874994106,-5.0441095824270565,0.005818556874994106,-5.0441095824270565,0.005818556874994106,-5.0441095824270565,1.5612244897959184,0.6405228758169934 -2.5692864984333688,0.05850513929761883,-7.505312035363159,0.9376364265903041,-5.170662474042955,0.005730151497917405,-5.171013728631045,0.007246576931548721,0.05850513929761883,2.5692864984333688,0.05850513929761883,2.5692864984333688,0.05850513929761883,2.5692864984333688,0.007246576931548721,-5.171013728631045,0.007246576931548721,-5.171013728631045,0.007246576931548721,-5.171013728631045,0.9376364265903041,-7.505312035363159,0.9376364265903041,-7.505312035363159,0.9376364265903041,-7.505312035363159,0.005730151497917405,-5.170662474042955,0.005730151497917405,-5.170662474042955,0.005730151497917405,-5.170662474042955,1.563265306122449,0.639686684073107 -2.451684621442094,0.055492244912429746,-7.6555417164662884,0.9377416553551103,-5.29478130118718,0.00564237810988693,-5.295106688615661,0.0071296203047705705,0.055492244912429746,2.451684621442094,0.055492244912429746,2.451684621442094,0.055492244912429746,2.451684621442094,0.0071296203047705705,-5.295106688615661,0.0071296203047705705,-5.295106688615661,0.0071296203047705705,-5.295106688615661,0.9377416553551103,-7.6555417164662884,0.9377416553551103,-7.6555417164662884,0.9377416553551103,-7.6555417164662884,0.00564237810988693,-5.29478130118718,0.00564237810988693,-5.29478130118718,0.00564237810988693,-5.29478130118718,1.5653061224489797,0.6388526727509778 -2.3293647397284674,0.05170074570284876,-7.805376099830061,0.9377435202502666,-5.416143122144865,0.005555330498080057,-5.4164216815784405,0.007014101231374014,0.05170074570284876,2.3293647397284674,0.05170074570284876,2.3293647397284674,0.05170074570284876,2.3293647397284674,0.007014101231374014,-5.4164216815784405,0.007014101231374014,-5.4164216815784405,0.007014101231374014,-5.4164216815784405,0.9377435202502666,-7.805376099830061,0.9377435202502666,-7.805376099830061,0.9377435202502666,-7.805376099830061,0.005555330498080057,-5.416143122144865,0.005555330498080057,-5.416143122144865,0.005555330498080057,-5.416143122144865,1.5673469387755103,0.6380208333333333 -2.2018064876936507,0.047169145400595254,-7.954793099752489,0.9376428157449748,-5.534313683283413,0.005470005537038958,-5.534546031584902,0.006901296651149981,0.047169145400595254,2.2018064876936507,0.047169145400595254,2.2018064876936507,0.047169145400595254,2.2018064876936507,0.006901296651149981,-5.534546031584902,0.006901296651149981,-5.534546031584902,0.006901296651149981,-5.534546031584902,0.9376428157449748,-7.954793099752489,0.9376428157449748,-7.954793099752489,0.9376428157449748,-7.954793099752489,0.005470005537038958,-5.534313683283413,0.005470005537038958,-5.534313683283413,0.005470005537038958,-5.534313683283413,1.569387755102041,0.6371911573472041 -2.067861842237673,0.04195589794058115,-8.103770936090108,0.937445160962825,-5.648810529770177,0.005388567962267599,-5.649019866102672,0.006793880127895119,0.04195589794058115,2.067861842237673,0.04195589794058115,2.067861842237673,0.04195589794058115,2.067861842237673,0.006793880127895119,-5.649019866102672,0.006793880127895119,-5.649019866102672,0.006793880127895119,-5.649019866102672,0.937445160962825,-8.103770936090108,0.937445160962825,-8.103770936090108,0.937445160962825,-8.103770936090108,0.005388567962267599,-5.648810529770177,0.005388567962267599,-5.648810529770177,0.005388567962267599,-5.648810529770177,1.5714285714285714,0.6363636363636364 -1.925224559572003,0.03613929051690047,-8.252289271289762,0.9371609960546793,-5.75919468110762,0.005314481158168498,-5.7594231268470715,0.006696087910283837,0.03613929051690047,1.925224559572003,0.03613929051690047,1.925224559572003,0.03613929051690047,1.925224559572003,0.006696087910283837,-5.7594231268470715,0.006696087910283837,-5.7594231268470715,0.006696087910283837,-5.7594231268470715,0.9371609960546793,-8.252289271289762,0.9371609960546793,-8.252289271289762,0.9371609960546793,-8.252289271289762,0.005314481158168498,-5.75919468110762,0.005314481158168498,-5.75919468110762,0.005314481158168498,-5.75919468110762,1.573469387755102,0.6355382619974059 -1.7691391217597767,0.02981974132191817,-8.400330357603414,0.9368053560713944,-5.865185640872933,0.005252466895612694,-5.8654858667710625,0.0066136818924300905,0.02981974132191817,1.7691391217597767,0.02981974132191817,1.7691391217597767,0.02981974132191817,1.7691391217597767,0.0066136818924300905,-5.8654858667710625,0.0066136818924300905,-5.8654858667710625,0.0066136818924300905,-5.8654858667710625,0.9368053560713944,-8.400330357603414,0.9368053560713944,-8.400330357603414,0.9368053560713944,-8.400330357603414,0.005252466895612694,-5.865185640872933,0.005252466895612694,-5.865185640872933,0.005252466895612694,-5.865185640872933,1.5755102040816327,0.6347150259067358 -1.588752130502023,0.023129341759542132,-8.547880183802203,0.9363974250419844,-5.966787249176898,0.005208267882478171,-5.967210264208277,0.006553676005802233,0.023129341759542132,1.588752130502023,0.023129341759542132,1.588752130502023,0.023129341759542132,1.588752130502023,0.006553676005802233,-5.967210264208277,0.006553676005802233,-5.967210264208277,0.006553676005802233,-5.967210264208277,0.9363974250419844,-8.547880183802203,0.9363974250419844,-8.547880183802203,0.9363974250419844,-8.547880183802203,0.005208267882478171,-5.966787249176898,0.005208267882478171,-5.966787249176898,0.005208267882478171,-5.966787249176898,1.5775510204081633,0.6338939197930142 -1.3543258555554487,0.01627001004276112,-8.694929606528595,0.9359598431540734,-6.0644011820532455,0.0051882078639005295,-6.064982492274078,0.006523816588782949,0.01627001004276112,1.3543258555554487,0.01627001004276112,1.3543258555554487,0.01627001004276112,1.3543258555554487,0.006523816588782949,-6.064982492274078,0.006523816588782949,-6.064982492274078,0.006523816588782949,-6.064982492274078,0.9359598431540734,-8.694929606528595,0.9359598431540734,-8.694929606528595,0.9359598431540734,-8.694929606528595,0.0051882078639005295,-6.0644011820532455,0.0051882078639005295,-6.0644011820532455,0.0051882078639005295,-6.0644011820532455,1.579591836734694,0.6330749354005167 -0.9566271228893086,0.00971755006543415,-8.84147541721796,0.9355177187325578,-6.158894638313555,0.005198580905419526,-6.1596424020937555,0.00653185046543371,0.00971755006543415,0.9566271228893086,0.00971755006543415,0.9566271228893086,0.00971755006543415,0.9566271228893086,0.00653185046543371,-6.1596424020937555,0.00653185046543371,-6.1596424020937555,0.00653185046543371,-6.1596424020937555,0.9355177187325578,-8.84147541721796,0.9355177187325578,-8.84147541721796,0.9355177187325578,-8.84147541721796,0.005198580905419526,-6.158894638313555,0.005198580905419526,-6.158894638313555,0.005198580905419526,-6.158894638313555,1.5816326530612246,0.632258064516129 --0.04278502802801287,0.005767152598818542,-8.987521242237051,0.9350973013479834,-6.2515874341931434,0.005244952513729052,-6.252476842138791,0.006584675469237165,0.005767152598818542,-0.04278502802801287,0.005767152598818542,-0.04278502802801287,0.005767152598818542,-0.04278502802801287,0.006584675469237165,-6.252476842138791,0.006584675469237165,-6.252476842138791,0.006584675469237165,-6.252476842138791,0.9350973013479834,-8.987521242237051,0.9350973013479834,-8.987521242237051,0.9350973013479834,-8.987521242237051,0.005244952513729052,-6.2515874341931434,0.005244952513729052,-6.2515874341931434,0.005244952513729052,-6.2515874341931434,1.5836734693877552,0.6314432989690721 --1.1185153878767955,0.009086385310776655,-9.133078121971252,0.9347243112175702,-6.344140159959048,0.00533150295470988,-6.345117001729086,0.006687527441263171,0.009086385310776655,-1.1185153878767955,0.009086385310776655,-1.1185153878767955,0.009086385310776655,-1.1185153878767955,0.006687527441263171,-6.345117001729086,0.006687527441263171,-6.345117001729086,0.006687527441263171,-6.345117001729086,0.9347243112175702,-9.133078121971252,0.9347243112175702,-9.133078121971252,0.9347243112175702,-9.133078121971252,0.00533150295470988,-6.344140159959048,0.00533150295470988,-6.344140159959048,0.00533150295470988,-6.344140159959048,1.5857142857142859,0.6306306306306306 --1.5476874558445373,0.015347347345775555,-9.27816458698582,0.9344219892344978,-6.43835886476729,0.005460557428702674,-6.439351970661568,0.006843379751975188,0.015347347345775555,-1.5476874558445373,0.015347347345775555,-1.5476874558445373,0.015347347345775555,-1.5476874558445373,0.006843379751975188,-6.439351970661568,0.006843379751975188,-6.439351970661568,0.006843379751975188,-6.439351970661568,0.9344219892344978,-9.27816458698582,0.9344219892344978,-9.27816458698582,0.9344219892344978,-9.27816458698582,0.005460557428702674,-6.43835886476729,0.005460557428702674,-6.43835886476729,0.005460557428702674,-6.43835886476729,1.5877551020408165,0.6298200514138816 --1.7935461067585974,0.02185234813969399,-9.422806064062542,0.9342090164549314,-6.535967113788568,0.0056324060964677335,-6.536905596387976,0.007052687220022767,0.02185234813969399,-1.7935461067585974,0.02185234813969399,-1.7935461067585974,0.02185234813969399,-1.7935461067585974,0.007052687220022767,-6.536905596387976,0.007052687220022767,-6.536905596387976,0.007052687220022767,-6.536905596387976,0.9342090164549314,-9.422806064062542,0.9342090164549314,-9.422806064062542,0.9342090164549314,-9.422806064062542,0.0056324060964677335,-6.535967113788568,0.0056324060964677335,-6.535967113788568,0.0056324060964677335,-6.535967113788568,1.5897959183673471,0.6290115532734274 --1.981496717314031,0.028052719639670275,-9.567033508814381,0.9340975299589415,-6.638410376606563,0.005845428851024491,-6.639239688459224,0.0073135035958207814,0.028052719639670275,-1.981496717314031,0.028052719639670275,-1.981496717314031,0.028052719639670275,-1.981496717314031,0.0073135035958207814,-6.639239688459224,0.0073135035958207814,-6.639239688459224,0.0073135035958207814,-6.639239688459224,0.9340975299589415,-9.567033508814381,0.9340975299589415,-9.567033508814381,0.9340975299589415,-9.567033508814381,0.005845428851024491,-6.638410376606563,0.005845428851024491,-6.638410376606563,0.005845428851024491,-6.638410376606563,1.5918367346938775,0.6282051282051282 --2.1444511790133176,0.03371999700506887,-9.710881268388363,0.9340915115628121,-6.746740422119519,0.0060964479254948115,-6.747432342483475,0.007621889300864666,0.03371999700506887,-2.1444511790133176,0.03371999700506887,-2.1444511790133176,0.03371999700506887,-2.1444511790133176,0.007621889300864666,-6.747432342483475,0.007621889300864666,-6.747432342483475,0.007621889300864666,-6.747432342483475,0.9340915115628121,-9.710881268388363,0.9340915115628121,-9.710881268388363,0.9340915115628121,-9.710881268388363,0.0060964479254948115,-6.746740422119519,0.0060964479254948115,-6.746740422119519,0.0060964479254948115,-6.746740422119519,1.5938775510204082,0.6274007682458387 --2.293982950456356,0.03870352131945732,-9.854384309375753,0.9341858301548508,-6.861591172660072,0.006381181262275659,-6.862145919574088,0.007972459664656177,0.03870352131945732,-2.293982950456356,0.03870352131945732,-2.293982950456356,0.03870352131945732,-2.293982950456356,0.007972459664656177,-6.862145919574088,0.007972459664656177,-6.862145919574088,0.007972459664656177,-6.862145919574088,0.9341858301548508,-9.854384309375753,0.9341858301548508,-9.854384309375753,0.9341858301548508,-9.854384309375753,0.006381181262275659,-6.861591172660072,0.006381181262275659,-6.861591172660072,0.006381181262275659,-6.861591172660072,1.5959183673469388,0.6265984654731458 --2.434899191016398,0.04288922029819606,-9.99757507700285,0.9343661697494678,-6.983225362998584,0.0066946760999322666,-6.983667031158493,0.008358925554157511,0.04288922029819606,-2.434899191016398,0.04288922029819606,-2.434899191016398,0.04288922029819606,-2.434899191016398,0.008358925554157511,-6.983667031158493,0.008358925554157511,-6.983667031158493,0.008358925554157511,-6.983667031158493,0.9343661697494678,-9.99757507700285,0.9343661697494678,-9.99757507700285,0.9343661697494678,-9.99757507700285,0.0066946760999322666,-6.983225362998584,0.0066946760999322666,-6.983225362998584,0.0066946760999322666,-6.983225362998584,1.5979591836734695,0.6257982120051085 --2.56928921257733,0.046191448189369176,-10.140480354991166,0.9346099762500691,-7.1116176614557,0.007031646715804818,-7.11198575285822,0.008774528572361441,0.046191448189369176,-2.56928921257733,0.046191448189369176,-2.56928921257733,0.046191448189369176,-2.56928921257733,0.008774528572361441,-7.11198575285822,0.008774528572361441,-7.11198575285822,0.008774528572361441,-7.11198575285822,0.9346099762500691,-10.140480354991166,0.9346099762500691,-10.140480354991166,0.9346099762500691,-10.140480354991166,0.007031646715804818,-7.1116176614557,0.007031646715804818,-7.1116176614557,0.007031646715804818,-7.1116176614557,1.6,0.625 diff --git a/sparameters/crossing_524beede.yml b/sparameters/crossing_524beede.yml deleted file mode 100644 index 5a46cae1..00000000 --- a/sparameters/crossing_524beede.yml +++ /dev/null @@ -1,68 +0,0 @@ -resolution: 20 -port_symmetries: - o1: - s11: - - s22 - - s33 - - s44 - s21: - - s12 - - s34 - - s43 - s31: - - s13 - - s24 - - s42 - s41: - - s14 - - s23 - - s32 -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 0.0 -ymargin_bot: 0.0 -xmargin_left: 0 -xmargin_right: 0 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -component: - name: crossing - version: 0.0.1 - settings: - name: crossing - module: gdsfactory.components.crossing_waveguide - function_name: crossing - info: {} - info_version: 2 - full: - arm: - function: crossing_arm - cross_section: strip - changed: {} - default: - arm: - function: crossing_arm - cross_section: strip - child: null -compute_time_seconds: 2.94905424118042 -compute_time_minutes: 0.04915090401967367 diff --git a/sparameters/ebeam_crossing4_7e264905_216d7d7a.npz b/sparameters/ebeam_crossing4_7e264905_216d7d7a.npz deleted file mode 100644 index 5830a336..00000000 Binary files a/sparameters/ebeam_crossing4_7e264905_216d7d7a.npz and /dev/null differ diff --git a/sparameters/ebeam_crossing4_7e264905_216d7d7a.yml b/sparameters/ebeam_crossing4_7e264905_216d7d7a.yml deleted file mode 100644 index 77e7365f..00000000 --- a/sparameters/ebeam_crossing4_7e264905_216d7d7a.yml +++ /dev/null @@ -1,69 +0,0 @@ -resolution: 20 -port_symmetries: - o1@0,o1@0: - - o2@0,o2@0 - - o3@0,o3@0 - - o4@0,o4@0 - o2@0,o1@0: - - o1@0,o2@0 - - o3@0,o4@0 - - o4@0,o3@0 - o3@0,o1@0: - - o1@0,o3@0 - - o2@0,o4@0 - - o4@0,o2@0 - o4@0,o1@0: - - o1@0,o4@0 - - o2@0,o3@0 - - o3@0,o2@0 -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 0.0 -ymargin_bot: 0.0 -xmargin_left: 0 -xmargin_right: 0 -is_3d: false -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - info: {} - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - info: {} -component: - name: ebeam_crossing4_7e264905 - settings: - name: ebeam_crossing4_7e264905 - module: ubcpdk.components - function_name: ebeam_crossing4 - info: - library: Design kits/ebeam - model: ebeam_crossing4 - info_version: 2 - full: - decorator: - function: auto_rename_ports - changed: - decorator: - function: auto_rename_ports - default: {} - child: null -compute_time_seconds: 85.7315936088562 -compute_time_minutes: 1.4288598934809367 diff --git a/sparameters/ebeam_crossing4_7e264905_524beede.csv b/sparameters/ebeam_crossing4_7e264905_524beede.csv deleted file mode 100644 index 6f82302b..00000000 --- a/sparameters/ebeam_crossing4_7e264905_524beede.csv +++ /dev/null @@ -1,51 +0,0 @@ -s11a,s11m,s31a,s31m,s41a,s41m,s21a,s21m,s22m,s22a,s33m,s33a,s44m,s44a,s12m,s12a,s34m,s34a,s43m,s43a,s13m,s13a,s24m,s24a,s42m,s42a,s14m,s14a,s23m,s23a,s32m,s32a,wavelengths,freqs -2.719373649653398,0.06170414018303639,1.3283074488347795,0.8614674911075803,-0.2060818872685297,0.014202549945514637,-0.20850046277911866,0.01841616767134872,0.06170414018303639,2.719373649653398,0.06170414018303639,2.719373649653398,0.06170414018303639,2.719373649653398,0.01841616767134872,-0.20850046277911866,0.01841616767134872,-0.20850046277911866,0.01841616767134872,-0.20850046277911866,0.8614674911075803,1.3283074488347795,0.8614674911075803,1.3283074488347795,0.8614674911075803,1.3283074488347795,0.014202549945514637,-0.2060818872685297,0.014202549945514637,-0.2060818872685297,0.014202549945514637,-0.2060818872685297,1.5,0.6666666666666666 -2.5808643343306397,0.059132403514478175,1.1320600577256181,0.860673758146964,-0.46110351307690073,0.01575144630495883,-0.46241792193699194,0.02040208068267276,0.059132403514478175,2.5808643343306397,0.059132403514478175,2.5808643343306397,0.059132403514478175,2.5808643343306397,0.02040208068267276,-0.46241792193699194,0.02040208068267276,-0.46241792193699194,0.02040208068267276,-0.46241792193699194,0.860673758146964,1.1320600577256181,0.860673758146964,1.1320600577256181,0.860673758146964,1.1320600577256181,0.01575144630495883,-0.46110351307690073,0.01575144630495883,-0.46110351307690073,0.01575144630495883,-0.46110351307690073,1.5020408163265306,0.6657608695652174 -2.435047382389266,0.055275667648603345,0.9366273058464156,0.8602045580496942,-0.7246679477952106,0.017149770444671652,-0.7250502239470916,0.022196547616387893,0.055275667648603345,2.435047382389266,0.055275667648603345,2.435047382389266,0.055275667648603345,2.435047382389266,0.022196547616387893,-0.7250502239470916,0.022196547616387893,-0.7250502239470916,0.022196547616387893,-0.7250502239470916,0.8602045580496942,0.9366273058464156,0.8602045580496942,0.9366273058464156,0.8602045580496942,0.9366273058464156,0.017149770444671652,-0.7246679477952106,0.017149770444671652,-0.7246679477952106,0.017149770444671652,-0.7246679477952106,1.5040816326530613,0.6648575305291723 -2.281809482605481,0.05018833103584206,0.7419061151257875,0.8601401076905162,-0.993277010357194,0.0183525917295949,-0.992930950544794,0.02374091630817223,0.05018833103584206,2.281809482605481,0.05018833103584206,2.281809482605481,0.05018833103584206,2.281809482605481,0.02374091630817223,-0.992930950544794,0.02374091630817223,-0.992930950544794,0.02374091630817223,-0.992930950544794,0.8601401076905162,0.7419061151257875,0.8601401076905162,0.7419061151257875,0.8601401076905162,0.7419061151257875,0.0183525917295949,-0.993277010357194,0.0183525917295949,-0.993277010357194,0.0183525917295949,-0.993277010357194,1.506122448979592,0.6639566395663956 -2.1199401009207333,0.043983642230060065,0.5477518480747022,0.8605271849696107,-1.2643006040996763,0.019327161225375995,-1.263435118482663,0.024992089099066105,0.043983642230060065,2.1199401009207333,0.043983642230060065,2.1199401009207333,0.043983642230060065,2.1199401009207333,0.024992089099066105,-1.263435118482663,0.024992089099066105,-1.263435118482663,0.024992089099066105,-1.263435118482663,0.8605271849696107,0.5477518480747022,0.8605271849696107,0.5477518480747022,0.8605271849696107,0.5477518480747022,0.019327161225375995,-1.2643006040996763,0.019327161225375995,-1.2643006040996763,0.019327161225375995,-1.2643006040996763,1.5081632653061225,0.6630581867388362 -1.9460666432888454,0.036829051818882304,0.35399771785963186,0.8613650637843554,-1.535664187861181,0.020052409177979742,-1.5344813449933308,0.025921972927038385,0.036829051818882304,1.9460666432888454,0.036829051818882304,1.9460666432888454,0.036829051818882304,1.9460666432888454,0.025921972927038385,-1.5344813449933308,0.025921972927038385,-1.5344813449933308,0.025921972927038385,-1.5344813449933308,0.8613650637843554,0.35399771785963186,0.8613650637843554,0.35399771785963186,0.8613650637843554,0.35399771785963186,0.020052409177979742,-1.535664187861181,0.020052409177979742,-1.535664187861181,0.020052409177979742,-1.535664187861181,1.510204081632653,0.6621621621621622 -1.7516695656057535,0.02894666923354115,0.16047987042788026,0.862599673424258,-1.80562899609595,0.020518603697437122,-1.8043185518428222,0.02651710928281136,0.02894666923354115,1.7516695656057535,0.02894666923354115,1.7516695656057535,0.02894666923354115,1.7516695656057535,0.02651710928281136,-1.8043185518428222,0.02651710928281136,-1.8043185518428222,0.02651710928281136,-1.8043185518428222,0.862599673424258,0.16047987042788026,0.862599673424258,0.16047987042788026,0.862599673424258,0.16047987042788026,0.020518603697437122,-1.80562899609595,0.020518603697437122,-1.80562899609595,0.020518603697437122,-1.80562899609595,1.5122448979591836,0.6612685560053981 -1.512758036596996,0.020638105502190786,-0.03293682302778885,0.8641272097954283,-2.0726378298876362,0.020727164521859742,-2.071374091347971,0.02677848915963484,0.020638105502190786,1.512758036596996,0.020638105502190786,1.512758036596996,0.020638105502190786,1.512758036596996,0.02677848915963484,-2.071374091347971,0.02677848915963484,-2.071374091347971,0.02677848915963484,-2.071374091347971,0.8641272097954283,-0.03293682302778885,0.8641272097954283,-0.03293682302778885,0.8641272097954283,-0.03293682302778885,0.020727164521859742,-2.0726378298876362,0.020727164521859742,-2.0726378298876362,0.020727164521859742,-2.0726378298876362,1.5142857142857142,0.6603773584905661 -1.1410030828133277,0.0124515158459981,-0.22633728638985778,0.8658066294120624,-2.3352109944123876,0.02069058943387088,-2.3341497083992615,0.026721505223430177,0.0124515158459981,1.1410030828133277,0.0124515158459981,1.1410030828133277,0.0124515158459981,1.1410030828133277,0.026721505223430177,-2.3341497083992615,0.026721505223430177,-2.3341497083992615,0.026721505223430177,-2.3341497083992615,0.8658066294120624,-0.22633728638985778,0.8658066294120624,-0.22633728638985778,0.8658066294120624,-0.22633728638985778,0.02069058943387088,-2.3352109944123876,0.02069058943387088,-2.3352109944123876,0.02069058943387088,-2.3352109944123876,1.5163265306122449,0.6594885598923285 -0.21386554234697464,0.0066416902577370145,-0.4197431166888272,0.8674787943246812,-2.5918876196015272,0.020432369565939967,-2.5911613781139198,0.026375885401945274,0.0066416902577370145,0.21386554234697464,0.0066416902577370145,0.21386554234697464,0.0066416902577370145,0.21386554234697464,0.026375885401945274,-2.5911613781139198,0.026375885401945274,-2.5911613781139198,0.026375885401945274,-2.5911613781139198,0.8674787943246812,-0.4197431166888272,0.8674787943246812,-0.4197431166888272,0.8674787943246812,-0.4197431166888272,0.020432369565939967,-2.5918876196015272,0.020432369565939967,-2.5918876196015272,0.020432369565939967,-2.5918876196015272,1.5183673469387755,0.6586021505376344 --1.0207027732557126,0.009750349237639606,-0.6131101028159971,0.8689887745537266,-2.841216742642927,0.019986679637180406,-2.8409277631751135,0.025785336148124383,0.009750349237639606,-1.0207027732557126,0.009750349237639606,-1.0207027732557126,0.009750349237639606,-1.0207027732557126,0.025785336148124383,-2.8409277631751135,0.025785336148124383,-2.8409277631751135,0.025785336148124383,-2.8409277631751135,0.8689887745537266,-0.6131101028159971,0.8689887745537266,-0.6131101028159971,0.8689887745537266,-0.6131101028159971,0.019986679637180406,-2.841216742642927,0.019986679637180406,-2.841216742642927,0.019986679637180406,-2.841216742642927,1.5204081632653061,0.6577181208053691 --1.4975605934626246,0.01714842247765339,-0.8063364910037716,0.870207204083001,-3.081810516633723,0.019397557241376834,-3.0820200887929423,0.025006530645354366,0.01714842247765339,-1.4975605934626246,0.01714842247765339,-1.4975605934626246,0.01714842247765339,-1.4975605934626246,0.025006530645354366,-3.0820200887929423,0.025006530645354366,-3.0820200887929423,0.025006530645354366,-3.0820200887929423,0.870207204083001,-0.8063364910037716,0.870207204083001,-0.8063364910037716,0.870207204083001,-0.8063364910037716,0.019397557241376834,-3.081810516633723,0.019397557241376834,-3.081810516633723,0.019397557241376834,-3.081810516633723,1.5224489795918368,0.6568364611260054 --1.7569936767564032,0.024795272787489393,-0.999280023142292,0.8710468144552023,-3.3124772888405882,0.018717237358529825,-3.313192207378838,0.024107013988727444,0.024795272787489393,-1.7569936767564032,0.024795272787489393,-1.7569936767564032,0.024795272787489393,-1.7569936767564032,0.024107013988727444,-3.313192207378838,0.024107013988727444,-3.313192207378838,0.024107013988727444,-3.313192207378838,0.8710468144552023,-0.999280023142292,0.8710468144552023,-0.999280023142292,0.8710468144552023,-0.999280023142292,0.018717237358529825,-3.3124772888405882,0.018717237358529825,-3.3124772888405882,0.018717237358529825,-3.3124772888405882,1.5244897959183674,0.6559571619812583 --1.950799417161183,0.031988099518452155,-1.1917801657302993,0.8714713491348802,-3.5324490408477796,0.018003288554510256,-3.5336075759986114,0.023161565112687205,0.031988099518452155,-1.950799417161183,0.031988099518452155,-1.950799417161183,0.031988099518452155,-1.950799417161183,0.023161565112687205,-3.5336075759986114,0.023161565112687205,-3.5336075759986114,0.023161565112687205,-3.5336075759986114,0.8714713491348802,-1.1917801657302993,0.8714713491348802,-1.1917801657302993,0.8714713491348802,-1.1917801657302993,0.018003288554510256,-3.5324490408477796,0.018003288554510256,-3.5324490408477796,0.018003288554510256,-3.5324490408477796,1.526530612244898,0.6550802139037433 --2.1155498189469197,0.03850656241695285,-1.383681245472188,0.8714957602573836,-3.741693897329173,0.017314246747391467,-3.7431574609348597,0.02224660261407271,0.03850656241695285,-2.1155498189469197,0.03850656241695285,-2.1155498189469197,0.03850656241695285,-2.1155498189469197,0.02224660261407271,-3.7431574609348597,0.02224660261407271,-3.7431574609348597,0.02224660261407271,-3.7431574609348597,0.8714957602573836,-1.383681245472188,0.8714957602573836,-1.383681245472188,0.8714957602573836,-1.383681245472188,0.017314246747391467,-3.741693897329173,0.017314246747391467,-3.741693897329173,0.017314246747391467,-3.741693897329173,1.5285714285714287,0.6542056074766355 --2.263778733234269,0.04425822373649446,-1.5748524433186692,0.8711784516350944,-3.9412483759497294,0.016703682111910968,-3.9428085096522496,0.02143250676415195,0.04425822373649446,-2.263778733234269,0.04425822373649446,-2.263778733234269,0.04425822373649446,-2.263778733234269,0.02143250676415195,-3.9428085096522496,0.02143250676415195,-3.9428085096522496,0.02143250676415195,-3.9428085096522496,0.8711784516350944,-1.5748524433186692,0.8711784516350944,-1.5748524433186692,0.8711784516350944,-1.5748524433186692,0.016703682111910968,-3.9412483759497294,0.016703682111910968,-3.9412483759497294,0.016703682111910968,-3.9412483759497294,1.530612244897959,0.6533333333333333 --2.4010055978039024,0.04921487556834486,-1.7652016698564754,0.8706078491143603,-4.133426445915774,0.01621322628989447,-4.134835779210746,0.02077448094312505,0.04921487556834486,-2.4010055978039024,0.04921487556834486,-2.4010055978039024,0.04921487556834486,-2.4010055978039024,0.02077448094312505,-4.134835779210746,0.02077448094312505,-4.134835779210746,0.02077448094312505,-4.134835779210746,0.8706078491143603,-1.7652016698564754,0.8706078491143603,-1.7652016698564754,0.8706078491143603,-1.7652016698564754,0.01621322628989447,-4.133426445915774,0.01621322628989447,-4.133426445915774,0.01621322628989447,-4.133426445915774,1.5326530612244897,0.6524633821571239 --2.5302537442201873,0.05338854061565876,-1.9546818835141906,0.8698863840744231,-4.321724449515108,0.015866000657449763,-4.322750187021813,0.020303790853220982,0.05338854061565876,-2.5302537442201873,0.05338854061565876,-2.5302537442201873,0.05338854061565876,-2.5302537442201873,0.020303790853220982,-4.322750187021813,0.020303790853220982,-4.322750187021813,0.020303790853220982,-4.322750187021813,0.8698863840744231,-1.9546818835141906,0.8698863840744231,-1.9546818835141906,0.8698863840744231,-1.9546818835141906,0.015866000657449763,-4.321724449515108,0.015866000657449763,-4.321724449515108,0.015866000657449763,-4.321724449515108,1.5346938775510204,0.6515957446808511 --2.653579508222659,0.056814476021686836,-2.143290002667125,0.8691149688085996,-4.510331905132293,0.01566259135086735,-4.510814037021379,0.020022227090965388,0.056814476021686836,-2.653579508222659,0.056814476021686836,-2.653579508222659,0.056814476021686836,-2.653579508222659,0.020022227090965388,-4.510814037021379,0.020022227090965388,-4.510814037021379,0.020022227090965388,-4.510814037021379,0.8691149688085996,-2.143290002667125,0.8691149688085996,-2.143290002667125,0.8691149688085996,-2.143290002667125,0.01566259135086735,-4.510331905132293,0.01566259135086735,-4.510331905132293,0.01566259135086735,-4.510331905132293,1.536734693877551,0.650730411686587 --2.7726643422451733,0.05953589597892155,-2.3310598474920057,0.8683803792564194,-4.703379807149236,0.015581352983595783,-4.703267746919208,0.019902255635248264,0.05953589597892155,-2.7726643422451733,0.05953589597892155,-2.7726643422451733,0.05953589597892155,-2.7726643422451733,0.019902255635248264,-4.703267746919208,0.019902255635248264,-4.703267746919208,0.019902255635248264,-4.703267746919208,0.8683803792564194,-2.3310598474920057,0.8683803792564194,-2.3310598474920057,0.8683803792564194,-2.3310598474920057,0.015581352983595783,-4.703379807149236,0.015581352983595783,-4.703379807149236,0.015581352983595783,-4.703379807149236,1.5387755102040817,0.649867374005305 --2.8890435681812736,0.06159053971517353,-2.5180513157713382,0.8677469377411509,-4.9042421755106975,0.015583165489541606,-4.90359451455828,0.019893150597755333,0.06159053971517353,-2.8890435681812736,0.06159053971517353,-2.8890435681812736,0.06159053971517353,-2.8890435681812736,0.019893150597755333,-4.90359451455828,0.019893150597755333,-4.90359451455828,0.019893150597755333,-4.90359451455828,0.8677469377411509,-2.5180513157713382,0.8677469377411509,-2.5180513157713382,0.8677469377411509,-2.5180513157713382,0.015583165489541606,-4.9042421755106975,0.015583165489541606,-4.9042421755106975,0.015583165489541606,-4.9042421755106975,1.5408163265306123,0.6490066225165563 --3.0041698582439915,0.06300047523226494,-2.704338191920521,0.8672528139226071,-5.115169857851217,0.015618885819992854,-5.114123806868011,0.01993082628477898,0.06300047523226494,-3.0041698582439915,0.06300047523226494,-3.0041698582439915,0.06300047523226494,-3.0041698582439915,0.01993082628477898,-5.114123806868011,0.01993082628477898,-5.114123806868011,0.01993082628477898,-5.114123806868011,0.8672528139226071,-2.704338191920521,0.8672528139226071,-2.704338191920521,0.8672528139226071,-2.704338191920521,0.015618885819992854,-5.115169857851217,0.015618885819992854,-5.115169857851217,0.015618885819992854,-5.115169857851217,1.542857142857143,0.6481481481481481 --3.119398280115794,0.06376648465043099,-2.889996677189109,0.8669103731224324,-5.337317124478993,0.015637022199902526,-5.336047253324301,0.019948041417938628,0.06376648465043099,-3.119398280115794,0.06376648465043099,-3.119398280115794,0.06376648465043099,-3.119398280115794,0.019948041417938628,-5.336047253324301,0.019948041417938628,-5.336047253324301,0.019948041417938628,-5.336047253324301,0.8669103731224324,-2.889996677189109,0.8669103731224324,-2.889996677189109,0.8669103731224324,-2.889996677189109,0.015637022199902526,-5.337317124478993,0.015637022199902526,-5.337317124478993,0.015637022199902526,-5.337317124478993,1.5448979591836736,0.6472919418758256 --3.2359424155350993,0.0638676925123607,-3.0750960623935426,0.866709439154267,-5.571029809280314,0.015589844955789285,-5.569712900552499,0.019882534006954306,0.0638676925123607,-3.2359424155350993,0.0638676925123607,-3.2359424155350993,0.0638676925123607,-3.2359424155350993,0.019882534006954306,-5.569712900552499,0.019882534006954306,-5.569712900552499,0.019882534006954306,-5.569712900552499,0.866709439154267,-3.0750960623935426,0.866709439154267,-3.0750960623935426,0.866709439154267,-3.0750960623935426,0.015589844955789285,-5.571029809280314,0.015589844955789285,-5.571029809280314,0.015589844955789285,-5.571029809280314,1.5469387755102042,0.646437994722955 --3.3548340926493188,0.06326614055627419,-3.259692143856306,0.8666221563666808,-5.816220308594316,0.015437348213348046,-5.815013095057956,0.019682272149325806,0.06326614055627419,-3.3548340926493188,0.06326614055627419,-3.3548340926493188,0.06326614055627419,-3.3548340926493188,0.019682272149325806,-5.815013095057956,0.019682272149325806,-5.815013095057956,0.019682272149325806,-5.815013095057956,0.8666221563666808,-3.259692143856306,0.8666221563666808,-3.259692143856306,0.8666221563666808,-3.259692143856306,0.015437348213348046,-5.816220308594316,0.015437348213348046,-5.816220308594316,0.015437348213348046,-5.816220308594316,1.5489795918367348,0.6455862977602107 --3.4769066843938874,0.06191513850868001,-3.4438232246709224,0.8666083064157659,-6.072717350372016,0.015149348376961051,-6.071746124484661,0.019308198715882297,0.06191513850868001,-3.4769066843938874,0.06191513850868001,-3.4769066843938874,0.06191513850868001,-3.4769066843938874,0.019308198715882297,-6.071746124484661,0.019308198715882297,-6.071746124484661,0.019308198715882297,-6.071746124484661,0.8666083064157659,-3.4438232246709224,0.8666083064157659,-3.4438232246709224,0.8666083064157659,-3.4438232246709224,0.015149348376961051,-6.072717350372016,0.015149348376961051,-6.072717350372016,0.015149348376961051,-6.072717350372016,1.5510204081632653,0.6447368421052632 --3.6028112007910824,0.0597697121121136,-3.627508034623155,0.8666203619347141,-6.340558246799165,0.014706347198239352,-6.33991641604941,0.018735313681201255,0.0597697121121136,-3.6028112007910824,0.0597697121121136,-3.6028112007910824,0.0597697121121136,-3.6028112007910824,0.018735313681201255,-6.33991641604941,0.018735313681201255,-6.33991641604941,0.018735313681201255,-6.33991641604941,0.8666203619347141,-3.627508034623155,0.8666203619347141,-3.627508034623155,0.8666203619347141,-3.627508034623155,0.014706347198239352,-6.340558246799165,0.014706347198239352,-6.340558246799165,0.014706347198239352,-6.340558246799165,1.5530612244897959,0.6438896189224704 --3.7330679303144234,0.05679742392420694,-3.810744755463593,0.8666080893238319,-6.620244389110634,0.014099801388739392,-6.619994264849186,0.017952951125838692,0.05679742392420694,-3.7330679303144234,0.05679742392420694,-3.7330679303144234,0.05679742392420694,-3.7330679303144234,0.017952951125838692,-6.619994264849186,0.017952951125838692,-6.619994264849186,0.017952951125838692,-6.619994264849186,0.8666080893238319,-3.810744755463593,0.8666080893238319,-3.810744755463593,0.8666080893238319,-3.810744755463593,0.014099801388739392,-6.620244389110634,0.014099801388739392,-6.620244389110634,0.014099801388739392,-6.620244389110634,1.5551020408163265,0.6430446194225722 --3.868157521146225,0.05298816057283106,-3.993510559059438,0.8665229715863821,-6.913007271846758,0.013332364081052801,-6.91318361129006,0.01696499475392999,0.05298816057283106,-3.868157521146225,0.05298816057283106,-3.868157521146225,0.05298816057283106,-3.868157521146225,0.01696499475392999,-6.91318361129006,0.01696499475392999,-6.91318361129006,0.01696499475392999,-6.91318361129006,0.8665229715863821,-3.993510559059438,0.8665229715863821,-3.993510559059438,0.8665229715863821,-3.993510559059438,0.013332364081052801,-6.913007271846758,0.013332364081052801,-6.913007271846758,0.013332364081052801,-6.913007271846758,1.5571428571428572,0.6422018348623854 --4.008668313580878,0.04836196531327409,-4.175761551408463,0.8663229571071277,-7.221145395937702,0.012418635937313455,-7.221759370689967,0.01579072641908443,0.04836196531327409,-4.008668313580878,0.04836196531327409,-4.008668313580878,0.04836196531327409,-4.008668313580878,0.01579072641908443,-7.221759370689967,0.01579072641908443,-7.221759370689967,0.01579072641908443,-7.221759370689967,0.8663229571071277,-4.175761551408463,0.8663229571071277,-4.175761551408463,0.8663229571071277,-4.175761551408463,0.012418635937313455,-7.221145395937702,0.012418635937313455,-7.221145395937702,0.012418635937313455,-7.221145395937702,1.5591836734693878,0.6413612565445026 --4.155551607208793,0.04297448875650572,-4.35743358457633,0.8659779634913756,-7.548494359319044,0.011387054772192151,-7.5495373999052084,0.014467107001170177,0.04297448875650572,-4.155551607208793,0.04297448875650572,-4.155551607208793,0.04297448875650572,-4.155551607208793,0.014467107001170177,-7.5495373999052084,0.014467107001170177,-7.5495373999052084,0.014467107001170177,-7.5495373999052084,0.8659779634913756,-4.35743358457633,0.8659779634913756,-4.35743358457633,0.8659779634913756,-4.35743358457633,0.011387054772192151,-7.548494359319044,0.011387054772192151,-7.548494359319044,0.011387054772192151,-7.548494359319044,1.5612244897959184,0.6405228758169934 --4.310627184890499,0.03692013696435435,-4.53844484100239,0.8654761797776254,-7.901047032415328,0.010283786330052568,-7.902494417079304,0.013053576440874971,0.03692013696435435,-4.310627184890499,0.03692013696435435,-4.310627184890499,0.03692013696435435,-4.310627184890499,0.013053576440874971,-7.902494417079304,0.013053576440874971,-7.902494417079304,0.013053576440874971,-7.902494417079304,0.8654761797776254,-4.53844484100239,0.8654761797776254,-4.53844484100239,0.8654761797776254,-4.53844484100239,0.010283786330052568,-7.901047032415328,0.010283786330052568,-7.901047032415328,0.010283786330052568,-7.901047032415328,1.563265306122449,0.639686684073107 --4.477751232139881,0.030333864654052498,-4.718701222573259,0.8648306152355336,-8.28749353109129,0.009179678880872587,-8.289307650101549,0.011640702771661512,0.030333864654052498,-4.477751232139881,0.030333864654052498,-4.477751232139881,0.030333864654052498,-4.477751232139881,0.011640702771661512,-8.289307650101549,0.011640702771661512,-8.289307650101549,0.011640702771661512,-8.289307650101549,0.8648306152355336,-4.718701222573259,0.8648306152355336,-4.718701222573259,0.8648306152355336,-4.718701222573259,0.009179678880872587,-8.28749353109129,0.009179678880872587,-8.28749353109129,0.009179678880872587,-8.28749353109129,1.5653061224489797,0.6388526727509778 --4.6660286081895626,0.02339529381745161,-4.898105273531192,0.8640847211478832,-8.718556304095573,0.008180335454928925,-8.720688957783533,0.010362718540422661,0.02339529381745161,-4.6660286081895626,0.02339529381745161,-4.6660286081895626,0.02339529381745161,-4.6660286081895626,0.010362718540422661,-8.720688957783533,0.010362718540422661,-8.720688957783533,0.010362718540422661,-8.720688957783533,0.8640847211478832,-4.898105273531192,0.8640847211478832,-4.898105273531192,0.8640847211478832,-4.898105273531192,0.008180335454928925,-8.718556304095573,0.008180335454928925,-8.718556304095573,0.008180335454928925,-8.718556304095573,1.5673469387755103,0.6380208333333333 --4.900887937516297,0.016351356140693527,-5.0765686277255915,0.8633154912934896,-9.20194693590739,0.007432877572810367,-9.204338432968216,0.009405777110080723,0.016351356140693527,-4.900887937516297,0.016351356140693527,-4.900887937516297,0.016351356140693527,-4.900887937516297,0.009405777110080723,-9.204338432968216,0.009405777110080723,-9.204338432968216,0.009405777110080723,-9.204338432968216,0.8633154912934896,-5.0765686277255915,0.8633154912934896,-5.0765686277255915,0.8633154912934896,-5.0765686277255915,0.007432877572810367,-9.20194693590739,0.007432877572810367,-9.20194693590739,0.007432877572810367,-9.20194693590739,1.569387755102041,0.6371911573472041 --5.27663828737728,0.009659042152660719,-5.254026933855896,0.8626324359293793,-9.729643046815632,0.007105578794155451,-9.732216129960046,0.00898183932409557,0.009659042152660719,-5.27663828737728,0.009659042152660719,-5.27663828737728,0.009659042152660719,-5.27663828737728,0.00898183932409557,-9.732216129960046,0.00898183932409557,-9.732216129960046,0.00898183932409557,-9.732216129960046,0.8626324359293793,-5.254026933855896,0.8626324359293793,-5.254026933855896,0.8626324359293793,-5.254026933855896,0.007105578794155451,-9.729643046815632,0.007105578794155451,-9.729643046815632,0.007105578794155451,-9.729643046815632,1.5714285714285714,0.6363636363636364 --6.227577542098737,0.005205546719922858,-5.430455149350426,0.86217133036039,-10.267892807579111,0.007313250356085818,-10.270550165453345,0.009234245638013497,0.005205546719922858,-6.227577542098737,0.005205546719922858,-6.227577542098737,0.005205546719922858,-6.227577542098737,0.009234245638013497,-10.270550165453345,0.009234245638013497,-10.270550165453345,0.009234245638013497,-10.270550165453345,0.86217133036039,-5.430455149350426,0.86217133036039,-5.430455149350426,0.86217133036039,-5.430455149350426,0.007313250356085818,-10.267892807579111,0.007313250356085818,-10.267892807579111,0.007313250356085818,-10.267892807579111,1.573469387755102,0.6355382619974059 --7.40779975793532,0.007736643034183685,-5.605880351803625,0.8620826018440362,-10.77459294689805,0.008039313616694138,-10.77723142774987,0.010139861276563035,0.007736643034183685,-7.40779975793532,0.007736643034183685,-7.40779975793532,0.007736643034183685,-7.40779975793532,0.010139861276563035,-10.77723142774987,0.010139861276563035,-10.77723142774987,0.010139861276563035,-10.77723142774987,0.8620826018440362,-5.605880351803625,0.8620826018440362,-5.605880351803625,0.8620826018440362,-5.605880351803625,0.008039313616694138,-10.77459294689805,0.008039313616694138,-10.77459294689805,0.008039313616694138,-10.77459294689805,1.5755102040816327,0.6347150259067358 --7.858916111010376,0.01317895229093483,-5.780389105930363,0.8625154006585393,-11.228530213394054,0.009158750662759512,-11.231056376286986,0.01153908995126599,0.01317895229093483,-7.858916111010376,0.01317895229093483,-7.858916111010376,0.01317895229093483,-7.858916111010376,0.01153908995126599,-11.231056376286986,0.01153908995126599,-11.231056376286986,0.01153908995126599,-11.231056376286986,0.8625154006585393,-5.780389105930363,0.8625154006585393,-5.780389105930363,0.8625154006585393,-5.780389105930363,0.009158750662759512,-11.228530213394054,0.009158750662759512,-11.228530213394054,0.009158750662759512,-11.228530213394054,1.5775510204081633,0.6338939197930142 --8.101837895000576,0.018572011534175495,-5.9541270870744425,0.8635994644706456,-11.631479474304594,0.010525161871677631,-11.63381133856675,0.01324630287768881,0.018572011534175495,-8.101837895000576,0.018572011534175495,-8.101837895000576,0.018572011534175495,-8.101837895000576,0.01324630287768881,-11.63381133856675,0.01324630287768881,-11.63381133856675,0.01324630287768881,-11.63381133856675,0.8635994644706456,-5.9541270870744425,0.8635994644706456,-5.9541270870744425,0.8635994644706456,-5.9541270870744425,0.010525161871677631,-11.631479474304594,0.010525161871677631,-11.631479474304594,0.010525161871677631,-11.631479474304594,1.579591836734694,0.6330749354005167 --8.278284931156232,0.023408352015876096,-6.12728999678219,0.8654275214078574,-11.9940054156728,0.0120211318290996,-11.996070029568262,0.015113300678133459,0.023408352015876096,-8.278284931156232,0.023408352015876096,-8.278284931156232,0.023408352015876096,-8.278284931156232,0.015113300678133459,-11.996070029568262,0.015113300678133459,-11.996070029568262,0.015113300678133459,-11.996070029568262,0.8654275214078574,-6.12728999678219,0.8654275214078574,-6.12728999678219,0.8654275214078574,-6.12728999678219,0.0120211318290996,-11.9940054156728,0.0120211318290996,-11.9940054156728,0.0120211318290996,-11.9940054156728,1.5816326530612246,0.632258064516129 --8.42271437229487,0.027549577556453587,-6.300106482145838,0.8680410270212929,-12.32649776045692,0.013564120505195131,-12.328231613927157,0.017036466468901286,0.027549577556453587,-8.42271437229487,0.027549577556453587,-8.42271437229487,0.027549577556453587,-8.42271437229487,0.017036466468901286,-12.328231613927157,0.017036466468901286,-12.328231613927157,0.017036466468901286,-12.328231613927157,0.8680410270212929,-6.300106482145838,0.8680410270212929,-6.300106482145838,0.8680410270212929,-6.300106482145838,0.013564120505195131,-12.32649776045692,0.013564120505195131,-12.32649776045692,0.013564120505195131,-12.32649776045692,1.5836734693877552,0.6314432989690721 --8.546506966597907,0.030968484911551478,-6.472815348638772,0.8714215249192502,-12.636804738241558,0.01509776622102546,-12.638156498732734,0.01894556108056927,0.030968484911551478,-8.546506966597907,0.030968484911551478,-8.546506966597907,0.030968484911551478,-8.546506966597907,0.01894556108056927,-12.638156498732734,0.01894556108056927,-12.638156498732734,0.01894556108056927,-12.638156498732734,0.8714215249192502,-6.472815348638772,0.8714215249192502,-6.472815348638772,0.8714215249192502,-6.472815348638772,0.01509776622102546,-12.636804738241558,0.01509776622102546,-12.636804738241558,0.01509776622102546,-12.636804738241558,1.5857142857142859,0.6306306306306306 --8.654182417953413,0.03370333665601016,-6.64564044438689,0.8754890330520549,-12.930401474688995,0.016583226013491496,-12.931335538640221,0.020792628343129185,0.03370333665601016,-8.654182417953413,0.03370333665601016,-8.654182417953413,0.03370333665601016,-8.654182417953413,0.020792628343129185,-12.931335538640221,0.020792628343129185,-12.931335538640221,0.020792628343129185,-12.931335538640221,0.8754890330520549,-6.64564044438689,0.8754890330520549,-6.64564044438689,0.8754890330520549,-6.64564044438689,0.016583226013491496,-12.930401474688995,0.016583226013491496,-12.930401474688995,0.016583226013491496,-12.930401474688995,1.5877551020408165,0.6298200514138816 --8.747880584289414,0.03584123941257843,-6.818766971952034,0.8801078045556481,-13.211036131646896,0.017993292874869466,-13.211536146550927,0.022544438714429516,0.03584123941257843,-8.747880584289414,0.03584123941257843,-8.747880584289414,0.03584123941257843,-8.747880584289414,0.022544438714429516,-13.211536146550927,0.022544438714429516,-13.211536146550927,0.022544438714429516,-13.211536146550927,0.8801078045556481,-6.818766971952034,0.8801078045556481,-6.818766971952034,0.8801078045556481,-6.818766971952034,0.017993292874869466,-13.211036131646896,0.017993292874869466,-13.211036131646896,0.017993292874869466,-13.211036131646896,1.5897959183673471,0.6290115532734274 --8.829040194980116,0.037504629939341595,-6.99232264066456,0.8850987740318108,-13.481282781948597,0.019308778391297084,-13.481354664006659,0.024177808299379235,0.037504629939341595,-8.829040194980116,0.037504629939341595,-8.829040194980116,0.037504629939341595,-8.829040194980116,0.024177808299379235,-13.481354664006659,0.024177808299379235,-13.481354664006659,0.024177808299379235,-13.481354664006659,0.8850987740318108,-6.99232264066456,0.8850987740318108,-6.99232264066456,0.8850987740318108,-6.99232264066456,0.019308778391297084,-13.481282781948597,0.019308778391297084,-13.481282781948597,0.019308778391297084,-13.481282781948597,1.5918367346938775,0.6282051282051282 --8.899204849880803,0.03883501838294353,-7.166366161279907,0.8902570952963272,-13.742926675028384,0.020516359986608956,-13.742600747695167,0.025676777355309464,0.03883501838294353,-8.899204849880803,0.03883501838294353,-8.899204849880803,0.03883501838294353,-8.899204849880803,0.025676777355309464,-13.742600747695167,0.025676777355309464,-13.742600747695167,0.025676777355309464,-13.742600747695167,0.8902570952963272,-7.166366161279907,0.8902570952963272,-7.166366161279907,0.8902570952963272,-7.166366161279907,0.020516359986608956,-13.742926675028384,0.020516359986608956,-13.742926675028384,0.020516359986608956,-13.742926675028384,1.5938775510204082,0.6274007682458387 --8.960433029292089,0.03997300684633885,-7.340884338986548,0.8953724853893117,-13.99721903892608,0.02160732146701891,-13.996550925578145,0.027030929488013535,0.03997300684633885,-8.960433029292089,0.03997300684633885,-8.960433029292089,0.03997300684633885,-8.960433029292089,0.027030929488013535,-13.996550925578145,0.027030929488013535,-13.996550925578145,0.027030929488013535,-13.996550925578145,0.8953724853893117,-7.340884338986548,0.8953724853893117,-7.340884338986548,0.8953724853893117,-7.340884338986548,0.02160732146701891,-13.99721903892608,0.02160732146701891,-13.99721903892608,0.02160732146701891,-13.99721903892608,1.5959183673469388,0.6265984654731458 --9.015397309812759,0.0410365696312816,-7.515797682375669,0.9002496908882214,-14.24504592057549,0.022576814699358367,-14.244115826764686,0.028234388378096036,0.0410365696312816,-9.015397309812759,0.0410365696312816,-9.015397309812759,0.0410365696312816,-9.015397309812759,0.028234388378096036,-14.244115826764686,0.028234388378096036,-14.244115826764686,0.028234388378096036,-14.244115826764686,0.9002496908882214,-7.515797682375669,0.9002496908882214,-7.515797682375669,0.9002496908882214,-7.515797682375669,0.022576814699358367,-14.24504592057549,0.022576814699358367,-14.24504592057549,0.022576814699358367,-14.24504592057549,1.5979591836734695,0.6257982120051085 --9.067181668614653,0.042102091935078675,-7.690973227353847,0.9047263710693314,-14.487043126405412,0.023423391701458546,-14.485953180150949,0.029285184153759553,0.042102091935078675,-9.067181668614653,0.042102091935078675,-9.067181668614653,0.042102091935078675,-9.067181668614653,0.029285184153759553,-14.485953180150949,0.029285184153759553,-14.485953180150949,0.029285184153759553,-14.485953180150949,0.9047263710693314,-7.690973227353847,0.9047263710693314,-7.690973227353847,0.9047263710693314,-7.690973227353847,0.023423391701458546,-14.487043126405412,0.023423391701458546,-14.487043126405412,0.023423391701458546,-14.487043126405412,1.6,0.625 diff --git a/sparameters/ebeam_crossing4_7e264905_524beede.yml b/sparameters/ebeam_crossing4_7e264905_524beede.yml deleted file mode 100644 index 46bc2e81..00000000 --- a/sparameters/ebeam_crossing4_7e264905_524beede.yml +++ /dev/null @@ -1,68 +0,0 @@ -resolution: 20 -port_symmetries: - o1: - s11: - - s22 - - s33 - - s44 - s21: - - s12 - - s34 - - s43 - s31: - - s13 - - s24 - - s42 - s41: - - s14 - - s23 - - s32 -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 0.0 -ymargin_bot: 0.0 -xmargin_left: 0 -xmargin_right: 0 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -component: - name: ebeam_crossing4_7e264905 - version: 0.0.1 - settings: - name: ebeam_crossing4_7e264905 - module: ubcpdk.components - function_name: ebeam_crossing4 - info: - library: Design kits/ebeam - model: ebeam_crossing4 - info_version: 2 - full: - decorator: - function: auto_rename_ports - changed: - decorator: - function: auto_rename_ports - default: {} - child: null -compute_time_seconds: 15.12391185760498 -compute_time_minutes: 0.25206519762674967 diff --git a/sparameters/ebeam_crossing4_7e264905_c4bd0ed6.npz b/sparameters/ebeam_crossing4_7e264905_c4bd0ed6.npz deleted file mode 100644 index 4a26b350..00000000 Binary files a/sparameters/ebeam_crossing4_7e264905_c4bd0ed6.npz and /dev/null differ diff --git a/sparameters/ebeam_crossing4_7e264905_c4bd0ed6.yml b/sparameters/ebeam_crossing4_7e264905_c4bd0ed6.yml deleted file mode 100644 index 725f1f20..00000000 --- a/sparameters/ebeam_crossing4_7e264905_c4bd0ed6.yml +++ /dev/null @@ -1,75 +0,0 @@ -resolution: 20 -port_symmetries: - o1@0,o1@0: - - o2@0,o2@0 - - o3@0,o3@0 - - o4@0,o4@0 - o2@0,o1@0: - - o1@0,o2@0 - - o3@0,o4@0 - - o4@0,o3@0 - o3@0,o1@0: - - o1@0,o3@0 - - o2@0,o4@0 - - o4@0,o2@0 - o4@0,o1@0: - - o1@0,o4@0 - - o2@0,o3@0 - - o3@0,o2@0 -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 0.0 -ymargin_bot: 0.0 -xmargin_left: 0 -xmargin_right: 0 -is_3d: false -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - thickness_tolerance: null - zmin: 0.0 - material: si - sidewall_angle: 0.0 - width_to_z: 0.0 - z_to_bias: null - info: {} - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - thickness_tolerance: null - zmin: 0.0 - material: si - sidewall_angle: 0.0 - width_to_z: 0.0 - z_to_bias: null - info: {} -component: - name: ebeam_crossing4_7e264905 - settings: - name: ebeam_crossing4_7e264905 - module: ubcpdk.components - function_name: ebeam_crossing4 - info: - library: Design kits/ebeam - model: ebeam_crossing4 - info_version: 2 - full: - decorator: - function: auto_rename_ports - changed: - decorator: - function: auto_rename_ports - default: {} - child: null -compute_time_seconds: 66.27300143241882 -compute_time_minutes: 1.104550023873647 diff --git a/sparameters/ebeam_gc_te1550_0ec64804.npz b/sparameters/ebeam_gc_te1550_0ec64804.npz deleted file mode 100644 index ff3f4581..00000000 Binary files a/sparameters/ebeam_gc_te1550_0ec64804.npz and /dev/null differ diff --git a/sparameters/ebeam_gc_te1550_0ec64804.yml b/sparameters/ebeam_gc_te1550_0ec64804.yml deleted file mode 100644 index 5e039d87..00000000 --- a/sparameters/ebeam_gc_te1550_0ec64804.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: -31 -fiber_xoffset: -15 -compute_time_seconds: 62.93822264671326 -compute_time_minutes: 1.048970377445221 diff --git a/sparameters/ebeam_gc_te1550_60e5b3a8.npz b/sparameters/ebeam_gc_te1550_60e5b3a8.npz deleted file mode 100644 index 098f66f8..00000000 Binary files a/sparameters/ebeam_gc_te1550_60e5b3a8.npz and /dev/null differ diff --git a/sparameters/ebeam_gc_te1550_60e5b3a8.yml b/sparameters/ebeam_gc_te1550_60e5b3a8.yml deleted file mode 100644 index 136a371f..00000000 --- a/sparameters/ebeam_gc_te1550_60e5b3a8.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: -31 -fiber_xoffset: -5 -compute_time_seconds: 3.3036324977874756 -compute_time_minutes: 0.05506054162979126 diff --git a/sparameters/ebeam_gc_te1550_7e264905_2b4c71dd.npz b/sparameters/ebeam_gc_te1550_7e264905_2b4c71dd.npz deleted file mode 100644 index 36c9cbce..00000000 Binary files a/sparameters/ebeam_gc_te1550_7e264905_2b4c71dd.npz and /dev/null differ diff --git a/sparameters/ebeam_gc_te1550_7e264905_2b4c71dd.yml b/sparameters/ebeam_gc_te1550_7e264905_2b4c71dd.yml deleted file mode 100644 index b8cb1d43..00000000 --- a/sparameters/ebeam_gc_te1550_7e264905_2b4c71dd.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: 0 -compute_time_seconds: 57.904752016067505 -compute_time_minutes: 0.9650792002677917 diff --git a/sparameters/ebeam_gc_te1550_7e264905_60e5b3a8.npz b/sparameters/ebeam_gc_te1550_7e264905_60e5b3a8.npz deleted file mode 100644 index 098f66f8..00000000 Binary files a/sparameters/ebeam_gc_te1550_7e264905_60e5b3a8.npz and /dev/null differ diff --git a/sparameters/ebeam_gc_te1550_7e264905_60e5b3a8.yml b/sparameters/ebeam_gc_te1550_7e264905_60e5b3a8.yml deleted file mode 100644 index 613494f9..00000000 --- a/sparameters/ebeam_gc_te1550_7e264905_60e5b3a8.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: -31 -fiber_xoffset: -5 -compute_time_seconds: 64.49431157112122 -compute_time_minutes: 1.0749051928520204 diff --git a/sparameters/ebeam_gc_te1550_7e264905_d14753ca.npz b/sparameters/ebeam_gc_te1550_7e264905_d14753ca.npz deleted file mode 100644 index 2090601e..00000000 Binary files a/sparameters/ebeam_gc_te1550_7e264905_d14753ca.npz and /dev/null differ diff --git a/sparameters/ebeam_gc_te1550_7e264905_d14753ca.yml b/sparameters/ebeam_gc_te1550_7e264905_d14753ca.yml deleted file mode 100644 index 9a4b956a..00000000 --- a/sparameters/ebeam_gc_te1550_7e264905_d14753ca.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: -31 -fiber_xoffset: 0 -compute_time_seconds: 58.89392685890198 -compute_time_minutes: 0.9815654476483663 diff --git a/sparameters/ebeam_gc_te1550_7e264905_d9bd5fec.npz b/sparameters/ebeam_gc_te1550_7e264905_d9bd5fec.npz deleted file mode 100644 index b498e456..00000000 Binary files a/sparameters/ebeam_gc_te1550_7e264905_d9bd5fec.npz and /dev/null differ diff --git a/sparameters/ebeam_gc_te1550_7e264905_d9bd5fec.yml b/sparameters/ebeam_gc_te1550_7e264905_d9bd5fec.yml deleted file mode 100644 index 2fe7ac28..00000000 --- a/sparameters/ebeam_gc_te1550_7e264905_d9bd5fec.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: -31 -fiber_xoffset: 5 -compute_time_seconds: 61.239017963409424 -compute_time_minutes: 1.0206502993901572 diff --git a/sparameters/ebeam_gc_te1550_985757a9.npz b/sparameters/ebeam_gc_te1550_985757a9.npz deleted file mode 100644 index a0a5737b..00000000 Binary files a/sparameters/ebeam_gc_te1550_985757a9.npz and /dev/null differ diff --git a/sparameters/ebeam_gc_te1550_985757a9.yml b/sparameters/ebeam_gc_te1550_985757a9.yml deleted file mode 100644 index 8d3b3497..00000000 --- a/sparameters/ebeam_gc_te1550_985757a9.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: -31 -fiber_xoffset: -10 -compute_time_seconds: 57.57888197898865 -compute_time_minutes: 0.9596480329831442 diff --git a/sparameters/ebeam_gc_te1550_d14753ca.npz b/sparameters/ebeam_gc_te1550_d14753ca.npz deleted file mode 100644 index 2090601e..00000000 Binary files a/sparameters/ebeam_gc_te1550_d14753ca.npz and /dev/null differ diff --git a/sparameters/ebeam_gc_te1550_d14753ca.yml b/sparameters/ebeam_gc_te1550_d14753ca.yml deleted file mode 100644 index 7cf7d669..00000000 --- a/sparameters/ebeam_gc_te1550_d14753ca.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: -31 -fiber_xoffset: 0 -compute_time_seconds: 3.1204681396484375 -compute_time_minutes: 0.052007802327473956 diff --git a/sparameters/ebeam_gc_te1550_d9bd5fec.npz b/sparameters/ebeam_gc_te1550_d9bd5fec.npz deleted file mode 100644 index b498e456..00000000 Binary files a/sparameters/ebeam_gc_te1550_d9bd5fec.npz and /dev/null differ diff --git a/sparameters/ebeam_gc_te1550_d9bd5fec.yml b/sparameters/ebeam_gc_te1550_d9bd5fec.yml deleted file mode 100644 index 6b8ea122..00000000 --- a/sparameters/ebeam_gc_te1550_d9bd5fec.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: -31 -fiber_xoffset: 5 -compute_time_seconds: 3.410997152328491 -compute_time_minutes: 0.05684995253880819 diff --git a/sparameters/ebeam_y_1550/ebeam_y_1550_1fbf8f67.csv b/sparameters/ebeam_y_1550/ebeam_y_1550_1fbf8f67.csv deleted file mode 100644 index e4ea478a..00000000 --- a/sparameters/ebeam_y_1550/ebeam_y_1550_1fbf8f67.csv +++ /dev/null @@ -1,51 +0,0 @@ -s22a,s22m,s32a,s32m,s12a,s12m,s23a,s23m,s33a,s33m,s13a,s13m,s21a,s21m,s31a,s31m,s11a,s11m,wavelengths,freqs -2.348554398596927,0.148523863617049,1.47325174709865,0.07870129763531979,0.1622849566687631,0.6161866036499215,1.473251746887732,0.07870129760719415,2.3485543981778427,0.1485238635967545,0.16228495659904252,0.6161866036561939,0.16230803096253477,0.6182386241172352,0.1623080309813859,0.61823862412753,1.4555929934977074,0.025269067527560782,1.5,0.6666666666666666 -1.8260654074075569,0.14097082149566026,0.8915802207710235,0.0851574942700235,-0.15496831486967974,0.6190699164739358,0.8915802205532364,0.08515749425205177,1.8260654070797522,0.14097082148272513,-0.15496831495813904,0.6190699164304917,-0.15645404261939672,0.6204938158784766,-0.15645404259805487,0.6204938158888537,0.8452870073907469,0.027416259319890262,1.5020408163265306,0.6657608695652174 -1.2476777060103907,0.12704235395314806,0.28855105539541104,0.08945194544902106,-0.47362870333308366,0.6222643750005853,0.288551055200557,0.08945194544128682,1.2476777057950414,0.12704235394332694,-0.4736287033861824,0.6222643750020868,-0.4757039138029155,0.6227020018150112,-0.4757039137791992,0.6227020018262072,0.22092512926688695,0.03189212243829584,1.5040816326530613,0.6648575305291723 -0.6066938665173175,0.11207678082870595,-0.3142031901911555,0.09131843645649722,-0.7935241982530126,0.624833018957947,-0.31420319034020117,0.09131843645682734,0.6066938664257354,0.11207678081462966,-0.7935241982969531,0.6248330189563089,-0.795246616580285,0.62437975900987,-0.7952466165550596,0.6243797590225497,-0.3328455144494068,0.03870866237057848,1.506122448979592,0.6639566395663956 --0.08971785128314928,0.10260339732514481,-0.9035051885932462,0.09164468995125769,-1.1136590848009353,0.6261638825183193,-0.9035051886866062,0.09164468995619197,-0.08971785129734058,0.10260339729905833,-1.1136590848356118,0.6261638825137256,-1.1144802596087795,0.6251863041833042,-1.1144802595833139,0.6251863041977225,-0.7894438379920842,0.04646890504210001,1.5081632653061225,0.6630581867388362 --0.7952860485594765,0.10248447310119535,-1.4772092550375495,0.09166350572165562,-1.4328514440080808,0.6261060990174376,-1.4772092550794707,0.09166350572773822,-0.7952860486068435,0.10248447306047073,-1.4328514440342541,0.6261060990102185,-1.4326351180621484,0.6250434336086198,-1.4326351180376615,0.6250434336245894,-1.159865344934004,0.05381708429433216,1.510204081632653,0.6621621621621622 --1.4514215106969075,0.11040247600356913,-2.0407128571196713,0.09221071594458145,-1.7500535672826847,0.6248437216901032,-2.0407128571262803,0.09221071594919947,-1.451421510849139,0.11040247595245295,-1.7500535673017867,0.6248437216804043,-1.7490399052368497,0.6241169317810641,-1.7490399052141934,0.6241169317980974,-1.4622752465522812,0.0601604987261012,1.5122448979591836,0.6612685560053981 --2.041611064866342,0.12191280005085355,-2.6010078469174034,0.09361200946236967,-2.0644430620459717,0.6228196661929992,-2.601007846912267,0.09361200946408488,-2.041611065117012,0.1219127999960011,-2.064443062059729,0.6228196661806589,-2.0632544317520005,0.6227147703115871,-2.0632544317315737,0.6227147703290845,-1.7147400900738679,0.06551858292080787,1.5142857142857142,0.6603773584905661 --2.5849134039353596,0.13278943085600756,-3.164254504901824,0.09591934533717555,-2.375572631771927,0.6206848996863402,-3.1642545049100246,0.09591934533580121,-2.5849134042504507,0.13278943080317318,-2.375572631782069,0.6206848996708897,-2.3750730152878003,0.621199983426176,-2.375073015269591,0.6211999834435514,-1.9343951398138333,0.07002933337282542,1.5163265306122449,0.6594885598923285 --3.1079596122404776,0.1400796406099063,-3.7358448987387085,0.09895403032446,-2.6835341820505123,0.6191852543474627,-3.7358448987808344,0.09895403032101834,-3.107959612587981,0.14007964056329814,-2.6835341820585628,0.6191852543281614,-2.6844993709685787,0.6199521573192428,-2.684499370952234,0.6199521573360002,-2.135303221619667,0.07355289936788437,1.5183673469387755,0.6586021505376344 --3.633306097742823,0.14201044680305686,-4.318776058976702,0.10222748980617816,-2.9890555906963217,0.618989135175995,-4.318776059063842,0.10222748980267873,-3.6333060980954257,0.1420104467652841,-2.9890555907033898,0.6189891351518699,-2.9917611228557686,0.6193488192759018,-2.9917611228406242,0.61934881929179,-2.3256440523560524,0.07557499489947787,1.5204081632653061,0.6577181208053691 --4.178006306212447,0.13823029932939845,-4.911504210023034,0.10509952930214778,-3.2934195152024937,0.6204547933817496,-4.911504210156876,0.10509952930124261,-4.17800630654234,0.13823029930089598,-3.2934195152089942,0.6204547933516467,-3.2973584824284887,0.6197211790273234,-3.297358482413798,0.6197211790419972,-2.5057651309368185,0.07540532232077998,1.5224489795918368,0.6568364611260054 --4.75521474317723,0.13029411842667382,-5.508506167615437,0.10714174596143763,-3.598060150110725,0.6234456423368895,-5.508506167785129,0.10714174596554936,-4.755214743455447,0.13029411840534694,-3.5980601501162304,0.6234456422998323,-3.602071218553017,0.6212582493754519,-3.602071218537892,0.6212582493890989,-2.6671504594083046,0.07258745520568323,1.5244897959183674,0.6559571619812583 --5.37334192730781,0.12158639014699264,-6.103309241448336,0.10838069753863219,-3.904013334793699,0.627370961465927,-6.103309241635566,0.10838069754939268,-5.373341927512243,0.12158639012786349,-3.9040133347971206,0.6273709614214256,-3.9068247151079047,0.6238899113654263,-3.906824715091645,0.6238899113783569,-2.792057327065136,0.06741348907118329,1.526530612244898,0.6550802139037433 --6.027712539928732,0.11619217322783287,-6.6916229592628,0.10923538851626621,-4.2116090873194345,0.6314303261824927,-6.691622959445687,0.10923538853414626,-6.027712540068148,0.11619217320439713,-4.211609087319602,0.6314303261308043,-4.212403763870029,0.6272354431400176,-4.212403763852247,0.6272354431526859,-2.8566326822796206,0.06138000998115316,1.5285714285714287,0.6542056074766355 --6.692036157899117,0.11687366987275039,-7.272789589345004,0.11024274566023323,-4.520507460836151,0.6348710122226375,-7.272789589502953,0.11024274568460155,-6.692036158026136,0.11687366984045446,-4.520507460832472,0.634871012164697,-4.5191511284795585,0.6306890722150905,-4.519151128460249,0.6306890722279758,-2.8483557336311476,0.057180796257536026,1.530612244897959,0.6533333333333333 --7.332124418898934,0.12347100211925174,-7.849325443961355,0.11179063280366193,-4.829891140114914,0.6371588929178403,-7.849325444078576,0.1117906328330131,-7.332124419073901,0.12347100207857999,-4.829891140107704,0.6371588928549475,-4.8268406243160085,0.6336212282309264,-4.8268406242954365,0.6336212282444876,-2.8000626071139356,0.05739503298314747,1.5326530612244897,0.6524633821571239 --7.932533929166742,0.13336538557818456,-8.425476634706122,0.11396291379392931,-5.138693570981072,0.6380842799988097,-8.425476634775379,0.11396291382648994,-7.932533929418837,0.1333653855335638,-5.138693570971586,0.6380842799321472,-5.134800226522001,0.6355843787354841,-5.134800226500764,0.6355843787497955,-2.7800516677928746,0.06223684723202552,1.5346938775510204,0.6515957446808511 --8.500168078249843,0.1431901744064816,-9.005394902961424,0.11646718668167845,-5.445870210676993,0.6378102889307717,-9.005394902982145,0.11646718671528876,-8.500168078575017,0.14319017436448472,-5.445870210666953,0.6378102888612035,-5.4421828850025475,0.636412639488405,-5.442182884981149,0.636412639503588,-2.8238471352373415,0.06952652118563242,1.536734693877551,0.650730411686587 --9.050500002240017,0.1500670309705222,-9.591111854583291,0.11866963819684855,-5.750709330255911,0.6368207372962961,-9.591111854561882,0.11866963822946482,-9.050500002617895,0.1500670309375354,-5.750709330247126,0.6368207372241375,-5.748206778075268,0.6361961882051925,-5.748206778054204,0.63619618822115,-2.9230129807348573,0.0768318131590979,1.5387755102040817,0.649867374005305 --9.597600434313524,0.1523044200300039,-10.181171271620958,0.11981053601160385,-6.053068644858572,0.6357291815089462,-10.181171271568118,0.11981053604146956,-9.597600434713003,0.15230442001096126,-6.053068644852438,0.6357291814340119,-6.052271330432814,0.6352023612234343,-6.052271330412466,0.6352023612399599,-3.058175756339543,0.0826149217218978,1.5408163265306123,0.6490066225165563 --10.151245589591811,0.14990045153747925,-10.770841517473713,0.11934361428998616,-6.35334662970425,0.6350160738669459,-10.770841517401742,0.11934361431586513,-10.151245589969951,0.14990045153447196,-6.353346629701366,0.6350160737887811,-6.3539973573441415,0.6338155377553476,-6.353997357324719,0.633815537772161,-3.2153508103178092,0.08614199523174813,1.542857142857143,0.6481481481481481 --10.716578726455541,0.1446276393750853,-11.353784354231383,0.11721495371133636,-6.652166650348767,0.6348752873551836,-11.353784354151882,0.11721495373264855,-10.716578726757895,0.1446276393860661,-6.652166650348862,0.6348752872734417,-6.653283183694188,0.6324925027438911,-6.653283183675669,0.6324925027606939,-3.387307243056216,0.08707543695293407,1.5448979591836736,0.6472919418758256 --11.292767269123525,0.1393880783038021,-11.924473384275702,0.11391555800088154,-6.950045846871072,0.6352674180051204,-11.924473384198247,0.11391555801765418,-11.29276726929694,0.1393880783220804,-6.9500458468733095,0.6352674179198865,-6.950374352357025,0.6316815321191321,-6.950374352339144,0.6316815321356888,-3.5707893454543105,0.08515492776851921,1.5469387755102042,0.646437994722955 --11.870731247125905,0.1369368430548521,-12.480477362330445,0.11025834186238657,-7.247297365078254,0.6360609417460134,-12.480477362262324,0.11025834187503894,-11.870731247148074,0.13693684307043835,-7.247297365081774,0.6360609416578991,-7.24584320032011,0.6316971590920781,-7.245843200302435,0.6316971591082964,-3.7631707612344303,0.08010449997901178,1.5489795918367348,0.6455862977602107 --12.434676423292204,0.13859797471000215,-13.023326919152522,0.107010465229452,-7.544090118981451,0.6371031016129413,-13.023326919099222,0.1070104652385403,-12.434676423194231,0.13859797471312021,-7.544090118985801,0.6371031015229471,-7.540413929218348,0.6326205945822163,-7.540413929200434,0.6326205945981652,-3.959546903077883,0.07176725918204194,1.5510204081632653,0.6447368421052632 --12.970211682634913,0.14380372887404402,-13.557239154303106,0.10464107345467051,-7.840469005651069,0.6382286084015942,-13.557239154269137,0.10464107346072331,-12.970211682485187,0.14380372885870088,-7.840469005656378,0.6382286083108752,-7.834714493475209,0.6343006420818528,-7.83471449345673,0.6343006420977264,-4.149952951762369,0.06032765844817274,1.5530612244897959,0.6438896189224704 --13.471966017990274,0.1506689253174229,-14.086940745066086,0.10332471981085588,-8.136331429802256,0.639295154720413,-14.086940745055749,0.10332471981435415,-13.471966017857225,0.150668925282521,-8.136331429809182,0.6392951546300603,-8.129108042757233,0.6364508403822344,-8.129108042738043,0.6364508403982798,-4.313339558508773,0.04646698714737351,1.5551020408163265,0.6430446194225722 --13.943986903890531,0.15690732950731728,-14.616524482869204,0.1030720295085746,-8.43146837753865,0.6402464175375433,-14.616524482887003,0.10307202951002895,-13.943986903822672,0.15690732945559363,-8.431468377548223,0.6402464174484285,-8.423677285228905,0.6387705844380115,-8.423677285209028,0.6387705844544723,-4.394053451329466,0.031508573117871246,1.5571428571428572,0.6422018348623854 --14.395853754446565,0.16040125260546484,-15.149421335560817,0.10379161869927025,-8.72568146117055,0.6411422457893483,-15.149421335611201,0.10379161869933073,-14.395853754473938,0.1604012525420409,-8.725681461183967,0.6411422457020282,-8.718317946784282,0.64102369176864,-8.71831794676387,0.6410236917857243,-4.194907832852406,0.018395692569355422,1.5591836734693878,0.6413612565445026 --14.839246288069194,0.15939798343046205,-15.688217072055085,0.10526109896549485,-9.018908457413705,0.6421294771198444,-15.688217072141425,0.10526109896503115,-14.839246288211896,0.15939798336196895,-9.018908457432147,0.6421294770345166,-9.012852402428818,0.6430540574814739,-9.01285240240813,0.6430540574993402,-3.453416488504828,0.0158948894442105,1.5612244897959184,0.6405228758169934 --15.286548138216071,0.15266524530390674,-16.23393842857386,0.10711312825903298,-9.311296555179132,0.6433613994912338,-16.23393842869686,0.10711312825914225,-15.286548138491458,0.1526652452381548,-9.311296555203551,0.6433613994077354,-9.30709284424087,0.6447582185889155,-9.307092844220254,0.644758218607654,-3.122108613992654,0.025397816743195915,1.563265306122449,0.639686684073107 --15.751756877462308,0.1398142870531919,-16.785535712058582,0.1088972602265056,-9.603170730127779,0.6448928242161343,-16.785535712214696,0.10889726022840916,-15.751756877888555,0.1398142869990317,-9.603170730158668,0.6448928241340033,-9.600832471581516,0.6460587259134427,-9.60083247156138,0.6460587259330461,-3.1681760097061504,0.036307601971240895,1.5653061224489797,0.6388526727509778 --16.254067296527534,0.12177638594238067,-17.34006265500399,0.11019092396994459,-9.894878178258784,0.6466089620680713,-17.340062655184582,0.11019092397476911,-16.25406729711865,0.12177638590941617,-9.894878178295953,0.6466089619867292,-9.893810429195105,0.6469168493747707,-9.893810429175844,0.6469168493950996,-3.3272346415930647,0.04514702587588385,1.5673469387755103,0.6380208333333333 --16.82400840494377,0.10138465536537233,-17.893406039658004,0.1107118823114823,-10.186583124337906,0.6482493978810707,-17.893406039849715,0.11071188231997611,-16.824008405674206,0.10138465536289565,-10.186583124380473,0.6482493978000886,-10.185729486654555,0.6473772148551639,-10.185729486636427,0.6473772148759578,-3.527206322299057,0.05105988361658104,1.569387755102041,0.6371911573472041 --17.502513794411016,0.08401313004240943,-18.441301202258515,0.11039667004517395,-10.478151602870955,0.6495270840995767,-18.4413012024449,0.11039667005745858,-17.502513795098707,0.08401313007470895,-10.478151602917592,0.6495270840188976,-10.476352505494535,0.647590820204509,-10.476352505477568,0.6475908202254564,-3.745821459240666,0.053911274780261996,1.5714285714285714,0.6363636363636364 --18.286618928011713,0.07691023453427341,-18.980470709943425,0.10940783183430149,-10.769208466458652,0.6502635516897421,-18.980470710107426,0.10940783184976272,-18.286618928265916,0.07691023458792984,-10.769208466507994,0.6502635516097336,-10.765611295321712,0.6477739667324441,-10.765611295305682,0.6477739667532852,-3.976016642845981,0.05385447417473856,1.573469387755102,0.6355382619974059 --19.049482157027416,0.0833406842224842,-19.509546517319944,0.10804677848092961,-11.059307731529364,0.6504504036681708,-19.50954651744677,0.1080467784982722,-19.04948215678183,0.08334068426714403,-11.059307731580368,0.6504504035894962,-11.053634131231348,0.6481215810442243,-11.053634131215881,0.6481215810648239,-4.216514718647901,0.05113809075740805,1.5755102040816327,0.6347150259067358 --19.683720824378753,0.09829081607941507,-20.0292452418908,0.10661286432233721,-11.34808194851921,0.6502231034414524,-20.029245241970617,0.10661286433975653,-19.683720823958044,0.09829081609686961,-11.348081948571293,0.6502231033648594,-11.340667365178799,0.6487373434287306,-11.340667365163494,0.648737343449097,-4.468010693470898,0.04605038904565151,1.5775510204081633,0.6338939197930142 --20.20480223868643,0.11502449877100233,-20.541667765150873,0.10530424659294901,-11.635308254413077,0.6498053821276789,-20.54166776518096,0.10530424660835609,-20.204802238298427,0.11502449875926568,-11.635308254466098,0.6498053820538306,-11.62695715243663,0.6496251347432567,-11.626957152421145,0.6496251347635137,-4.731456988656069,0.03896091395659173,1.579591836734694,0.6330749354005167 --20.65781796641263,0.12936535047216782,-21.049356516564092,0.10421375431362684,-11.920934266947288,0.6494666128293376,-21.04935651655011,0.1042137543249057,-20.657817966127308,0.12936535043521938,-11.920934267001442,0.6494666127586898,-11.912677834209425,0.6507302928638803,-11.912677834193545,0.6507302928842301,-5.0076059588738175,0.030370916885827073,1.5816326530612246,0.632258064516129 --21.07501881323421,0.13916822592599418,-21.55480753148809,0.10337322448885033,-12.205105941693052,0.6494793771597209,-21.55480753144423,0.10337322449415115,-21.075018813072823,0.1391682258694901,-12.205105941748744,0.6494793770924756,-12.19793415675113,0.6519839298944324,-12.197934156734778,0.6519839299151213,-5.296694664030091,0.020911926507143463,1.5836734693877552,0.6314432989690721 --21.47748207432441,0.14341214356013046,-22.06036147554072,0.10277498381496677,-12.4881759701317,0.6500574433649785,-22.060361475488683,0.10277498381301467,-21.477482074297985,0.14341214349054576,-12.48817597018943,0.6500574433010554,-12.482797043558218,0.6533174775459444,-12.482797043541488,0.6533174775672302,-5.594704906248669,0.011302262365087854,1.5857142857142859,0.6306306306306306 --21.881038495856544,0.1417745277832865,-22.56796598988734,0.10236840277606657,-12.770653282569903,0.651283791866334,-22.567965989854038,0.10236840276645354,-21.88103849597873,0.1417745277079799,-12.770653282630105,0.6512837918053719,-12.767321082075442,0.6546519784762505,-12.767321082058613,0.6546519784983533,-5.801875321613963,0.002302321337550635,1.5877551020408165,0.6298200514138816 --22.300322368625068,0.1345703160436067,-23.07876259843729,0.10207709876137622,-13.053080170909485,0.6530567880229889,-23.078762598451235,0.10207709874478874,-22.300322368916035,0.13457031597109106,-13.053080170972361,0.6530567879643845,-13.051527440061792,0.6558867759629494,-13.051527440045291,0.6558867759859891,-3.247762576850911,0.0055005192594946165,1.5897959183673471,0.6290115532734274 --22.751979548469997,0.12294650400646494,-23.592942879805182,0.10184562882301644,-13.335859491124657,0.6550885139060708,-23.592942879891922,0.10184562880131907,-22.751979548953056,0.12294650394665205,-13.335859491190005,0.6550885138490787,-13.335369869428016,0.6569062720233951,-13.33536986941234,0.6569062720473378,-3.604738962528263,0.011536328890019326,1.5918367346938775,0.6282051282051282 --23.256983751406597,0.10921357275169007,-24.11008476973241,0.10167172686900323,-13.619101587635836,0.6569785586584631,-24.110084769909573,0.10167172684510496,-23.256983752085386,0.10921357271563019,-13.619101587702982,0.6569785586023562,-13.618713018326376,0.65760845522522,-13.618713018311944,0.6576084552498682,-4.025338423803995,0.01579625515804559,1.5938775510204082,0.6274007682458387 --23.836288257267245,0.09712213552140937,-24.629631023296206,0.1015891923243614,-13.902578967668827,0.6583418123092968,-24.62963102356922,0.10158919230184568,-23.836288258057095,0.09712213551878954,-13.90257896773669,0.6583418122535253,-13.901349255773399,0.6579435852548902,-13.90134925576044,0.6579435852799322,-4.491785235836906,0.018730102598194534,1.5959183673469388,0.6265984654731458 --24.485633963611356,0.0913314098882104,-25.15106705591026,0.10161998174012134,-14.185813066089707,0.6589238037067745,-25.151067056270236,0.10161998172267758,-24.48563396426855,0.09133140991946687,-14.185813066157042,0.658923803651051,-14.183059014110961,0.6579376035234823,-14.183059014099396,0.6579376035486313,-4.992430821974632,0.021241560860401906,1.5979591836734695,0.6257982120051085 --25.145603337885763,0.09469761361674278,-25.67376782190885,0.10174115084813781,-14.46822333533228,0.6586505955199093,-25.673767822331293,0.10174115083899586,-25.1456033381741,0.09469761366593418,-14.468223335397788,0.6586505954643083,-14.463680539650067,0.6576789455872838,-14.463680539639782,0.6576789456121781,-5.497744404572074,0.024325099229787275,1.6,0.625 diff --git a/sparameters/ebeam_y_1550/ebeam_y_1550_1fbf8f67.yml b/sparameters/ebeam_y_1550/ebeam_y_1550_1fbf8f67.yml deleted file mode 100644 index 63d93a23..00000000 --- a/sparameters/ebeam_y_1550/ebeam_y_1550_1fbf8f67.yml +++ /dev/null @@ -1,71 +0,0 @@ -resolution: 20 -port_symmetries: {} -wl_min: 1.5 -wl_max: 1.6 -wl_steps: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3.0 -ymargin_bot: 3.0 -xmargin_left: 0 -xmargin_right: 0 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0.0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0.0 -component: - ports: - o1: - name: o1 - midpoint: - - -7.4 - - 0 - width: 0.5 - orientation: 180 - layer: - - 1 - - 0 - port_type: optical - o2: - name: o2 - midpoint: - - 7.4 - - 2.75 - width: 0.5 - orientation: 0 - layer: - - 1 - - 0 - port_type: optical - o3: - name: o3 - midpoint: - - 7.4 - - -2.75 - width: 0.5 - orientation: 0 - layer: - - 1 - - 0 - port_type: optical - info: - name: ebeam_y_1550 - cells: - ebeam_y_1550: - name: ebeam_y_1550 - version: 0.0.1 diff --git a/sparameters/ebeam_y_1550_0d010a6f.npz b/sparameters/ebeam_y_1550_0d010a6f.npz deleted file mode 100644 index 589b4b65..00000000 Binary files a/sparameters/ebeam_y_1550_0d010a6f.npz and /dev/null differ diff --git a/sparameters/ebeam_y_1550_0d010a6f.yml b/sparameters/ebeam_y_1550_0d010a6f.yml deleted file mode 100644 index 2e658a12..00000000 --- a/sparameters/ebeam_y_1550_0d010a6f.yml +++ /dev/null @@ -1,57 +0,0 @@ -resolution: 20 -port_symmetries: {} -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3 -ymargin_bot: 3 -xmargin_left: 0 -xmargin_right: 0 -is_3d: false -material_name_to_meep: - si: 2.8494636999424405 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - thickness_tolerance: null - zmin: 0.0 - material: si - sidewall_angle: 0.0 - width_to_z: 0.0 - z_to_bias: null - info: {} - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - thickness_tolerance: null - zmin: 0.0 - material: si - sidewall_angle: 0.0 - width_to_z: 0.0 - z_to_bias: null - info: {} -component: - name: ebeam_y_1550 - settings: - name: ebeam_y_1550 - module: ubcpdk.components - function_name: ebeam_y_1550 - info: - library: Design kits/ebeam - model: ebeam_y_1550 - info_version: 2 - full: {} - changed: {} - default: {} - child: null -compute_time_seconds: 75.88240885734558 -compute_time_minutes: 1.264706814289093 diff --git a/sparameters/ebeam_y_1550_199b0a13b1f667b1e06104a659d324b2.npz b/sparameters/ebeam_y_1550_199b0a13b1f667b1e06104a659d324b2.npz deleted file mode 100644 index f4fb10d0..00000000 Binary files a/sparameters/ebeam_y_1550_199b0a13b1f667b1e06104a659d324b2.npz and /dev/null differ diff --git a/sparameters/ebeam_y_1550_199b0a13b1f667b1e06104a659d324b2.yml b/sparameters/ebeam_y_1550_199b0a13b1f667b1e06104a659d324b2.yml deleted file mode 100644 index 4befa342..00000000 --- a/sparameters/ebeam_y_1550_199b0a13b1f667b1e06104a659d324b2.yml +++ /dev/null @@ -1,2 +0,0 @@ -compute_time_seconds: 66.282 -compute_time_minutes: 1.105 diff --git a/sparameters/ebeam_y_1550_1f494ca0.npz b/sparameters/ebeam_y_1550_1f494ca0.npz deleted file mode 100644 index 5b4d4a90..00000000 Binary files a/sparameters/ebeam_y_1550_1f494ca0.npz and /dev/null differ diff --git a/sparameters/ebeam_y_1550_1f494ca0.yml b/sparameters/ebeam_y_1550_1f494ca0.yml deleted file mode 100644 index 187286fe..00000000 --- a/sparameters/ebeam_y_1550_1f494ca0.yml +++ /dev/null @@ -1,49 +0,0 @@ -resolution: 30 -port_symmetries: {} -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3 -ymargin_bot: 3 -xmargin_left: 0 -xmargin_right: 0 -is_3d: false -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - info: {} - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - info: {} -component: - name: ebeam_y_1550 - settings: - name: ebeam_y_1550 - module: ubcpdk.components - function_name: ebeam_y_1550 - info: - library: Design kits/ebeam - model: ebeam_y_1550 - info_version: 2 - full: {} - changed: {} - default: {} - child: null -compute_time_seconds: 181.47205114364624 -compute_time_minutes: 3.0245341857274375 diff --git a/sparameters/ebeam_y_1550_20634f71.csv b/sparameters/ebeam_y_1550_20634f71.csv deleted file mode 100644 index 452a51ee..00000000 --- a/sparameters/ebeam_y_1550_20634f71.csv +++ /dev/null @@ -1,51 +0,0 @@ -s11a,s11m,s21a,s21m,s31a,s31m,s12a,s12m,s22a,s22m,s32a,s32m,s13a,s13m,s23a,s23m,s33a,s33m,wavelengths,freqs --1.3563805947264742,0.06625721214226675,-1.8466761766520416,0.6108971942930804,-1.8466761767113278,0.6108971943193813,-1.8463082359351537,0.6102928982239155,-1.5992043408829106,0.13710293861120434,-2.52493546507906,0.10080948432467197,-1.846308236511836,0.6102928983711313,-2.524935466052599,0.10080948428919058,-1.5992043404937961,0.1371029386640683,1.5,0.6666666666666666 --1.522708963792812,0.06828221323485086,-2.1543248581998498,0.6108299893705595,-2.1543248582590087,0.6108299893959809,-2.1536219711167104,0.6092774208844927,-2.117574318029858,0.14082124228580015,-3.0945301764111037,0.10047207059069181,-2.1536219716944687,0.6092774210248755,-3.0945301773719494,0.10047207055393055,-2.117574317682884,0.1408212423439083,1.5020408163265306,0.6657608695652174 --1.683226086193113,0.06922813199774511,-2.46092822091774,0.6108103787812176,-2.4609282209768364,0.6108103788058776,-2.4591207572019447,0.6085684950766945,-2.620527302755428,0.1415122921291577,-3.661325810478291,0.1001287419143675,-2.4591207577777228,0.6085684952095013,-3.661325811424922,0.10012874187626217,-2.6205273024394935,0.14151229219215417,1.5040816326530613,0.6648575305291723 --1.8328530880840344,0.06919968709488349,-2.7665070168431583,0.6108676912532042,-2.7665070169025037,0.6108676912772099,-2.763160120315142,0.608383362258239,-3.1188350829242495,0.13858097616963727,-4.225369546319034,0.0998269730569513,-2.7631601208857814,0.6083833623838144,-4.225369547249557,0.09982697301750848,-3.1188350826284355,0.13858097623640653,1.506122448979592,0.6639566395663956 --1.9675331046013467,0.06846715751044755,-3.0710985326557205,0.6110260165081887,-3.0710985327154368,0.611026016531599,-3.0662132699923177,0.6088036928803999,-3.6243514780283306,0.13216865423517196,-4.78686964074698,0.09959644747153434,-3.066213270555438,0.6088036929999787,-4.786869641660026,0.09959644743075931,-3.624351477739988,0.13216865430411956,1.5081632653061225,0.6630581867388362 --2.084920420186491,0.06743478398284038,-3.3747507935989374,0.6113003608478172,-3.374750793659245,0.6113003608706598,-3.368742452587091,0.6097626048355982,-4.150039226611311,0.12316725264318704,-5.346123870166958,0.09944611549238058,-3.368742453141654,0.6097626049508484,-5.346123871061617,0.09944611545028618,-4.150039226315604,0.12316725271236856,1.510204081632653,0.6621621621621622 --2.1854511349809,0.06657190995777704,-3.67751454084533,0.6116951576438981,-3.6775145409064507,0.6116951576661621,-3.671079004226456,0.6110705947840518,-4.709057759248313,0.11322555490363846,-5.903439381386824,0.09936634556062564,-3.6710790047728628,0.6110705948965621,-5.903439382262742,0.09936634551719677,-4.709057758927677,0.11322555497091046,1.5122448979591836,0.6612685560053981 --2.273218701546705,0.0663008891462085,-3.9794353820354282,0.6122054025882578,-3.9794353820975794,0.6122054026098949,-3.973343234726143,0.6124727165964015,-5.310174432376746,0.10463278464704263,-6.45906444644915,0.0993352660053508,-3.9733432352659053,0.6124727167072426,-6.459064447306263,0.0993352659605357,-5.310174432016193,0.10463278471032147,1.5142857142857142,0.6603773584905661 --2.3555857293180584,0.06686529784638537,-4.2805483038720205,0.6128198869877883,-4.280548303935393,0.6128198870087135,-4.2754244461779605,0.6137224492439156,-5.947748690069932,0.09977750853283901,-7.01314911720518,0.09932757542665956,-4.275424446713066,0.6137224493533958,-7.0131491180433745,0.09932757538037584,-5.947748689671551,0.09977750859073735,1.5163265306122449,0.6594885598923285 --2.440985623423182,0.06823844577314489,-4.580875877934459,0.6135254190233423,-4.5808758779992065,0.6135254190434403,-4.577026080254954,0.6146526993473006,-6.5952691102778065,0.10000025389022305,-7.565744043661519,0.09932345240405233,-4.577026080787153,0.6146526994549771,-7.565744044480304,0.09932345235621237,-6.595269109870124,0.10000025394302967,1.5183673469387755,0.6586021505376344 --2.5360135380994118,0.07012787356644665,-4.8804302887843605,0.6143107063141421,-4.88043028885059,0.6143107063332707,-4.877763520356478,0.6152234308808157,-7.219531892872185,0.10464500418098278,-8.116835032213565,0.0993149793545064,-4.877763520886716,0.6152234309857463,-8.116835033011878,0.09931497930505273,-7.219531892491882,0.10464500423088385,1.5204081632653061,0.6577181208053691 --2.6436874494703155,0.07207103307582521,-5.179218148750349,0.6151687660347191,-5.179218148818077,0.6151687660527134,-5.17728653142585,0.6155309577832608,-7.803536227543711,0.11150144983585558,-8.666398398670534,0.09930807511471225,-5.177286531954006,0.6155309578843867,-8.666398399446852,0.09930807506364814,-7.803536227210577,0.11150144988576297,1.5224489795918368,0.6568364611260054 --2.7635122884431946,0.07356373615067359,-5.477246286380615,0.6160972536002475,-5.4772462864498035,0.616097253616931,-5.475390147504555,0.6157756757070236,-8.349882651979605,0.11810120917795047,-9.214454240081196,0.09931934212098593,-5.475390148029537,0.6157756758035596,-9.214454240833696,0.09931934206839879,-8.349882651694234,0.11810120923019923,1.5244897959183674,0.6559571619812583 --2.892508954657833,0.07416772346553706,-5.774526519754843,0.617096781887502,-5.774526519825602,0.6170967819027376,-5.7720809309039245,0.6161986147167192,-8.870552046791278,0.12259057484419039,-9.76109570417274,0.09936896602480706,-5.772080931424055,0.6161986148084089,-9.761095704899024,0.09936896597087917,-8.87055204654455,0.12259057490009899,1.526530612244898,0.6550802139037433 --3.0262073134749845,0.0735797837504688,-6.071077868046479,0.6181679231030325,-6.07107786811858,0.618167923116634,-6.067579346550453,0.6170067766298551,-9.379364661313275,0.12398561725884528,-10.306482020885833,0.0994720932592913,-6.067579347063984,0.6170067767170927,-10.306482021584662,0.09947209320425002,-9.379364661090133,0.12398561731870575,1.5285714285714287,0.6542056074766355 --3.1591799580123383,0.0716697601126261,-6.366925539463907,0.6193079599006516,-6.366925539537172,0.6193079599124667,-6.362258462468896,0.6183093950946146,-9.88954248143337,0.12216008104076898,-10.850796954304911,0.0996314754116725,-6.362258462974532,0.618309395178322,-10.8507969549754,0.09963147535578132,-9.889542481216003,0.12216008110404364,1.530612244897959,0.6533333333333333 --3.285151736656576,0.06850066207690633,-6.662097065382869,0.6205084865411334,-6.662097065457056,0.620508486551021,-6.656537727836991,0.620082722649756,-10.413248867077964,0.11777751635971916,-11.394186783105845,0.0998336506270113,-6.656537728334248,0.6200827227311567,-11.394186783747912,0.09983365057052596,-10.413248866844894,0.11777751642508812,1.5326530612244897,0.6524633821571239 --3.396937233629697,0.06434070367211973,-6.956616816993083,0.6217546693295368,-6.956616817067895,0.6217546693373756,-6.950763060210568,0.6221725509245678,-10.960512144566799,0.11219423613101394,-11.936699173300347,0.10004986810289838,-6.950763060699882,0.6221725510048732,-11.936699173914644,0.10004986804603556,-10.960512144294002,0.11219423619636108,1.5346938775510204,0.6515957446808511 --3.4866859383656736,0.05966980461330829,-7.250500605640831,0.6230264623694288,-7.250500605716106,0.6230264623751824,-7.245108074171907,0.6243337737221417,-11.535799703579977,0.10723635257796871,-12.478245002012484,0.10024165000547423,-7.245108074646894,0.6243337738010113,-12.478245002599365,0.10024164994836868,-11.535799703248674,0.10723635264051799,1.536734693877551,0.650730411686587 --3.5473672240669005,0.055168229387975304,-7.543752024250223,0.6243014919690569,-7.543752024325578,0.6243014919726507,-7.539525070636591,0.626296324235176,-12.132725690056423,0.10468915863466352,-13.018599233955474,0.10036953041556758,-7.539525070991111,0.6262963242953815,-13.018599234516323,0.10036953035830329,-12.132725689667005,0.1046891586914833,1.5387755102040817,0.649867374005305 --3.5767446100230624,0.05164520826353225,-7.836361669464246,0.6255588364668776,-7.836361669539362,0.6255588364682947,-7.833759477383382,0.6278386802783784,-12.732823761255219,0.10551819097558073,-13.557445183381056,0.10040241488287216,-7.833759477689673,0.6278386803312267,-13.557445183916808,0.10040241482546859,-12.73282376083684,0.10551819102480008,1.5408163265306123,0.6490066225165563 --3.583210019109684,0.04984060959823967,-8.128309553161584,0.6267826598941907,-8.128309553236148,0.6267826598934486,-8.127421744844323,0.6288469689340309,-13.314654584576486,0.10933583320532848,-14.094451729626549,0.10032464198233185,-8.12742174519245,0.6288469689936329,-14.09445173013786,0.10032464192477682,-13.3146545841725,0.109335833246978,1.542857142857143,0.6481481481481481 --3.5871864809615013,0.05011142321291591,-8.419570103049015,0.6279646947988368,-8.419570103122727,0.6279646947959837,-8.420093135264121,0.6293421853540695,-13.865986645021396,0.11465982793644908,-14.629360603828157,0.10013856233841444,-8.420093135569164,0.6293421854056508,-14.629360604315384,0.10013856228069408,-13.865986644665805,0.11465982797212665,1.5448979591836736,0.6472919418758256 --3.611691737056494,0.05222905511019615,-8.71011842774955,0.629104888813674,-8.710118427822062,0.629104888808737,-8.711433149306698,0.6294692041373587,-14.38675586927602,0.11968724149081666,-15.1620564427466,0.09986210117605371,-8.71143314961098,0.6294692041873781,-15.162056443210245,0.09986210111820852,-14.386755868984789,0.11968724152266695,1.5469387755102042,0.646437994722955 --3.6701026513230883,0.05551162751752465,-8.99993618326173,0.6302100449366624,-8.999936183369151,0.630210044927923,-9.001259359328829,0.6294541024574835,-14.884398780818884,0.12292578442250711,-15.69259822792937,0.09952256477440352,-9.001259359632781,0.6294541025053866,-15.692598228569643,0.09952256468996774,-14.884398780494411,0.12292578446640293,1.5489795918367348,0.6455862977602107 --3.763772572804711,0.05915003958645958,-9.289015509396897,0.6312908397951382,-9.289015509502072,0.6312908397837508,-9.289582219756955,0.6295449530344103,-15.369180032039539,0.12347155277413521,-16.22120399638865,0.09914903128184775,-9.289582220180836,0.6295449530993211,-16.221203996995364,0.09914903119734648,-15.369180031810203,0.12347155281797284,1.5510204081632653,0.6447368421052632 --3.887280006833842,0.06244884848624831,-9.577360057587544,0.6323580377957455,-9.577360057690214,0.6323580377819058,-9.576591704186821,0.6299529987284703,-15.85207562006628,0.12107013400307698,-16.748195132490217,0.0987656861201696,-9.576591704607386,0.6299529987909864,-16.74819513306437,0.0987656860357842,-15.852075619924213,0.1210701340488049,1.5530612244897959,0.6438896189224704 --4.033396024897053,0.06491319142166974,-9.864982929871394,0.6334189135984561,-9.864982929971362,0.6334189135823732,-9.862604250242336,0.6308075894023815,-16.34422936873058,0.11610529654313079,-17.2739168748291,0.09838769861576502,-9.86260425065915,0.6308075894630732,-17.273916875372173,0.0983876985316953,-16.34422936866414,0.11610529659229839,1.5551020408163265,0.6430446194225722 --4.195336031627017,0.06624997878279501,-10.15190216447366,0.634474812033848,-10.15190216457082,0.6344748120157944,-10.147985604622153,0.6321327476250529,-16.856444189906544,0.10956982772521986,-17.79865591489931,0.09802022233861053,-10.147985605035323,0.6321327476845288,-17.798655915412887,0.09802022225501592,-16.85644418989692,0.10956982777900083,1.5571428571428572,0.6422018348623854 --4.367252312340211,0.06634258321302333,-10.438135022272004,0.6355204522794763,-10.43813502236622,0.6355204522595544,-10.433068278271797,0.6338479864254118,-17.39707333843193,0.10298496543274113,-18.322574844285647,0.09766021773388822,-10.43306827885434,0.6338479865083492,-18.322574844771957,0.09766021765098137,-17.397073338448443,0.10298496549163297,1.5591836734693878,0.6413612565445026 --4.544039687891047,0.06522286227315315,-10.723692601667327,0.6365451176243773,-10.723692601758604,0.6365451176028488,-10.718082129724687,0.6357914212873209,-17.966986433242905,0.09813969394092432,-18.84567818362743,0.09730017016394883,-10.718082130303578,0.6357914213690417,-18.84567818408779,0.09730017008180174,-17.966986433244646,0.09813969400440994,1.5612244897959184,0.6405228758169934 --4.720984646139891,0.06304634927498715,-11.008576185220873,0.6375353845721118,-11.00857618530923,0.637535384549169,-11.003112956048124,0.6377589897560826,-18.553900231783654,0.0965027824791818,-19.367816951121046,0.09693241562586953,-11.003112956474165,0.6377589898162873,-19.367816951556385,0.09693241554453305,-18.553900231737153,0.09650278254533172,1.563265306122449,0.639686684073107 --4.89348098479322,0.06007088701623099,-11.292776243698714,0.6384786560508159,-11.29277624378422,0.6384786560266308,-11.288096685676349,0.6395500500016886,-19.13467645139374,0.09847932416142424,-19.888729334029993,0.0965527215651779,-11.288096686081918,0.6395500500581833,-19.888729334440512,0.0965527214846647,-19.134676451297064,0.09847932422749156,1.5653061224489797,0.6388526727509778 --5.056962673896909,0.0566375367920077,-11.576274320400358,0.6393665668624804,-11.576274320483096,0.6393665668372623,-11.572847214380815,0.6410081514212991,-19.6885644767998,0.10315814114671712,-20.408105907377212,0.09616206077325477,-11.572847214842836,0.6410081514838166,-20.408105907762376,0.09616206069353003,-19.688564476682995,0.10315814121033505,1.5673469387755103,0.6380208333333333 --5.207260245175518,0.05315091047180881,-11.859047271790068,0.6401973760150129,-11.859047271870175,0.6401973759887605,-11.85710710938687,0.6420475639898877,-20.207643003024,0.10884371124449024,-20.925661642110455,0.09576613804222359,-11.857107109790773,0.642047564042829,-20.92566164246951,0.095766137963358,-20.207643002925582,0.10884371130422905,1.569387755102041,0.6371911573472041 --5.34164170931418,0.05005219940961358,-12.14107274410777,0.6409767384073254,-12.141072744185362,0.6409767383801935,-12.140605633314141,0.642660989345987,-20.695423218000343,0.11380973974413568,-21.44119588186341,0.0953729931500199,-12.140605633716563,0.6426609893966735,-21.44119588219536,0.09537299307201225,-20.69542321795356,0.11380973979952125,1.5714285714285714,0.6363636363636364 --5.4605692535481625,0.04777337612156604,-12.422334473618697,0.6417166817758527,-12.422334473693901,0.6417166817479061,-12.423109317961794,0.6429098039050557,-21.160722874109172,0.11674887132261351,-21.954625918843057,0.09498962148470788,-12.423109318362163,0.6429098039534884,-21.954625919147333,0.09498962140762202,-21.16072287413857,0.11674887137377242,1.573469387755102,0.6355382619974059 --5.569322287263031,0.04666415716689764,-12.702826083201826,0.6424330848297561,-12.702826083274806,0.6424330848009753,-12.704455491460445,0.6429027090116117,-21.613696252366402,0.11691385285528252,-22.46598793739959,0.09461880655121355,-12.704455491858347,0.6429027090580267,-22.46598793767623,0.0946188064751658,-21.613696252491888,0.11691385290281525,1.5755102040816327,0.6347150259067358 --5.6775929485790835,0.04690748453627573,-12.982552473854328,0.6431423291581689,-12.9825524739251,0.6431423291286824,-12.984565857217223,0.6427702841958307,-22.064608350972197,0.11412167497247959,-22.975407955065158,0.09425721500070791,-12.98456585761262,0.6427702842405346,-22.975407955315262,0.09425721492574635,-22.064608351212332,0.11412167501777976,1.5775510204081633,0.6338939197930142 --5.79604784835388,0.04847197219260982,-13.261528552645668,0.6438579847940629,-13.261528552714365,0.6438579847637942,-13.263442803765432,0.6426418503579852,-22.52391935316218,0.10872889295575854,-23.483052423781658,0.09389538962176582,-13.26344280415858,0.6426418504013163,-23.48305242400682,0.09389538954801291,-22.523919353535046,0.10872889300089865,1.579591836734694,0.6330749354005167 --5.932039305416899,0.05113938546810245,-13.53977572175321,0.6445883481977849,-13.539775721819856,0.6445883481667372,-13.54115421059345,0.642628470576502,-23.002414963428407,0.10161270123130896,-23.989072055085245,0.09351975122462697,-13.541154210984901,0.6426284706186235,-23.989072055287743,0.09351975115213676,-23.002414963946812,0.10161270127953581,1.5816326530612246,0.632258064516129 --6.08774009227656,0.05458453409556077,-13.817317102636656,0.6453354058881313,-13.817317102701278,0.6453354058562583,-13.817813112013706,0.6428131844271705,-23.51000872436066,0.094137680626871,-24.493552977056105,0.09311620265604661,-13.81781311240409,0.6428131844680331,-24.49355297723823,0.09311620258484608,-23.510008725019343,0.09413768068250876,1.5836734693877552,0.6314432989690721 --6.261141788211023,0.05845154522552513,-14.094172755689174,0.6460954183398229,-14.094172755751751,0.6460954183070885,-14.09355740175409,0.6432475268962278,-24.051347738740272,0.0880126370277972,-24.996486811557524,0.09267449473551043,-14.09355740214392,0.6432475269355511,-24.996486811721297,0.09267449466557863,-24.05134773949407,0.08801263709548286,1.5857142857142859,0.6306306306306306 --6.448056843733424,0.062397172383602546,-14.370356119212035,0.6468609035069022,-14.370356119272513,0.6468609034732737,-14.368532674518228,0.6439523341955242,-24.6182996713517,0.0848629278269722,-25.49776624529824,0.09219225310860879,-14.368532674914205,0.6439523342334416,-25.49776624544499,0.09219225303989072,-24.618299672107344,0.08486292790965161,1.5877551020408165,0.6298200514138816 --6.643667056269331,0.06610728798954349,-14.645872549651536,0.6476234471106159,-14.645872549709827,0.6476234470760666,-14.642879109459544,0.6449207535204293,-25.18738966674463,0.08550224925974803,-25.99720619197762,0.09167758301037322,-14.642879109848467,0.6449207535553336,-25.99720619210781,0.0916775829427955,-25.187389667402115,0.08550224935665748,1.5897959183673471,0.6290115532734274 --6.84330455203669,0.06930320247977974,-14.920720285622588,0.6483765617944084,-14.920720285678577,0.6483765617589232,-14.916721694146101,0.6461220104868518,-25.73194660816738,0.08944119899507211,-26.494584366398914,0.09114952067832703,-14.916721694540326,0.6461220105194685,-26.49458436651212,0.09114952061181611,-25.731946608682723,0.08944119910205149,1.5918367346938775,0.6282051282051282 --7.042682494846535,0.07174904862887121,-15.194893521379639,0.6491178109911192,-15.194893521433187,0.6491178109547023,-15.190162513011277,0.6475054357063607,-26.238037697154613,0.09520793867507635,-26.98969090771403,0.090636202949137,-15.19016251339712,0.6475054357355132,-26.989690907809162,0.09063620288363346,-26.23803769754679,0.09520793878683623,1.5938775510204082,0.6274007682458387 --7.237833028274521,0.07326438491563501,-15.468386723124773,0.6498496095243567,-15.468386723175724,0.6498496094870306,-15.46327429100117,0.6490050269491043,-26.70662260954398,0.10110911731918502,-27.482375815527117,0.09017125640117123,-15.46327429154732,0.6490050269876292,-27.482375815602744,0.09017125633663697,-26.706622609857714,0.10110911743098774,1.5959183673469388,0.6265984654731458 --7.4249187747796705,0.07374212008497137,-15.74119899622553,0.6505784628116821,-15.741198996273722,0.6505784627734915,-15.736095381195339,0.6505450542063463,-27.14635285397117,0.10574757559185764,-27.972585214468513,0.08978931376078267,-15.736095381574877,0.6505450542302565,-27.97258521452323,0.08978931369719792,-27.146352854249237,0.1057475756999791,1.5979591836734695,0.6257982120051085 --7.600017336076666,0.07317032791157259,-16.013337298852274,0.6513128173483114,-16.013337298897543,0.6513128173093253,-16.008627212575302,0.6520468685383901,-27.567797036337513,0.10818295162317236,-28.460381388034406,0.08952162168818877,-16.008627212951005,0.6520468685604285,-28.46038138806719,0.08952162162554439,-27.56779703661305,0.10818295172485297,1.6,0.625 diff --git a/sparameters/ebeam_y_1550_20634f71.npz b/sparameters/ebeam_y_1550_20634f71.npz deleted file mode 100644 index 0fc53451..00000000 Binary files a/sparameters/ebeam_y_1550_20634f71.npz and /dev/null differ diff --git a/sparameters/ebeam_y_1550_20634f71.yml b/sparameters/ebeam_y_1550_20634f71.yml deleted file mode 100644 index cca63542..00000000 --- a/sparameters/ebeam_y_1550_20634f71.yml +++ /dev/null @@ -1,46 +0,0 @@ -resolution: 30 -port_symmetries: {} -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3 -ymargin_bot: 3 -xmargin_left: 0 -xmargin_right: 0 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -component: - name: ebeam_y_1550 - settings: - name: ebeam_y_1550 - module: ubcpdk.components - function_name: ebeam_y_1550 - info: - library: Design kits/ebeam - model: ebeam_y_1550 - info_version: 2 - full: {} - changed: {} - default: {} - child: null -compute_time_seconds: 140.58550214767456 -compute_time_minutes: 2.3430917024612428 diff --git a/sparameters/ebeam_y_1550_21fe4056.csv b/sparameters/ebeam_y_1550_21fe4056.csv deleted file mode 100644 index 7a4e5de2..00000000 --- a/sparameters/ebeam_y_1550_21fe4056.csv +++ /dev/null @@ -1,51 +0,0 @@ -s22a,s22m,s32a,s32m,s12a,s12m,s23a,s23m,s33a,s33m,s13a,s13m,s21a,s21m,s31a,s31m,s11a,s11m,wavelengths,freqs --1.6408394606558572,0.1400317382537489,-2.55691394897631,0.10609435402831927,-1.8463400445520184,0.6101567961621015,-2.5569139499023255,0.10609435399082366,-1.640839460268994,0.14003173830923554,-1.8463400451256387,0.6101567963095902,-1.8486194929418247,0.6110049794099196,-1.8486194930000714,0.6110049794346384,-1.34103449272173,0.06500176354194791,1.5,0.6666666666666666 --2.162415353986585,0.14035969512670687,-3.1462943911993686,0.10351806325511899,-2.1534733346469026,0.6091680687265489,-3.1462943921174897,0.10351806321936233,-2.162415353646096,0.1403596951859177,-2.153473335222377,0.6091680688681168,-2.155966846656693,0.6104428336965522,-2.1559668467138926,0.6104428337208845,-1.5011132672884309,0.06768009946977535,1.5020408163265306,0.6657608695652174 --2.656110173320924,0.13786433496815506,-3.7206577564928494,0.10030983242179303,-2.4588895263987665,0.6085621285913182,-3.7206577574114386,0.10030983238746276,-2.656110173015023,0.1378643350303156,-2.4588895269736817,0.6085621287259154,-2.4619871526345958,0.6101028167368463,-2.4619871526913104,0.6101028167610746,-1.6608377258261044,0.0694081438855339,1.5040816326530613,0.6648575305291723 --3.134884246243584,0.1329822940251925,-4.277889491027755,0.09720599195239381,-2.763003839477777,0.6084787514536585,-4.277889491952509,0.09720599191856627,-3.134884245959515,0.1329822940893548,-2.763003840049399,0.6084787515810927,-2.7668803744723482,0.6100550471890851,-2.7668803745294217,0.6100550472133244,-1.8149357542891995,0.0700984714441544,1.506122448979592,0.6639566395663956 --3.6158691506827862,0.1264222920586207,-4.819476014061191,0.09492239878655372,-3.0662222010386144,0.6089275867012808,-4.819476014992702,0.09492239875178476,-3.615869150405224,0.12642229212398684,-3.06622220160441,0.6089275868220607,-3.070858893856683,0.6103079849742651,-3.0708588939146746,0.6103079849984461,-1.9584112455721534,0.06984484224074372,1.5081632653061225,0.6630581867388362 --4.1188113320960165,0.11891280049965904,-5.350995005346469,0.09397439444530847,-3.368878734060326,0.6098337513319131,-5.350995006277919,0.09397439440804481,-4.118811331807684,0.11891280056544883,-3.368878734618283,0.6098337514471125,-3.3741001715026813,0.6108166387622475,-3.3741001715620875,0.6108166387861805,-2.0871137458032094,0.06892317391553374,1.510204081632653,0.6621621621621622 --4.662726892401116,0.11136336218238668,-5.880769599878776,0.09451214537466293,-3.67122802328256,0.6110619667917865,-5.880769600797713,0.09451214533372036,-4.6627268920832945,0.11136336224750726,-3.67122802383159,0.6110619669029347,-3.6767147246317933,0.6115024048815413,-3.676714724692921,0.6115024049049634,-2.19868275568467,0.06775618232210494,1.5122448979591836,0.6612685560053981 --5.259494976335194,0.10522047033874628,-6.416738327056901,0.09626677450901541,-3.973418583338102,0.6124186559166948,-6.41673832795036,0.0962667744639227,-5.259494975973313,0.10522047040162029,-3.9734185838784972,0.612418656025468,-3.9787360493405677,0.6122774846376491,-3.9787360494035404,0.6122774846602679,-2.293792191613604,0.0668334439371649,1.5142857142857142,0.6603773584905661 --5.903516103395779,0.10235124122070258,-6.963501177990626,0.0986563631664805,-4.275425506812968,0.6136728092388205,-6.963501178849928,0.09865636311750935,-5.903516102993292,0.10235124127980207,-4.275425507346489,0.6136728093464909,-4.280130324805816,0.6130664567887475,-4.280130324870578,0.6130664568102815,-2.377090099734442,0.0665858989582384,1.5163265306122449,0.6594885598923285 --6.565888361384843,0.10393664851039978,-7.521366252436255,0.10099600705772989,-4.577004244041766,0.614625513134408,-7.521366253258424,0.10099600700567882,-6.56588836097197,0.10393664856548407,-4.577004244571023,0.6146255132413164,-4.58081784617425,0.6138209024201592,-4.580817846240597,0.6138209024403813,-2.4566672116957537,0.06724023500539232,1.5183673469387755,0.6586021505376344 --7.209355217441143,0.10923225402258638,-8.08729205320984,0.1027080644862055,-4.877748296136396,0.6152025179442628,-8.087292053996206,0.10270806443211652,-7.209355217056298,0.10923225407527636,-4.877748296663722,0.6152025180496706,-4.880698862960817,0.6145268885314438,-4.880698863028452,0.6145268885502158,-2.541476434218919,0.06872094340803324,1.5204081632653061,0.6577181208053691 --7.81220429773281,0.11585532168601767,-8.656525760067982,0.10346021619068209,-5.177256810253717,0.6155022890457887,-8.656525760822197,0.10346021613559826,-7.812204297397166,0.11585532173872873,-5.177256810780139,0.6155022891482773,-5.179680654047542,0.6152062408657417,-5.179680654116128,0.6152062408830241,-2.638097067908848,0.07066575978894096,1.5224489795918368,0.6568364611260054 --8.372862212903472,0.12127380065662649,-9.224064227318278,0.10321009068568704,-5.4753161650817574,0.6157549621374868,-9.224064228044769,0.10321009063048063,-8.372862212618218,0.12127380071120535,-5.47531616560664,0.6157549622356377,-5.477704134061623,0.6159111865265966,-5.477704134130923,0.6159111865424375,-2.749044879501751,0.07254356152837356,1.5244897959183674,0.6559571619812583 --8.900559979191435,0.12389988465631835,-9.78570754111987,0.10217008833673664,-5.771980510505298,0.6162173021716226,-9.785707541822386,0.10217008828198357,-8.90055997894724,0.12389988471364764,-5.771980511026757,0.6162173022645967,-5.774765454704435,0.6167114450423584,-5.7747654547745775,0.6167114450568802,-2.8731189614287436,0.07379872175898351,1.526530612244898,0.6550802139037433 --9.408306644738323,0.12331020634312256,-10.338795180015904,0.10071956616710635,-6.067519369656548,0.6170734044027415,-10.338795180698146,0.10071956611298044,-9.408306644519403,0.12331020640325066,-6.067519370172228,0.6170734044905679,-6.070925384926693,0.6176751977624768,-6.070925384997688,0.6176751977757129,-3.0065907899506144,0.07396258201902207,1.5285714285714287,0.6542056074766355 --9.910591927233591,0.11997331351152168,-10.882685936350875,0.0992892011233551,-6.362296556462413,0.6183903648746043,-10.882685937014722,0.09928920106966697,-9.910591927021043,0.11997331357398855,-6.362296556970286,0.6183903649580871,-6.36630148643934,0.6188488101695802,-6.366301486511397,0.6188488101814885,-3.1441081889020452,0.07272356028761665,1.530612244897959,0.6533333333333333 --10.422501235661331,0.1148971675937499,-11.41883163901239,0.09823999496147534,-6.656664169210235,0.6201246723888069,-11.418831639657776,0.09823999490778952,-10.422501235432566,0.11489716765762449,-6.6566641697091224,0.6201246724692657,-6.661044653610989,0.6202413359736059,-6.661044653684286,0.6202413359840139,-3.2789623206425547,0.06997273267275664,1.5326530612244897,0.6524633821571239 --10.957622649627764,0.10941702975799503,-11.950205352291668,0.09776740123562329,-6.950901299858352,0.6221455392336267,-11.950205352916807,0.09776740118144771,-10.957622649357916,0.10941702982171729,-6.95090130034817,0.6221455393125765,-6.9553071633179755,0.6218175265494276,-6.955307163392553,0.621817526558046,-3.4028335632845463,0.06584235336684846,1.5346938775510204,0.6515957446808511 --11.523413954378798,0.1050826472005776,-12.480140418682605,0.0978656146072911,-7.245172876590928,0.6242553209924111,-12.480140419284087,0.09786561455222463,-11.523413954048749,0.10508264726186002,-7.245172877065117,0.6242553210699876,-7.249209727898772,0.6234996372101956,-7.249209727974622,0.6234996372167233,-3.5054375051046143,0.06074928923181856,1.536734693877551,0.650730411686587 --12.115091121662191,0.1033661856281242,-13.011115918188285,0.09836679287644297,-7.5394847984233335,0.6262165543543058,-13.01111591876378,0.09836679282030304,-12.11509112127252,0.10336618568426373,-7.539484798776458,0.6262165544139037,-7.5428116942677725,0.6251770858434748,-7.5428116943444135,0.6251770858475425,-3.5752639504533943,0.055438248829414886,1.5387755102040817,0.649867374005305 --12.714260436949923,0.10502697043656473,-13.544118866158383,0.09903181964283622,-7.833651666701611,0.6278023786717131,-13.544118866706045,0.0990318195856309,-12.714260436530319,0.10502697048564189,-7.8336516670064125,0.6278023787245711,-7.836087337789721,0.6267243823956353,-7.836087337866484,0.6267243823969877,-3.6041062631541063,0.05096474645324329,1.5408163265306123,0.6490066225165563 --13.29846577614734,0.10957151444370038,-14.078780505087911,0.09964535334785388,-8.127317084993416,0.628865058991779,-14.07878050560679,0.0996453532897397,-13.298465775741755,0.10957151448554484,-8.127317085340184,0.6288650590520187,-8.128915208898567,0.6280280643782636,-8.128915208974602,0.6280280643768258,-3.5974335351264686,0.04846526021624534,1.542857142857143,0.6481481481481481 --13.854048746426537,0.11544817458361153,-14.614002122128756,0.1000754215042798,-8.420043983126206,0.6293919476158127,-14.614002122618652,0.10007542144550267,-13.854048746069271,0.11544817461962537,-8.420043983430801,0.629391947668292,-8.42109163328939,0.6290189580434725,-8.421091633363826,0.6290189580394083,-3.5817977539961943,0.04861777823846514,1.5448979591836736,0.6472919418758256 --14.379655639709998,0.12080578262133883,-15.148643018190318,0.10028413675184575,-8.711446249448798,0.6295168644941024,-15.148643018651999,0.10028413669271868,-14.379655639416907,0.12080578265355317,-8.711446249753543,0.6295168645450088,-8.712374740209677,0.6296987175674025,-8.712374740281756,0.6296987175610551,-3.591273144109136,0.051179921755100125,1.5469387755102042,0.646437994722955 --14.88184183833187,0.12414641076305587,-15.681978758099877,0.10030059268870177,-9.001305572412335,0.6294786818558848,-15.6819787587318,0.10030059260241635,-14.881841838004002,0.12414641080749017,-9.001305572717488,0.6294786819043325,-9.002549847248053,0.6301467104275086,-9.002549847353059,0.6301467104170966,-3.6443011668971246,0.055190227759578936,1.5489795918367348,0.6455862977602107 --15.370443915661289,0.1246073540494364,-16.213836917793024,0.1001785474815557,-9.289627017175933,0.629546626976345,-16.213836918387777,0.10017854739546769,-15.370443915427641,0.12460735409388586,-9.289627017601841,0.6295466270412577,-9.291491173079212,0.6305006913888694,-9.291491173180646,0.6305006913767542,-3.7403355188229983,0.059564101913624025,1.5510204081632653,0.6447368421052632 --15.856365624399306,0.12199898605751032,-16.744463372100792,0.09995981185432375,-9.576619641315277,0.6299442499381785,-16.74446337266157,0.09995981176876394,-15.856365624252293,0.1219989861040181,-9.57661964173746,0.6299442499999618,-9.57919353665979,0.6309189590384873,-9.579193536758304,0.6309189590252472,-3.8705220357885426,0.0634541890630632,1.5530612244897959,0.6438896189224704 --16.350871199104937,0.11676491595689457,-17.27424272672731,0.0996550905622733,-9.862620961969355,0.6307981851162451,-17.274242727257786,0.09965509047751234,-16.350871199033843,0.11676491600705996,-9.862620962386794,0.6307981851757749,-9.865765050387097,0.6315415369035579,-9.865765050483624,0.631541536889437,-4.025406077117427,0.06630114761156834,1.5551020408163265,0.6430446194225722 --16.864907093278756,0.1099375623916551,-17.803403288555923,0.09924415429304495,-10.14800111679176,0.6321220008276673,-17.803403289059656,0.09924415420926026,-16.8649070932661,0.10993756244660786,-10.148001117204394,0.6321220008859992,-10.151394437440509,0.6324646083194381,-10.151394437535997,0.6324646083043675,-4.19710310944358,0.0677738978475306,1.5571428571428572,0.6422018348623854 --17.40685411200785,0.10305683167883321,-18.331802967326496,0.09869080866348988,-10.433080036073505,0.6338297379919611,-18.331802967807242,0.09869080858087839,-17.406854112024302,0.10305683173891646,-10.433080036654063,0.6338297380738585,-10.436314543981316,0.6337293297096401,-10.436314544076309,0.6337293296930682,-4.378953616199864,0.06772027636642648,1.5591836734693878,0.6413612565445026 --17.977408590919488,0.09791374688108566,-18.858847159491003,0.09796574403932201,-10.71807445339422,0.6357655886821889,-18.85884715995105,0.09796574395791066,-17.977408590925,0.09791374694556405,-10.71807445397064,0.6357655887637562,-10.720770944088502,0.6353165246408045,-10.720770944183117,0.6353165246221637,-4.564636505935466,0.06615704539321701,1.5612244897959184,0.6405228758169934 --18.563922044242364,0.0959676091796686,-19.38355569144041,0.09707020375328948,-11.003073764144826,0.6377377059061462,-19.383555691880943,0.09707020367304862,-18.563922044203537,0.0959676092463937,-11.003073764569322,0.6377377059668846,-11.004987335531807,0.6371421945763958,-11.004987335625511,0.6371421945550695,-4.747526951432958,0.06328569370790706,1.563265306122449,0.639686684073107 --19.142849627021153,0.09761946289719317,-19.904775803630397,0.09605359828644136,-11.288035992770183,0.6395510851140441,-19.904775804051035,0.09605359820725681,-19.142849626935167,0.09761946296323817,-11.288035993174972,0.6395510851714431,-11.289118989464818,0.6390602968767255,-11.289118989556524,0.6390602968523263,-4.920676200329517,0.059502253683157515,1.5653061224489797,0.6388526727509778 --19.69324059321484,0.10199410028957553,-20.421516627140097,0.09501836923952359,-11.572798903866955,0.6410395766202996,-20.421516627538832,0.09501836916118186,-19.693240593109902,0.10199410035247945,-11.572798904329062,0.6410395766839809,-11.573203816190347,0.6408842441087438,-11.573203816278653,0.6408842440813497,-5.077708652795109,0.055366114982119234,1.5673469387755103,0.6380208333333333 --20.207395162879983,0.10749436191320223,-20.933340535490597,0.09410678157512206,-11.85710824207878,0.6420962465760941,-20.933340535864385,0.09410678149747038,-20.20739516279204,0.10749436197156235,-11.857108242483553,0.6420962466298696,-11.857137142080253,0.6424290912009375,-11.85713714216388,0.6424290911709317,-5.214725505522324,0.051508017160953525,1.569387755102041,0.6371911573472041 --20.689579399259898,0.11252642958863344,-21.440688102851496,0.09346842187085086,-12.140666245117442,0.6426964148238387,-21.440688103196514,0.09346842179364791,-20.68957939921958,0.11252642964216651,-12.140666245521288,0.6426964148749551,-12.140691068929515,0.6435602039507735,-12.140691069007621,0.6435602039191152,-5.33255663834392,0.04849221162205328,1.5714285714285714,0.6363636363636364 --21.1498483173537,0.11587346295388927,-21.944970393130955,0.0932144207804856,-12.423196366218761,0.6429039569188137,-21.94497039344379,0.09321442070359258,-21.149848317383412,0.11587346300307357,-12.423196366620733,0.6429039569671282,-12.423574649279683,0.6442265864385,-12.423574649352165,0.6442265864062718,-5.4376210037773305,0.04669048620828045,1.573469387755102,0.6355382619974059 --21.59980189105781,0.11675884772818326,-22.448301301363617,0.09337272287113069,-12.704508262662502,0.6428533202715784,-22.448301301642136,0.09337272279456393,-21.599801891176337,0.11675884777407211,-12.704508263061708,0.6428533203173182,-12.705507731910682,0.6444650235377574,-12.705507731978232,0.6444650235058987,-5.539948373145145,0.046238891635813656,1.5755102040816327,0.6347150259067358 --22.050914056228656,0.11482751487378545,-22.952900436700922,0.09386291079856554,-12.984538170835679,0.642708730136212,-22.952900436945363,0.0938629107224253,-22.0509140564547,0.11482751491820921,-12.98453817123162,0.6427087301798509,-12.986276763214278,0.6443780398125524,-12.986276763278031,0.6443780397818769,-5.649513187996793,0.047091757643345174,1.5775510204081633,0.6338939197930142 --22.51417132299232,0.110180894920654,-23.460390405852337,0.09450402282756233,-13.263343433206538,0.6426152178333153,-23.460390406065084,0.09450402275219036,-22.514171323345348,0.11018089496601076,-13.263343433599205,0.6426152178755274,-13.265756052932414,0.6441017350277667,-13.265756052993948,0.6441017349984719,-5.773620594035967,0.049106234818315435,1.579591836734694,0.6330749354005167 --22.999933797126527,0.10347245883420945,-23.971276616298343,0.09505571145431795,-13.54105108102486,0.6426647184226362,-23.971276616483973,0.09505571138011508,-22.99993379762177,0.10347245888387178,-13.541051081414894,0.642664718463989,-13.54390072579551,0.6437806906560568,-13.543900725856313,0.6437806906279867,-5.916265753937102,0.0520864960544166,1.5816326530612246,0.632258064516129 --23.516728434085728,0.0959731715211823,-24.484778425172703,0.09528015553689544,-13.817789676685914,0.6428949249749321,-24.48477842533686,0.09528015546428191,-23.516728434720957,0.0959731715793565,-13.817789677074417,0.6428949250156791,-13.820732538182286,0.6435570574148621,-13.820732538243604,0.6435570573874163,-6.078477842640349,0.055781354923853686,1.5836734693877552,0.6314432989690721 --24.067098057381596,0.08944313896549216,-24.999004691592752,0.09500615447890029,-14.093648292389863,0.6433180471230325,-24.999004691741142,0.09500615440819613,-24.067098058114826,0.08944313903641643,-14.093648292778028,0.6433180471629515,-14.096337525963989,0.6435674293104743,-14.096337526026545,0.6435674292827589,-6.258828353643725,0.05986922646206943,1.5857142857142859,0.6306306306306306 --24.64056104300701,0.0856263663791934,-25.511373075367512,0.0941776513558304,-14.368688676186569,0.6439543799929758,-25.51137307550478,0.09417765128718045,-24.640561043747994,0.08562636646514322,-14.368688676581675,0.6439543800319985,-14.370876897939334,0.643934073905488,-14.370876898003164,0.6439340738764509,-6.45392470756851,0.06395918103054814,1.5877551020408165,0.6298200514138816 --25.21171867480799,0.08543833750844575,-26.01916950248402,0.09287355687752834,-14.642994417834494,0.644840894553906,-26.01916950261287,0.09287355681086579,-25.211718675459366,0.08543833760788569,-14.642994418223639,0.6448408945900029,-14.64459282677444,0.6447421804793578,-14.64459282683881,0.6447421804480052,-6.658875176392219,0.06762239445910409,1.5897959183673471,0.6290115532734274 --25.753064479128692,0.08849102256100683,-26.520161998720738,0.09129297519739094,-14.916708080452391,0.646005415667495,-26.52016199884144,0.09129297513244637,-25.753064479647605,0.0884910226692111,-14.916708080847812,0.6460054157010304,-14.917785345392332,0.6460088450022275,-14.91778534545584,0.6460088449678612,-6.867736414874056,0.07045680829364367,1.5918367346938775,0.6282051282051282 --26.251256923655006,0.09349124552539496,-27.013170214433398,0.08970901272289479,-15.190015107026213,0.6474272542349876,-27.013170214543635,0.08970901265924978,-26.251256924059028,0.09349124563691566,-15.190015107413766,0.647427254264496,-15.190752530422229,0.6476617313894357,-15.190752530483111,0.6476617313518431,-7.0740006155372885,0.07217157160961067,1.5938775510204082,0.6274007682458387 --26.709173743152526,0.098992300238108,-27.498446585856,0.08840306790809585,-15.463078161540398,0.6490187128941036,-27.498446585951253,0.08840306784527464,-26.709173743482648,0.09899230034845746,-15.463078162089051,0.6490187129322549,-15.463713277088155,0.6495450532019238,-15.463713277144716,0.6495450531614425,-7.27117127535888,0.07266075117363718,1.5959183673469388,0.6265984654731458 --27.138179316373787,0.1037879846772128,-27.977698021342853,0.08759753299769583,-15.735968241381272,0.6506460105303079,-27.97769802141734,0.0875975329352764,-27.138179316667927,0.10378798478320708,-15.735968241762063,0.6506460105534191,-15.736748850760844,0.6514562504148924,-15.736748850811852,0.6514562503723116,-7.453413274296944,0.0720326896910418,1.5979591836734695,0.6257982120051085 --27.551520218371643,0.1069461759801289,-28.453656179607663,0.08740632762467951,-16.008641979777153,0.6521770745617717,-28.453656179655816,0.0874063275623955,-27.55152021865852,0.10694617607966359,-16.00864198015331,0.6521770745827008,-16.009791510723957,0.6531984764706901,-16.009791510768878,0.6531984764270352,-7.616189820675494,0.07057980621849351,1.6,0.625 diff --git a/sparameters/ebeam_y_1550_21fe4056.yml b/sparameters/ebeam_y_1550_21fe4056.yml deleted file mode 100644 index 1def6445..00000000 --- a/sparameters/ebeam_y_1550_21fe4056.yml +++ /dev/null @@ -1,35 +0,0 @@ -resolution: 30 -port_symmetries: {} -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3 -ymargin_bot: 3 -xmargin_left: 0 -xmargin_right: 0 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -component: - version: 0.0.1 - settings: {} -compute_time_seconds: 209.30988097190857 -compute_time_minutes: 3.488498016198476 diff --git a/sparameters/ebeam_y_1550_39d5288b.npz b/sparameters/ebeam_y_1550_39d5288b.npz deleted file mode 100644 index 78f23b1b..00000000 Binary files a/sparameters/ebeam_y_1550_39d5288b.npz and /dev/null differ diff --git a/sparameters/ebeam_y_1550_39d5288b.yml b/sparameters/ebeam_y_1550_39d5288b.yml deleted file mode 100644 index 620d023a..00000000 --- a/sparameters/ebeam_y_1550_39d5288b.yml +++ /dev/null @@ -1,79 +0,0 @@ -resolution: 30 -port_symmetries: {} -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3 -ymargin_bot: 3 -xmargin_left: 0 -xmargin_right: 0 -is_3d: false -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - thickness_tolerance: null - zmin: 0.0 - material: si - sidewall_angle: 0.0 - width_to_z: 0.0 - z_to_bias: null - info: {} - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - thickness_tolerance: null - zmin: 0.0 - material: si - sidewall_angle: 0.0 - width_to_z: 0.0 - z_to_bias: null - info: {} - monitor: - layer: - - 101 - - 0 - thickness: 6.0 - thickness_tolerance: null - zmin: -3.0 - material: null - sidewall_angle: 0.0 - width_to_z: 0.0 - z_to_bias: null - info: {} - source: - layer: - - 110 - - 0 - thickness: 6.0 - thickness_tolerance: null - zmin: -3.0 - material: null - sidewall_angle: 0.0 - width_to_z: 0.0 - z_to_bias: null - info: {} -component: - name: ebeam_y_1550 - settings: - name: ebeam_y_1550 - module: ubcpdk.components - function_name: ebeam_y_1550 - info: - library: Design kits/ebeam - model: ebeam_y_1550 - info_version: 2 - full: {} - changed: {} - default: {} - child: null -compute_time_seconds: 179.95200490951538 -compute_time_minutes: 2.9992000818252564 diff --git a/sparameters/ebeam_y_1550_63211777.csv b/sparameters/ebeam_y_1550_63211777.csv deleted file mode 100644 index 3e864544..00000000 --- a/sparameters/ebeam_y_1550_63211777.csv +++ /dev/null @@ -1,51 +0,0 @@ -s11a,s11m,s21a,s21m,s31a,s31m,s12a,s12m,s22a,s22m,s32a,s32m,s13a,s13m,s23a,s23m,s33a,s33m,wavelengths,freqs -2.1722212139747543,0.05196102811727213,2.6644480211325305,0.6779479068704498,2.664448021129704,0.677947906873747,2.665749795941118,0.6765249922982739,2.48318304285357,0.1343176512848907,1.6428889985046895,0.09266283619490191,2.6657497959432708,0.6765249923024949,1.6428889985090667,0.09266283619467952,2.483183042851564,0.1343176512861366,1.5,0.6666666666666666 -1.9355562205300034,0.05124471381227103,2.4082732270260645,0.6779290407319658,2.4082732270231086,0.6779290407352507,2.4100757090773004,0.6770139993273468,2.1360277558633665,0.13110542861769708,1.1793160853431015,0.0924516847319564,2.4100757090794183,0.6770139993316288,1.1793160853475453,0.0924516847317146,2.136027755860165,0.13110542861906063,1.5020408163265306,0.6657608695652174 -1.6867336013266028,0.04856295342498786,2.1529095533780094,0.6779052237076661,2.1529095533751517,0.6779052237109786,2.1548279026275354,0.6775908557750909,1.7755705731109155,0.12316468988220172,0.7172696950441902,0.09228105183846626,2.15482790262963,0.6775908557793067,0.7172696950488153,0.0922810518382422,1.775570573106972,0.1231646898835438,1.5040816326530613,0.6648575305291723 -1.4247951273913912,0.044178273766706404,1.8983636084459723,0.6778825640567733,1.8983636084430786,0.6778825640600911,1.8999954841935207,0.6781335317826529,1.390588251105189,0.11148507641608581,0.2567605945577214,0.09212896293035219,1.8999954841955573,0.6781335317868686,0.25676059456245515,0.09212896293012743,1.3905882511003294,0.11148507641746198,1.506122448979592,0.6639566395663956 -1.1464482002644525,0.03845006840063712,1.6446456020103208,0.677873035745925,1.6446456020073812,0.6778730357492428,1.6456578234010655,0.6785347339494207,0.9648043846514021,0.09762010814853665,-0.20211429892799287,0.09197569111794507,1.6456578234030277,0.6785347339536315,-0.20211429892315774,0.09197569111771943,0.9648043846459484,0.09762010814995092,1.5081632653061225,0.6630581867388362 -0.8445339847296174,0.031816539913481906,1.3917631145941407,0.677896335274142,1.3917631145911464,0.6778963352774531,1.391962298973236,0.6787291243249068,0.4756286051243115,0.08389505180105394,-0.6591958968802609,0.09180822470302064,1.3919622989751108,0.6787291243291018,-0.6591958968753306,0.09180822470279403,0.4756286051192398,0.08389505180251906,1.510204081632653,0.6621621621621622 -0.5039189719987118,0.024786444365030576,1.1397139489830326,0.6779791340974421,1.1397139489799788,0.6779791341007383,1.139086326468624,0.6787101731467003,-0.09670267217675482,0.07358332402835971,-1.1143020545565,0.0916231182769552,1.139086326470404,0.6787101731508679,-1.1143020545514724,0.09162311827672731,-0.09670267217928569,0.07358332402987405,1.5122448979591836,0.6612685560053981 -0.09049013403952795,0.017968618271599564,0.8884801737627978,0.6781517493295331,0.8884801737596849,0.6781517493328052,0.8871929147285994,0.6785327218393559,-0.7335977550717219,0.07019978215471157,-1.5672726500388225,0.09142717228026617,0.887192914730286,0.6785327218434835,-1.567272650033693,0.09142717228003697,-0.7335977550695324,0.07019978215621618,1.5142857142857142,0.6603773584905661 --0.47531140759503315,0.012230699478181697,0.6380251554787931,0.6784429547128403,0.6380251554755269,0.6784429547160593,0.6363903676247752,0.6783010951792221,-1.357553039466581,0.07498026540239862,-2.018010077753319,0.09123592596708896,0.6363903676263573,0.6783010951833608,-2.0180100777478476,0.09123592596687076,-1.357553039459577,0.07498026540383275,1.5163265306122449,0.6594885598923285 --1.304718725267491,0.009076565320391099,0.38829460517482023,0.6788741338454228,0.38829460517160386,0.6788741338486246,0.3867051584930546,0.6781463193010148,-1.9051829746429836,0.08558641459871873,-2.4665061765079934,0.09107047985038237,0.3867051584945747,0.6781463193050319,-2.466506176502636,0.09107047985015095,-1.905182974635646,0.08558641460002932,1.5183673469387755,0.6586021505376344 --2.197999661601367,0.009617510406070482,0.1392216691625631,0.679454130948333,0.13922166915930884,0.679454130951491,0.13807313798623624,0.6781983294420595,-2.374564822117235,0.09850472481820446,-2.9128504674786133,0.09095349400750105,0.1380731379876925,0.6781983294460145,-2.912850467473127,0.09095349400726944,-2.3745648221103255,0.09850472481944089,1.5204081632653061,0.6577181208053691 --2.850139261460194,0.012013516194139647,-0.10926485807741566,0.6801759782119309,-0.10926485808069498,0.6801759782150419,-0.10965040078299214,0.678559406896792,-2.7891520613575658,0.11106905020463548,-3.357219221364871,0.09090525519507683,-0.10965040078158592,0.6785594069006867,-3.3572192213592493,0.09090525519484595,-2.78915206135164,0.11106905020582829,1.5224489795918368,0.6568364611260054 --3.341648126723157,0.014320884559671372,-0.35723080785317785,0.6810162535256724,-0.35723080785646955,0.6810162535287371,-0.3566651998348163,0.6792838444855174,-3.1703765429273028,0.12165165698360002,-3.7998488219785997,0.09094052336886796,-0.3566651998334472,0.6792838444893547,-3.7998488219728417,0.09094052336863868,-3.1703765429224458,0.12165165698476674,1.5244897959183674,0.6559571619812583 --3.7737054841766766,0.01588105626942201,-0.6047273039478356,0.6819372676578969,-0.6047273039510433,0.6819372676609362,-0.6031908727253444,0.6803668907768293,-3.5331980776323686,0.1293543975712519,-4.240999341747086,0.09106658649300614,-0.6031908727240193,0.6803668907805549,-4.240999341741491,0.09106658649280254,-3.533198077628629,0.12935439757241327,1.526530612244898,0.6550802139037433 --4.196389686215165,0.01664373082660052,-0.851783611403171,0.6828917154473995,-0.8517836114064526,0.6828917154503785,-0.8494288131017257,0.6817441358132397,-3.8879495658750125,0.1337780831695627,-4.680915169606904,0.09128268588819333,-0.8494288131004046,0.6817441358169809,-4.680915169600892,0.09128268588797035,-3.8879495658720784,0.13377808317067655,1.5285714285714287,0.6542056074766355 --4.636458056076547,0.016863432527211553,-1.0984034846196298,0.6838289527654791,-1.0984034846228916,0.6838289527684217,-1.095527682438687,0.6833009839265681,-4.242329486780434,0.13490213024750292,-5.1197893371734065,0.09158077114032989,-1.0955276824373834,0.683300983930272,-5.119789337167289,0.09158077114011139,-4.2423294867783525,0.13490213024858017,1.530612244897959,0.6533333333333333 --5.105779402926849,0.016995580174142894,-1.3445656177522256,0.6847017596512229,-1.3445656177554617,0.684701759654136,-1.3415580746689504,0.6848906185936596,-4.602678791579881,0.13302728649326737,-5.557737268338749,0.09194739176663724,-1.341558074667664,0.684890618597331,-5.557737268332548,0.09194739176642408,-4.602678791578601,0.13302728649429896,1.5326530612244897,0.6524633821571239 --5.596665975783721,0.017569168960458587,-1.5902279927267164,0.6854723751246904,-1.5902279927299237,0.68547237512758,-1.587500499124719,0.6863577027820238,-4.974634699328437,0.12874585772512281,-5.994784185455366,0.09236639996860724,-1.5875004991234518,0.6863577027856661,-5.994784185449103,0.09236639996839985,-4.974634699327917,0.1287458577261053,1.5346938775510204,0.6515957446808511 --6.0809894191922185,0.018956630902576033,-1.8353351825510882,0.6861167597611014,-1.835335182554267,0.6861167597639738,-1.8332487902297965,0.6875639721420406,-5.363190343150772,0.12291282578335286,-6.43086831706743,0.09282201327992443,-1.8332487902285508,0.6875639721456538,-6.43086831706113,0.0928220132797231,-5.363190343150964,0.12291282578428747,1.536734693877551,0.650730411686587 --6.52786316034294,0.02117794996579359,-2.0798271507797956,0.6866264266902066,-2.079827150782948,0.6866264266930691,-2.0786284724295587,0.6884111699954883,-5.7719968458056226,0.11658895289999593,-6.865859406882965,0.09330169567211838,-2.078628472428336,0.6884111699990714,-6.865859406876647,0.09330169567192363,-5.771996845806459,0.11658895290089083,1.5387755102040817,0.649867374005305 --6.922885873830138,0.023942596792655084,-2.323647895925674,0.6870076944221638,-2.3236478959288047,0.6870076944250209,-2.323426806611634,0.6888569047375154,-6.20175940747954,0.11091840520778397,-7.299589157769304,0.09379831434110492,-2.323426806610435,0.6888569047410678,-7.2995891577629894,0.09379831434091732,-6.201759407480898,0.11091840520865416,1.5408163265306123,0.6490066225165563 --7.26767371718818,0.026843808978069685,-2.5667524500104353,0.6872787332162086,-2.5667524500135515,0.6872787332190639,-2.56742887196413,0.6889202729736084,-6.64824970395308,0.10690969758190447,-7.7318878217807,0.09431115744899055,-2.5674288719629548,0.6889202729771282,-7.731887821774402,0.09431115744881072,-6.648249703954784,0.10690969758276578,1.542857142857143,0.6481481481481481 --7.569909551792024,0.02950514615273404,-2.809111195602407,0.6874651774939355,-2.809111195605516,0.6874651774967919,-2.8104528318849895,0.6886763082277628,-7.101778468173461,0.1051512152143457,-8.162619913659015,0.09484564446982091,-2.810452831883836,0.6886763082312487,-8.162619913652742,0.09484564446964967,-7.101778468175297,0.10515121521521233,1.5448979591836736,0.6472919418758256 --7.8369305501448565,0.03163957405575792,-3.0507110908581723,0.6875952751047494,-3.0507110908612836,0.6875952751076064,-3.0523779280725862,0.6882408211209216,-7.550027387564114,0.10560518392104976,-8.591712419615456,0.09541185508409608,-3.0523779280714542,0.6882408211243745,-8.59171241960922,0.09541185508393446,-7.55002738756592,0.10560518392192687,1.5469387755102042,0.646437994722955 --8.073715525813714,0.033064820552216094,-3.2915540345050402,0.6876955159602558,-3.29155403450816,0.6876955159631141,-3.2931606092246537,0.6877491586344606,-7.983012493493233,0.10764167458881338,-9.019170761598131,0.09602224811777708,-3.293160609223541,0.6877491586378824,-9.019170761591935,0.09602224811762643,-7.983012493494913,0.107641674589697,1.5489795918367348,0.6455862977602107 --8.282770895387129,0.03370564646767851,-3.5316531243290803,0.6877874626254474,-3.531653124332217,0.687787462628304,-3.5328368845662137,0.6873332643433476,-8.396286412800258,0.11029669246139394,-9.445080510338094,0.09668906746782926,-3.5328368845651212,0.6873332643467422,-9.445080510331941,0.09668906746769092,-8.39628641280179,0.11029669246227228,1.5510204081632653,0.6447368421052632 --8.464531246825539,0.03359312778830006,-3.7710278708207294,0.6878861674178975,-3.7710278708238865,0.6878861674207487,-3.7715116774488977,0.6871011241463517,-8.790703239749309,0.11257236254747248,-9.869595590683751,0.097421923975316,-3.7715116774473834,0.6871011241511095,-9.869595590677644,0.09742192397519149,-8.790703239750703,0.11257236254832881,1.5530612244897959,0.6438896189224704 --8.61793669168729,0.03286188323002486,-4.009699487131758,0.6880001886930351,-4.00969948713494,0.6880001886958772,-4.009338015083012,0.6871216246516398,-9.170452628049354,0.11363895493944333,-10.292915859961962,0.0982259394625225,-4.009338015081967,0.6871216246549918,-10.292915859955905,0.09822593946241323,-9.170452628050636,0.11363895494025865,1.5551020408163265,0.6430446194225722 --8.741357503978325,0.031741684761212884,-4.2476872023832755,0.6881328965423374,-4.247687202386483,0.688132896545166,-4.246490104177653,0.6874165336136159,-9.54134174877992,0.11292624442298506,-10.715258216756709,0.09910069882367563,-4.24649010417664,0.6874165336169517,-10.715258216750712,0.09910069882358265,-9.541341748781115,0.11292624442373811,1.5571428571428572,0.6422018348623854 --8.83424494890912,0.030535140481463913,-4.485006203189659,0.6882845264071986,-4.485006203192892,0.6882845264100086,-4.483134748118733,0.687960144410076,-9.909974358754377,0.1101522131452701,-11.13682588844462,0.10004012029423481,-4.483134748117758,0.687960144413397,-11.136825888438686,0.10004012029415896,-9.909974358755507,0.11015221314594006,1.5591836734693878,0.6413612565445026 --8.89959688586022,0.029568344461103978,-4.721667370859549,0.6884543590417822,-4.721667370862822,0.6884543590445668,-4.719405443927742,0.6886861396716699,-10.283665884911406,0.10533305310666789,-11.557780452550006,0.10103323589008655,-4.719405443926801,0.6886861396749905,-11.557780452544058,0.10103323589003246,-10.283665884912567,0.10533305310722607,1.5612244897959184,0.6405228758169934 --8.946086805038021,0.02910710775174703,-4.957678559009542,0.6886424489713713,-4.957678559012816,0.6886424489741341,-4.955382920799228,0.6895004464800907,-10.67075076066106,0.09879904938820344,-11.978220618362794,0.10206576507299642,-4.955382920798348,0.6895004464833759,-11.978220618357021,0.10206576507295582,-10.670750760662159,0.09879904938865793,1.563265306122449,0.639686684073107 --8.987304825943852,0.029261744937648666,-5.193046824631643,0.6888504981103956,-5.193046824634868,0.6888504981131449,-5.1910849582805785,0.6902981024230171,-11.080816121647118,0.09122540828188258,-12.398170861235936,0.1031222542957987,-5.19108495827979,0.6902981024262225,-12.398170861230554,0.10312225429576867,-11.080816121647665,0.0912254082822104,1.5653061224489797,0.6388526727509778 --9.03713616383,0.029939498795579614,-5.427780855833568,0.6890817155999336,-5.4277808557989395,0.689081715572367,-5.426466981597937,0.6909814936078674,-11.52385963054049,0.0836666643323923,-12.817581632388759,0.10418844836006755,-5.426466981640082,0.6909814936075441,-12.817581632113958,0.10418844834731199,-11.523859640021213,0.0836666648325345,1.5673469387755103,0.6380208333333333 --9.104720357541943,0.030883711698775664,-5.661892854519782,0.6893397660718209,-5.661892854523077,0.6893397660744968,-5.661433231015577,0.6914769213029999,-12.006340036617871,0.07752942421023179,-13.236341097776748,0.1052534835648877,-5.661433231014853,0.6914769213061943,-13.23634109777129,0.10525348356489844,-12.006340036620298,0.07752942421034333,1.569387755102041,0.6371911573472041 --9.192959375315613,0.03176720537585005,-5.8953993151092,0.6896271257917833,-5.89539931511249,0.6896271257944309,-5.895856453796162,0.691746556361719,-12.522804742971298,0.07431912042335893,-13.65429642372202,0.10631148674908714,-5.895856453795483,0.6917465563648719,-13.65429642371668,0.10631148674911417,-12.522804742974953,0.07431912042340871,1.5714285714285714,0.6363636363636364 --9.300243478506363,0.03227801222603398,-6.1283204367209,0.6899432948151141,-6.128320436685071,0.6899432947869983,-6.1296024667081435,0.6917936054987925,-13.049876044303065,0.0750310448594793,-14.071280891271892,0.10736225409390213,-6.129602466660647,0.691793605483588,-14.071280890990433,0.10736225406748032,-13.049876038380305,0.07503104566520777,1.573469387755102,0.6355382619974059 --9.422786514885104,0.03216904930257111,-6.360678241376791,0.6902833328856142,-6.360678241380055,0.6902833328882131,-6.362555026672543,0.6916598544179348,-13.556516219421761,0.07954955620177917,-14.487142106119098,0.10841086416081808,-6.362555026671898,0.6916598544211607,-14.487142106114014,0.10841086416087682,-13.556516219427776,0.07954955620185394,1.5755102040816327,0.6347150259067358 --9.556094571442882,0.031277551368910014,-6.592493768947513,0.6906371027810958,-6.592493768910449,0.6906371027523233,-6.594636511770963,0.6914163231116787,-14.023713556186859,0.08674223184519946,-14.901766512005032,0.10946630292650371,-6.594636511682293,0.6914163231268792,-14.90176651176825,0.10946630290138576,-14.023713545750041,0.08674223194709649,1.5775510204081633,0.6338939197930142 --9.69545139087685,0.029528215380284644,-6.823783921602362,0.6909894438242677,-6.823783921596568,0.6909894438198514,-6.825820933862212,0.6911491038534221,-14.449874107539927,0.0951183710525984,-15.31509634543251,0.11053937767636361,-6.825820933841508,0.6911491038636544,-15.31509634538596,0.1105393776716351,-14.449874105558536,0.09511837099351265,1.579591836734694,0.6330749354005167 --9.835665815540457,0.026929572168509084,-7.05455860074184,0.6913212978009773,-7.054558600745047,0.6913212978035272,-7.056137445399116,0.6909432000486171,-14.842824432395462,0.10334824076465111,-15.727136794174413,0.11164032138106682,-7.0561374453985195,0.6909432000517012,-15.727136794169727,0.11164032138117562,-14.842824432401855,0.10334824076489035,1.5816326530612246,0.632258064516129 --9.970089287357876,0.02356858963435265,-7.284818714733589,0.6916116127260791,-7.284818714880777,0.691611612838721,-7.285664305595924,0.6908672361171544,-15.212371152776177,0.11043446305668304,-16.13795291713388,0.11277651153119728,-7.285664305803657,0.6908672358881423,-16.13795291738365,0.11277651157420113,-15.212371165685035,0.11043446562782416,1.5836734693877552,0.6314432989690721 --10.088292329077117,0.019607583320325233,-7.5145554552993605,0.69183969419781,-7.5145554553025296,0.6918396942003441,-7.514514814613899,0.6909614217501995,-15.5673452154106,0.11570650297846893,-16.547657509442214,0.11395067354842607,-7.514514814613346,0.6909614217530575,-16.547657509437805,0.1139506735485716,-15.567345215416383,0.11570650297874707,1.5857142857142859,0.6306306306306306 --10.170172112449233,0.015292437026615605,-7.7437509803626305,0.6919875852813744,-7.743750980337337,0.6919875852622763,-7.74281778316287,0.6912304023719151,-15.91518275610033,0.11877831091376823,-16.95639225426739,0.11515983747931101,-7.742817783161386,0.6912304024245285,-16.956392254290805,0.11515983747709758,-15.915182757152607,0.11877831037799368,1.5877551020408165,0.6298200514138816 --10.169232655256913,0.011004267388326657,-7.972380373149736,0.6920420622778766,-7.972380373152877,0.692042062280402,-7.970695683023711,0.6916418103008621,-16.26232204541385,0.11951738366851333,-17.364305210270366,0.11639519968674468,-7.970695683023175,0.691641810303669,-17.36430521026624,0.11639519968692749,-16.262322045418898,0.11951738366874877,1.5897959183673471,0.6290115532734274 --9.971560215503612,0.00747749244129985,-8.200414496050692,0.6919959111921536,-8.200414496053824,0.6919959111946764,-8.19824374820084,0.692130609623296,-16.614708308335675,0.1180327002350425,-17.771527944870467,0.11764292915029517,-8.198243748200321,0.6921306096260813,-17.77152794486648,0.11764292915049639,-16.614708308340358,0.11803270023522591,1.5918367346938775,0.6282051282051282 --9.478461109999113,0.006221453390970357,-8.42782320980747,0.6918483069797865,-8.427823209810594,0.6918483069823066,-8.425513111803983,0.6926086301497256,-16.978153839956143,0.11467773319380915,-18.178155565405206,0.11888583901034899,-8.42551311180348,0.6926086301524881,-18.17815556540136,0.11888583901056737,-16.978153839960477,0.1146777331939223,1.5938775510204082,0.6274007682458387 --9.089349071511544,0.007797294131529822,-8.654578382281363,0.6916042978154889,-8.654578382284438,0.691604297818028,-8.652500543694753,0.6929780251674666,-17.35835596895498,0.11005973792021657,-18.584232484963167,0.12010572322456436,-8.652500543694314,0.6929780251701628,-18.584232484959458,0.12010572322478355,-17.358355968958307,0.11005973792023785,1.5959183673469388,0.6265984654731458 --8.992005905759653,0.010326139035562672,-8.880656188354806,0.6912735723920271,-8.88065618835136,0.6912735723895868,-8.879146503212636,0.6931467505468814,-17.76023470870054,0.10503703793672133,-18.989745989881026,0.12128603412401433,-8.87914650321886,0.6931467505472062,-18.989745989887876,0.12128603412472924,-17.760234709711693,0.10503703799608434,1.5979591836734695,0.6257982120051085 --9.038187490171934,0.01254430459859675,-9.106038375504072,0.6908688174416316,-9.106038375507142,0.690868817444164,-9.10534203203235,0.6930436783567987,-18.186154222898875,0.10066643187178526,-19.394628534436546,0.1224144776324909,-9.105342032031954,0.693043678359444,-19.394628534433107,0.12241447763273004,-18.186154222902484,0.10066643187154609,1.6,0.625 diff --git a/sparameters/ebeam_y_1550_63211777.yml b/sparameters/ebeam_y_1550_63211777.yml deleted file mode 100644 index e2593afb..00000000 --- a/sparameters/ebeam_y_1550_63211777.yml +++ /dev/null @@ -1,39 +0,0 @@ -resolution: 20 -port_symmetries: {} -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3 -ymargin_bot: 3 -xmargin_left: 0 -xmargin_right: 0 -is_3d: false -material_name_to_meep: - si: 2.8494636999424405 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -component: - name: ebeam_y_1550 - version: 0.0.1 - settings: {} -compute_time_seconds: 87.10249018669128 -compute_time_minutes: 1.4517081697781882 diff --git a/sparameters/ebeam_y_1550_76acf988.npz b/sparameters/ebeam_y_1550_76acf988.npz deleted file mode 100644 index f983ced1..00000000 Binary files a/sparameters/ebeam_y_1550_76acf988.npz and /dev/null differ diff --git a/sparameters/ebeam_y_1550_76acf988.yml b/sparameters/ebeam_y_1550_76acf988.yml deleted file mode 100644 index beccc484..00000000 --- a/sparameters/ebeam_y_1550_76acf988.yml +++ /dev/null @@ -1,51 +0,0 @@ -resolution: 20 -port_symmetries: {} -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3 -ymargin_bot: 3 -xmargin_left: 0 -xmargin_right: 0 -is_3d: false -material_name_to_meep: - si: 2.8494636999424405 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - info: {} - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - info: {} -component: - name: ebeam_y_1550 - settings: - name: ebeam_y_1550 - module: ubcpdk.components - function_name: ebeam_y_1550 - info: - library: Design kits/ebeam - model: ebeam_y_1550 - info_version: 2 - full: {} - changed: {} - default: {} - child: null -compute_time_seconds: 99.67435359954834 -compute_time_minutes: 1.661239226659139 diff --git a/sparameters/ebeam_y_1550_7e264905_c3ff7345.npz b/sparameters/ebeam_y_1550_7e264905_c3ff7345.npz deleted file mode 100644 index a1bd6893..00000000 Binary files a/sparameters/ebeam_y_1550_7e264905_c3ff7345.npz and /dev/null differ diff --git a/sparameters/ebeam_y_1550_7e264905_c3ff7345.yml b/sparameters/ebeam_y_1550_7e264905_c3ff7345.yml deleted file mode 100644 index 28fe2f67..00000000 --- a/sparameters/ebeam_y_1550_7e264905_c3ff7345.yml +++ /dev/null @@ -1,2 +0,0 @@ -compute_time_seconds: 53.077330589294434 -compute_time_minutes: 0.8846221764882406 diff --git a/sparameters/ebeam_y_1550_912ab8ee.npz b/sparameters/ebeam_y_1550_912ab8ee.npz deleted file mode 100644 index 5b4d4a90..00000000 Binary files a/sparameters/ebeam_y_1550_912ab8ee.npz and /dev/null differ diff --git a/sparameters/ebeam_y_1550_912ab8ee.yml b/sparameters/ebeam_y_1550_912ab8ee.yml deleted file mode 100644 index 9a2f370b..00000000 --- a/sparameters/ebeam_y_1550_912ab8ee.yml +++ /dev/null @@ -1,67 +0,0 @@ -resolution: 30 -port_symmetries: {} -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3 -ymargin_bot: 3 -xmargin_left: 0 -xmargin_right: 0 -is_3d: false -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - info: {} - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - info: {} - monitor: - layer: - - 101 - - 0 - thickness: 6.0 - zmin: -3.0 - material: null - sidewall_angle: 0 - info: {} - source: - layer: - - 110 - - 0 - thickness: 6.0 - zmin: -3.0 - material: null - sidewall_angle: 0 - info: {} -component: - name: ebeam_y_1550 - settings: - name: ebeam_y_1550 - module: ubcpdk.components - function_name: ebeam_y_1550 - info: - library: Design kits/ebeam - model: ebeam_y_1550 - info_version: 2 - full: {} - changed: {} - default: {} - child: null -compute_time_seconds: 180.10234689712524 -compute_time_minutes: 3.001705781618754 diff --git a/sparameters/ebeam_y_1550_b9a44b79.csv b/sparameters/ebeam_y_1550_b9a44b79.csv deleted file mode 100644 index 452a51ee..00000000 --- a/sparameters/ebeam_y_1550_b9a44b79.csv +++ /dev/null @@ -1,51 +0,0 @@ -s11a,s11m,s21a,s21m,s31a,s31m,s12a,s12m,s22a,s22m,s32a,s32m,s13a,s13m,s23a,s23m,s33a,s33m,wavelengths,freqs --1.3563805947264742,0.06625721214226675,-1.8466761766520416,0.6108971942930804,-1.8466761767113278,0.6108971943193813,-1.8463082359351537,0.6102928982239155,-1.5992043408829106,0.13710293861120434,-2.52493546507906,0.10080948432467197,-1.846308236511836,0.6102928983711313,-2.524935466052599,0.10080948428919058,-1.5992043404937961,0.1371029386640683,1.5,0.6666666666666666 --1.522708963792812,0.06828221323485086,-2.1543248581998498,0.6108299893705595,-2.1543248582590087,0.6108299893959809,-2.1536219711167104,0.6092774208844927,-2.117574318029858,0.14082124228580015,-3.0945301764111037,0.10047207059069181,-2.1536219716944687,0.6092774210248755,-3.0945301773719494,0.10047207055393055,-2.117574317682884,0.1408212423439083,1.5020408163265306,0.6657608695652174 --1.683226086193113,0.06922813199774511,-2.46092822091774,0.6108103787812176,-2.4609282209768364,0.6108103788058776,-2.4591207572019447,0.6085684950766945,-2.620527302755428,0.1415122921291577,-3.661325810478291,0.1001287419143675,-2.4591207577777228,0.6085684952095013,-3.661325811424922,0.10012874187626217,-2.6205273024394935,0.14151229219215417,1.5040816326530613,0.6648575305291723 --1.8328530880840344,0.06919968709488349,-2.7665070168431583,0.6108676912532042,-2.7665070169025037,0.6108676912772099,-2.763160120315142,0.608383362258239,-3.1188350829242495,0.13858097616963727,-4.225369546319034,0.0998269730569513,-2.7631601208857814,0.6083833623838144,-4.225369547249557,0.09982697301750848,-3.1188350826284355,0.13858097623640653,1.506122448979592,0.6639566395663956 --1.9675331046013467,0.06846715751044755,-3.0710985326557205,0.6110260165081887,-3.0710985327154368,0.611026016531599,-3.0662132699923177,0.6088036928803999,-3.6243514780283306,0.13216865423517196,-4.78686964074698,0.09959644747153434,-3.066213270555438,0.6088036929999787,-4.786869641660026,0.09959644743075931,-3.624351477739988,0.13216865430411956,1.5081632653061225,0.6630581867388362 --2.084920420186491,0.06743478398284038,-3.3747507935989374,0.6113003608478172,-3.374750793659245,0.6113003608706598,-3.368742452587091,0.6097626048355982,-4.150039226611311,0.12316725264318704,-5.346123870166958,0.09944611549238058,-3.368742453141654,0.6097626049508484,-5.346123871061617,0.09944611545028618,-4.150039226315604,0.12316725271236856,1.510204081632653,0.6621621621621622 --2.1854511349809,0.06657190995777704,-3.67751454084533,0.6116951576438981,-3.6775145409064507,0.6116951576661621,-3.671079004226456,0.6110705947840518,-4.709057759248313,0.11322555490363846,-5.903439381386824,0.09936634556062564,-3.6710790047728628,0.6110705948965621,-5.903439382262742,0.09936634551719677,-4.709057758927677,0.11322555497091046,1.5122448979591836,0.6612685560053981 --2.273218701546705,0.0663008891462085,-3.9794353820354282,0.6122054025882578,-3.9794353820975794,0.6122054026098949,-3.973343234726143,0.6124727165964015,-5.310174432376746,0.10463278464704263,-6.45906444644915,0.0993352660053508,-3.9733432352659053,0.6124727167072426,-6.459064447306263,0.0993352659605357,-5.310174432016193,0.10463278471032147,1.5142857142857142,0.6603773584905661 --2.3555857293180584,0.06686529784638537,-4.2805483038720205,0.6128198869877883,-4.280548303935393,0.6128198870087135,-4.2754244461779605,0.6137224492439156,-5.947748690069932,0.09977750853283901,-7.01314911720518,0.09932757542665956,-4.275424446713066,0.6137224493533958,-7.0131491180433745,0.09932757538037584,-5.947748689671551,0.09977750859073735,1.5163265306122449,0.6594885598923285 --2.440985623423182,0.06823844577314489,-4.580875877934459,0.6135254190233423,-4.5808758779992065,0.6135254190434403,-4.577026080254954,0.6146526993473006,-6.5952691102778065,0.10000025389022305,-7.565744043661519,0.09932345240405233,-4.577026080787153,0.6146526994549771,-7.565744044480304,0.09932345235621237,-6.595269109870124,0.10000025394302967,1.5183673469387755,0.6586021505376344 --2.5360135380994118,0.07012787356644665,-4.8804302887843605,0.6143107063141421,-4.88043028885059,0.6143107063332707,-4.877763520356478,0.6152234308808157,-7.219531892872185,0.10464500418098278,-8.116835032213565,0.0993149793545064,-4.877763520886716,0.6152234309857463,-8.116835033011878,0.09931497930505273,-7.219531892491882,0.10464500423088385,1.5204081632653061,0.6577181208053691 --2.6436874494703155,0.07207103307582521,-5.179218148750349,0.6151687660347191,-5.179218148818077,0.6151687660527134,-5.17728653142585,0.6155309577832608,-7.803536227543711,0.11150144983585558,-8.666398398670534,0.09930807511471225,-5.177286531954006,0.6155309578843867,-8.666398399446852,0.09930807506364814,-7.803536227210577,0.11150144988576297,1.5224489795918368,0.6568364611260054 --2.7635122884431946,0.07356373615067359,-5.477246286380615,0.6160972536002475,-5.4772462864498035,0.616097253616931,-5.475390147504555,0.6157756757070236,-8.349882651979605,0.11810120917795047,-9.214454240081196,0.09931934212098593,-5.475390148029537,0.6157756758035596,-9.214454240833696,0.09931934206839879,-8.349882651694234,0.11810120923019923,1.5244897959183674,0.6559571619812583 --2.892508954657833,0.07416772346553706,-5.774526519754843,0.617096781887502,-5.774526519825602,0.6170967819027376,-5.7720809309039245,0.6161986147167192,-8.870552046791278,0.12259057484419039,-9.76109570417274,0.09936896602480706,-5.772080931424055,0.6161986148084089,-9.761095704899024,0.09936896597087917,-8.87055204654455,0.12259057490009899,1.526530612244898,0.6550802139037433 --3.0262073134749845,0.0735797837504688,-6.071077868046479,0.6181679231030325,-6.07107786811858,0.618167923116634,-6.067579346550453,0.6170067766298551,-9.379364661313275,0.12398561725884528,-10.306482020885833,0.0994720932592913,-6.067579347063984,0.6170067767170927,-10.306482021584662,0.09947209320425002,-9.379364661090133,0.12398561731870575,1.5285714285714287,0.6542056074766355 --3.1591799580123383,0.0716697601126261,-6.366925539463907,0.6193079599006516,-6.366925539537172,0.6193079599124667,-6.362258462468896,0.6183093950946146,-9.88954248143337,0.12216008104076898,-10.850796954304911,0.0996314754116725,-6.362258462974532,0.618309395178322,-10.8507969549754,0.09963147535578132,-9.889542481216003,0.12216008110404364,1.530612244897959,0.6533333333333333 --3.285151736656576,0.06850066207690633,-6.662097065382869,0.6205084865411334,-6.662097065457056,0.620508486551021,-6.656537727836991,0.620082722649756,-10.413248867077964,0.11777751635971916,-11.394186783105845,0.0998336506270113,-6.656537728334248,0.6200827227311567,-11.394186783747912,0.09983365057052596,-10.413248866844894,0.11777751642508812,1.5326530612244897,0.6524633821571239 --3.396937233629697,0.06434070367211973,-6.956616816993083,0.6217546693295368,-6.956616817067895,0.6217546693373756,-6.950763060210568,0.6221725509245678,-10.960512144566799,0.11219423613101394,-11.936699173300347,0.10004986810289838,-6.950763060699882,0.6221725510048732,-11.936699173914644,0.10004986804603556,-10.960512144294002,0.11219423619636108,1.5346938775510204,0.6515957446808511 --3.4866859383656736,0.05966980461330829,-7.250500605640831,0.6230264623694288,-7.250500605716106,0.6230264623751824,-7.245108074171907,0.6243337737221417,-11.535799703579977,0.10723635257796871,-12.478245002012484,0.10024165000547423,-7.245108074646894,0.6243337738010113,-12.478245002599365,0.10024164994836868,-11.535799703248674,0.10723635264051799,1.536734693877551,0.650730411686587 --3.5473672240669005,0.055168229387975304,-7.543752024250223,0.6243014919690569,-7.543752024325578,0.6243014919726507,-7.539525070636591,0.626296324235176,-12.132725690056423,0.10468915863466352,-13.018599233955474,0.10036953041556758,-7.539525070991111,0.6262963242953815,-13.018599234516323,0.10036953035830329,-12.132725689667005,0.1046891586914833,1.5387755102040817,0.649867374005305 --3.5767446100230624,0.05164520826353225,-7.836361669464246,0.6255588364668776,-7.836361669539362,0.6255588364682947,-7.833759477383382,0.6278386802783784,-12.732823761255219,0.10551819097558073,-13.557445183381056,0.10040241488287216,-7.833759477689673,0.6278386803312267,-13.557445183916808,0.10040241482546859,-12.73282376083684,0.10551819102480008,1.5408163265306123,0.6490066225165563 --3.583210019109684,0.04984060959823967,-8.128309553161584,0.6267826598941907,-8.128309553236148,0.6267826598934486,-8.127421744844323,0.6288469689340309,-13.314654584576486,0.10933583320532848,-14.094451729626549,0.10032464198233185,-8.12742174519245,0.6288469689936329,-14.09445173013786,0.10032464192477682,-13.3146545841725,0.109335833246978,1.542857142857143,0.6481481481481481 --3.5871864809615013,0.05011142321291591,-8.419570103049015,0.6279646947988368,-8.419570103122727,0.6279646947959837,-8.420093135264121,0.6293421853540695,-13.865986645021396,0.11465982793644908,-14.629360603828157,0.10013856233841444,-8.420093135569164,0.6293421854056508,-14.629360604315384,0.10013856228069408,-13.865986644665805,0.11465982797212665,1.5448979591836736,0.6472919418758256 --3.611691737056494,0.05222905511019615,-8.71011842774955,0.629104888813674,-8.710118427822062,0.629104888808737,-8.711433149306698,0.6294692041373587,-14.38675586927602,0.11968724149081666,-15.1620564427466,0.09986210117605371,-8.71143314961098,0.6294692041873781,-15.162056443210245,0.09986210111820852,-14.386755868984789,0.11968724152266695,1.5469387755102042,0.646437994722955 --3.6701026513230883,0.05551162751752465,-8.99993618326173,0.6302100449366624,-8.999936183369151,0.630210044927923,-9.001259359328829,0.6294541024574835,-14.884398780818884,0.12292578442250711,-15.69259822792937,0.09952256477440352,-9.001259359632781,0.6294541025053866,-15.692598228569643,0.09952256468996774,-14.884398780494411,0.12292578446640293,1.5489795918367348,0.6455862977602107 --3.763772572804711,0.05915003958645958,-9.289015509396897,0.6312908397951382,-9.289015509502072,0.6312908397837508,-9.289582219756955,0.6295449530344103,-15.369180032039539,0.12347155277413521,-16.22120399638865,0.09914903128184775,-9.289582220180836,0.6295449530993211,-16.221203996995364,0.09914903119734648,-15.369180031810203,0.12347155281797284,1.5510204081632653,0.6447368421052632 --3.887280006833842,0.06244884848624831,-9.577360057587544,0.6323580377957455,-9.577360057690214,0.6323580377819058,-9.576591704186821,0.6299529987284703,-15.85207562006628,0.12107013400307698,-16.748195132490217,0.0987656861201696,-9.576591704607386,0.6299529987909864,-16.74819513306437,0.0987656860357842,-15.852075619924213,0.1210701340488049,1.5530612244897959,0.6438896189224704 --4.033396024897053,0.06491319142166974,-9.864982929871394,0.6334189135984561,-9.864982929971362,0.6334189135823732,-9.862604250242336,0.6308075894023815,-16.34422936873058,0.11610529654313079,-17.2739168748291,0.09838769861576502,-9.86260425065915,0.6308075894630732,-17.273916875372173,0.0983876985316953,-16.34422936866414,0.11610529659229839,1.5551020408163265,0.6430446194225722 --4.195336031627017,0.06624997878279501,-10.15190216447366,0.634474812033848,-10.15190216457082,0.6344748120157944,-10.147985604622153,0.6321327476250529,-16.856444189906544,0.10956982772521986,-17.79865591489931,0.09802022233861053,-10.147985605035323,0.6321327476845288,-17.798655915412887,0.09802022225501592,-16.85644418989692,0.10956982777900083,1.5571428571428572,0.6422018348623854 --4.367252312340211,0.06634258321302333,-10.438135022272004,0.6355204522794763,-10.43813502236622,0.6355204522595544,-10.433068278271797,0.6338479864254118,-17.39707333843193,0.10298496543274113,-18.322574844285647,0.09766021773388822,-10.43306827885434,0.6338479865083492,-18.322574844771957,0.09766021765098137,-17.397073338448443,0.10298496549163297,1.5591836734693878,0.6413612565445026 --4.544039687891047,0.06522286227315315,-10.723692601667327,0.6365451176243773,-10.723692601758604,0.6365451176028488,-10.718082129724687,0.6357914212873209,-17.966986433242905,0.09813969394092432,-18.84567818362743,0.09730017016394883,-10.718082130303578,0.6357914213690417,-18.84567818408779,0.09730017008180174,-17.966986433244646,0.09813969400440994,1.5612244897959184,0.6405228758169934 --4.720984646139891,0.06304634927498715,-11.008576185220873,0.6375353845721118,-11.00857618530923,0.637535384549169,-11.003112956048124,0.6377589897560826,-18.553900231783654,0.0965027824791818,-19.367816951121046,0.09693241562586953,-11.003112956474165,0.6377589898162873,-19.367816951556385,0.09693241554453305,-18.553900231737153,0.09650278254533172,1.563265306122449,0.639686684073107 --4.89348098479322,0.06007088701623099,-11.292776243698714,0.6384786560508159,-11.29277624378422,0.6384786560266308,-11.288096685676349,0.6395500500016886,-19.13467645139374,0.09847932416142424,-19.888729334029993,0.0965527215651779,-11.288096686081918,0.6395500500581833,-19.888729334440512,0.0965527214846647,-19.134676451297064,0.09847932422749156,1.5653061224489797,0.6388526727509778 --5.056962673896909,0.0566375367920077,-11.576274320400358,0.6393665668624804,-11.576274320483096,0.6393665668372623,-11.572847214380815,0.6410081514212991,-19.6885644767998,0.10315814114671712,-20.408105907377212,0.09616206077325477,-11.572847214842836,0.6410081514838166,-20.408105907762376,0.09616206069353003,-19.688564476682995,0.10315814121033505,1.5673469387755103,0.6380208333333333 --5.207260245175518,0.05315091047180881,-11.859047271790068,0.6401973760150129,-11.859047271870175,0.6401973759887605,-11.85710710938687,0.6420475639898877,-20.207643003024,0.10884371124449024,-20.925661642110455,0.09576613804222359,-11.857107109790773,0.642047564042829,-20.92566164246951,0.095766137963358,-20.207643002925582,0.10884371130422905,1.569387755102041,0.6371911573472041 --5.34164170931418,0.05005219940961358,-12.14107274410777,0.6409767384073254,-12.141072744185362,0.6409767383801935,-12.140605633314141,0.642660989345987,-20.695423218000343,0.11380973974413568,-21.44119588186341,0.0953729931500199,-12.140605633716563,0.6426609893966735,-21.44119588219536,0.09537299307201225,-20.69542321795356,0.11380973979952125,1.5714285714285714,0.6363636363636364 --5.4605692535481625,0.04777337612156604,-12.422334473618697,0.6417166817758527,-12.422334473693901,0.6417166817479061,-12.423109317961794,0.6429098039050557,-21.160722874109172,0.11674887132261351,-21.954625918843057,0.09498962148470788,-12.423109318362163,0.6429098039534884,-21.954625919147333,0.09498962140762202,-21.16072287413857,0.11674887137377242,1.573469387755102,0.6355382619974059 --5.569322287263031,0.04666415716689764,-12.702826083201826,0.6424330848297561,-12.702826083274806,0.6424330848009753,-12.704455491460445,0.6429027090116117,-21.613696252366402,0.11691385285528252,-22.46598793739959,0.09461880655121355,-12.704455491858347,0.6429027090580267,-22.46598793767623,0.0946188064751658,-21.613696252491888,0.11691385290281525,1.5755102040816327,0.6347150259067358 --5.6775929485790835,0.04690748453627573,-12.982552473854328,0.6431423291581689,-12.9825524739251,0.6431423291286824,-12.984565857217223,0.6427702841958307,-22.064608350972197,0.11412167497247959,-22.975407955065158,0.09425721500070791,-12.98456585761262,0.6427702842405346,-22.975407955315262,0.09425721492574635,-22.064608351212332,0.11412167501777976,1.5775510204081633,0.6338939197930142 --5.79604784835388,0.04847197219260982,-13.261528552645668,0.6438579847940629,-13.261528552714365,0.6438579847637942,-13.263442803765432,0.6426418503579852,-22.52391935316218,0.10872889295575854,-23.483052423781658,0.09389538962176582,-13.26344280415858,0.6426418504013163,-23.48305242400682,0.09389538954801291,-22.523919353535046,0.10872889300089865,1.579591836734694,0.6330749354005167 --5.932039305416899,0.05113938546810245,-13.53977572175321,0.6445883481977849,-13.539775721819856,0.6445883481667372,-13.54115421059345,0.642628470576502,-23.002414963428407,0.10161270123130896,-23.989072055085245,0.09351975122462697,-13.541154210984901,0.6426284706186235,-23.989072055287743,0.09351975115213676,-23.002414963946812,0.10161270127953581,1.5816326530612246,0.632258064516129 --6.08774009227656,0.05458453409556077,-13.817317102636656,0.6453354058881313,-13.817317102701278,0.6453354058562583,-13.817813112013706,0.6428131844271705,-23.51000872436066,0.094137680626871,-24.493552977056105,0.09311620265604661,-13.81781311240409,0.6428131844680331,-24.49355297723823,0.09311620258484608,-23.510008725019343,0.09413768068250876,1.5836734693877552,0.6314432989690721 --6.261141788211023,0.05845154522552513,-14.094172755689174,0.6460954183398229,-14.094172755751751,0.6460954183070885,-14.09355740175409,0.6432475268962278,-24.051347738740272,0.0880126370277972,-24.996486811557524,0.09267449473551043,-14.09355740214392,0.6432475269355511,-24.996486811721297,0.09267449466557863,-24.05134773949407,0.08801263709548286,1.5857142857142859,0.6306306306306306 --6.448056843733424,0.062397172383602546,-14.370356119212035,0.6468609035069022,-14.370356119272513,0.6468609034732737,-14.368532674518228,0.6439523341955242,-24.6182996713517,0.0848629278269722,-25.49776624529824,0.09219225310860879,-14.368532674914205,0.6439523342334416,-25.49776624544499,0.09219225303989072,-24.618299672107344,0.08486292790965161,1.5877551020408165,0.6298200514138816 --6.643667056269331,0.06610728798954349,-14.645872549651536,0.6476234471106159,-14.645872549709827,0.6476234470760666,-14.642879109459544,0.6449207535204293,-25.18738966674463,0.08550224925974803,-25.99720619197762,0.09167758301037322,-14.642879109848467,0.6449207535553336,-25.99720619210781,0.0916775829427955,-25.187389667402115,0.08550224935665748,1.5897959183673471,0.6290115532734274 --6.84330455203669,0.06930320247977974,-14.920720285622588,0.6483765617944084,-14.920720285678577,0.6483765617589232,-14.916721694146101,0.6461220104868518,-25.73194660816738,0.08944119899507211,-26.494584366398914,0.09114952067832703,-14.916721694540326,0.6461220105194685,-26.49458436651212,0.09114952061181611,-25.731946608682723,0.08944119910205149,1.5918367346938775,0.6282051282051282 --7.042682494846535,0.07174904862887121,-15.194893521379639,0.6491178109911192,-15.194893521433187,0.6491178109547023,-15.190162513011277,0.6475054357063607,-26.238037697154613,0.09520793867507635,-26.98969090771403,0.090636202949137,-15.19016251339712,0.6475054357355132,-26.989690907809162,0.09063620288363346,-26.23803769754679,0.09520793878683623,1.5938775510204082,0.6274007682458387 --7.237833028274521,0.07326438491563501,-15.468386723124773,0.6498496095243567,-15.468386723175724,0.6498496094870306,-15.46327429100117,0.6490050269491043,-26.70662260954398,0.10110911731918502,-27.482375815527117,0.09017125640117123,-15.46327429154732,0.6490050269876292,-27.482375815602744,0.09017125633663697,-26.706622609857714,0.10110911743098774,1.5959183673469388,0.6265984654731458 --7.4249187747796705,0.07374212008497137,-15.74119899622553,0.6505784628116821,-15.741198996273722,0.6505784627734915,-15.736095381195339,0.6505450542063463,-27.14635285397117,0.10574757559185764,-27.972585214468513,0.08978931376078267,-15.736095381574877,0.6505450542302565,-27.97258521452323,0.08978931369719792,-27.146352854249237,0.1057475756999791,1.5979591836734695,0.6257982120051085 --7.600017336076666,0.07317032791157259,-16.013337298852274,0.6513128173483114,-16.013337298897543,0.6513128173093253,-16.008627212575302,0.6520468685383901,-27.567797036337513,0.10818295162317236,-28.460381388034406,0.08952162168818877,-16.008627212951005,0.6520468685604285,-28.46038138806719,0.08952162162554439,-27.56779703661305,0.10818295172485297,1.6,0.625 diff --git a/sparameters/ebeam_y_1550_b9a44b79.yml b/sparameters/ebeam_y_1550_b9a44b79.yml deleted file mode 100644 index 83cc40c3..00000000 --- a/sparameters/ebeam_y_1550_b9a44b79.yml +++ /dev/null @@ -1,52 +0,0 @@ -resolution: 30 -port_symmetries: {} -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3 -ymargin_bot: 3 -xmargin_left: 0 -xmargin_right: 0 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - monitor: - layer: - - 101 - - 0 - thickness: 6.0 - zmin: -3.0 - material: null - sidewall_angle: 0 - source: - layer: - - 110 - - 0 - thickness: 6.0 - zmin: -3.0 - material: null - sidewall_angle: 0 -component: - name: ebeam_y_1550 - version: 0.0.1 - settings: {} -compute_time_seconds: 159.36617875099182 -compute_time_minutes: 2.656102979183197 diff --git a/sparameters/ebeam_y_1550_c3ff7345.npz b/sparameters/ebeam_y_1550_c3ff7345.npz deleted file mode 100644 index a1bd6893..00000000 Binary files a/sparameters/ebeam_y_1550_c3ff7345.npz and /dev/null differ diff --git a/sparameters/ebeam_y_1550_c3ff7345.yml b/sparameters/ebeam_y_1550_c3ff7345.yml deleted file mode 100644 index 562f7e45..00000000 --- a/sparameters/ebeam_y_1550_c3ff7345.yml +++ /dev/null @@ -1,2 +0,0 @@ -compute_time_seconds: 60.538620471954346 -compute_time_minutes: 1.0089770078659057 diff --git a/sparameters/ebeam_y_1550_d94e5bdc.csv b/sparameters/ebeam_y_1550_d94e5bdc.csv deleted file mode 100644 index 95849cb2..00000000 --- a/sparameters/ebeam_y_1550_d94e5bdc.csv +++ /dev/null @@ -1,51 +0,0 @@ -s22a,s22m,s32a,s32m,s12a,s12m,s23a,s23m,s33a,s33m,s13a,s13m,s21a,s21m,s31a,s31m,s11a,s11m,wavelengths,freqs -2.348554398596927,0.148523863617049,1.47325174709865,0.07870129763531979,0.1622849566687631,0.6161866036499215,1.473251746887732,0.07870129760719415,2.3485543981778427,0.1485238635967545,0.16228495659904252,0.6161866036561939,0.16230803096253477,0.6182386241172352,0.1623080309813859,0.61823862412753,1.4555929934977074,0.025269067527560782,1.5,0.6666666666666666 -1.8260654074075569,0.14097082149566026,0.8915802207710235,0.0851574942700235,-0.15496831486967974,0.6190699164739358,0.8915802205532364,0.08515749425205177,1.8260654070797522,0.14097082148272513,-0.15496831495813904,0.6190699164304917,-0.15645404261939672,0.6204938158784766,-0.15645404259805487,0.6204938158888537,0.8452870073907469,0.027416259319890262,1.5020408163265306,0.6657608695652174 -1.2476777060103907,0.12704235395314806,0.28855105539541104,0.08945194544902106,-0.47362870333308366,0.6222643750005853,0.288551055200557,0.08945194544128682,1.2476777057950414,0.12704235394332694,-0.4736287033861824,0.6222643750020868,-0.4757039138029155,0.6227020018150112,-0.4757039137791992,0.6227020018262072,0.22092512926688695,0.03189212243829584,1.5040816326530613,0.6648575305291723 -0.6066938665173175,0.11207678082870595,-0.3142031901911555,0.09131843645649722,-0.7935241982530126,0.624833018957947,-0.31420319034020117,0.09131843645682734,0.6066938664257354,0.11207678081462966,-0.7935241982969531,0.6248330189563089,-0.795246616580285,0.62437975900987,-0.7952466165550596,0.6243797590225497,-0.3328455144494068,0.03870866237057848,1.506122448979592,0.6639566395663956 --0.08971785128314928,0.10260339732514481,-0.9035051885932462,0.09164468995125769,-1.1136590848009353,0.6261638825183193,-0.9035051886866062,0.09164468995619197,-0.08971785129734058,0.10260339729905833,-1.1136590848356118,0.6261638825137256,-1.1144802596087795,0.6251863041833042,-1.1144802595833139,0.6251863041977225,-0.7894438379920842,0.04646890504210001,1.5081632653061225,0.6630581867388362 --0.7952860485594765,0.10248447310119535,-1.4772092550375495,0.09166350572165562,-1.4328514440080808,0.6261060990174376,-1.4772092550794707,0.09166350572773822,-0.7952860486068435,0.10248447306047073,-1.4328514440342541,0.6261060990102185,-1.4326351180621484,0.6250434336086198,-1.4326351180376615,0.6250434336245894,-1.159865344934004,0.05381708429433216,1.510204081632653,0.6621621621621622 --1.4514215106969075,0.11040247600356913,-2.0407128571196713,0.09221071594458145,-1.7500535672826847,0.6248437216901032,-2.0407128571262803,0.09221071594919947,-1.451421510849139,0.11040247595245295,-1.7500535673017867,0.6248437216804043,-1.7490399052368497,0.6241169317810641,-1.7490399052141934,0.6241169317980974,-1.4622752465522812,0.0601604987261012,1.5122448979591836,0.6612685560053981 --2.041611064866342,0.12191280005085355,-2.6010078469174034,0.09361200946236967,-2.0644430620459717,0.6228196661929992,-2.601007846912267,0.09361200946408488,-2.041611065117012,0.1219127999960011,-2.064443062059729,0.6228196661806589,-2.0632544317520005,0.6227147703115871,-2.0632544317315737,0.6227147703290845,-1.7147400900738679,0.06551858292080787,1.5142857142857142,0.6603773584905661 --2.5849134039353596,0.13278943085600756,-3.164254504901824,0.09591934533717555,-2.375572631771927,0.6206848996863402,-3.1642545049100246,0.09591934533580121,-2.5849134042504507,0.13278943080317318,-2.375572631782069,0.6206848996708897,-2.3750730152878003,0.621199983426176,-2.375073015269591,0.6211999834435514,-1.9343951398138333,0.07002933337282542,1.5163265306122449,0.6594885598923285 --3.1079596122404776,0.1400796406099063,-3.7358448987387085,0.09895403032446,-2.6835341820505123,0.6191852543474627,-3.7358448987808344,0.09895403032101834,-3.107959612587981,0.14007964056329814,-2.6835341820585628,0.6191852543281614,-2.6844993709685787,0.6199521573192428,-2.684499370952234,0.6199521573360002,-2.135303221619667,0.07355289936788437,1.5183673469387755,0.6586021505376344 --3.633306097742823,0.14201044680305686,-4.318776058976702,0.10222748980617816,-2.9890555906963217,0.618989135175995,-4.318776059063842,0.10222748980267873,-3.6333060980954257,0.1420104467652841,-2.9890555907033898,0.6189891351518699,-2.9917611228557686,0.6193488192759018,-2.9917611228406242,0.61934881929179,-2.3256440523560524,0.07557499489947787,1.5204081632653061,0.6577181208053691 --4.178006306212447,0.13823029932939845,-4.911504210023034,0.10509952930214778,-3.2934195152024937,0.6204547933817496,-4.911504210156876,0.10509952930124261,-4.17800630654234,0.13823029930089598,-3.2934195152089942,0.6204547933516467,-3.2973584824284887,0.6197211790273234,-3.297358482413798,0.6197211790419972,-2.5057651309368185,0.07540532232077998,1.5224489795918368,0.6568364611260054 --4.75521474317723,0.13029411842667382,-5.508506167615437,0.10714174596143763,-3.598060150110725,0.6234456423368895,-5.508506167785129,0.10714174596554936,-4.755214743455447,0.13029411840534694,-3.5980601501162304,0.6234456422998323,-3.602071218553017,0.6212582493754519,-3.602071218537892,0.6212582493890989,-2.6671504594083046,0.07258745520568323,1.5244897959183674,0.6559571619812583 --5.37334192730781,0.12158639014699264,-6.103309241448336,0.10838069753863219,-3.904013334793699,0.627370961465927,-6.103309241635566,0.10838069754939268,-5.373341927512243,0.12158639012786349,-3.9040133347971206,0.6273709614214256,-3.9068247151079047,0.6238899113654263,-3.906824715091645,0.6238899113783569,-2.792057327065136,0.06741348907118329,1.526530612244898,0.6550802139037433 --6.027712539928732,0.11619217322783287,-6.6916229592628,0.10923538851626621,-4.2116090873194345,0.6314303261824927,-6.691622959445687,0.10923538853414626,-6.027712540068148,0.11619217320439713,-4.211609087319602,0.6314303261308043,-4.212403763870029,0.6272354431400176,-4.212403763852247,0.6272354431526859,-2.8566326822796206,0.06138000998115316,1.5285714285714287,0.6542056074766355 --6.692036157899117,0.11687366987275039,-7.272789589345004,0.11024274566023323,-4.520507460836151,0.6348710122226375,-7.272789589502953,0.11024274568460155,-6.692036158026136,0.11687366984045446,-4.520507460832472,0.634871012164697,-4.5191511284795585,0.6306890722150905,-4.519151128460249,0.6306890722279758,-2.8483557336311476,0.057180796257536026,1.530612244897959,0.6533333333333333 --7.332124418898934,0.12347100211925174,-7.849325443961355,0.11179063280366193,-4.829891140114914,0.6371588929178403,-7.849325444078576,0.1117906328330131,-7.332124419073901,0.12347100207857999,-4.829891140107704,0.6371588928549475,-4.8268406243160085,0.6336212282309264,-4.8268406242954365,0.6336212282444876,-2.8000626071139356,0.05739503298314747,1.5326530612244897,0.6524633821571239 --7.932533929166742,0.13336538557818456,-8.425476634706122,0.11396291379392931,-5.138693570981072,0.6380842799988097,-8.425476634775379,0.11396291382648994,-7.932533929418837,0.1333653855335638,-5.138693570971586,0.6380842799321472,-5.134800226522001,0.6355843787354841,-5.134800226500764,0.6355843787497955,-2.7800516677928746,0.06223684723202552,1.5346938775510204,0.6515957446808511 --8.500168078249843,0.1431901744064816,-9.005394902961424,0.11646718668167845,-5.445870210676993,0.6378102889307717,-9.005394902982145,0.11646718671528876,-8.500168078575017,0.14319017436448472,-5.445870210666953,0.6378102888612035,-5.4421828850025475,0.636412639488405,-5.442182884981149,0.636412639503588,-2.8238471352373415,0.06952652118563242,1.536734693877551,0.650730411686587 --9.050500002240017,0.1500670309705222,-9.591111854583291,0.11866963819684855,-5.750709330255911,0.6368207372962961,-9.591111854561882,0.11866963822946482,-9.050500002617895,0.1500670309375354,-5.750709330247126,0.6368207372241375,-5.748206778075268,0.6361961882051925,-5.748206778054204,0.63619618822115,-2.9230129807348573,0.0768318131590979,1.5387755102040817,0.649867374005305 --9.597600434313524,0.1523044200300039,-10.181171271620958,0.11981053601160385,-6.053068644858572,0.6357291815089462,-10.181171271568118,0.11981053604146956,-9.597600434713003,0.15230442001096126,-6.053068644852438,0.6357291814340119,-6.052271330432814,0.6352023612234343,-6.052271330412466,0.6352023612399599,-3.058175756339543,0.0826149217218978,1.5408163265306123,0.6490066225165563 --10.151245589591811,0.14990045153747925,-10.770841517473713,0.11934361428998616,-6.35334662970425,0.6350160738669459,-10.770841517401742,0.11934361431586513,-10.151245589969951,0.14990045153447196,-6.353346629701366,0.6350160737887811,-6.3539973573441415,0.6338155377553476,-6.353997357324719,0.633815537772161,-3.2153508103178092,0.08614199523174813,1.542857142857143,0.6481481481481481 --10.716578726455541,0.1446276393750853,-11.353784354231383,0.11721495371133636,-6.652166650348767,0.6348752873551836,-11.353784354151882,0.11721495373264855,-10.716578726757895,0.1446276393860661,-6.652166650348862,0.6348752872734417,-6.653283183694188,0.6324925027438911,-6.653283183675669,0.6324925027606939,-3.387307243056216,0.08707543695293407,1.5448979591836736,0.6472919418758256 --11.292767269123525,0.1393880783038021,-11.924473384275702,0.11391555800088154,-6.950045846871072,0.6352674180051204,-11.924473384198247,0.11391555801765418,-11.29276726929694,0.1393880783220804,-6.9500458468733095,0.6352674179198865,-6.950374352357025,0.6316815321191321,-6.950374352339144,0.6316815321356888,-3.5707893454543105,0.08515492776851921,1.5469387755102042,0.646437994722955 --11.870731247125905,0.1369368430548521,-12.480477362330445,0.11025834186238657,-7.247297365078254,0.6360609417460134,-12.480477362262324,0.11025834187503894,-11.870731247148074,0.13693684307043835,-7.247297365081774,0.6360609416578991,-7.24584320032011,0.6316971590920781,-7.245843200302435,0.6316971591082964,-3.7631707612344303,0.08010449997901178,1.5489795918367348,0.6455862977602107 --12.434676423292204,0.13859797471000215,-13.023326919152522,0.107010465229452,-7.544090118981451,0.6371031016129413,-13.023326919099222,0.1070104652385403,-12.434676423194231,0.13859797471312021,-7.544090118985801,0.6371031015229471,-7.540413929218348,0.6326205945822163,-7.540413929200434,0.6326205945981652,-3.959546903077883,0.07176725918204194,1.5510204081632653,0.6447368421052632 --12.970211682634913,0.14380372887404402,-13.557239154303106,0.10464107345467051,-7.840469005651069,0.6382286084015942,-13.557239154269137,0.10464107346072331,-12.970211682485187,0.14380372885870088,-7.840469005656378,0.6382286083108752,-7.834714493475209,0.6343006420818528,-7.83471449345673,0.6343006420977264,-4.149952951762369,0.06032765844817274,1.5530612244897959,0.6438896189224704 --13.471966017990274,0.1506689253174229,-14.086940745066086,0.10332471981085588,-8.136331429802256,0.639295154720413,-14.086940745055749,0.10332471981435415,-13.471966017857225,0.150668925282521,-8.136331429809182,0.6392951546300603,-8.129108042757437,0.636450840382151,-8.129108042738043,0.6364508403982798,-4.313339558508773,0.04646698714737351,1.5551020408163265,0.6430446194225722 --13.943986903890531,0.15690732950731728,-14.616524482869204,0.1030720295085746,-8.43146837753865,0.6402464175375433,-14.616524482887003,0.10307202951002895,-13.943986903822672,0.15690732945559363,-8.431468377548223,0.6402464174484285,-8.423677285228905,0.6387705844380115,-8.423677285209028,0.6387705844544723,-4.394053451329466,0.031508573117871246,1.5571428571428572,0.6422018348623854 --14.395853754446565,0.16040125260546484,-15.149421335560817,0.10379161869927025,-8.72568146117055,0.6411422457893483,-15.149421335611201,0.10379161869933073,-14.395853754473938,0.1604012525420409,-8.725681461183967,0.6411422457020282,-8.718317946784282,0.64102369176864,-8.71831794676387,0.6410236917857243,-4.194907832852406,0.018395692569355422,1.5591836734693878,0.6413612565445026 --14.839246288069194,0.15939798343046205,-15.688217072055085,0.10526109896549485,-9.018908457413705,0.6421294771198444,-15.688217072141425,0.10526109896503115,-14.839246288211896,0.15939798336196895,-9.018908457432147,0.6421294770345166,-9.012852402428818,0.6430540574814739,-9.01285240240813,0.6430540574993402,-3.453416488504828,0.0158948894442105,1.5612244897959184,0.6405228758169934 --15.286548138216071,0.15266524530390674,-16.23393842857386,0.10711312825903298,-9.311296555179132,0.6433613994912338,-16.23393842869686,0.10711312825914225,-15.286548138491458,0.1526652452381548,-9.311296555203551,0.6433613994077354,-9.30709284424087,0.6447582185889155,-9.307092844220254,0.644758218607654,-3.122108613992654,0.025397816743195915,1.563265306122449,0.639686684073107 --15.751756877462308,0.1398142870531919,-16.785535712058582,0.1088972602265056,-9.603170730127779,0.6448928242161343,-16.785535712214696,0.10889726022840916,-15.751756877888555,0.1398142869990317,-9.603170730158668,0.6448928241340033,-9.600832471581516,0.6460587259134427,-9.60083247156138,0.6460587259330461,-3.1681760097061504,0.036307601971240895,1.5653061224489797,0.6388526727509778 --16.254067296527534,0.12177638594238067,-17.34006265500399,0.11019092396994459,-9.894878178258784,0.6466089620680713,-17.340062655184582,0.11019092397476911,-16.25406729711865,0.12177638590941617,-9.894878178295953,0.6466089619867292,-9.893810429195105,0.6469168493747707,-9.893810429175844,0.6469168493950996,-3.3272346415930647,0.04514702587588385,1.5673469387755103,0.6380208333333333 --16.82400840494377,0.10138465536537233,-17.893406039658004,0.1107118823114823,-10.186583124337906,0.6482493978810707,-17.893406039849715,0.11071188231997611,-16.824008405674206,0.10138465536289565,-10.186583124380473,0.6482493978000886,-10.185729486654555,0.6473772148551639,-10.185729486636427,0.6473772148759578,-3.527206322299057,0.05105988361658104,1.569387755102041,0.6371911573472041 --17.502513794411016,0.08401313004240943,-18.441301202258515,0.11039667004517395,-10.478151602870955,0.6495270840995767,-18.4413012024449,0.11039667005745858,-17.502513795098707,0.08401313007470895,-10.478151602917592,0.6495270840188976,-10.476352505494535,0.647590820204509,-10.476352505477568,0.6475908202254564,-3.745821459240666,0.053911274780261996,1.5714285714285714,0.6363636363636364 --18.286618928011713,0.07691023453427341,-18.980470709943425,0.10940783183430149,-10.769208466458652,0.6502635516897421,-18.980470710107426,0.10940783184976272,-18.286618928265916,0.07691023458792984,-10.769208466507994,0.6502635516097336,-10.765611295321712,0.6477739667324441,-10.765611295305682,0.6477739667532852,-3.976016642845981,0.05385447417473856,1.573469387755102,0.6355382619974059 --19.049482157027416,0.0833406842224842,-19.509546517319944,0.10804677848092961,-11.059307731529364,0.6504504036681708,-19.50954651744677,0.1080467784982722,-19.04948215678183,0.08334068426714403,-11.059307731580368,0.6504504035894962,-11.053634131231348,0.6481215810442243,-11.053634131215881,0.6481215810648239,-4.216514718647901,0.05113809075740805,1.5755102040816327,0.6347150259067358 --19.683720824378753,0.09829081607941507,-20.0292452418908,0.10661286432233721,-11.34808194851921,0.6502231034414524,-20.029245241970617,0.10661286433975653,-19.683720823958044,0.09829081609686961,-11.348081948571293,0.6502231033648594,-11.340667365178799,0.6487373434287306,-11.340667365163494,0.648737343449097,-4.468010693470898,0.04605038904565151,1.5775510204081633,0.6338939197930142 --20.20480223868643,0.11502449877100233,-20.541667765150873,0.10530424659294901,-11.635308254413077,0.6498053821276789,-20.54166776518096,0.10530424660835609,-20.204802238298427,0.11502449875926568,-11.635308254466098,0.6498053820538306,-11.62695715243663,0.6496251347432567,-11.626957152421145,0.6496251347635137,-4.731456988656069,0.03896091395659173,1.579591836734694,0.6330749354005167 --20.65781796641263,0.12936535047216782,-21.049356516564092,0.10421375431362684,-11.920934266947288,0.6494666128293376,-21.04935651655011,0.1042137543249057,-20.657817966127308,0.12936535043521938,-11.920934267001442,0.6494666127586898,-11.912677834209425,0.6507302928638803,-11.912677834193545,0.6507302928842301,-5.0076059588738175,0.030370916885827073,1.5816326530612246,0.632258064516129 --21.07501881323421,0.13916822592599418,-21.55480753148809,0.10337322448885033,-12.205105941693052,0.6494793771597209,-21.55480753144423,0.10337322449415115,-21.075018813072823,0.1391682258694901,-12.205105941748744,0.6494793770924756,-12.19793415675113,0.6519839298944324,-12.197934156734778,0.6519839299151213,-5.296694664030091,0.020911926507143463,1.5836734693877552,0.6314432989690721 --21.47748207432441,0.14341214356013046,-22.06036147554072,0.10277498381496677,-12.4881759701317,0.6500574433649785,-22.060361475488683,0.10277498381301467,-21.477482074297985,0.14341214349054576,-12.48817597018943,0.6500574433010554,-12.482797043558218,0.6533174775459444,-12.482797043541488,0.6533174775672302,-5.594704906248669,0.011302262365087854,1.5857142857142859,0.6306306306306306 --21.881038495856544,0.1417745277832865,-22.56796598988734,0.10236840277606657,-12.770653282569903,0.651283791866334,-22.567965989854038,0.10236840276645354,-21.88103849597873,0.1417745277079799,-12.770653282630105,0.6512837918053719,-12.767321082075442,0.6546519784762505,-12.767321082058613,0.6546519784983533,-5.801875321613963,0.002302321337550635,1.5877551020408165,0.6298200514138816 --22.300322368625068,0.1345703160436067,-23.07876259843729,0.10207709876137622,-13.053080170909485,0.6530567880229889,-23.078762598451235,0.10207709874478874,-22.300322368916035,0.13457031597109106,-13.053080170972361,0.6530567879643845,-13.051527440061792,0.6558867759629494,-13.051527440045291,0.6558867759859891,-3.247762576850911,0.0055005192594946165,1.5897959183673471,0.6290115532734274 --22.751979548469997,0.12294650400646494,-23.592942879805182,0.10184562882301644,-13.335859491124657,0.6550885139060708,-23.592942879891922,0.10184562880131907,-22.751979548953056,0.12294650394665205,-13.335859491190005,0.6550885138490787,-13.335369869428016,0.6569062720233951,-13.33536986941234,0.6569062720473378,-3.604738962528263,0.011536328890019326,1.5918367346938775,0.6282051282051282 --23.256983751406597,0.10921357275169007,-24.11008476973241,0.10167172686900323,-13.619101587635836,0.6569785586584631,-24.110084769909573,0.10167172684510496,-23.256983752085386,0.10921357271563019,-13.619101587702982,0.6569785586023562,-13.618713018326376,0.65760845522522,-13.618713018311944,0.6576084552498682,-4.025338423803995,0.01579625515804559,1.5938775510204082,0.6274007682458387 --23.836288257267245,0.09712213552140937,-24.629631023296206,0.1015891923243614,-13.902578967668827,0.6583418123092968,-24.62963102356922,0.10158919230184568,-23.836288258057095,0.09712213551878954,-13.90257896773669,0.6583418122535253,-13.901349255773399,0.6579435852548902,-13.90134925576044,0.6579435852799322,-4.491785235836906,0.018730102598194534,1.5959183673469388,0.6265984654731458 --24.485633963611356,0.0913314098882104,-25.15106705591026,0.10161998174012134,-14.185813066089707,0.6589238037067745,-25.151067056270236,0.10161998172267758,-24.48563396426855,0.09133140991946687,-14.185813066157042,0.658923803651051,-14.183059014110961,0.6579376035234823,-14.183059014099396,0.6579376035486313,-4.992430821974632,0.021241560860401906,1.5979591836734695,0.6257982120051085 --25.145603337885763,0.09469761361674278,-25.67376782190885,0.10174115084813781,-14.46822333533228,0.6586505955199093,-25.673767822331293,0.10174115083899586,-25.1456033381741,0.09469761366593418,-14.468223335397788,0.6586505954643083,-14.463680539650067,0.6576789455872838,-14.463680539639782,0.6576789456121781,-5.497744404572074,0.024325099229787275,1.6,0.625 diff --git a/sparameters/ebeam_y_1550_d94e5bdc.yml b/sparameters/ebeam_y_1550_d94e5bdc.yml deleted file mode 100644 index ab63ea33..00000000 --- a/sparameters/ebeam_y_1550_d94e5bdc.yml +++ /dev/null @@ -1,73 +0,0 @@ -resolution: 20 -port_symmetries: {} -wl_min: 1.5 -wl_max: 1.6 -wl_steps: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3.0 -ymargin_bot: 3.0 -xmargin_left: 0 -xmargin_right: 0 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0.0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0.0 -component: - ports: - o1: - name: o1 - midpoint: - - -7.4 - - 0 - width: 0.5 - orientation: 180 - layer: - - 1 - - 0 - port_type: optical - o2: - name: o2 - midpoint: - - 7.4 - - 2.75 - width: 0.5 - orientation: 0 - layer: - - 1 - - 0 - port_type: optical - o3: - name: o3 - midpoint: - - 7.4 - - -2.75 - width: 0.5 - orientation: 0 - layer: - - 1 - - 0 - port_type: optical - info: - doc: Y junction TE1550 50/50 power. - name: ebeam_y_1550 - cells: - ebeam_y_1550: - doc: Y junction TE1550 50/50 power. - name: ebeam_y_1550 - version: 0.0.1 diff --git a/sparameters/ebeam_y_1550_f578394f.npz b/sparameters/ebeam_y_1550_f578394f.npz deleted file mode 100644 index 78f23b1b..00000000 Binary files a/sparameters/ebeam_y_1550_f578394f.npz and /dev/null differ diff --git a/sparameters/ebeam_y_1550_f578394f.yml b/sparameters/ebeam_y_1550_f578394f.yml deleted file mode 100644 index 471d06bb..00000000 --- a/sparameters/ebeam_y_1550_f578394f.yml +++ /dev/null @@ -1,55 +0,0 @@ -resolution: 30 -port_symmetries: {} -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3 -ymargin_bot: 3 -xmargin_left: 0 -xmargin_right: 0 -is_3d: false -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - thickness_tolerance: null - zmin: 0.0 - material: si - sidewall_angle: 0.0 - width_to_z: 0.0 - z_to_bias: null - info: {} - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - thickness_tolerance: null - zmin: 0.0 - material: si - sidewall_angle: 0.0 - width_to_z: 0.0 - z_to_bias: null - info: {} -component: - name: ebeam_y_1550 - settings: - name: ebeam_y_1550 - module: ubcpdk.components - function_name: ebeam_y_1550 - info: - library: Design kits/ebeam - model: ebeam_y_1550 - info_version: 2 - full: {} - changed: {} - default: {} - child: null -compute_time_seconds: 162.4118685722351 -compute_time_minutes: 2.7068644762039185 diff --git a/sparameters/gc_-31.0deg_-5.0um.npz b/sparameters/gc_-31.0deg_-5.0um.npz deleted file mode 100644 index 0f4757e6..00000000 Binary files a/sparameters/gc_-31.0deg_-5.0um.npz and /dev/null differ diff --git a/sparameters/gc_-31.0deg_-5.0um.yml b/sparameters/gc_-31.0deg_-5.0um.yml deleted file mode 100644 index a8f67f88..00000000 --- a/sparameters/gc_-31.0deg_-5.0um.yml +++ /dev/null @@ -1,5 +0,0 @@ -compute_time_minutes: 1.767 -compute_time_seconds: 106.031 -fiber_angle_deg: -31 -fiber_xoffset: -5 -is_3d: false diff --git a/sparameters/gc_-31.0deg_0.0um.npz b/sparameters/gc_-31.0deg_0.0um.npz deleted file mode 100644 index 855bb600..00000000 Binary files a/sparameters/gc_-31.0deg_0.0um.npz and /dev/null differ diff --git a/sparameters/gc_-31.0deg_0.0um.yml b/sparameters/gc_-31.0deg_0.0um.yml deleted file mode 100644 index 231b94be..00000000 --- a/sparameters/gc_-31.0deg_0.0um.yml +++ /dev/null @@ -1,5 +0,0 @@ -compute_time_minutes: 0.013 -compute_time_seconds: 0.788 -fiber_angle_deg: -31 -fiber_xoffset: 0 -is_3d: false diff --git a/sparameters/gc_-31.0deg_5.0um.npz b/sparameters/gc_-31.0deg_5.0um.npz deleted file mode 100644 index ea1b85c0..00000000 Binary files a/sparameters/gc_-31.0deg_5.0um.npz and /dev/null differ diff --git a/sparameters/gc_-31.0deg_5.0um.yml b/sparameters/gc_-31.0deg_5.0um.yml deleted file mode 100644 index 31494144..00000000 --- a/sparameters/gc_-31.0deg_5.0um.yml +++ /dev/null @@ -1,5 +0,0 @@ -compute_time_minutes: 1.78 -compute_time_seconds: 106.797 -fiber_angle_deg: -31 -fiber_xoffset: 5 -is_3d: false diff --git a/sparameters/gc_te1550.npz b/sparameters/gc_te1550.npz deleted file mode 100644 index 855bb600..00000000 Binary files a/sparameters/gc_te1550.npz and /dev/null differ diff --git a/sparameters/gc_te1550.yml b/sparameters/gc_te1550.yml deleted file mode 100644 index 1d802836..00000000 --- a/sparameters/gc_te1550.yml +++ /dev/null @@ -1,5 +0,0 @@ -compute_time_minutes: 1.655 -compute_time_seconds: 99.291 -fiber_angle_deg: -31 -fiber_xoffset: 0 -is_3d: false diff --git a/sparameters/mirror_948d7eaf_gc_te1550_0ec64804.npz b/sparameters/mirror_948d7eaf_gc_te1550_0ec64804.npz deleted file mode 100644 index 08562a09..00000000 Binary files a/sparameters/mirror_948d7eaf_gc_te1550_0ec64804.npz and /dev/null differ diff --git a/sparameters/mirror_948d7eaf_gc_te1550_0ec64804.yml b/sparameters/mirror_948d7eaf_gc_te1550_0ec64804.yml deleted file mode 100644 index d37c9fdc..00000000 --- a/sparameters/mirror_948d7eaf_gc_te1550_0ec64804.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: -31 -fiber_xoffset: -15 -compute_time_seconds: 69.73126530647278 -compute_time_minutes: 1.1621877551078796 diff --git a/sparameters/mirror_948d7eaf_gc_te1550_0f8e55d2d79975dd8e8ea4016d3c56a2.npz b/sparameters/mirror_948d7eaf_gc_te1550_0f8e55d2d79975dd8e8ea4016d3c56a2.npz deleted file mode 100644 index a70ecef4..00000000 Binary files a/sparameters/mirror_948d7eaf_gc_te1550_0f8e55d2d79975dd8e8ea4016d3c56a2.npz and /dev/null differ diff --git a/sparameters/mirror_948d7eaf_gc_te1550_0f8e55d2d79975dd8e8ea4016d3c56a2.yml b/sparameters/mirror_948d7eaf_gc_te1550_0f8e55d2d79975dd8e8ea4016d3c56a2.yml deleted file mode 100644 index aed96954..00000000 --- a/sparameters/mirror_948d7eaf_gc_te1550_0f8e55d2d79975dd8e8ea4016d3c56a2.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: -31 -fiber_xoffset: -15 -compute_time_seconds: 17.621 -compute_time_minutes: 0.294 diff --git a/sparameters/mirror_948d7eaf_gc_te1550_26962e480cc055bb0b565a168ba56196.npz b/sparameters/mirror_948d7eaf_gc_te1550_26962e480cc055bb0b565a168ba56196.npz deleted file mode 100644 index e7ecd594..00000000 Binary files a/sparameters/mirror_948d7eaf_gc_te1550_26962e480cc055bb0b565a168ba56196.npz and /dev/null differ diff --git a/sparameters/mirror_948d7eaf_gc_te1550_26962e480cc055bb0b565a168ba56196.yml b/sparameters/mirror_948d7eaf_gc_te1550_26962e480cc055bb0b565a168ba56196.yml deleted file mode 100644 index f583a618..00000000 --- a/sparameters/mirror_948d7eaf_gc_te1550_26962e480cc055bb0b565a168ba56196.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: -31 -fiber_xoffset: 5 -compute_time_seconds: 14.744 -compute_time_minutes: 0.246 diff --git a/sparameters/mirror_948d7eaf_gc_te1550_60e5b3a8.npz b/sparameters/mirror_948d7eaf_gc_te1550_60e5b3a8.npz deleted file mode 100644 index 650a89b9..00000000 Binary files a/sparameters/mirror_948d7eaf_gc_te1550_60e5b3a8.npz and /dev/null differ diff --git a/sparameters/mirror_948d7eaf_gc_te1550_60e5b3a8.yml b/sparameters/mirror_948d7eaf_gc_te1550_60e5b3a8.yml deleted file mode 100644 index 84a67957..00000000 --- a/sparameters/mirror_948d7eaf_gc_te1550_60e5b3a8.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: -31 -fiber_xoffset: -5 -compute_time_seconds: 64.10221600532532 -compute_time_minutes: 1.068370266755422 diff --git a/sparameters/mirror_948d7eaf_gc_te1550_79ae2c47cfda4d910ad8afc4868758f5.npz b/sparameters/mirror_948d7eaf_gc_te1550_79ae2c47cfda4d910ad8afc4868758f5.npz deleted file mode 100644 index 932e3aaf..00000000 Binary files a/sparameters/mirror_948d7eaf_gc_te1550_79ae2c47cfda4d910ad8afc4868758f5.npz and /dev/null differ diff --git a/sparameters/mirror_948d7eaf_gc_te1550_79ae2c47cfda4d910ad8afc4868758f5.yml b/sparameters/mirror_948d7eaf_gc_te1550_79ae2c47cfda4d910ad8afc4868758f5.yml deleted file mode 100644 index 6279cd6c..00000000 --- a/sparameters/mirror_948d7eaf_gc_te1550_79ae2c47cfda4d910ad8afc4868758f5.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: -31 -fiber_xoffset: -5 -compute_time_seconds: 14.747 -compute_time_minutes: 0.246 diff --git a/sparameters/mirror_948d7eaf_gc_te1550_985757a9.npz b/sparameters/mirror_948d7eaf_gc_te1550_985757a9.npz deleted file mode 100644 index 275d21ef..00000000 Binary files a/sparameters/mirror_948d7eaf_gc_te1550_985757a9.npz and /dev/null differ diff --git a/sparameters/mirror_948d7eaf_gc_te1550_985757a9.yml b/sparameters/mirror_948d7eaf_gc_te1550_985757a9.yml deleted file mode 100644 index b60e33cf..00000000 --- a/sparameters/mirror_948d7eaf_gc_te1550_985757a9.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: -31 -fiber_xoffset: -10 -compute_time_seconds: 65.07130861282349 -compute_time_minutes: 1.0845218102137248 diff --git a/sparameters/mirror_948d7eaf_gc_te1550_d14753ca.npz b/sparameters/mirror_948d7eaf_gc_te1550_d14753ca.npz deleted file mode 100644 index 034145be..00000000 Binary files a/sparameters/mirror_948d7eaf_gc_te1550_d14753ca.npz and /dev/null differ diff --git a/sparameters/mirror_948d7eaf_gc_te1550_d14753ca.yml b/sparameters/mirror_948d7eaf_gc_te1550_d14753ca.yml deleted file mode 100644 index e5be4560..00000000 --- a/sparameters/mirror_948d7eaf_gc_te1550_d14753ca.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: -31 -fiber_xoffset: 0 -compute_time_seconds: 64.62230706214905 -compute_time_minutes: 1.0770384510358175 diff --git a/sparameters/mirror_948d7eaf_gc_te1550_d9bd5fec.npz b/sparameters/mirror_948d7eaf_gc_te1550_d9bd5fec.npz deleted file mode 100644 index b0666be8..00000000 Binary files a/sparameters/mirror_948d7eaf_gc_te1550_d9bd5fec.npz and /dev/null differ diff --git a/sparameters/mirror_948d7eaf_gc_te1550_d9bd5fec.yml b/sparameters/mirror_948d7eaf_gc_te1550_d9bd5fec.yml deleted file mode 100644 index 127ed1ed..00000000 --- a/sparameters/mirror_948d7eaf_gc_te1550_d9bd5fec.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: -31 -fiber_xoffset: 5 -compute_time_seconds: 60.06984901428223 -compute_time_minutes: 1.001164150238037 diff --git a/sparameters/mirror_948d7eaf_gc_te1550_f2c68445b4de85cee32e49c0386239aa.npz b/sparameters/mirror_948d7eaf_gc_te1550_f2c68445b4de85cee32e49c0386239aa.npz deleted file mode 100644 index de1b0a3e..00000000 Binary files a/sparameters/mirror_948d7eaf_gc_te1550_f2c68445b4de85cee32e49c0386239aa.npz and /dev/null differ diff --git a/sparameters/mirror_948d7eaf_gc_te1550_f2c68445b4de85cee32e49c0386239aa.yml b/sparameters/mirror_948d7eaf_gc_te1550_f2c68445b4de85cee32e49c0386239aa.yml deleted file mode 100644 index 8fa3c5e5..00000000 --- a/sparameters/mirror_948d7eaf_gc_te1550_f2c68445b4de85cee32e49c0386239aa.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: -31 -fiber_xoffset: 0 -compute_time_seconds: 13.999 -compute_time_minutes: 0.233 diff --git a/sparameters/mirror_948d7eaf_gc_te1550_fa1d65ff96e74bb0ba99eb021a049e62.npz b/sparameters/mirror_948d7eaf_gc_te1550_fa1d65ff96e74bb0ba99eb021a049e62.npz deleted file mode 100644 index ed458193..00000000 Binary files a/sparameters/mirror_948d7eaf_gc_te1550_fa1d65ff96e74bb0ba99eb021a049e62.npz and /dev/null differ diff --git a/sparameters/mirror_948d7eaf_gc_te1550_fa1d65ff96e74bb0ba99eb021a049e62.yml b/sparameters/mirror_948d7eaf_gc_te1550_fa1d65ff96e74bb0ba99eb021a049e62.yml deleted file mode 100644 index 6bcbe9bf..00000000 --- a/sparameters/mirror_948d7eaf_gc_te1550_fa1d65ff96e74bb0ba99eb021a049e62.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_3d: false -fiber_angle_deg: -31 -fiber_xoffset: -10 -compute_time_seconds: 16.757 -compute_time_minutes: 0.279 diff --git a/sparameters/rotate_f258530e_04b25a3b.csv b/sparameters/rotate_f258530e_04b25a3b.csv deleted file mode 100644 index eb28a134..00000000 --- a/sparameters/rotate_f258530e_04b25a3b.csv +++ /dev/null @@ -1,51 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.5,-2.1645438008575457,-2.1645438008575457,5.433270037009791e-05,5.433270037009791e-05,0.6651409617120654,0.6651409617120654,0.008361377447453924,0.008361377447453924 -1.5020408163265306,-3.00943555072041,-3.00943555072041,0.00013181664468222954,0.00013181664468222954,0.2015913282897662,0.2015913282897662,0.008931332348299608,0.008931332348299608 -1.5040816326530613,-3.1841964357819195,-3.1841964357819195,0.00010453395390008911,0.00010453395390008911,-0.258560245934607,-0.258560245934607,0.009562494478894028,0.009562494478894028 -1.506122448979592,-2.9325873236896767,-2.9325873236896767,8.110328795973615e-05,8.110328795973615e-05,-0.714366478579716,-0.714366478579716,0.01027512250638164,0.01027512250638164 -1.5081632653061225,-3.1656506410017125,-3.1656506410017125,0.0001311392346766692,0.0001311392346766692,-1.1644885532835991,-1.1644885532835991,0.011094282923446377,0.011094282923446377 -1.510204081632653,-3.8120238925097123,-3.8120238925097123,0.00017302348984506825,0.00017302348984506825,-1.6101452999061179,-1.6101452999061179,0.012063905857168301,0.012063905857168301 -1.5122448979591836,-3.1530718806112468,-3.1530718806112468,0.00012314538896668844,0.00012314538896668844,-2.0531969839031943,-2.0531969839031943,0.013234119705354309,0.013234119705354309 -1.5142857142857142,-2.883484803737501,-2.883484803737501,6.671481800225466e-05,6.671481800225466e-05,-2.4963376237557826,-2.4963376237557826,0.014652710500590409,0.014652710500590409 -1.5163265306122449,-3.0873784302930245,-3.0873784302930245,0.00026312697444568796,0.00026312697444568796,-2.942702208724596,-2.942702208724596,0.016352073998202977,0.016352073998202977 -1.5183673469387755,-3.6611087203361525,-3.6611087203361525,0.0001239527647970948,0.0001239527647970948,-3.394269763240852,-3.394269763240852,0.018344145453401642,0.018344145453401642 -1.5204081632653061,-2.691726900551831,-2.691726900551831,9.501763689210591e-05,9.501763689210591e-05,-3.851458590089857,-3.851458590089857,0.020623983377679095,0.020623983377679095 -1.5224489795918368,-3.49375982861846,-3.49375982861846,7.960208910386096e-05,7.960208910386096e-05,-4.31365420162223,-4.31365420162223,0.023188091553937955,0.023188091553937955 -1.5244897959183674,-3.3549895432702694,-3.3549895432702694,0.00014480356827706165,0.00014480356827706165,-4.779398697846012,-4.779398697846012,0.026023500339224993,0.026023500339224993 -1.5265306122448983,-3.305063619006636,-3.305063619006636,0.00011919699379910554,0.00011919699379910554,-5.247686606645891,-5.247686606645891,0.02913313272613722,0.02913313272613722 -1.5285714285714287,-3.185780335670917,-3.185780335670917,0.00010717447612310703,0.00010717447612310703,-5.7172638327145995,-5.7172638327145995,0.03253017289280107,0.03253017289280107 -1.530612244897959,-3.440196025411746,-3.440196025411746,0.00014684970814651558,0.00014684970814651558,-6.1877399294902,-6.1877399294902,0.03622529219375961,0.03622529219375961 -1.5326530612244897,-3.598783426385251,-3.598783426385251,0.00011667071802905863,0.00011667071802905863,-6.658808907059453,-6.658808907059453,0.040233298335808916,0.040233298335808916 -1.5346938775510204,-3.6143547311296556,-3.6143547311296556,0.00011540843314801038,0.00011540843314801038,-7.130153527959856,-7.130153527959856,0.044550443487007624,0.044550443487007624 -1.536734693877551,-3.5669924458910085,-3.5669924458910085,0.000102267605200791,0.000102267605200791,-7.601427858868309,-7.601427858868309,0.04917267272263744,0.04917267272263744 -1.5387755102040817,-3.60624340782821,-3.60624340782821,0.00011999026243059361,0.00011999026243059361,-8.072134949913684,-8.072134949913684,0.05409552312635765,0.05409552312635765 -1.5408163265306123,-3.5604353942923495,-3.5604353942923495,0.00013181596073052595,0.00013181596073052595,-8.541738289714415,-8.541738289714415,0.05932056070853382,0.05932056070853382 -1.542857142857143,-3.454752555549378,-3.454752555549378,0.00011491244987154357,0.00011491244987154357,-9.00968746179926,-9.00968746179926,0.06485916018948895,0.06485916018948895 -1.5448979591836736,-3.544005838614094,-3.544005838614094,0.00010702740412784305,0.00010702740412784305,-9.475853592775977,-9.475853592775977,0.07075248638511719,0.07075248638511719 -1.546938775510204,-3.5623230336588785,-3.5623230336588785,0.00010816814023194106,0.00010816814023194106,-9.940318817446165,-9.940318817446165,0.07704506075924952,0.07704506075924952 -1.5489795918367348,-3.6011566257790766,-3.6011566257790766,0.00012496531862237102,0.00012496531862237102,-10.403416023613232,-10.403416023613232,0.08378448192370806,0.08378448192370806 -1.5510204081632653,-3.482489853543019,-3.482489853543019,0.00012354222835381888,0.00012354222835381888,-10.865669592234106,-10.865669592234106,0.09100993302716201,0.09100993302716201 -1.5530612244897959,-3.678815049572731,-3.678815049572731,0.00010691941062436018,0.00010691941062436018,-11.327632226238688,-11.327632226238688,0.09873639433090263,0.09873639433090263 -1.5551020408163265,-3.718546611203486,-3.718546611203486,0.00010615967723532668,0.00010615967723532668,-11.789682564353901,-11.789682564353901,0.10695199118573478,0.10695199118573478 -1.5571428571428572,-3.780429055882224,-3.780429055882224,0.00010685172964140358,0.00010685172964140358,-12.252090892858028,-12.252090892858028,0.11562249423228714,0.11562249423228714 -1.5591836734693876,-3.8188975672882814,-3.8188975672882814,0.00010644251007637748,0.00010644251007637748,-12.714817460454839,-12.714817460454839,0.12468464357551905,0.12468464357551905 -1.5612244897959184,-3.819876240194336,-3.819876240194336,0.00010816936508194937,0.00010816936508194937,-13.177673063400098,-13.177673063400098,0.13406515905497216,0.13406515905497216 -1.563265306122449,-3.9468449107423353,-3.9468449107423353,0.00010108681507259248,0.00010108681507259248,-13.64037131522189,-13.64037131522189,0.14369210588375886,0.14369210588375886 -1.5653061224489797,-3.910526784601083,-3.910526784601083,0.00011420060703127912,0.00011420060703127912,-14.102490011494568,-14.102490011494568,0.1534964964823662,0.1534964964823662 -1.5673469387755101,-3.9543407748013624,-3.9543407748013624,0.00010581982479569669,0.00010581982479569669,-14.563630548919267,-14.563630548919267,0.16342312088662989,0.16342312088662989 -1.569387755102041,-3.986205574668738,-3.986205574668738,0.00010355938131216114,0.00010355938131216114,-15.023506631692968,-15.023506631692968,0.1734370689717129,0.1734370689717129 -1.5714285714285714,-3.9668971619987223,-3.9668971619987223,0.00010238130644114543,0.00010238130644114543,-15.48179895525881,-15.48179895525881,0.18351489605532284,0.18351489605532284 -1.573469387755102,-4.004088225363412,-4.004088225363412,9.754962850768873e-05,9.754962850768873e-05,-15.93836393440682,-15.93836393440682,0.19364982676869388,0.19364982676869388 -1.5755102040816327,-4.012221051135004,-4.012221051135004,9.917151202164403e-05,9.917151202164403e-05,-16.393228149207875,-16.393228149207875,0.20384400572901853,0.20384400572901853 -1.577551020408163,-4.122449099184992,-4.122449099184992,9.918986653019673e-05,9.918986653019673e-05,-16.846335088496456,-16.846335088496456,0.21409069528245403,0.21409069528245403 -1.579591836734694,-4.111782807545985,-4.111782807545985,0.00010014412900464365,0.00010014412900464365,-17.297816487127537,-17.297816487127537,0.22438324035592416,0.22438324035592416 -1.5816326530612246,-4.170423136612534,-4.170423136612534,0.00010438804777797795,0.00010438804777797795,-17.747783706042767,-17.747783706042767,0.2346947318397837,0.2346947318397837 -1.5836734693877552,-4.206459253325931,-4.206459253325931,0.00010241653783959297,0.00010241653783959297,-18.196261176763286,-18.196261176763286,0.24498701263460618,0.24498701263460618 -1.5857142857142859,-4.238540199498804,-4.238540199498804,0.00010025499860741743,0.00010025499860741743,-18.643308939639024,-18.643308939639024,0.2552131751380388,0.2552131751380388 -1.5877551020408165,-4.277208701260284,-4.277208701260284,9.648061131055366e-05,9.648061131055366e-05,-19.088843880358176,-19.088843880358176,0.2653236634963358,0.2653236634963358 -1.5897959183673471,-4.289337270415567,-4.289337270415567,9.778397350884107e-05,9.778397350884107e-05,-19.53282486982386,-19.53282486982386,0.27527833185301487,0.27527833185301487 -1.5918367346938775,-4.347672351434972,-4.347672351434972,9.610806516716337e-05,9.610806516716337e-05,-19.975164791691714,-19.975164791691714,0.28504046095177094,0.28504046095177094 -1.593877551020408,-4.3591717112616095,-4.3591717112616095,9.677422383097385e-05,9.677422383097385e-05,-20.41577652673766,-20.41577652673766,0.2945960117645445,0.2945960117645445 -1.5959183673469388,-4.3458036665852955,-4.3458036665852955,9.772820123846365e-05,9.772820123846365e-05,-20.854657816627263,-20.854657816627263,0.30393855442884865,0.30393855442884865 -1.5979591836734695,-4.390185022892015,-4.390185022892015,0.00010071462672237498,0.00010071462672237498,-21.291712654787094,-21.291712654787094,0.3130691727311326,0.3130691727311326 -1.6,-4.45466875401182,-4.45466875401182,0.00010004843712907251,0.00010004843712907251,-21.727076808018897,-21.727076808018897,0.3219945998081182,0.3219945998081182 diff --git a/sparameters/rotate_f258530e_04b25a3b.yml b/sparameters/rotate_f258530e_04b25a3b.yml deleted file mode 100644 index caf80495..00000000 --- a/sparameters/rotate_f258530e_04b25a3b.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: 23 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 166.456303358078 -compute_time_minutes: 2.774271722634633 diff --git a/sparameters/rotate_f258530e_08088987.csv b/sparameters/rotate_f258530e_08088987.csv deleted file mode 100644 index dedd9b1d..00000000 --- a/sparameters/rotate_f258530e_08088987.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,0.807011714892626,0.807011714892626,0.008553532378577335,0.008553532378577335,2.296376260618023,2.296376260618023,0.003483858582986417,0.003483858582986417 -1.2023529411764706,1.368786755985446,1.368786755985446,0.04279097935526494,0.04279097935526494,4.5439962476617985,4.5439962476617985,0.0009362189262342802,0.0009362189262342802 -1.204705882352941,2.402686225928956,2.402686225928956,0.005086138503497961,0.005086138503497961,3.1407192627283664,3.1407192627283664,0.0034656666489806336,0.0034656666489806336 -1.2070588235294117,0.1540604302182015,0.1540604302182015,0.005608015794810356,0.005608015794810356,2.105687931802757,2.105687931802757,0.004598867274263437,0.004598867274263437 -1.2094117647058824,1.7202978539529168,1.7202978539529168,0.0027261701597173517,0.0027261701597173517,1.0910929775708056,1.0910929775708056,0.005156357074490252,0.005156357074490252 -1.2117647058823529,4.434018018448995,4.434018018448995,0.003123108871242302,0.003123108871242302,-0.03553537140366653,-0.03553537140366653,0.004460563565357769,0.004460563565357769 -1.2141176470588235,5.643653064439566,5.643653064439566,0.027098391550005797,0.027098391550005797,-1.0369546076325862,-1.0369546076325862,0.0017075578951404457,0.0017075578951404457 -1.216470588235294,3.3718051690414,3.3718051690414,0.001991086459715569,0.001991086459715569,0.05642963526629356,0.05642963526629356,0.002907480789795061,0.002907480789795061 -1.2188235294117646,4.6271406871095655,4.6271406871095655,0.002538627339749496,0.002538627339749496,-1.192258585028226,-1.192258585028226,0.00682607332278978,0.00682607332278978 -1.2211764705882353,5.076174390638672,5.076174390638672,0.003641261848618135,0.003641261848618135,-2.623230139173649,-2.623230139173649,0.008378815979140936,0.008378815979140936 -1.2235294117647058,6.474231520052326,6.474231520052326,0.001334596846710172,0.001334596846710172,-4.1590805579583,-4.1590805579583,0.006846520075263875,0.006846520075263875 -1.2258823529411764,9.221559876263475,9.221559876263475,0.006511946405604689,0.006511946405604689,-6.052465844185113,-6.052465844185113,0.0033733984532386884,0.0033733984532386884 -1.228235294117647,9.434527359489447,9.434527359489447,0.00612590662840514,0.00612590662840514,-9.11138702716828,-9.11138702716828,0.002844990335403034,0.002844990335403034 -1.2305882352941175,9.569120889551112,9.569120889551112,0.001806677325101079,0.001806677325101079,-11.22415508291651,-11.22415508291651,0.005048998252300381,0.005048998252300381 -1.2329411764705882,9.925028300064112,9.925028300064112,0.0021359296396313804,0.0021359296396313804,-13.129815712597056,-13.129815712597056,0.006039015104704266,0.006039015104704266 -1.2352941176470589,6.872427403534442,6.872427403534442,0.0007646546048426575,0.0007646546048426575,-15.08731785492466,-15.08731785492466,0.006754016982281032,0.006754016982281032 -1.2376470588235293,7.763401068845607,7.763401068845607,0.0004604045456753998,0.0004604045456753998,-16.925085693106666,-16.925085693106666,0.0074887988050121364,0.0074887988050121364 -1.24,8.69787691681255,8.69787691681255,0.00020821537435807206,0.00020821537435807206,-18.63284211531646,-18.63284211531646,0.0066241620383949845,0.0066241620383949845 -1.2423529411764704,5.724978528055101,5.724978528055101,0.002867839094197925,0.002867839094197925,-20.548679257139913,-20.548679257139913,0.00358116054000315,0.00358116054000315 -1.244705882352941,8.129313079404767,8.129313079404767,0.001638031462733971,0.001638031462733971,-23.592501680692536,-23.592501680692536,0.0039224880536668635,0.0039224880536668635 -1.2470588235294118,6.846078375957322,6.846078375957322,0.0016800991525736996,0.0016800991525736996,-25.341813659877406,-25.341813659877406,0.008319933327565693,0.008319933327565693 -1.2494117647058822,7.29770474294131,7.29770474294131,0.00160696170725991,0.00160696170725991,-26.68471996980713,-26.68471996980713,0.010289401694376048,0.010289401694376048 -1.251764705882353,6.221666341482253,6.221666341482253,0.001124595681197876,0.001124595681197876,-27.79784716698377,-27.79784716698377,0.008393515215614997,0.008393515215614997 -1.2541176470588236,4.642148224875321,4.642148224875321,0.0023550175482836395,0.0023550175482836395,-28.251363385326542,-28.251363385326542,0.004800869512327692,0.004800869512327692 -1.256470588235294,5.344240726598951,5.344240726598951,0.0018037253180808132,0.0018037253180808132,-28.231630407023594,-28.231630407023594,0.0078036772415163306,0.0078036772415163306 -1.2588235294117647,8.222236909308345,8.222236909308345,0.0004877487612628949,0.0004877487612628949,-28.992403537730144,-28.992403537730144,0.013418790698400995,0.013418790698400995 -1.2611764705882353,11.21431516281071,11.21431516281071,0.00041375323615200013,0.00041375323615200013,-29.831087411456,-29.831087411456,0.01747210908096698,0.01747210908096698 -1.2635294117647058,10.370261611175595,10.370261611175595,0.0005300290352691917,0.0005300290352691917,-30.59864514113908,-30.59864514113908,0.020924858713493536,0.020924858713493536 -1.2658823529411765,10.966638769709792,10.966638769709792,0.0003993398361424658,0.0003993398361424658,-31.35319258452815,-31.35319258452815,0.025632142721983556,0.025632142721983556 -1.268235294117647,8.06390217430136,8.06390217430136,0.0003103906959006519,0.0003103906959006519,-32.166831467598094,-32.166831467598094,0.0309089838929869,0.0309089838929869 -1.2705882352941176,7.731749517696859,7.731749517696859,0.00012376349582385773,0.00012376349582385773,-33.014743486411334,-33.014743486411334,0.03442691394502889,0.03442691394502889 -1.2729411764705882,5.062733419885699,5.062733419885699,0.0004000965735962034,0.0004000965735962034,-33.830537324510914,-33.830537324510914,0.03512277587179615,0.03512277587179615 -1.2752941176470587,7.877203294504424,7.877203294504424,0.00010101872030726536,0.00010101872030726536,-34.565128698578434,-34.565128698578434,0.03449132829370805,0.03449132829370805 -1.2776470588235294,10.854365087704714,10.854365087704714,1.245870638221989e-05,1.245870638221989e-05,-35.234244793308065,-35.234244793308065,0.035097173446524535,0.035097173446524535 -1.28,13.18220000148259,13.18220000148259,0.00020829606221142656,0.00020829606221142656,-35.910503396812906,-35.910503396812906,0.03745452508244393,0.03745452508244393 -1.2823529411764705,13.779192894701307,13.779192894701307,0.00019720665684464384,0.00019720665684464384,-36.618217512687245,-36.618217512687245,0.03974207589128196,0.03974207589128196 -1.2847058823529411,15.51985094058173,15.51985094058173,0.00018259213983086247,0.00018259213983086247,-37.3221477972971,-37.3221477972971,0.04079239975338269,0.04079239975338269 -1.2870588235294118,14.355300407729313,14.355300407729313,0.00013358155781470469,0.00013358155781470469,-37.99356431772501,-37.99356431772501,0.04143393627923781,0.04143393627923781 -1.2894117647058823,15.129386824453436,15.129386824453436,0.00018568463534605217,0.00018568463534605217,-38.64520397444593,-38.64520397444593,0.042945168450990986,0.042945168450990986 -1.291764705882353,14.073574018804141,14.073574018804141,0.00016940717742144765,0.00016940717742144765,-39.30736666083449,-39.30736666083449,0.045182431785708535,0.045182431785708535 -1.2941176470588236,13.769025575808953,13.769025575808953,0.0001358316866728529,0.0001358316866728529,-39.98123147121034,-39.98123147121034,0.04705627681990855,0.04705627681990855 -1.296470588235294,11.415838456388947,11.415838456388947,5.620015025312249e-05,5.620015025312249e-05,-40.64658359584123,-40.64658359584123,0.04823253165146002,0.04823253165146002 -1.2988235294117647,9.001267185099817,9.001267185099817,0.0001715514820120571,0.0001715514820120571,-41.29423217753889,-41.29423217753889,0.04943462560788455,0.04943462560788455 -1.3011764705882352,8.479936260660045,8.479936260660045,0.0001604450428311166,0.0001604450428311166,-41.93643574868419,-41.93643574868419,0.051260823270115705,0.051260823270115705 -1.3035294117647058,7.65314737522255,7.65314737522255,0.00016913412725633647,0.00016913412725633647,-42.5859336927857,-42.5859336927857,0.05333014965610897,0.05333014965610897 -1.3058823529411765,6.649758819679338,6.649758819679338,8.839635076958975e-05,8.839635076958975e-05,-43.23843246994399,-43.23843246994399,0.054986754659443075,0.054986754659443075 -1.308235294117647,9.656667133634926,9.656667133634926,3.9103979838535465e-05,3.9103979838535465e-05,-43.88240368927493,-43.88240368927493,0.05626689663440249,0.05626689663440249 -1.3105882352941176,8.844607449060014,8.844607449060014,5.385999828548727e-05,5.385999828548727e-05,-44.516522725501254,-44.516522725501254,0.057705948019283734,0.057705948019283734 -1.3129411764705883,7.1111516072375585,7.1111516072375585,0.00011345145649713807,0.00011345145649713807,-45.14945586847556,-45.14945586847556,0.05954905668571816,0.05954905668571816 -1.3152941176470587,6.972950135950409,6.972950135950409,0.0001454083796344571,0.0001454083796344571,-45.78621241485128,-45.78621241485128,0.06139854066012402,0.06139854066012402 -1.3176470588235294,6.1990108383412315,6.1990108383412315,0.00017456178092050073,0.00017456178092050073,-46.42226954571133,-46.42226954571133,0.0628961517518495,0.0628961517518495 -1.32,6.227397526014854,6.227397526014854,0.00013765399451282496,0.00013765399451282496,-47.05149954243483,-47.05149954243483,0.06417085195500272,0.06417085195500272 -1.3223529411764705,7.260852576946542,7.260852576946542,0.0001097357780681988,0.0001097357780681988,-47.67472150539316,-47.67472150539316,0.06561939972219104,0.06561939972219104 -1.3247058823529412,7.109438970512578,7.109438970512578,0.00010125391126256591,0.00010125391126256591,-48.29764615197638,-48.29764615197638,0.0672925390626171,0.0672925390626171 -1.3270588235294118,7.35604765241915,7.35604765241915,0.00016198977006829477,0.00016198977006829477,-48.92213666625144,-48.92213666625144,0.0688632449976522,0.0688632449976522 -1.3294117647058823,7.011471543101804,7.011471543101804,0.00018562536766031387,0.00018562536766031387,-49.544679812901855,-49.544679812901855,0.07013652511876285,0.07013652511876285 -1.331764705882353,7.444174778893708,7.444174778893708,0.00010247389429078596,0.00010247389429078596,-50.16175360971969,-50.16175360971969,0.07126546609493317,0.07126546609493317 -1.3341176470588234,7.736723849333732,7.736723849333732,0.00012638773686619422,0.00012638773686619422,-50.774642687087606,-50.774642687087606,0.07251005067992024,0.07251005067992024 -1.336470588235294,7.889657791469948,7.889657791469948,9.979808355024273e-05,9.979808355024273e-05,-51.38703940175314,-51.38703940175314,0.07384894719419066,0.07384894719419066 -1.3388235294117647,6.65941676889309,6.65941676889309,0.00012765758102236842,0.00012765758102236842,-51.9998239349431,-51.9998239349431,0.07504452046986923,0.07504452046986923 -1.3411764705882352,7.186921831120079,7.186921831120079,8.308022835094385e-05,8.308022835094385e-05,-52.61018562362589,-52.61018562362589,0.07596967381357238,0.07596967381357238 -1.3435294117647059,7.03547499759509,7.03547499759509,7.134750257092836e-06,7.134750257092836e-06,-53.21611823220589,-53.21611823220589,0.07676170648615352,0.07676170648615352 -1.3458823529411765,7.743710381424416,7.743710381424416,1.7223644936995608e-05,1.7223644936995608e-05,-53.81859638206254,-53.81859638206254,0.0775929854831393,0.0775929854831393 -1.348235294117647,6.63073306299421,6.63073306299421,3.509222655936299e-05,3.509222655936299e-05,-54.420307423090534,-54.420307423090534,0.07844790705978018,0.07844790705978018 -1.3505882352941176,5.310278486940394,5.310278486940394,2.3197624403435462e-05,2.3197624403435462e-05,-55.02165559739942,-55.02165559739942,0.07912931724162632,0.07912931724162632 -1.3529411764705883,5.83939899893233,5.83939899893233,6.097261606209876e-05,6.097261606209876e-05,-55.62056634269719,-55.62056634269719,0.07953214126436157,0.07953214126436157 -1.3552941176470588,6.306798307022502,6.306798307022502,5.466993282068421e-05,5.466993282068421e-05,-56.215491687862276,-56.215491687862276,0.07976548851190132,0.07976548851190132 -1.3576470588235294,5.9597194837949194,5.9597194837949194,8.194821732508406e-05,8.194821732508406e-05,-56.80703858485765,-56.80703858485765,0.07996507216731813,0.07996507216731813 -1.3599999999999999,6.0236402605571016,6.0236402605571016,6.858440125177157e-05,6.858440125177157e-05,-57.397076094356514,-57.397076094356514,0.08011847790083362,0.08011847790083362 -1.3623529411764705,6.140237770515872,6.140237770515872,0.00010294757044045993,0.00010294757044045993,-57.985961992737344,-57.985961992737344,0.08006213578349489,0.08006213578349489 -1.3647058823529412,5.728330754649141,5.728330754649141,9.939742598161664e-05,9.939742598161664e-05,-58.57191438930539,-58.57191438930539,0.07971726682863657,0.07971726682863657 -1.3670588235294117,6.005289683970324,6.005289683970324,7.979177118605274e-05,7.979177118605274e-05,-59.15328481855239,-59.15328481855239,0.079161827967573,0.079161827967573 -1.3694117647058823,6.481610801074795,6.481610801074795,5.776615690835069e-05,5.776615690835069e-05,-59.73017525756492,-59.73017525756492,0.07853404965950295,0.07853404965950295 -1.371764705882353,6.105718199299973,6.105718199299973,4.2948627903117944e-05,4.2948627903117944e-05,-60.30390211557668,-60.30390211557668,0.07785415355947635,0.07785415355947635 -1.3741176470588234,6.195131356597808,6.195131356597808,0.00010523433748498683,0.00010523433748498683,-60.874772922733264,-60.874772922733264,0.07703165849117712,0.07703165849117712 -1.3764705882352941,5.8491368263773955,5.8491368263773955,5.0236990278644634e-05,5.0236990278644634e-05,-61.44146904837595,-61.44146904837595,0.0760159910290322,0.0760159910290322 -1.3788235294117648,5.878581043401644,5.878581043401644,4.669329387452694e-05,4.669329387452694e-05,-62.00238991572842,-62.00238991572842,0.07488544300245473,0.07488544300245473 -1.3811764705882352,6.165581899736252,6.165581899736252,5.486399680383442e-05,5.486399680383442e-05,-62.55758179121729,-62.55758179121729,0.07380169423625334,0.07380169423625334 -1.383529411764706,5.906035277012059,5.906035277012059,4.4153341356272976e-05,4.4153341356272976e-05,-63.108559860620616,-63.108559860620616,0.07282211714491252,0.07282211714491252 -1.3858823529411763,5.596507119649487,5.596507119649487,5.826070398208369e-05,5.826070398208369e-05,-63.656412586658796,-63.656412586658796,0.07189517931952671,0.07189517931952671 -1.388235294117647,5.196034441514633,5.196034441514633,8.750832243682727e-05,8.750832243682727e-05,-64.20075215930008,-64.20075215930008,0.07095806655393537,0.07095806655393537 -1.3905882352941177,4.912320697858173,4.912320697858173,0.000117671335475024,0.000117671335475024,-64.74056471788354,-64.74056471788354,0.07004521467459901,0.07004521467459901 -1.3929411764705881,4.826376225077213,4.826376225077213,7.686018577782794e-05,7.686018577782794e-05,-65.27600756887152,-65.27600756887152,0.0692542673041624,0.0692542673041624 -1.3952941176470588,5.183337545101038,5.183337545101038,7.792186361592662e-05,7.792186361592662e-05,-65.8086566360083,-65.8086566360083,0.06863839780712028,0.06863839780712028 -1.3976470588235295,5.072740162240588,5.072740162240588,8.445829501171079e-05,8.445829501171079e-05,-66.3398664846686,-66.3398664846686,0.06812525587803255,0.06812525587803255 -1.4,4.980112864082867,4.980112864082867,9.430178296188035e-05,9.430178296188035e-05,-66.86955279285777,-66.86955279285777,0.067619117713384,0.067619117713384 -1.4023529411764706,4.883240412055713,4.883240412055713,0.00011108772223653531,0.00011108772223653531,-67.39668674381802,-67.39668674381802,0.06710612374043955,0.06710612374043955 -1.4047058823529412,4.723896826228447,4.723896826228447,0.00011207628008270059,0.00011207628008270059,-67.92091213029943,-67.92091213029943,0.06664651316348143,0.06664651316348143 -1.4070588235294117,4.764463942321416,4.764463942321416,0.00010165989367400986,0.00010165989367400986,-68.44319314557909,-68.44319314557909,0.0662867492750076,0.0662867492750076 -1.4094117647058824,4.951015607763199,4.951015607763199,7.983828268146845e-05,7.983828268146845e-05,-68.96476305560891,-68.96476305560891,0.06597858149861971,0.06597858149861971 -1.4117647058823528,4.920528728795025,4.920528728795025,0.00013499070349527403,0.00013499070349527403,-69.48570222844168,-69.48570222844168,0.06562722287898431,0.06562722287898431 -1.4141176470588235,4.977081392126011,4.977081392126011,0.00012717849018521724,0.00012717849018521724,-70.00490553001381,-70.00490553001381,0.06518642071099612,0.06518642071099612 -1.4164705882352941,5.1006884874748755,5.1006884874748755,0.00011771284630820039,0.00011771284630820039,-70.52139208870919,-70.52139208870919,0.06468694374984928,0.06468694374984928 -1.4188235294117646,4.786429017888832,4.786429017888832,8.350528916235234e-05,8.350528916235234e-05,-71.03533540751788,-71.03533540751788,0.06418837098077439,0.06418837098077439 -1.4211764705882353,4.649616174767718,4.649616174767718,6.35290220639854e-05,6.35290220639854e-05,-71.54753315219676,-71.54753315219676,0.06369775646414269,0.06369775646414269 -1.423529411764706,4.8994691673899045,4.8994691673899045,8.385327797529365e-05,8.385327797529365e-05,-72.05843781624986,-72.05843781624986,0.06315235857234841,0.06315235857234841 -1.4258823529411764,4.647112491401918,4.647112491401918,8.983075706733977e-05,8.983075706733977e-05,-72.56736593353742,-72.56736593353742,0.06250320158904903,0.06250320158904903 -1.428235294117647,4.1617214204567645,4.1617214204567645,9.470102442399352e-05,9.470102442399352e-05,-73.0732889622491,-73.0732889622491,0.061762233880105585,0.061762233880105585 -1.4305882352941177,4.139632928890684,4.139632928890684,9.160485417915473e-05,9.160485417915473e-05,-73.57596924111054,-73.57596924111054,0.0609816807787043,0.0609816807787043 -1.4329411764705882,4.021052994071394,4.021052994071394,7.976862511337389e-05,7.976862511337389e-05,-74.07591955978553,-74.07591955978553,0.06018828001958286,0.06018828001958286 -1.4352941176470588,4.175148458666248,4.175148458666248,5.804266704318901e-05,5.804266704318901e-05,-74.57376720095685,-74.57376720095685,0.05934495100856191,0.05934495100856191 -1.4376470588235293,4.157448050418823,4.157448050418823,0.0001054193717211604,0.0001054193717211604,-75.06908209012504,-75.06908209012504,0.05839440910468926,0.05839440910468926 -1.44,4.183895735451729,4.183895735451729,0.00011980989464521714,0.00011980989464521714,-75.56065362675014,-75.56065362675014,0.05732621684353207,0.05732621684353207 -1.4423529411764706,4.054117935872224,4.054117935872224,0.00012595433675478604,0.00012595433675478604,-76.04739727089317,-76.04739727089317,0.05618766728749109,0.05618766728749109 -1.444705882352941,3.909079097967775,3.909079097967775,0.00014171783732198396,0.00014171783732198396,-76.52933779458805,-76.52933779458805,0.05504022858322754,0.05504022858322754 -1.4470588235294117,3.88928589023419,3.88928589023419,0.00011108455300093683,0.00011108455300093683,-77.00694279634843,-77.00694279634843,0.05389910557128157,0.05389910557128157 -1.4494117647058824,4.018149657755548,4.018149657755548,0.0001405434703485451,0.0001405434703485451,-77.480416043225,-77.480416043225,0.05273447869479405,0.05273447869479405 -1.4517647058823528,4.067728025087476,4.067728025087476,0.00015088514092622614,0.00015088514092622614,-77.94882808857706,-77.94882808857706,0.051523510304907615,0.051523510304907615 -1.4541176470588235,4.117405477367258,4.117405477367258,0.00014839850586634943,0.00014839850586634943,-78.41076291952434,-78.41076291952434,0.05029302083065444,0.05029302083065444 -1.4564705882352942,4.01265865892103,4.01265865892103,0.00015870530440307052,0.00015870530440307052,-78.86546214977078,-78.86546214977078,0.04911520130052177,0.04911520130052177 -1.4588235294117646,4.035261376753702,4.035261376753702,0.00012157502717702424,0.00012157502717702424,-79.31306765704869,-79.31306765704869,0.04804618975253625,0.04804618975253625 -1.4611764705882353,4.048629086348923,4.048629086348923,0.00012261209505434184,0.00012261209505434184,-79.7537780566347,-79.7537780566347,0.047109304323324115,0.047109304323324115 -1.4635294117647057,4.182095199401099,4.182095199401099,0.00011288938329842719,0.00011288938329842719,-80.18721063659025,-80.18721063659025,0.04632313178810604,0.04632313178810604 -1.4658823529411764,4.072796817762754,4.072796817762754,0.00012258427340876892,0.00012258427340876892,-80.61258112270092,-80.61258112270092,0.04575296724545313,0.04575296724545313 -1.468235294117647,3.9162330980496303,3.9162330980496303,0.00013584026263228354,0.00013584026263228354,-81.03037682117503,-81.03037682117503,0.045529874505047994,0.045529874505047994 -1.4705882352941178,3.9795808663348744,3.9795808663348744,9.316907803330081e-05,9.316907803330081e-05,-81.4432694584805,-81.4432694584805,0.04575910074371809,0.04575910074371809 -1.4729411764705882,3.8406414104443205,3.8406414104443205,8.792940357334532e-05,8.792940357334532e-05,-81.8553593569188,-81.8553593569188,0.04646316014657845,0.04646316014657845 -1.4752941176470589,3.879093984355738,3.879093984355738,0.00010230038237385749,0.00010230038237385749,-82.26975368692074,-82.26975368692074,0.04755991096252332,0.04755991096252332 -1.4776470588235295,3.8681935561635035,3.8681935561635035,0.00012103395352586773,0.00012103395352586773,-82.68736750358474,-82.68736750358474,0.04892619897364223,0.04892619897364223 -1.48,3.738806665655684,3.738806665655684,0.00011127254480145275,0.00011127254480145275,-83.10735743296505,-83.10735743296505,0.0504683392391037,0.0504683392391037 -1.4823529411764707,3.637632406217555,3.637632406217555,0.0001247811441397127,0.0001247811441397127,-83.52808869287126,-83.52808869287126,0.05215277820239069,0.05215277820239069 -1.484705882352941,3.3253147951798585,3.3253147951798585,9.345968476385453e-05,9.345968476385453e-05,-83.94821196063293,-83.94821196063293,0.05400619043243137,0.05400619043243137 -1.4870588235294118,3.5373162071735114,3.5373162071735114,0.00010945183321160401,0.00010945183321160401,-84.36683798225575,-84.36683798225575,0.05611298003338795,0.05611298003338795 -1.4894117647058822,3.3777560490868765,3.3777560490868765,9.420265645734481e-05,9.420265645734481e-05,-84.78440254944911,-84.78440254944911,0.0586105651836033,0.0586105651836033 -1.4917647058823529,3.495558118265242,3.495558118265242,0.00011560181246349243,0.00011560181246349243,-85.2031470437137,-85.2031470437137,0.06164166028928013,0.06164166028928013 -1.4941176470588236,3.417565601483894,3.417565601483894,0.00012131310612469483,0.00012131310612469483,-85.62678270590293,-85.62678270590293,0.06525226089743541,0.06525226089743541 -1.4964705882352942,3.355910107396428,3.355910107396428,0.0001348896223033054,0.0001348896223033054,-86.05830953718673,-86.05830953718673,0.06928732621730235,0.06928732621730235 -1.4988235294117647,3.0893803231909978,3.0893803231909978,0.00013093804357969257,0.00013093804357969257,-86.49781347714901,-86.49781347714901,0.073419765939352,0.073419765939352 -1.5011764705882353,3.2404088193148186,3.2404088193148186,0.00012361714432927243,0.00012361714432927243,-86.94168718587694,-86.94168718587694,0.07730627223837373,0.07730627223837373 -1.5035294117647058,3.3476350945868636,3.3476350945868636,0.00010795802792488961,0.00010795802792488961,-87.38403921433269,-87.38403921433269,0.0808095429474394,0.0808095429474394 -1.5058823529411764,3.3548519998846094,3.3548519998846094,0.00012571396982944522,0.00012571396982944522,-87.81965355766181,-87.81965355766181,0.0841531438185487,0.0841531438185487 -1.5082352941176471,3.2871025988845326,3.2871025988845326,0.00012701895231515722,0.00012701895231515722,-88.24717575912767,-88.24717575912767,0.08787667142616835,0.08787667142616835 -1.5105882352941176,3.152415409523707,3.152415409523707,0.00013689532511613169,0.00013689532511613169,-88.67047507857475,-88.67047507857475,0.09255047980030279,0.09255047980030279 -1.5129411764705882,3.060573262474435,3.060573262474435,0.0001297276996044887,0.0001297276996044887,-89.09671962665955,-89.09671962665955,0.09841974247262777,0.09841974247262777 -1.5152941176470587,3.02319929088294,3.02319929088294,0.0001168868439393117,0.0001168868439393117,-89.53148796999966,-89.53148796999966,0.10521425639753722,0.10521425639753722 -1.5176470588235293,3.0621319798555127,3.0621319798555127,0.00010430457276882626,0.00010430457276882626,-89.97564657196554,-89.97564657196554,0.11231108600141168,0.11231108600141168 -1.52,3.09772547665851,3.09772547665851,0.00011648245847293566,0.00011648245847293566,-90.42538270650977,-90.42538270650977,0.11909275553320525,0.11909275553320525 -1.5223529411764707,3.014017992247262,3.014017992247262,0.00012644145457294212,0.00012644145457294212,-90.87486428186006,-90.87486428186006,0.12529323180698287,0.12529323180698287 -1.5247058823529411,3.007149558381954,3.007149558381954,0.00013052731083205063,0.00013052731083205063,-91.31913812634016,-91.31913812634016,0.13113974132893294,0.13113974132893294 -1.5270588235294118,2.9255988762958305,2.9255988762958305,0.00012398218117833464,0.00012398218117833464,-91.75632155705675,-91.75632155705675,0.13726679032425984,0.13726679032425984 -1.5294117647058822,2.8488171311824773,2.8488171311824773,0.00011750963054248388,0.00011750963054248388,-92.18846641036102,-92.18846641036102,0.14440396396866115,0.14440396396866115 -1.531764705882353,2.797892113207796,2.797892113207796,0.00011376106104671527,0.00011376106104671527,-92.62038349419706,-92.62038349419706,0.15301554042076335,0.15301554042076335 -1.5341176470588236,2.806323467716074,2.806323467716074,0.0001159666171916427,0.0001159666171916427,-93.0568211148213,-93.0568211148213,0.16306352770926164,0.16306352770926164 -1.536470588235294,2.788858762790941,2.788858762790941,0.000113598882485869,0.000113598882485869,-93.50016293997615,-93.50016293997615,0.1740749483043731,0.1740749483043731 -1.5388235294117647,2.780187040048368,2.780187040048368,0.00013257768530267202,0.00013257768530267202,-93.94978439949476,-93.94978439949476,0.18539102384413883,0.18539102384413883 -1.5411764705882351,2.6889117169281618,2.6889117169281618,0.00013044804104737643,0.00013044804104737643,-94.40316956692678,-94.40316956692678,0.19646468351259763,0.19646468351259763 -1.5435294117647058,2.6392809568177005,2.6392809568177005,0.0001222039157952423,0.0001222039157952423,-94.85704692319719,-94.85704692319719,0.20705949673321475,0.20705949673321475 -1.5458823529411767,2.630050036114682,2.630050036114682,0.0001199334240348062,0.0001199334240348062,-95.30887890572798,-95.30887890572798,0.2173033759856663,0.2173033759856663 -1.5482352941176472,2.6243611456285185,2.6243611456285185,0.00011495272498407937,0.00011495272498407937,-95.75741440801205,-95.75741440801205,0.22760046930308947,0.22760046930308947 -1.5505882352941176,2.6114915053487913,2.6114915053487913,0.00011127303562441308,0.00011127303562441308,-96.20299106357808,-96.20299106357808,0.2384590396472334,0.2384590396472334 -1.5529411764705883,2.6043611425635933,2.6043611425635933,0.00012120000916337021,0.00012120000916337021,-96.64708363836618,-96.64708363836618,0.2502818109058251,0.2502818109058251 -1.5552941176470587,2.5427092440921304,2.5427092440921304,0.00011800216229809705,0.00011800216229809705,-97.09166585949428,-97.09166585949428,0.2632189469999694,0.2632189469999694 -1.5576470588235294,2.507480293812901,2.507480293812901,0.00011718682762784825,0.00011718682762784825,-97.53824557962058,-97.53824557962058,0.2771201899367798,0.2771201899367798 -1.5599999999999998,2.459966072607978,2.459966072607978,0.00011256439027167167,0.00011256439027167167,-97.98748675780496,-97.98748675780496,0.29163489395445275,0.29163489395445275 -1.5623529411764705,2.464367410676874,2.464367410676874,0.0001072600182710502,0.0001072600182710502,-98.43907460542292,-98.43907460542292,0.30632901828584047,0.30632901828584047 -1.5647058823529412,2.4421329371711216,2.4421329371711216,0.00010410676060059501,0.00010410676060059501,-98.89209215576085,-98.89209215576085,0.3208365310269058,0.3208365310269058 -1.5670588235294118,2.434772204053701,2.434772204053701,0.00010350016122521079,0.00010350016122521079,-99.3453545490217,-99.3453545490217,0.33496232051251873,0.33496232051251873 -1.5694117647058823,2.3879369124412646,2.3879369124412646,0.00010845101071886515,0.00010845101071886515,-99.79785712873353,-99.79785712873353,0.3486912313042294,0.3486912313042294 -1.571764705882353,2.3313221599041274,2.3313221599041274,0.00010583721117560428,0.00010583721117560428,-100.24892502814976,-100.24892502814976,0.3621567275038592,0.3621567275038592 -1.5741176470588236,2.275391758113616,2.275391758113616,0.00010649080998459883,0.00010649080998459883,-100.6984044102706,-100.6984044102706,0.37557394621037976,0.37557394621037976 -1.576470588235294,2.2092475374598086,2.2092475374598086,0.00010269779485050606,0.00010269779485050606,-101.14642665150664,-101.14642665150664,0.389141019357825,0.389141019357825 -1.5788235294117647,2.1055376302358955,2.1055376302358955,0.00010237700611781253,0.00010237700611781253,-101.59338657253458,-101.59338657253458,0.402996153578159,0.402996153578159 -1.5811764705882352,2.1900841605662387,2.1900841605662387,9.66940596627112e-05,9.66940596627112e-05,-102.03981925483515,-102.03981925483515,0.41717657592558277,0.41717657592558277 -1.5835294117647059,2.1229075030143805,2.1229075030143805,9.754302416805082e-05,9.754302416805082e-05,-102.48602438157324,-102.48602438157324,0.43161811577050824,0.43161811577050824 -1.5858823529411765,2.0355304331813278,2.0355304331813278,0.00010372144551182848,0.00010372144551182848,-102.93228160934736,-102.93228160934736,0.44618036558869484,0.44618036558869484 -1.5882352941176474,2.0522674150357636,2.0522674150357636,0.00010191674643715752,0.00010191674643715752,-103.37867830010505,-103.37867830010505,0.4606755818472792,0.4606755818472792 -1.5905882352941176,2.008667272277529,2.008667272277529,0.00010158075915656362,0.00010158075915656362,-103.82504672168119,-103.82504672168119,0.4749129371663531,0.4749129371663531 -1.592941176470588,1.931715692644524,1.931715692644524,9.952683473357364e-05,9.952683473357364e-05,-104.27117046749406,-104.27117046749406,0.4887198077362137,0.4887198077362137 -1.5952941176470588,1.9018933959906654,1.9018933959906654,9.781921191089869e-05,9.781921191089869e-05,-104.71674171321264,-104.71674171321264,0.5019861416726837,0.5019861416726837 -1.5976470588235294,1.8974789821722793,1.8974789821722793,9.691017645388532e-05,9.691017645388532e-05,-105.16147648357996,-105.16147648357996,0.5146702695096763,0.5146702695096763 -1.6,1.8903642518178991,1.8903642518178991,9.872832747395347e-05,9.872832747395347e-05,-105.60511139110623,-105.60511139110623,0.526789101950274,0.526789101950274 -1.6023529411764705,1.8839556437421403,1.8839556437421403,9.954917683266282e-05,9.954917683266282e-05,-106.0475191926411,-106.0475191926411,0.5383982647985524,0.5383982647985524 -1.6047058823529412,1.826563956088365,1.826563956088365,9.812734879802223e-05,9.812734879802223e-05,-106.4887512602548,-106.4887512602548,0.5495642200003485,0.5495642200003485 -1.6070588235294117,1.8277829652743482,1.8277829652743482,9.775942539024329e-05,9.775942539024329e-05,-106.92880583183418,-106.92880583183418,0.5603263053224322,0.5603263053224322 -1.6094117647058825,1.7840099398901623,1.7840099398901623,9.605005386669213e-05,9.605005386669213e-05,-107.36785024499076,-107.36785024499076,0.5706884442986326,0.5706884442986326 -1.611764705882353,1.7218487383029781,1.7218487383029781,9.472716643480182e-05,9.472716643480182e-05,-107.80596446498063,-107.80596446498063,0.5806181962215825,0.5806181962215825 -1.6141176470588237,1.699954851056997,1.699954851056997,9.027809351866181e-05,9.027809351866181e-05,-108.24316485835494,-108.24316485835494,0.5900527591864664,0.5900527591864664 -1.616470588235294,1.6897260934319605,1.6897260934319605,8.634129269836735e-05,8.634129269836735e-05,-108.67949514854939,-108.67949514854939,0.5989290311936329,0.5989290311936329 -1.6188235294117648,1.6815075565853563,1.6815075565853563,8.527949882823647e-05,8.527949882823647e-05,-109.1149577597851,-109.1149577597851,0.6071830083363998,0.6071830083363998 -1.6211764705882352,1.6433641323269867,1.6433641323269867,8.471071667291755e-05,8.471071667291755e-05,-109.54945620885584,-109.54945620885584,0.614754410120961,0.614754410120961 -1.6235294117647059,1.5997614367977198,1.5997614367977198,8.537221234214872e-05,8.537221234214872e-05,-109.98303573776278,-109.98303573776278,0.6215939877488816,0.6215939877488816 -1.6258823529411766,1.5191400264986072,1.5191400264986072,8.435393974245765e-05,8.435393974245765e-05,-110.41557173667238,-110.41557173667238,0.627656374732857,0.627656374732857 -1.6282352941176468,1.4500815135831762,1.4500815135831762,7.955842437966642e-05,7.955842437966642e-05,-110.84702498026253,-110.84702498026253,0.6329038102119335,0.6329038102119335 -1.630588235294118,1.4065572320313628,1.4065572320313628,7.633498710166301e-05,7.633498710166301e-05,-111.27732272707846,-111.27732272707846,0.6373146619397686,0.6373146619397686 -1.6329411764705881,1.3524696435408472,1.3524696435408472,7.710993799833301e-05,7.710993799833301e-05,-111.70641545906004,-111.70641545906004,0.6408893474067149,0.6408893474067149 -1.6352941176470588,1.323821213139585,1.323821213139585,7.295002307817675e-05,7.295002307817675e-05,-112.13422615144155,-112.13422615144155,0.6436435695781506,0.6436435695781506 -1.6376470588235295,1.3000171966734275,1.3000171966734275,7.658982926541351e-05,7.658982926541351e-05,-112.56073006051949,-112.56073006051949,0.6456006579148291,0.6456006579148291 -1.6400000000000001,1.2431744477670197,1.2431744477670197,7.627051876177101e-05,7.627051876177101e-05,-112.98600732576094,-112.98600732576094,0.6467742370728227,0.6467742370728227 -1.6423529411764706,1.1794627823543073,1.1794627823543073,7.642614020262435e-05,7.642614020262435e-05,-113.41004507281981,-113.41004507281981,0.647166085203453,0.647166085203453 -1.6447058823529415,1.1311213594492424,1.1311213594492424,8.104258139789732e-05,8.104258139789732e-05,-113.83290527713396,-113.83290527713396,0.6467595834204504,0.6467595834204504 -1.6470588235294117,1.0400230396995467,1.0400230396995467,7.508259310427503e-05,7.508259310427503e-05,-114.25453438600381,-114.25453438600381,0.6455238866031936,0.6455238866031936 -1.6494117647058824,1.0175192940657216,1.0175192940657216,7.734645704659842e-05,7.734645704659842e-05,-114.67500765197225,-114.67500765197225,0.6434270237527946,0.6434270237527946 -1.651764705882353,0.9846013498766395,0.9846013498766395,7.465467306095409e-05,7.465467306095409e-05,-115.09424434059905,-115.09424434059905,0.6404408526721692,0.6404408526721692 -1.6541176470588237,0.9643617065003758,0.9643617065003758,7.543176426569308e-05,7.543176426569308e-05,-115.51228352271983,-115.51228352271983,0.6365390598333156,0.6365390598333156 -1.6564705882352944,0.9979440683909672,0.9979440683909672,7.525982536138478e-05,7.525982536138478e-05,-115.92907016430212,-115.92907016430212,0.631692123784801,0.631692123784801 -1.6588235294117644,0.9913149088100958,0.9913149088100958,7.637203516130497e-05,7.637203516130497e-05,-116.34457922565204,-116.34457922565204,0.6258508762771507,0.6258508762771507 -1.6611764705882353,0.8879818660546155,0.8879818660546155,7.70725593865065e-05,7.70725593865065e-05,-116.75876845198901,-116.75876845198901,0.6189624384811324,0.6189624384811324 -1.663529411764706,0.8316749077230449,0.8316749077230449,7.905714993416597e-05,7.905714993416597e-05,-117.17154597254066,-117.17154597254066,0.6109595996286727,0.6109595996286727 -1.6658823529411766,0.833041886525338,0.833041886525338,7.878527313365759e-05,7.878527313365759e-05,-117.58269394165919,-117.58269394165919,0.6017840299807473,0.6017840299807473 -1.668235294117647,0.7395287391326507,0.7395287391326507,7.382033219140882e-05,7.382033219140882e-05,-117.99205374794491,-117.99205374794491,0.5914076981330542,0.5914076981330542 -1.670588235294118,0.740562697666413,0.740562697666413,6.827424860618087e-05,6.827424860618087e-05,-118.3993300782154,-118.3993300782154,0.5798268508239196,0.5798268508239196 -1.672941176470588,0.7267384624827675,0.7267384624827675,6.818273203493619e-05,6.818273203493619e-05,-118.80417569341043,-118.80417569341043,0.567075574957726,0.567075574957726 -1.6752941176470588,0.6919374653554526,0.6919374653554526,6.746600361365624e-05,6.746600361365624e-05,-119.20621989685571,-119.20621989685571,0.5532098230542299,0.5532098230542299 -1.6776470588235295,0.6745814020282263,0.6745814020282263,6.818638777655989e-05,6.818638777655989e-05,-119.60509037456382,-119.60509037456382,0.5383069873155271,0.5383069873155271 -1.68,0.6311569881744246,0.6311569881744246,6.822550340295289e-05,6.822550340295289e-05,-120.00022301251312,-120.00022301251312,0.522482905728752,0.522482905728752 -1.6823529411764706,0.5814950569257542,0.5814950569257542,6.786745851133793e-05,6.786745851133793e-05,-120.39097508536004,-120.39097508536004,0.5059086355189649,0.5059086355189649 -1.684705882352941,0.4478362650055864,0.4478362650055864,6.448485662872782e-05,6.448485662872782e-05,-120.77658133324617,-120.77658133324617,0.48884733201094765,0.48884733201094765 -1.6870588235294117,0.3661730629859144,0.3661730629859144,6.054804994215714e-05,6.054804994215714e-05,-121.15625061609285,-121.15625061609285,0.4716722241446788,0.4716722241446788 -1.6894117647058824,0.2940378230114911,0.2940378230114911,5.845792649564247e-05,5.845792649564247e-05,-121.5292734186963,-121.5292734186963,0.4548802414347416,0.4548802414347416 -1.6917647058823528,0.2739291788839948,0.2739291788839948,5.3339553443463996e-05,5.3339553443463996e-05,-121.89514601869102,-121.89514601869102,0.4390594694157582,0.4390594694157582 -1.6941176470588235,0.2905369794152347,0.2905369794152347,5.476541570348336e-05,5.476541570348336e-05,-122.2538255847531,-122.2538255847531,0.4248333974795013,0.4248333974795013 -1.6964705882352942,0.3643510227612752,0.3643510227612752,5.463987764696906e-05,5.463987764696906e-05,-122.6058365263907,-122.6058365263907,0.4127807029129776,0.4127807029129776 -1.6988235294117644,0.22204754167411714,0.22204754167411714,6.152170698491222e-05,6.152170698491222e-05,-122.95231464106307,-122.95231464106307,0.403365579350291,0.403365579350291 -1.7011764705882353,0.19773752539078346,0.19773752539078346,6.956726964348905e-05,6.956726964348905e-05,-123.29486049013926,-123.29486049013926,0.3968721887305616,0.3968721887305616 -1.7035294117647062,0.020365506730090317,0.020365506730090317,6.990284578414659e-05,6.990284578414659e-05,-123.63544042010955,-123.63544042010955,0.3933903090472736,0.3933903090472736 -1.7058823529411766,-0.04845928170379141,-0.04845928170379141,6.225940883716566e-05,6.225940883716566e-05,-123.97607016377926,-123.97607016377926,0.3928133949145653,0.3928133949145653 -1.7082352941176469,-0.18732584155365772,-0.18732584155365772,6.542462662356523e-05,6.542462662356523e-05,-124.31866240269957,-124.31866240269957,0.3948741097013522,0.3948741097013522 -1.7105882352941175,-0.13066462346144853,-0.13066462346144853,6.015909467658446e-05,6.015909467658446e-05,-124.66472212543965,-124.66472212543965,0.3991360576136956,0.3991360576136956 -1.7129411764705882,-0.032360608179582646,-0.032360608179582646,5.879044846808728e-05,5.879044846808728e-05,-125.01543275736266,-125.01543275736266,0.40505426530041844,0.40505426530041844 -1.7152941176470589,-0.16472060503257366,-0.16472060503257366,6.190689911783983e-05,6.190689911783983e-05,-125.37139511112788,-125.37139511112788,0.41196500140745257,0.41196500140745257 -1.7176470588235295,-0.18092314637943974,-0.18092314637943974,6.957813102757168e-05,6.957813102757168e-05,-125.73259809059985,-125.73259809059985,0.41916864650481633,0.41916864650481633 -1.72,-0.17305065339749684,-0.17305065339749684,7.383568339033304e-05,7.383568339033304e-05,-126.09847969916488,-126.09847969916488,0.4259888311081972,0.4259888311081972 -1.7223529411764709,-0.17396247049847272,-0.17396247049847272,7.292183862563019e-05,7.292183862563019e-05,-126.46816387606513,-126.46816387606513,0.43185946763452193,0.43185946763452193 -1.7247058823529409,-0.39056930816247887,-0.39056930816247887,7.482381824924901e-05,7.482381824924901e-05,-126.84035328615143,-126.84035328615143,0.4363858655472992,0.4363858655472992 -1.7270588235294118,-0.4471277498808948,-0.4471277498808948,6.890742640336505e-05,6.890742640336505e-05,-127.21379483489216,-127.21379483489216,0.4394007787075138,0.4394007787075138 -1.7294117647058824,-0.41699431692133687,-0.41699431692133687,6.497865298868312e-05,6.497865298868312e-05,-127.58735529474762,-127.58735529474762,0.4409549803060936,0.4409549803060936 -1.731764705882353,-0.3734854040778557,-0.3734854040778557,5.9808938509788954e-05,5.9808938509788954e-05,-127.96015653277922,-127.96015653277922,0.4412577944695161,0.4412577944695161 -1.7341176470588235,-0.4732089246480546,-0.4732089246480546,6.452040971257542e-05,6.452040971257542e-05,-128.33180863411633,-128.33180863411633,0.4406208930038366,0.4406208930038366 -1.7364705882352938,-0.23786699879356588,-0.23786699879356588,4.809218194923989e-05,4.809218194923989e-05,-128.70217374154177,-128.70217374154177,0.439338473738411,0.439338473738411 -1.7388235294117647,-0.4471236700149172,-0.4471236700149172,6.536078498902792e-05,6.536078498902792e-05,-129.07156214459894,-129.07156214459894,0.43761099219692035,0.43761099219692035 -1.7411764705882353,-0.4673168082768449,-0.4673168082768449,7.728316250898388e-05,7.728316250898388e-05,-129.44029542882834,-129.44029542882834,0.43552118568893033,0.43552118568893033 -1.743529411764706,-0.6735545956481951,-0.6735545956481951,7.206134751839903e-05,7.206134751839903e-05,-129.8087496286423,-129.8087496286423,0.4330294971498556,0.4330294971498556 -1.7458823529411764,-0.7106926522112555,-0.7106926522112555,7.389029407527424e-05,7.389029407527424e-05,-130.17702868457465,-130.17702868457465,0.43001283611688285,0.43001283611688285 -1.748235294117647,-0.9279404706051234,-0.9279404706051234,6.5446655241039e-05,6.5446655241039e-05,-130.54512104445922,-130.54512104445922,0.4263213933948598,0.4263213933948598 -1.7505882352941176,-0.7432911953284306,-0.7432911953284306,6.61338531033818e-05,6.61338531033818e-05,-130.91269910811985,-130.91269910811985,0.42186603860209987,0.42186603860209987 -1.7529411764705882,-0.8527182074696875,-0.8527182074696875,5.990211745691572e-05,5.990211745691572e-05,-131.27943118724647,-131.27943118724647,0.4166308117332996,0.4166308117332996 -1.7552941176470591,-0.8224648348012552,-0.8224648348012552,6.068944841118989e-05,6.068944841118989e-05,-131.64497097732536,-131.64497097732536,0.4106643021970933,0.4106643021970933 -1.7576470588235293,-0.7516715308748652,-0.7516715308748652,6.427595414975301e-05,6.427595414975301e-05,-132.00902265559108,-132.00902265559108,0.40408630197050927,0.40408630197050927 -1.76,-0.7751839694840374,-0.7751839694840374,7.011105998155676e-05,7.011105998155676e-05,-132.37146726917146,-132.37146726917146,0.3970123557387762,0.3970123557387762 -1.7623529411764705,-0.8966859399757466,-0.8966859399757466,7.417616345051682e-05,7.417616345051682e-05,-132.7322940306291,-132.7322940306291,0.3895824127346574,0.3895824127346574 -1.7647058823529411,-1.12471348905495,-1.12471348905495,8.401235430235953e-05,8.401235430235953e-05,-133.0915671716844,-133.0915671716844,0.3818435805226867,0.3818435805226867 -1.7670588235294116,-0.9729359298976131,-0.9729359298976131,7.142912548389756e-05,7.142912548389756e-05,-133.44937417741576,-133.44937417741576,0.3738573026366351,0.3738573026366351 -1.7694117647058827,-0.871209648858533,-0.871209648858533,6.642998905626318e-05,6.642998905626318e-05,-133.805748736037,-133.805748736037,0.36563372928165766,0.36563372928165766 -1.7717647058823531,-1.3583690130770596,-1.3583690130770596,6.653348300982209e-05,6.653348300982209e-05,-134.1605963612864,-134.1605963612864,0.3572008829850201,0.3572008829850201 -1.7741176470588236,-1.2354435134337358,-1.2354435134337358,6.752129468168404e-05,6.752129468168404e-05,-134.5139163003067,-134.5139163003067,0.34855863266207776,0.34855863266207776 -1.776470588235294,-1.2533171341695903,-1.2533171341695903,3.3454554307986286e-05,3.3454554307986286e-05,-134.86559224402927,-134.86559224402927,0.33975047466445346,0.33975047466445346 -1.7788235294117647,-1.140182840912138,-1.140182840912138,6.989154691886814e-05,6.989154691886814e-05,-135.21567132055736,-135.21567132055736,0.3308149834084818,0.3308149834084818 -1.7811764705882354,-1.0880488385516378,-1.0880488385516378,8.673332970936156e-05,8.673332970936156e-05,-135.56398189015005,-135.56398189015005,0.3217980229453586,0.3217980229453586 -1.7835294117647063,-1.1198743739264432,-1.1198743739264432,8.80738098396858e-05,8.80738098396858e-05,-135.9105754889824,-135.9105754889824,0.3127234252875944,0.3127234252875944 -1.7858823529411765,-1.1879634396093974,-1.1879634396093974,9.37040949292161e-05,9.37040949292161e-05,-136.2553973321485,-136.2553973321485,0.30362270499006727,0.30362270499006727 -1.7882352941176471,-1.5714300604495732,-1.5714300604495732,9.250561427138899e-05,9.250561427138899e-05,-136.59838470520114,-136.59838470520114,0.29452139919187414,0.29452139919187414 -1.7905882352941174,-1.6094241272532372,-1.6094241272532372,8.424984416413157e-05,8.424984416413157e-05,-136.93948529347767,-136.93948529347767,0.28543067901798375,0.28543067901798375 -1.7929411764705883,-1.503039794187397,-1.503039794187397,8.009573581383298e-05,8.009573581383298e-05,-137.27854939981992,-137.27854939981992,0.27642200173480375,0.27642200173480375 -1.795294117647059,-1.622991110849086,-1.622991110849086,5.480018531391749e-05,5.480018531391749e-05,-137.61558690209097,-137.61558690209097,0.26753397479130153,0.26753397479130153 -1.7976470588235294,-1.337857454617284,-1.337857454617284,6.972812793597888e-05,6.972812793597888e-05,-137.95060456269923,-137.95060456269923,0.2588286285430721,0.2588286285430721 -1.8,-1.1902538014435629,-1.1902538014435629,8.12053951626173e-05,8.12053951626173e-05,-138.2837528989928,-138.2837528989928,0.2503419698666759,0.2503419698666759 diff --git a/sparameters/rotate_f258530e_08088987.yml b/sparameters/rotate_f258530e_08088987.yml deleted file mode 100644 index b8ca6727..00000000 --- a/sparameters/rotate_f258530e_08088987.yml +++ /dev/null @@ -1,27 +0,0 @@ -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -is_3d: false -fiber_angle_deg: 30 -fiber_xoffset: 19 -compute_time_seconds: 77.5216064453125 -compute_time_minutes: 1.2920267740885416 diff --git a/sparameters/rotate_f258530e_1933e42f.csv b/sparameters/rotate_f258530e_1933e42f.csv deleted file mode 100644 index 50d1f09b..00000000 --- a/sparameters/rotate_f258530e_1933e42f.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,2.1651483177213153,2.1651483177213153,0.0023051333583219303,0.0023051333583219303,-2.5815072471701503,-2.5815072471701503,9.045748628557744e-19,9.045748628557744e-19 -1.2023529411764706,1.2640089455144938,1.2640089455144938,0.013405281585857874,0.013405281585857874,-4.957452487667332,-4.957452487667332,2.3225442914945256e-19,2.3225442914945256e-19 -1.204705882352941,2.4044068648319334,2.4044068648319334,0.0012089059412414322,0.0012089059412414322,-2.0067038916421907,-2.0067038916421907,7.344617467973431e-19,7.344617467973431e-19 -1.2070588235294117,1.757556039969939,1.757556039969939,0.0007449015478692525,0.0007449015478692525,-3.646689195334434,-3.646689195334434,1.2110214773470786e-18,1.2110214773470786e-18 -1.2094117647058824,-0.4443337271101898,-0.4443337271101898,0.006424500255489988,0.006424500255489988,-5.163067913085821,-5.163067913085821,1.1482802334339072e-18,1.1482802334339072e-18 -1.2117647058823529,1.8623111186606411,1.8623111186606411,0.0025448087973210256,0.0025448087973210256,-6.59277877325932,-6.59277877325932,5.97527614442817e-19,5.97527614442817e-19 -1.2141176470588235,0.42859371385283973,0.42859371385283973,0.044264063100340596,0.044264063100340596,-5.242079453678844,-5.242079453678844,1.5917451157105605e-19,1.5917451157105605e-19 -1.216470588235294,0.349659902694828,0.349659902694828,0.0018106622686002403,0.0018106622686002403,-6.28298511800733,-6.28298511800733,7.909184690986154e-19,7.909184690986154e-19 -1.2188235294117646,-1.1297812530593492,-1.1297812530593492,0.0018874507565010746,0.0018874507565010746,-7.416740234579192,-7.416740234579192,1.2300396069806739e-18,1.2300396069806739e-18 -1.2211764705882353,-4.223855641213245,-4.223855641213245,0.003431274305558014,0.003431274305558014,-8.515133959521416,-8.515133959521416,1.6428354196691795e-18,1.6428354196691795e-18 -1.2235294117647058,-3.940377590405163,-3.940377590405163,0.0024227236178053957,0.0024227236178053957,-9.70435468362761,-9.70435468362761,2.022004262536079e-18,2.022004262536079e-18 -1.2258823529411764,-3.70867337912858,-3.70867337912858,0.002053394103112716,0.002053394103112716,-10.99880706203757,-10.99880706203757,2.045830103601105e-18,2.045830103601105e-18 -1.228235294117647,-4.0771369089418315,-4.0771369089418315,0.00130341364761005,0.00130341364761005,-12.332406008104694,-12.332406008104694,1.3985132185417363e-18,1.3985132185417363e-18 -1.2305882352941175,-1.972525211102792,-1.972525211102792,0.00902357876296271,0.00902357876296271,-12.6190108562222,-12.6190108562222,2.452072260571539e-19,2.452072260571539e-19 -1.2329411764705882,-4.021920999771082,-4.021920999771082,0.00264487232405502,0.00264487232405502,-12.386718060078802,-12.386718060078802,1.601851517096242e-18,1.601851517096242e-18 -1.2352941176470589,-4.263405778753683,-4.263405778753683,0.0005687529437213677,0.0005687529437213677,-13.770373852839207,-13.770373852839207,2.9937077591512705e-18,2.9937077591512705e-18 -1.2376470588235293,-7.230925615714813,-7.230925615714813,0.0007298057197130512,0.0007298057197130512,-15.186349796882938,-15.186349796882938,3.5630048069855005e-18,3.5630048069855005e-18 -1.24,-7.6619365862005795,-7.6619365862005795,0.002905907846755809,0.002905907846755809,-16.55099285981915,-16.55099285981915,2.9717725546692677e-18,2.9717725546692677e-18 -1.2423529411764704,-7.341078225794875,-7.341078225794875,0.003427154042945537,0.003427154042945537,-17.60381130766292,-17.60381130766292,1.378952580056789e-18,1.378952580056789e-18 -1.244705882352941,-7.763916726582611,-7.763916726582611,0.0023116208951007144,0.0023116208951007144,-17.063179475378107,-17.063179475378107,1.5727661192702128e-18,1.5727661192702128e-18 -1.2470588235294118,-7.1948064475951075,-7.1948064475951075,0.0018943405502637304,0.0018943405502637304,-18.07294714374868,-18.07294714374868,3.771286935732288e-18,3.771286935732288e-18 -1.2494117647058822,-7.526346565488707,-7.526346565488707,0.00038679842603362276,0.00038679842603362276,-19.27240879454016,-19.27240879454016,5.2427285609550316e-18,5.2427285609550316e-18 -1.251764705882353,-7.3595513866451165,-7.3595513866451165,0.0007005347692337103,0.0007005347692337103,-20.376458398530477,-20.376458398530477,5.481408768125569e-18,5.481408768125569e-18 -1.2541176470588236,-5.414811664517731,-5.414811664517731,0.00035057443654246985,0.00035057443654246985,-21.21616386458393,-21.21616386458393,5.0202724332186254e-18,5.0202724332186254e-18 -1.256470588235294,-7.424357493732088,-7.424357493732088,0.0008869912729959924,0.0008869912729959924,-21.79206209837416,-21.79206209837416,5.7173071699268174e-18,5.7173071699268174e-18 -1.2588235294117647,-5.022242112927184,-5.022242112927184,0.000392745931114849,0.000392745931114849,-22.5098207315831,-22.5098207315831,8.416891223654326e-18,8.416891223654326e-18 -1.2611764705882353,-2.127612223458949,-2.127612223458949,0.00011909857752630158,0.00011909857752630158,-23.396470217333853,-23.396470217333853,1.2058848185894874e-17,1.2058848185894874e-17 -1.2635294117647058,-1.7396948901279559,-1.7396948901279559,0.00020272875519051223,0.00020272875519051223,-24.33376185321302,-24.33376185321302,1.6109307132117262e-17,1.6109307132117262e-17 -1.2658823529411765,-1.9524765100943027,-1.9524765100943027,0.000239560686917993,0.000239560686917993,-25.286205440442963,-25.286205440442963,2.0542243400560873e-17,2.0542243400560873e-17 -1.268235294117647,-2.6881584381025116,-2.6881584381025116,4.998645504211321e-05,4.998645504211321e-05,-26.251144841282123,-26.251144841282123,2.5092023071233667e-17,2.5092023071233667e-17 -1.2705882352941176,-3.432509422595375,-3.432509422595375,2.8052939672819443e-05,2.8052939672819443e-05,-27.215351353939955,-27.215351353939955,2.911820313261705e-17,2.911820313261705e-17 -1.2729411764705882,-1.0512001183548143,-1.0512001183548143,0.0001407723881974247,0.0001407723881974247,-28.154306729426338,-28.154306729426338,3.214871348918669e-17,3.214871348918669e-17 -1.2752941176470587,-3.41336652909201,-3.41336652909201,0.00011809724327075791,0.00011809724327075791,-29.047358222040284,-29.047358222040284,3.4552655301139785e-17,3.4552655301139785e-17 -1.2776470588235294,-6.246205351627452,-6.246205351627452,7.136101107451965e-05,7.136101107451965e-05,-29.898804719028927,-29.898804719028927,3.734218395602709e-17,3.734218395602709e-17 -1.28,-5.054666577854449,-5.054666577854449,0.00012253211178100374,0.00012253211178100374,-30.737161264077084,-30.737161264077084,4.1139578839739063e-17,4.1139578839739063e-17 -1.2823529411764705,-5.201829806790766,-5.201829806790766,0.00015077399371623128,0.00015077399371623128,-31.581678854713598,-31.581678854713598,4.546287865385197e-17,4.546287865385197e-17 -1.2847058823529411,-4.2494385899886105,-4.2494385899886105,9.327080706103162e-05,9.327080706103162e-05,-32.42641973755219,-32.42641973755219,4.952857042303846e-17,4.952857042303846e-17 -1.2870588235294118,-4.993765216345506,-4.993765216345506,0.00018100747109087807,0.00018100747109087807,-33.256674985283055,-33.256674985283055,5.3239358406553907e-17,5.3239358406553907e-17 -1.2894117647058823,-3.9561988864316,-3.9561988864316,9.586517443842974e-05,9.586517443842974e-05,-34.06959329214624,-34.06959329214624,5.721931617976469e-17,5.721931617976469e-17 -1.291764705882353,-4.490268278739934,-4.490268278739934,0.0001283715735617004,0.0001283715735617004,-34.875802996420276,-34.875802996420276,6.185841747359362e-17,6.185841747359362e-17 -1.2941176470588236,-4.631081865293263,-4.631081865293263,0.00011420417171160153,0.00011420417171160153,-35.68317032752547,-35.68317032752547,6.682213379152494e-17,6.682213379152494e-17 -1.296470588235294,-4.2141321630436455,-4.2141321630436455,8.616836645099502e-05,8.616836645099502e-05,-36.48838479440286,-36.48838479440286,7.156206934125682e-17,7.156206934125682e-17 -1.2988235294117647,-4.373904578076064,-4.373904578076064,0.0001230269407316054,0.0001230269407316054,-37.2839471667769,-37.2839471667769,7.607266445288421e-17,7.607266445288421e-17 -1.3011764705882352,-4.2136591743419,-4.2136591743419,0.00012353524334417218,0.00012353524334417218,-38.069301437326715,-38.069301437326715,8.083502079883552e-17,8.083502079883552e-17 -1.3035294117647058,-4.503660777012755,-4.503660777012755,7.368415827434657e-05,7.368415827434657e-05,-38.85012455455787,-38.85012455455787,8.607515191453979e-17,8.607515191453979e-17 -1.3058823529411765,-4.75915365169786,-4.75915365169786,9.482082648280338e-05,9.482082648280338e-05,-39.63037523176186,-39.63037523176186,9.147649674489736e-17,9.147649674489736e-17 -1.308235294117647,-4.675331737777573,-4.675331737777573,3.399657149577036e-05,3.399657149577036e-05,-40.40725586823339,-40.40725586823339,9.664392484072888e-17,9.664392484072888e-17 -1.3105882352941176,-4.721514278905423,-4.721514278905423,4.264692445983588e-05,4.264692445983588e-05,-41.17672693514365,-41.17672693514365,1.0164969786088566e-16,1.0164969786088566e-16 -1.3129411764705883,-5.550433840279827,-5.550433840279827,4.9843559820826425e-05,4.9843559820826425e-05,-41.939056338836856,-41.939056338836856,1.0687628942345344e-16,1.0687628942345344e-16 -1.3152941176470587,-5.1807678410750295,-5.1807678410750295,0.00011309663034644656,0.00011309663034644656,-42.697909174674244,-42.697909174674244,1.124557914107165e-16,1.124557914107165e-16 -1.3176470588235294,-5.046987058123908,-5.046987058123908,0.00011201372578424261,0.00011201372578424261,-43.455091386339056,-43.455091386339056,1.1808949893105322e-16,1.1808949893105322e-16 -1.32,-5.340726539125436,-5.340726539125436,0.00016838994862522036,0.00016838994862522036,-44.20876441754804,-44.20876441754804,1.2350125271194696e-16,1.2350125271194696e-16 -1.3223529411764705,-5.123002679513285,-5.123002679513285,0.0001094330080712494,0.0001094330080712494,-44.95657641980907,-44.95657641980907,1.28777780066005e-16,1.28777780066005e-16 -1.3247058823529412,-5.274725772987756,-5.274725772987756,0.00011006192979291504,0.00011006192979291504,-45.69890597314664,-45.69890597314664,1.3423213944174978e-16,1.3423213944174978e-16 -1.3270588235294118,-4.921849527057859,-4.921849527057859,9.457230913680643e-05,9.457230913680643e-05,-46.43825359850264,-46.43825359850264,1.399447622557946e-16,1.399447622557946e-16 -1.3294117647058823,-5.178236837036361,-5.178236837036361,9.483979996674406e-05,9.483979996674406e-05,-47.17571065899386,-47.17571065899386,1.4564288936163508e-16,1.4564288936163508e-16 -1.331764705882353,-4.882614880489568,-4.882614880489568,8.499735607664157e-05,8.499735607664157e-05,-47.90988290962189,-47.90988290962189,1.5110405776833453e-16,1.5110405776833453e-16 -1.3341176470588234,-4.956275021459756,-4.956275021459756,6.394800747911233e-05,6.394800747911233e-05,-48.63941133552453,-48.63941133552453,1.5642135655113647e-16,1.5642135655113647e-16 -1.336470588235294,-5.323817157411201,-5.323817157411201,4.531236294307685e-05,4.531236294307685e-05,-49.364534821835306,-49.364534821835306,1.618318872870477e-16,1.618318872870477e-16 -1.3388235294117647,-5.944054016224285,-5.944054016224285,4.2103261115021925e-05,4.2103261115021925e-05,-50.08716558240741,-50.08716558240741,1.6738239852202682e-16,1.6738239852202682e-16 -1.3411764705882352,-4.777402649501608,-4.777402649501608,3.42288420156446e-05,3.42288420156446e-05,-50.80786553463029,-50.80786553463029,1.72839720644297e-16,1.72839720644297e-16 -1.3435294117647059,-5.226321557106893,-5.226321557106893,4.8117271964610155e-05,4.8117271964610155e-05,-51.525751495066835,-51.525751495066835,1.7800576863766269e-16,1.7800576863766269e-16 -1.3458823529411765,-6.919750538484842,-6.919750538484842,3.720588460794908e-05,3.720588460794908e-05,-52.23978939749027,-52.23978939749027,1.829279029681462e-16,1.829279029681462e-16 -1.348235294117647,-6.383622349732338,-6.383622349732338,5.9206406339583185e-05,5.9206406339583185e-05,-52.950192438242595,-52.950192438242595,1.8782268294140118e-16,1.8782268294140118e-16 -1.3505882352941176,-6.632486918163146,-6.632486918163146,8.106505995163121e-05,8.106505995163121e-05,-53.65817783016813,-53.65817783016813,1.9269977784030054e-16,1.9269977784030054e-16 -1.3529411764705883,-6.423280582750339,-6.423280582750339,7.132399146072981e-05,7.132399146072981e-05,-54.364269766279435,-54.364269766279435,1.9734822646042462e-16,1.9734822646042462e-16 -1.3552941176470588,-6.202178248236215,-6.202178248236215,6.94558461246766e-05,6.94558461246766e-05,-55.06784285900597,-55.06784285900597,2.0157592596597234e-16,2.0157592596597234e-16 -1.3576470588235294,-6.143812763693353,-6.143812763693353,8.01006144631956e-05,8.01006144631956e-05,-55.76787052335276,-55.76787052335276,2.0540586519044032e-16,2.0540586519044032e-16 -1.3599999999999999,-6.423587043226545,-6.423587043226545,9.15590616026651e-05,9.15590616026651e-05,-56.46438414424625,-56.46438414424625,2.090059658761575e-16,2.090059658761575e-16 -1.3623529411764705,-6.4104792408355245,-6.4104792408355245,9.577112294285214e-05,9.577112294285214e-05,-57.15817580019382,-57.15817580019382,2.123984021334872e-16,2.123984021334872e-16 -1.3647058823529412,-6.162500295686118,-6.162500295686118,9.04913583171835e-05,9.04913583171835e-05,-57.84961331450062,-57.84961331450062,2.154190300665297e-16,2.154190300665297e-16 -1.3670588235294117,-6.01535610174107,-6.01535610174107,6.200286513868303e-05,6.200286513868303e-05,-58.53816140048924,-58.53816140048924,2.178965938292656e-16,2.178965938292656e-16 -1.3694117647058823,-5.909117611210848,-5.909117611210848,6.072537339660951e-05,6.072537339660951e-05,-59.222820618603244,-59.222820618603244,2.198589038864957e-16,2.198589038864957e-16 -1.371764705882353,-5.703853815509397,-5.703853815509397,5.3438240050896545e-05,5.3438240050896545e-05,-59.90333528625926,-59.90333528625926,2.2149514884113314e-16,2.2149514884113314e-16 -1.3741176470588234,-6.119172091518115,-6.119172091518115,4.932074325322963e-05,4.932074325322963e-05,-60.58026040578022,-60.58026040578022,2.2291164165187193e-16,2.2291164165187193e-16 -1.3764705882352941,-6.831710169020716,-6.831710169020716,4.5967609604947605e-05,4.5967609604947605e-05,-61.25418636539251,-61.25418636539251,2.240474209443695e-16,2.240474209443695e-16 -1.3788235294117648,-7.488778800620215,-7.488778800620215,3.8009035719410544e-05,3.8009035719410544e-05,-61.92480305219341,-61.92480305219341,2.247675749864399e-16,2.247675749864399e-16 -1.3811764705882352,-7.637125534367078,-7.637125534367078,1.9986984822064672e-05,1.9986984822064672e-05,-62.59145166678484,-62.59145166678484,2.2514831181873556e-16,2.2514831181873556e-16 -1.383529411764706,-7.672723791127231,-7.672723791127231,5.2615795698780834e-05,5.2615795698780834e-05,-63.254022459447704,-63.254022459447704,2.253585213339252e-16,2.253585213339252e-16 -1.3858823529411763,-7.645225743298802,-7.645225743298802,6.641379742958092e-05,6.641379742958092e-05,-63.913214970840194,-63.913214970840194,2.2554986412955003e-16,2.2554986412955003e-16 -1.388235294117647,-7.647727083106571,-7.647727083106571,8.585335110161179e-05,8.585335110161179e-05,-64.56982900960588,-64.56982900960588,2.2568620149207796e-16,2.2568620149207796e-16 -1.3905882352941177,-7.6938728900202324,-7.6938728900202324,0.00011285310995067931,0.00011285310995067931,-65.22413113004839,-65.22413113004839,2.2560748922518766e-16,2.2560748922518766e-16 -1.3929411764705881,-7.668339567422982,-7.668339567422982,0.00010881511237077225,0.00010881511237077225,-65.87563911573736,-65.87563911573736,2.2526714459555514e-16,2.2526714459555514e-16 -1.3952941176470588,-7.768916760159853,-7.768916760159853,9.981377568473762e-05,9.981377568473762e-05,-66.52409868351006,-66.52409868351006,2.2477405543524253e-16,2.2477405543524253e-16 -1.3976470588235295,-7.510521514994988,-7.510521514994988,0.00011207666733415892,0.00011207666733415892,-67.1700081549972,-67.1700081549972,2.2425056541376e-16,2.2425056541376e-16 -1.4,-7.486991323214053,-7.486991323214053,0.00012258939514888886,0.00012258939514888886,-67.81418200420293,-67.81418200420293,2.236659807570704e-16,2.236659807570704e-16 -1.4023529411764706,-7.4544291599697905,-7.4544291599697905,0.00011698086203696965,0.00011698086203696965,-68.45700270363874,-68.45700270363874,2.2286307761740856e-16,2.2286307761740856e-16 -1.4047058823529412,-7.369312982870098,-7.369312982870098,0.0001027402994502808,0.0001027402994502808,-69.09812173954359,-69.09812173954359,2.217257759678393e-16,2.217257759678393e-16 -1.4070588235294117,-7.281185749826242,-7.281185749826242,0.00010723755273241167,0.00010723755273241167,-69.73717731759642,-69.73717731759642,2.2028996775206163e-16,2.2028996775206163e-16 -1.4094117647058824,-7.503883821552094,-7.503883821552094,8.520107528981194e-05,8.520107528981194e-05,-70.37433998650323,-70.37433998650323,2.1866424916936707e-16,2.1866424916936707e-16 -1.4117647058823528,-7.317302154166263,-7.317302154166263,9.197758784397574e-05,9.197758784397574e-05,-71.01037449685857,-71.01037449685857,2.1685391809859406e-16,2.1685391809859406e-16 -1.4141176470588235,-7.279078950182563,-7.279078950182563,7.735730469325912e-05,7.735730469325912e-05,-71.64584370509608,-71.64584370509608,2.1471495119768673e-16,2.1471495119768673e-16 -1.4164705882352941,-7.2282203077422,-7.2282203077422,6.333894937314429e-05,6.333894937314429e-05,-72.28065288495546,-72.28065288495546,2.12066774603311e-16,2.12066774603311e-16 -1.4188235294117646,-7.880469140070238,-7.880469140070238,5.4019841245100137e-05,5.4019841245100137e-05,-72.9142555310582,-72.9142555310582,2.0887909429562875e-16,2.0887909429562875e-16 -1.4211764705882353,-8.321369569949258,-8.321369569949258,5.1024362035270535e-05,5.1024362035270535e-05,-73.54641882435406,-73.54641882435406,2.0523034814670247e-16,2.0523034814670247e-16 -1.423529411764706,-8.091122290397008,-8.091122290397008,6.318384015496465e-05,6.318384015496465e-05,-74.17768044756157,-74.17768044756157,2.0118911105164411e-16,2.0118911105164411e-16 -1.4258823529411764,-8.476822527196923,-8.476822527196923,7.782253413691066e-05,7.782253413691066e-05,-74.80888972034786,-74.80888972034786,1.9670292173681934e-16,1.9670292173681934e-16 -1.428235294117647,-8.572383179239825,-8.572383179239825,9.226953151527024e-05,9.226953151527024e-05,-75.44043487644697,-75.44043487644697,1.915952266779748e-16,1.915952266779748e-16 -1.4305882352941177,-8.603996732033554,-8.603996732033554,0.00012552572510110896,0.00012552572510110896,-76.07211646846412,-76.07211646846412,1.85731289464867e-16,1.85731289464867e-16 -1.4329411764705882,-8.523722662020333,-8.523722662020333,0.00010799395524673503,0.00010799395524673503,-76.70348917213175,-76.70348917213175,1.791241823178366e-16,1.791241823178366e-16 -1.4352941176470588,-8.549710650569754,-8.549710650569754,0.00013904863893049774,0.00013904863893049774,-77.33462801141704,-77.33462801141704,1.7185037839890604e-16,1.7185037839890604e-16 -1.4376470588235293,-8.463027107047054,-8.463027107047054,0.00013958296738290414,0.00013958296738290414,-77.96637730230323,-77.96637730230323,1.6395011206720964e-16,1.6395011206720964e-16 -1.44,-8.34388548454388,-8.34388548454388,0.0001385225528818974,0.0001385225528818974,-78.59963526999465,-78.59963526999465,1.5535605557060803e-16,1.5535605557060803e-16 -1.4423529411764706,-8.325713987099574,-8.325713987099574,0.00016946269241879567,0.00016946269241879567,-79.23496364660063,-79.23496364660063,1.459679240235534e-16,1.459679240235534e-16 -1.444705882352941,-8.275429929610567,-8.275429929610567,0.00014085163212665302,0.00014085163212665302,-79.87247305911443,-79.87247305911443,1.3577125065373966e-16,1.3577125065373966e-16 -1.4470588235294117,-8.24457031792608,-8.24457031792608,0.00015345653798664157,0.00015345653798664157,-80.51251623716102,-80.51251623716102,1.2488439473820898e-16,1.2488439473820898e-16 -1.4494117647058824,-7.970410603143113,-7.970410603143113,0.00015007272710359755,0.00015007272710359755,-81.15688218002302,-81.15688218002302,1.1348638427330703e-16,1.1348638427330703e-16 -1.4517647058823528,-7.868042152403661,-7.868042152403661,0.0001302392729634782,0.0001302392729634782,-81.80911904784223,-81.80911904784223,1.0171736566108952e-16,1.0171736566108952e-16 -1.4541176470588235,-7.603550761856978,-7.603550761856978,0.00011896529091225533,0.00011896529091225533,-82.47460015414319,-82.47460015414319,8.963215992255534e-17,8.963215992255534e-17 -1.4564705882352942,-7.4362535366655,-7.4362535366655,8.46577630665151e-05,8.46577630665151e-05,-83.16120904317793,-83.16120904317793,7.733475961115044e-17,7.733475961115044e-17 -1.4588235294117646,-8.12279408420367,-8.12279408420367,6.422171723822267e-05,6.422171723822267e-05,-83.8814303913448,-83.8814303913448,6.516158364574772e-17,6.516158364574772e-17 -1.4611764705882353,-10.684617272511563,-10.684617272511563,4.8108652746854263e-05,4.8108652746854263e-05,-84.65705741392857,-84.65705741392857,5.381163549207273e-17,5.381163549207273e-17 -1.4635294117647057,-10.346390085569059,-10.346390085569059,4.9559770783003833e-05,4.9559770783003833e-05,-85.52165578827532,-85.52165578827532,4.4666788878371673e-17,4.4666788878371673e-17 -1.4658823529411764,-9.975489763881775,-9.975489763881775,0.00015497935264766492,0.00015497935264766492,-86.49441840451992,-86.49441840451992,4.0023401619131627e-17,4.0023401619131627e-17 -1.468235294117647,-10.031830707344866,-10.031830707344866,0.0001530311634111428,0.0001530311634111428,-87.50804419439572,-87.50804419439572,4.21518760798256e-17,4.21518760798256e-17 -1.4705882352941178,-9.077887742333315,-9.077887742333315,0.0002127097025134698,0.0002127097025134698,-88.44336582871371,-88.44336582871371,5.087986203538705e-17,5.087986203538705e-17 -1.4729411764705882,-8.795891147903477,-8.795891147903477,0.00019637281121347562,0.00019637281121347562,-89.26998880907023,-89.26998880907023,6.40659742516872e-17,6.40659742516872e-17 -1.4752941176470589,-8.921040248905136,-8.921040248905136,0.00018358475904490084,0.00018358475904490084,-90.01753159424982,-90.01753159424982,7.982363612573699e-17,7.982363612573699e-17 -1.4776470588235295,-8.873522044821403,-8.873522044821403,0.00016992486275084582,0.00016992486275084582,-90.71512761132924,-90.71512761132924,9.703823499945398e-17,9.703823499945398e-17 -1.48,-8.83878733628765,-8.83878733628765,0.00014014351959214632,0.00014014351959214632,-91.38044862913188,-91.38044862913188,1.1509463439189858e-16,1.1509463439189858e-16 -1.4823529411764707,-8.865744708665543,-8.865744708665543,0.0001282470700512022,0.0001282470700512022,-92.02363705835634,-92.02363705835634,1.3362989515333e-16,1.3362989515333e-16 -1.484705882352941,-8.797695155275214,-8.797695155275214,9.333115424458023e-05,9.333115424458023e-05,-92.65047038570916,-92.65047038570916,1.5246231274260953e-16,1.5246231274260953e-16 -1.4870588235294118,-8.91989988732606,-8.91989988732606,0.00010574617381581252,0.00010574617381581252,-93.26424715493516,-93.26424715493516,1.7156814101683045e-16,1.7156814101683045e-16 -1.4894117647058822,-9.06885114774923,-9.06885114774923,0.00010321073505518684,0.00010321073505518684,-93.86735170961697,-93.86735170961697,1.9113921976970688e-16,1.9113921976970688e-16 -1.4917647058823529,-9.048006135936777,-9.048006135936777,0.00010486026634835478,0.00010486026634835478,-94.46258280109674,-94.46258280109674,2.1156302596718346e-16,2.1156302596718346e-16 -1.4941176470588236,-9.200047880270674,-9.200047880270674,0.0001133007698343705,0.0001133007698343705,-95.05357885197749,-95.05357885197749,2.3317497464952876e-16,2.3317497464952876e-16 -1.4964705882352942,-9.255240997126931,-9.255240997126931,0.00011942181944712564,0.00011942181944712564,-95.64410360866479,-95.64410360866479,2.558809774728718e-16,2.558809774728718e-16 -1.4988235294117647,-9.354209324598722,-9.354209324598722,0.0001192989127506677,0.0001192989127506677,-96.2364618466957,-96.2364618466957,2.7891393863551006e-16,2.7891393863551006e-16 -1.5011764705882353,-9.290930230377654,-9.290930230377654,0.00011609913490441719,0.00011609913490441719,-96.8301291112317,-96.8301291112317,3.0099708927140855e-16,3.0099708927140855e-16 -1.5035294117647058,-9.339869088957581,-9.339869088957581,0.00011296407008792644,0.00011296407008792644,-97.42180567033837,-97.42180567033837,3.2091279144664445e-16,3.2091279144664445e-16 -1.5058823529411764,-9.299901915548594,-9.299901915548594,0.00012015968697501949,0.00012015968697501949,-98.00683772509932,-98.00683772509932,3.382545377076583e-16,3.382545377076583e-16 -1.5082352941176471,-9.353951395433114,-9.353951395433114,0.00011989093657483538,0.00011989093657483538,-98.58140805509991,-98.58140805509991,3.539149504772426e-16,3.539149504772426e-16 -1.5105882352941176,-9.421333164476739,-9.421333164476739,0.00012441136940931114,0.00012441136940931114,-99.14491008798055,-99.14491008798055,3.698686309080006e-16,3.698686309080006e-16 -1.5129411764705882,-9.433090422856683,-9.433090422856683,0.0001238739151339768,0.0001238739151339768,-99.70121739656113,-99.70121739656113,3.882273531024851e-16,3.882273531024851e-16 -1.5152941176470587,-9.476632862270852,-9.476632862270852,0.00011756462300768245,0.00011756462300768245,-100.2569702578902,-100.2569702578902,4.0988823282490253e-16,4.0988823282490253e-16 -1.5176470588235293,-9.475062028768976,-9.475062028768976,0.00011541881896307396,0.00011541881896307396,-100.81791220633906,-100.81791220633906,4.3378740916832635e-16,4.3378740916832635e-16 -1.52,-9.516850387525897,-9.516850387525897,0.0001174449602356768,0.0001174449602356768,-101.3856568591383,-101.3856568591383,4.573140270805869e-16,4.573140270805869e-16 -1.5223529411764707,-9.506042926200816,-9.506042926200816,0.0001176894888071763,0.0001176894888071763,-101.95732118819744,-101.95732118819744,4.776367109001064e-16,4.776367109001064e-16 -1.5247058823529411,-9.57926678891672,-9.57926678891672,0.00011680231957296699,0.00011680231957296699,-102.52728658627537,-102.52728658627537,4.931103266540467e-16,4.931103266540467e-16 -1.5270588235294118,-9.659012154512743,-9.659012154512743,0.00011718236143001777,0.00011718236143001777,-103.0896609132865,-103.0896609132865,5.040664206224271e-16,5.040664206224271e-16 -1.5294117647058822,-9.70260100257944,-9.70260100257944,0.00011683106576795741,0.00011683106576795741,-103.64073427025512,-103.64073427025512,5.127714523220234e-16,5.127714523220234e-16 -1.531764705882353,-9.727023489448003,-9.727023489448003,0.00011283796738266396,0.00011283796738266396,-104.18076261948632,-104.18076261948632,5.224400281199299e-16,5.224400281199299e-16 -1.5341176470588236,-9.750680274949346,-9.750680274949346,0.00011695569616480286,0.00011695569616480286,-104.7140581028819,-104.7140581028819,5.356847642727466e-16,5.356847642727466e-16 -1.536470588235294,-9.808692140996836,-9.808692140996836,0.00011753408872042825,0.00011753408872042825,-105.24681538582355,-105.24681538582355,5.531941800089253e-16,5.531941800089253e-16 -1.5388235294117647,-9.734434066605726,-9.734434066605726,0.00011927730479606345,0.00011927730479606345,-105.78378393522374,-105.78378393522374,5.73476155725713e-16,5.73476155725713e-16 -1.5411764705882351,-9.821652319981606,-9.821652319981606,0.00011897599710341838,0.00011897599710341838,-106.32637887363046,-106.32637887363046,5.937662629198593e-16,5.937662629198593e-16 -1.5435294117647058,-9.876040328843668,-9.876040328843668,0.00011980953526032488,0.00011980953526032488,-106.87257940782023,-106.87257940782023,6.113772246314338e-16,6.113772246314338e-16 -1.5458823529411767,-9.929285144850994,-9.929285144850994,0.0001158247791480331,0.0001158247791480331,-107.41866073875315,-107.41866073875315,6.247954825012878e-16,6.247954825012878e-16 -1.5482352941176472,-9.919853932635098,-9.919853932635098,0.00011522462732848584,0.00011522462732848584,-107.96070813110617,-107.96070813110617,6.340712402581075e-16,6.340712402581075e-16 -1.5505882352941176,-9.95860142631465,-9.95860142631465,0.00011140830360376713,0.00011140830360376713,-108.49603325298085,-108.49603325298085,6.406274986102776e-16,6.406274986102776e-16 -1.5529411764705883,-9.938128517572594,-9.938128517572594,0.00011368570672487913,0.00011368570672487913,-109.02384633909509,-109.02384633909509,6.465934316586574e-16,6.465934316586574e-16 -1.5552941176470587,-10.01331981990015,-10.01331981990015,0.00011615752001102374,0.00011615752001102374,-109.54547935412327,-109.54547935412327,6.539758364217398e-16,6.539758364217398e-16 -1.5576470588235294,-10.063218942792712,-10.063218942792712,0.00011135493584032875,0.00011135493584032875,-110.06355297142275,-110.06355297142275,6.639227167191322e-16,6.639227167191322e-16 -1.5599999999999998,-10.132357404358235,-10.132357404358235,0.00010822248697383412,0.00010822248697383412,-110.58094547576859,-110.58094547576859,6.764507974678549e-16,6.764507974678549e-16 -1.5623529411764705,-10.110638562156387,-10.110638562156387,0.00010005933255476393,0.00010005933255476393,-111.09966952230202,-111.09966952230202,6.9057949998839e-16,6.9057949998839e-16 -1.5647058823529412,-10.159065702109743,-10.159065702109743,0.00010165223058435786,0.00010165223058435786,-111.62036039752009,-111.62036039752009,7.0485489526427e-16,7.0485489526427e-16 -1.5670588235294118,-10.179309914179493,-10.179309914179493,9.966933606476522e-05,9.966933606476522e-05,-112.14235758161382,-112.14235758161382,7.178990719751755e-16,7.178990719751755e-16 -1.5694117647058823,-10.190220594493313,-10.190220594493313,9.717160913878476e-05,9.717160913878476e-05,-112.66424024217942,-112.66424024217942,7.288516205444544e-16,7.288516205444544e-16 -1.571764705882353,-10.296630548114317,-10.296630548114317,0.00010168086678377455,0.00010168086678377455,-113.18437676633565,-113.18437676633565,7.375482620843875e-16,7.375482620843875e-16 -1.5741176470588236,-10.344437282501751,-10.344437282501751,0.00010005483074757704,0.00010005483074757704,-113.70152178155358,-113.70152178155358,7.444694422958102e-16,7.444694422958102e-16 -1.576470588235294,-10.403631329921351,-10.403631329921351,9.847487342816654e-05,9.847487342816654e-05,-114.21502621766356,-114.21502621766356,7.50494363977185e-16,7.50494363977185e-16 -1.5788235294117647,-10.467466564870605,-10.467466564870605,9.974993897616868e-05,9.974993897616868e-05,-114.7250167805083,-114.7250167805083,7.56580254977372e-16,7.56580254977372e-16 -1.5811764705882352,-10.4509796797787,-10.4509796797787,8.92276780755777e-05,8.92276780755777e-05,-115.23230896818924,-115.23230896818924,7.634585623266999e-16,7.634585623266999e-16 -1.5835294117647059,-10.499280072784773,-10.499280072784773,9.449988348688365e-05,9.449988348688365e-05,-115.73787702343061,-115.73787702343061,7.714343467792097e-16,7.714343467792097e-16 -1.5858823529411765,-10.579907677671356,-10.579907677671356,0.00010698541300112696,0.00010698541300112696,-116.24272275731495,-116.24272275731495,7.804106794874278e-16,7.804106794874278e-16 -1.5882352941176474,-10.567409363560644,-10.567409363560644,9.924518493550215e-05,9.924518493550215e-05,-116.74755587381816,-116.74755587381816,7.899653531323409e-16,7.899653531323409e-16 -1.5905882352941176,-10.626594574438386,-10.626594574438386,9.713618625296963e-05,9.713618625296963e-05,-117.25258876731995,-117.25258876731995,7.995380846986219e-16,7.995380846986219e-16 -1.592941176470588,-10.625930815477437,-10.625930815477437,9.639939440707137e-05,9.639939440707137e-05,-117.75777121556199,-117.75777121556199,8.086058177097478e-16,8.086058177097478e-16 -1.5952941176470588,-10.68001584512361,-10.68001584512361,9.667303635520955e-05,9.667303635520955e-05,-118.26276696355859,-118.26276696355859,8.167885578832954e-16,8.167885578832954e-16 -1.5976470588235294,-10.680582623534496,-10.680582623534496,9.360269548431706e-05,9.360269548431706e-05,-118.76717223788283,-118.76717223788283,8.238794294386757e-16,8.238794294386757e-16 -1.6,-10.686302550756931,-10.686302550756931,9.355228623378112e-05,9.355228623378112e-05,-119.27053738405826,-119.27053738405826,8.298624254687967e-16,8.298624254687967e-16 -1.6023529411764705,-10.73074384794874,-10.73074384794874,9.499164386225214e-05,9.499164386225214e-05,-119.77254298876932,-119.77254298876932,8.34875243991046e-16,8.34875243991046e-16 -1.6047058823529412,-10.72061441861664,-10.72061441861664,9.508038093692846e-05,9.508038093692846e-05,-120.27306761637553,-120.27306761637553,8.391668094427954e-16,8.391668094427954e-16 -1.6070588235294117,-10.797569483641562,-10.797569483641562,9.092320477858336e-05,9.092320477858336e-05,-120.77208183388514,-120.77208183388514,8.43003338548691e-16,8.43003338548691e-16 -1.6094117647058825,-10.808186350053123,-10.808186350053123,8.549904340987117e-05,8.549904340987117e-05,-121.26981804930435,-121.26981804930435,8.466229546388709e-16,8.466229546388709e-16 -1.611764705882353,-10.866466140739105,-10.866466140739105,8.776782492206649e-05,8.776782492206649e-05,-121.76657381888523,-121.76657381888523,8.501369005505909e-16,8.501369005505909e-16 -1.6141176470588237,-10.891193579474159,-10.891193579474159,8.207411856952825e-05,8.207411856952825e-05,-122.26263641630617,-122.26263641630617,8.535381165781495e-16,8.535381165781495e-16 -1.616470588235294,-10.944771950579145,-10.944771950579145,8.15085015475589e-05,8.15085015475589e-05,-122.75829737799839,-122.75829737799839,8.566921530436166e-16,8.566921530436166e-16 -1.6188235294117648,-10.966015296771095,-10.966015296771095,7.67362658865628e-05,7.67362658865628e-05,-123.25373051593749,-123.25373051593749,8.593948619657323e-16,8.593948619657323e-16 -1.6211764705882352,-11.018270625788382,-11.018270625788382,7.770946040241126e-05,7.770946040241126e-05,-123.7489223052927,-123.7489223052927,8.614494895798794e-16,8.614494895798794e-16 -1.6235294117647059,-11.080206055169528,-11.080206055169528,7.638114178176505e-05,7.638114178176505e-05,-124.24391730036209,-124.24391730036209,8.626930204063001e-16,8.626930204063001e-16 -1.6258823529411766,-11.136323580872507,-11.136323580872507,7.722972754823538e-05,7.722972754823538e-05,-124.7385922463567,-124.7385922463567,8.63012263601237e-16,8.63012263601237e-16 -1.6282352941176468,-11.225211738151064,-11.225211738151064,7.110716072365991e-05,7.110716072365991e-05,-125.23291644149559,-125.23291644149559,8.6234550104817e-16,8.6234550104817e-16 -1.630588235294118,-11.328823039513606,-11.328823039513606,7.280425457060855e-05,7.280425457060855e-05,-125.72684748942015,-125.72684748942015,8.606362183243562e-16,8.606362183243562e-16 -1.6329411764705881,-11.334599058173389,-11.334599058173389,7.34744557472639e-05,7.34744557472639e-05,-126.22037288600826,-126.22037288600826,8.578405637271033e-16,8.578405637271033e-16 -1.6352941176470588,-11.398229977953253,-11.398229977953253,7.284384757459412e-05,7.284384757459412e-05,-126.71340900642606,-126.71340900642606,8.539415520313885e-16,8.539415520313885e-16 -1.6376470588235295,-11.413168567900401,-11.413168567900401,7.52084476550498e-05,7.52084476550498e-05,-127.20591123544513,-127.20591123544513,8.489332563686052e-16,8.489332563686052e-16 -1.6400000000000001,-11.443840057443843,-11.443840057443843,7.661491833944523e-05,7.661491833944523e-05,-127.69792159546374,-127.69792159546374,8.428475886303794e-16,8.428475886303794e-16 -1.6423529411764706,-11.509464783576231,-11.509464783576231,7.612036327917859e-05,7.612036327917859e-05,-128.18941075664324,-128.18941075664324,8.357360094551048e-16,8.357360094551048e-16 -1.6447058823529415,-11.557783118390029,-11.557783118390029,8.06454404022325e-05,8.06454404022325e-05,-128.6804885664417,-128.6804885664417,8.276473311540672e-16,8.276473311540672e-16 -1.6470588235294117,-11.641317657663885,-11.641317657663885,7.700930434979604e-05,7.700930434979604e-05,-129.17120611321752,-129.17120611321752,8.185921120336859e-16,8.185921120336859e-16 -1.6494117647058824,-11.658343719672459,-11.658343719672459,7.736549064326362e-05,7.736549064326362e-05,-129.66177765173276,-129.66177765173276,8.085366878447887e-16,8.085366878447887e-16 -1.651764705882353,-11.666764020022473,-11.666764020022473,7.81088578405111e-05,7.81088578405111e-05,-130.152245495482,-130.152245495482,7.974211334690321e-16,7.974211334690321e-16 -1.6541176470588237,-11.694653831339238,-11.694653831339238,7.966497425880475e-05,7.966497425880475e-05,-130.64275418695505,-130.64275418695505,7.851692584641191e-16,7.851692584641191e-16 -1.6564705882352944,-11.65368168703717,-11.65368168703717,7.713161584412073e-05,7.713161584412073e-05,-131.1333016087224,-131.1333016087224,7.717154419177659e-16,7.717154419177659e-16 -1.6588235294117644,-11.706300051840547,-11.706300051840547,7.498896517740728e-05,7.498896517740728e-05,-131.62394108230956,-131.62394108230956,7.57015965203508e-16,7.57015965203508e-16 -1.6611764705882353,-11.775957361408835,-11.775957361408835,7.778114781287977e-05,7.778114781287977e-05,-132.1147304516938,-132.1147304516938,7.410423094355327e-16,7.410423094355327e-16 -1.663529411764706,-11.810337927515594,-11.810337927515594,7.729042546899868e-05,7.729042546899868e-05,-132.6057633408179,-132.6057633408179,7.237636472630808e-16,7.237636472630808e-16 -1.6658823529411766,-11.865632814416921,-11.865632814416921,7.558944895892577e-05,7.558944895892577e-05,-133.09708554582593,-133.09708554582593,7.051191125771002e-16,7.051191125771002e-16 -1.668235294117647,-11.900866400774758,-11.900866400774758,7.215723496296981e-05,7.215723496296981e-05,-133.58881342613444,-133.58881342613444,6.85055866559694e-16,6.85055866559694e-16 -1.670588235294118,-11.94367099417137,-11.94367099417137,6.96664498645914e-05,6.96664498645914e-05,-134.08095822645888,-134.08095822645888,6.635087430967197e-16,6.635087430967197e-16 -1.672941176470588,-11.999488486203193,-11.999488486203193,6.738506390446549e-05,6.738506390446549e-05,-134.57345036500433,-134.57345036500433,6.404461297061238e-16,6.404461297061238e-16 -1.6752941176470588,-12.008426916387474,-12.008426916387474,6.700075549605024e-05,6.700075549605024e-05,-135.06622507767298,-135.06622507767298,6.158750405864878e-16,6.158750405864878e-16 -1.6776470588235295,-12.079611974855183,-12.079611974855183,6.655501953859382e-05,6.655501953859382e-05,-135.55926890653745,-135.55926890653745,5.898444086885969e-16,5.898444086885969e-16 -1.68,-12.154495195575235,-12.154495195575235,7.170376901846843e-05,7.170376901846843e-05,-136.05249326037216,-136.05249326037216,5.624310339077539e-16,5.624310339077539e-16 -1.6823529411764706,-12.211361505738008,-12.211361505738008,7.205873217563954e-05,7.205873217563954e-05,-136.54583989173176,-136.54583989173176,5.337219216245914e-16,5.337219216245914e-16 -1.684705882352941,-12.27702151208941,-12.27702151208941,7.18963065306019e-05,7.18963065306019e-05,-137.0392021863089,-137.0392021863089,5.038051729402601e-16,5.038051729402601e-16 -1.6870588235294117,-12.39811752677631,-12.39811752677631,7.307794683329858e-05,7.307794683329858e-05,-137.53244104780282,-137.53244104780282,4.727805599569277e-16,4.727805599569277e-16 -1.6894117647058824,-12.44450934737849,-12.44450934737849,7.434526918789403e-05,7.434526918789403e-05,-138.02521757753698,-138.02521757753698,4.408066280152897e-16,4.408066280152897e-16 -1.6917647058823528,-12.511496905932889,-12.511496905932889,7.095050004053439e-05,7.095050004053439e-05,-138.5170644470515,-138.5170644470515,4.081190623038999e-16,4.081190623038999e-16 -1.6941176470588235,-12.525360021285893,-12.525360021285893,7.601256964152283e-05,7.601256964152283e-05,-139.00741374050395,-139.00741374050395,3.7504589293612644e-16,3.7504589293612644e-16 -1.6964705882352942,-12.538111878208452,-12.538111878208452,6.933434010025805e-05,6.933434010025805e-05,-139.49569980015843,-139.49569980015843,3.420064852039837e-16,3.420064852039837e-16 -1.6988235294117644,-12.507963111136965,-12.507963111136965,7.734323880815772e-05,7.734323880815772e-05,-139.98159420158098,-139.98159420158098,3.094481636540734e-16,3.094481636540734e-16 -1.7011764705882353,-12.545952478733081,-12.545952478733081,7.969833940431426e-05,7.969833940431426e-05,-140.46499644309887,-140.46499644309887,2.7777504972970786e-16,2.7777504972970786e-16 -1.7035294117647062,-12.578631193425938,-12.578631193425938,9.19192106798465e-05,9.19192106798465e-05,-140.94626174444542,-140.94626174444542,2.472885690401639e-16,2.472885690401639e-16 -1.7058823529411766,-12.641262206022775,-12.641262206022775,9.568897240487069e-05,9.568897240487069e-05,-141.4261232614563,-141.4261232614563,2.1814709257913284e-16,2.1814709257913284e-16 -1.7082352941176469,-12.651258920364455,-12.651258920364455,9.55086771480295e-05,9.55086771480295e-05,-141.90544164024467,-141.90544164024467,1.903769268746336e-16,1.903769268746336e-16 -1.7105882352941175,-12.632079104429119,-12.632079104429119,8.95721484371695e-05,8.95721484371695e-05,-142.38505069834682,-142.38505069834682,1.6391843461587438e-16,1.6391843461587438e-16 -1.7129411764705882,-12.819177432453815,-12.819177432453815,7.682991860830408e-05,7.682991860830408e-05,-142.86547195321418,-142.86547195321418,1.387304881250883e-16,1.387304881250883e-16 -1.7152941176470589,-12.608907329936011,-12.608907329936011,9.411740271330618e-05,9.411740271330618e-05,-143.34682129479944,-143.34682129479944,1.1483482880189004e-16,1.1483482880189004e-16 -1.7176470588235295,-12.430732517122468,-12.430732517122468,8.91138762586358e-05,8.91138762586358e-05,-143.8290497166113,-143.8290497166113,9.236150545426913e-17,9.236150545426913e-17 -1.72,-12.401766151741306,-12.401766151741306,0.00011082684185396204,0.00011082684185396204,-144.3126742374804,-144.3126742374804,7.153538365831201e-17,7.153538365831201e-17 -1.7223529411764709,-12.95222118292923,-12.95222118292923,0.0001561254150948164,0.0001561254150948164,-144.80066515537624,-144.80066515537624,5.260972395714504e-17,5.260972395714504e-17 -1.7247058823529409,-12.385608491590421,-12.385608491590421,0.0001282635430146288,0.0001282635430146288,-145.30414216557358,-145.30414216557358,3.581024849200757e-17,3.581024849200757e-17 -1.7270588235294118,-12.661626842871037,-12.661626842871037,0.00024026568929418128,0.00024026568929418128,-145.8651795903237,-145.8651795903237,2.1319464311760486e-17,2.1319464311760486e-17 -1.7294117647058824,-12.9706315187263,-12.9706315187263,0.00018238862079158978,0.00018238862079158978,-146.70677129204424,-146.70677129204424,9.830381419095621e-18,9.830381419095621e-18 -1.731764705882353,-12.526435639034993,-12.526435639034993,0.00059891105266481,0.00059891105266481,-148.50153340088792,-148.50153340088792,7.807946493657439e-18,7.807946493657439e-18 -1.7341176470588235,-11.876887063793756,-11.876887063793756,0.00018094230245940273,0.00018094230245940273,-149.48113180856296,-149.48113180856296,1.5780917489644714e-17,1.5780917489644714e-17 -1.7364705882352938,-12.477401297312952,-12.477401297312952,0.00025100106059406643,0.00025100106059406643,-150.03905629074228,-150.03905629074228,2.4629036564924163e-17,2.4629036564924163e-17 -1.7388235294117647,-14.694073594667291,-14.694073594667291,6.042995296131206e-05,6.042995296131206e-05,-150.50990214570538,-150.50990214570538,3.3272749218068665e-17,3.3272749218068665e-17 -1.7411764705882353,-13.811155432780458,-13.811155432780458,7.160923233618096e-05,7.160923233618096e-05,-150.9544517786225,-150.9544517786225,4.1654017548676804e-17,4.1654017548676804e-17 -1.743529411764706,-11.528657713354422,-11.528657713354422,1.4674900196417466e-05,1.4674900196417466e-05,-151.3899882554173,-151.3899882554173,4.9714127918410574e-17,4.9714127918410574e-17 -1.7458823529411764,-13.054651504507309,-13.054651504507309,2.5767437430021515e-05,2.5767437430021515e-05,-151.82219307684423,-151.82219307684423,5.735441953999502e-17,5.735441953999502e-17 -1.748235294117647,-11.824168609938788,-11.824168609938788,2.981037916900021e-05,2.981037916900021e-05,-152.25263066655884,-152.25263066655884,6.445955814984375e-17,6.445955814984375e-17 -1.7505882352941176,-12.392847082468407,-12.392847082468407,7.897957357880902e-05,7.897957357880902e-05,-152.68133897663364,-152.68133897663364,7.094515757308511e-17,7.094515757308511e-17 -1.7529411764705882,-12.93295206016868,-12.93295206016868,5.007820891470649e-05,5.007820891470649e-05,-153.10790767744354,-153.10790767744354,7.676802226957839e-17,7.676802226957839e-17 -1.7552941176470591,-13.186569745094229,-13.186569745094229,6.57266456836975e-05,6.57266456836975e-05,-153.53186595332562,-153.53186595332562,8.190591941117074e-17,8.190591941117074e-17 -1.7576470588235293,-13.051923028626671,-13.051923028626671,5.38052120338817e-05,5.38052120338817e-05,-153.95283609151508,-153.95283609151508,8.637490473156775e-17,8.637490473156775e-17 -1.76,-13.573098631124267,-13.573098631124267,7.109654001446214e-05,7.109654001446214e-05,-154.37031189113895,-154.37031189113895,9.019662168260645e-17,9.019662168260645e-17 -1.7623529411764705,-14.136300559431106,-14.136300559431106,3.866350165606261e-05,3.866350165606261e-05,-154.78406686017183,-154.78406686017183,9.341964390084628e-17,9.341964390084628e-17 -1.7647058823529411,-13.971619305244406,-13.971619305244406,3.928461971253365e-05,3.928461971253365e-05,-155.19351609495766,-155.19351609495766,9.612362281543232e-17,9.612362281543232e-17 -1.7670588235294116,-12.211038817056448,-12.211038817056448,3.3520356071768544e-05,3.3520356071768544e-05,-155.59848190003297,-155.59848190003297,9.840955107456312e-17,9.840955107456312e-17 -1.7694117647058827,-13.735976879100912,-13.735976879100912,5.020878129621163e-05,5.020878129621163e-05,-155.9991339973639,-155.9991339973639,1.0041144756607418e-16,1.0041144756607418e-16 -1.7717647058823531,-13.401655522205607,-13.401655522205607,3.7139182558035066e-05,3.7139182558035066e-05,-156.39592715061758,-156.39592715061758,1.0226499826892996e-16,1.0226499826892996e-16 -1.7741176470588236,-13.613630009397525,-13.613630009397525,5.408561147090481e-05,5.408561147090481e-05,-156.78971108580086,-156.78971108580086,1.0405754182271185e-16,1.0405754182271185e-16 -1.776470588235294,-13.376454318621951,-13.376454318621951,9.504611890298468e-05,9.504611890298468e-05,-157.18158710374414,-157.18158710374414,1.0585473032695502e-16,1.0585473032695502e-16 -1.7788235294117647,-13.948886148802359,-13.948886148802359,7.29923064226556e-05,7.29923064226556e-05,-157.57250916147098,-157.57250916147098,1.0765095444980646e-16,1.0765095444980646e-16 -1.7811764705882354,-14.125410500078399,-14.125410500078399,7.820286789247346e-05,7.820286789247346e-05,-157.9630085900361,-157.9630085900361,1.0941526942226678e-16,1.0941526942226678e-16 -1.7835294117647063,-14.251317117281145,-14.251317117281145,9.097059123561599e-05,9.097059123561599e-05,-158.35327384306757,-158.35327384306757,1.111004610782756e-16,1.111004610782756e-16 -1.7858823529411765,-14.134576514329352,-14.134576514329352,8.572814340142783e-05,8.572814340142783e-05,-158.74319143855794,-158.74319143855794,1.1267322768455398e-16,1.1267322768455398e-16 -1.7882352941176471,-14.084351334011771,-14.084351334011771,5.614032018805475e-05,5.614032018805475e-05,-159.13260897493524,-159.13260897493524,1.141384389560266e-16,1.141384389560266e-16 -1.7905882352941174,-13.94039692712041,-13.94039692712041,7.085139169314252e-05,7.085139169314252e-05,-159.52134940583508,-159.52134940583508,1.1551205055697145e-16,1.1551205055697145e-16 -1.7929411764705883,-13.83846021377466,-13.83846021377466,8.937257446740875e-05,8.937257446740875e-05,-159.90961452392983,-159.90961452392983,1.1682983126300402e-16,1.1682983126300402e-16 -1.795294117647059,-13.982516101670852,-13.982516101670852,8.75822973679324e-05,8.75822973679324e-05,-160.29771273368894,-160.29771273368894,1.1810313664469476e-16,1.1810313664469476e-16 -1.7976470588235294,-13.931578453922972,-13.931578453922972,9.514057043761194e-05,9.514057043761194e-05,-160.6860279647636,-160.6860279647636,1.193206155291513e-16,1.193206155291513e-16 -1.8,-14.153304770938316,-14.153304770938316,0.00010057348574729064,0.00010057348574729064,-161.07482208486175,-161.07482208486175,1.2044248116197775e-16,1.2044248116197775e-16 diff --git a/sparameters/rotate_f258530e_1933e42f.yml b/sparameters/rotate_f258530e_1933e42f.yml deleted file mode 100644 index 263300a6..00000000 --- a/sparameters/rotate_f258530e_1933e42f.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 30 -fiber_xoffset: 15 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 212.89571356773376 -compute_time_minutes: 3.548261892795563 diff --git a/sparameters/rotate_f258530e_39be6f18.csv b/sparameters/rotate_f258530e_39be6f18.csv deleted file mode 100644 index b0288fda..00000000 --- a/sparameters/rotate_f258530e_39be6f18.csv +++ /dev/null @@ -1,51 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.5,-1.5621096538519972,-1.5621096538519972,0.00014967183691855563,0.00014967183691855563,1.0636577093790358,1.0636577093790358,0.007774829771501503,0.007774829771501503 -1.5020408163265306,-2.130541710145175,-2.130541710145175,0.00023499674224359318,0.00023499674224359318,0.4124096761781796,0.4124096761781796,0.009096784780747276,0.009096784780747276 -1.5040816326530613,-2.4171819675927297,-2.4171819675927297,0.00018068057269128715,0.00018068057269128715,-0.23106967116915186,-0.23106967116915186,0.010502349874561376,0.010502349874561376 -1.506122448979592,-2.7796843142268575,-2.7796843142268575,0.00021499236002518903,0.00021499236002518903,-0.8681396682011179,-0.8681396682011179,0.011977588146068556,0.011977588146068556 -1.5081632653061225,-2.8566686073559002,-2.8566686073559002,0.00012462533500619854,0.00012462533500619854,-1.499285153255358,-1.499285153255358,0.013490096237064372,0.013490096237064372 -1.510204081632653,-3.43683977115278,-3.43683977115278,0.00019038582023265494,0.00019038582023265494,-2.124336444023348,-2.124336444023348,0.015025141918056128,0.015025141918056128 -1.5122448979591836,-3.9156806878401693,-3.9156806878401693,0.0001233788590562601,0.0001233788590562601,-2.742968116153622,-2.742968116153622,0.0165527915150961,0.0165527915150961 -1.5142857142857142,-3.746982001569401,-3.746982001569401,9.699654978108537e-05,9.699654978108537e-05,-3.3547391965238864,-3.3547391965238864,0.018044802481211496,0.018044802481211496 -1.5163265306122449,-2.64202341987146,-2.64202341987146,8.826473400442723e-05,8.826473400442723e-05,-3.9589397286692742,-3.9589397286692742,0.0194885110532466,0.0194885110532466 -1.5183673469387755,-2.4427216595190355,-2.4427216595190355,6.0904430098307025e-05,6.0904430098307025e-05,-4.554895978271082,-4.554895978271082,0.02086511602953246,0.02086511602953246 -1.5204081632653061,-2.7957016581064917,-2.7957016581064917,0.00010043466440319255,0.00010043466440319255,-5.141947871207741,-5.141947871207741,0.0221667796518255,0.0221667796518255 -1.5224489795918368,-2.943656949072278,-2.943656949072278,0.00014744045131466515,0.00014744045131466515,-5.719254405250513,-5.719254405250513,0.02340007796252152,0.02340007796252152 -1.5244897959183674,-3.0361209990467035,-3.0361209990467035,0.0001634277998538974,0.0001634277998538974,-6.286175908663034,-6.286175908663034,0.02457312339568054,0.02457312339568054 -1.5265306122448983,-3.4864989982437495,-3.4864989982437495,0.00013722371380538674,0.00013722371380538674,-6.842195591393654,-6.842195591393654,0.025722296471767984,0.025722296471767984 -1.5285714285714287,-3.46133782715956,-3.46133782715956,0.0001562560025107634,0.0001562560025107634,-7.387016704954919,-7.387016704954919,0.026888647974670568,0.026888647974670568 -1.530612244897959,-3.922691317598681,-3.922691317598681,0.0001073193214210449,0.0001073193214210449,-7.921197674577398,-7.921197674577398,0.028139465732219617,0.028139465732219617 -1.5326530612244897,-3.599485781845342,-3.599485781845342,9.195690216282907e-05,9.195690216282907e-05,-8.44601912919904,-8.44601912919904,0.0295371239571042,0.0295371239571042 -1.5346938775510204,-3.5796009148104275,-3.5796009148104275,7.671526687591369e-05,7.671526687591369e-05,-8.963200888487863,-8.963200888487863,0.031156229017018665,0.031156229017018665 -1.536734693877551,-3.2381802479187147,-3.2381802479187147,9.554942148564873e-05,9.554942148564873e-05,-9.475013831290582,-9.475013831290582,0.03304527406475243,0.03304527406475243 -1.5387755102040817,-3.350711613361095,-3.350711613361095,9.679366286319099e-05,9.679366286319099e-05,-9.983533152262122,-9.983533152262122,0.03524681733316544,0.03524681733316544 -1.5408163265306123,-3.4825551930398815,-3.4825551930398815,0.00011177496498177861,0.00011177496498177861,-10.490424944071382,-10.490424944071382,0.037785615004393126,0.037785615004393126 -1.542857142857143,-3.542607319148963,-3.542607319148963,0.00010802964786869174,0.00010802964786869174,-10.996835941426149,-10.996835941426149,0.040687906208435355,0.040687906208435355 -1.5448979591836736,-3.720138507282431,-3.720138507282431,0.00011705042818441265,0.00011705042818441265,-11.503624378074832,-11.503624378074832,0.043973104921869594,0.043973104921869594 -1.546938775510204,-3.9062493697550686,-3.9062493697550686,0.00012259778573809897,0.00012259778573809897,-12.011554626749852,-12.011554626749852,0.04766996849893089,0.04766996849893089 -1.5489795918367348,-3.807021419446128,-3.807021419446128,9.972469427266759e-05,9.972469427266759e-05,-12.521281002837263,-12.521281002837263,0.051809622127365264,0.051809622127365264 -1.5510204081632653,-3.561736485516021,-3.561736485516021,8.12933388394616e-05,8.12933388394616e-05,-13.033485729810842,-13.033485729810842,0.056405072851315956,0.056405072851315956 -1.5530612244897959,-3.5692319588747163,-3.5692319588747163,0.00010541417732389061,0.00010541417732389061,-13.548753010925859,-13.548753010925859,0.061457815183448665,0.061457815183448665 -1.5551020408163265,-3.393040328443244,-3.393040328443244,8.888479951622056e-05,8.888479951622056e-05,-14.06732500708603,-14.06732500708603,0.06693630800923307,0.06693630800923307 -1.5571428571428572,-3.590855162370124,-3.590855162370124,0.00011072817408669917,0.00011072817408669917,-14.58914249402683,-14.58914249402683,0.07279482131088925,0.07279482131088925 -1.5591836734693876,-3.6582808578178394,-3.6582808578178394,0.00010776877039212812,0.00010776877039212812,-15.113712745774388,-15.113712745774388,0.07896157779966177,0.07896157779966177 -1.5612244897959184,-3.856585035632909,-3.856585035632909,0.00011508568044328544,0.00011508568044328544,-15.64040290639347,-15.64040290639347,0.08536905549794797,0.08536905549794797 -1.563265306122449,-3.9975967616818293,-3.9975967616818293,0.0001148734106997889,0.0001148734106997889,-16.168382331720785,-16.168382331720785,0.09195140505985681,0.09195140505985681 -1.5653061224489797,-3.906451965508765,-3.906451965508765,0.00010612369917910288,0.00010612369917910288,-16.696862617183687,-16.696862617183687,0.0986518601441405,0.0986518601441405 -1.5673469387755101,-4.079303899024319,-4.079303899024319,0.00010186261948946935,0.00010186261948946935,-17.22519899460283,-17.22519899460283,0.10543840088788418,0.10543840088788418 -1.569387755102041,-3.9505353389328746,-3.9505353389328746,9.059615004278309e-05,9.059615004278309e-05,-17.752966543299827,-17.752966543299827,0.11228194169352886,0.11228194169352886 -1.5714285714285714,-4.065903433578672,-4.065903433578672,8.663752711215062e-05,8.663752711215062e-05,-18.27976318964162,-18.27976318964162,0.1191676485566489,0.1191676485566489 -1.573469387755102,-4.020824628742702,-4.020824628742702,9.313752018931281e-05,9.313752018931281e-05,-18.805462399610544,-18.805462399610544,0.1260769143954082,0.1260769143954082 -1.5755102040816327,-3.8389155716322483,-3.8389155716322483,0.00010112707602542612,0.00010112707602542612,-19.329981361958115,-19.329981361958115,0.13298716422216583,0.13298716422216583 -1.577551020408163,-4.050910892202438,-4.050910892202438,0.00010568236824249185,0.00010568236824249185,-19.85320029190821,-19.85320029190821,0.1398695374883757,0.1398695374883757 -1.579591836734694,-4.096209906320199,-4.096209906320199,0.00010894455589301457,0.00010894455589301457,-20.37509274515875,-20.37509274515875,0.1466937123132675,0.1466937123132675 -1.5816326530612246,-4.184695933647635,-4.184695933647635,0.00010422752111417878,0.00010422752111417878,-20.895621599624494,-20.895621599624494,0.15342090851954662,0.15342090851954662 -1.5836734693877552,-4.213445175624837,-4.213445175624837,0.00010387271920784039,0.00010387271920784039,-21.41465046085746,-21.41465046085746,0.16001060851394455,0.16001060851394455 -1.5857142857142859,-4.2656479335753446,-4.2656479335753446,0.00010391745231518829,0.00010391745231518829,-21.93213247927251,-21.93213247927251,0.16642616837738552,0.16642616837738552 -1.5877551020408165,-4.363684370176002,-4.363684370176002,9.517629314565724e-05,9.517629314565724e-05,-22.44793031196822,-22.44793031196822,0.1726244447423023,0.1726244447423023 -1.5897959183673471,-4.282670565539924,-4.282670565539924,9.21100424882141e-05,9.21100424882141e-05,-22.96194687901197,-22.96194687901197,0.17856408861898845,0.17856408861898845 -1.5918367346938775,-4.282867208023266,-4.282867208023266,9.075436521938298e-05,9.075436521938298e-05,-23.474071261581674,-23.474071261581674,0.18420970538669218,0.18420970538669218 -1.593877551020408,-4.289313177105939,-4.289313177105939,0.00010461889369666789,0.00010461889369666789,-23.984129651063277,-23.984129651063277,0.18952254911846597,0.18952254911846597 -1.5959183673469388,-4.281714194327021,-4.281714194327021,9.890596643673228e-05,9.890596643673228e-05,-24.49198763512513,-24.49198763512513,0.1944779608837019,0.1944779608837019 -1.5979591836734695,-4.407114045216379,-4.407114045216379,0.00010500470247827318,0.00010500470247827318,-24.99739515413803,-24.99739515413803,0.19906163048310063,0.19906163048310063 -1.6,-4.448460934492592,-4.448460934492592,9.503730970993442e-05,9.503730970993442e-05,-25.500308153377855,-25.500308153377855,0.20327373135499502,0.20327373135499502 diff --git a/sparameters/rotate_f258530e_39be6f18.yml b/sparameters/rotate_f258530e_39be6f18.yml deleted file mode 100644 index a7270f87..00000000 --- a/sparameters/rotate_f258530e_39be6f18.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: 27 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 331.16420245170593 -compute_time_minutes: 5.5194033741950985 diff --git a/sparameters/rotate_f258530e_3a26c260.csv b/sparameters/rotate_f258530e_3a26c260.csv deleted file mode 100644 index 97520da9..00000000 --- a/sparameters/rotate_f258530e_3a26c260.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,-1.2388054646338258,-1.2388054646338258,1.0988125401557403,1.0988125401557403,0.7410147946302605,0.7410147946302605,6.130629732132843e-05,6.130629732132843e-05 -1.2023529411764706,1.0904279490360504,1.0904279490360504,1.1675225068748851,1.1675225068748851,-1.38635045494117,-1.38635045494117,5.767698477931477e-05,5.767698477931477e-05 -1.204705882352941,2.2210950796234767,2.2210950796234767,0.7397041838205608,0.7397041838205608,-2.487787349977584,-2.487787349977584,0.00010908886809592037,0.00010908886809592037 -1.2070588235294117,2.824066004287675,2.824066004287675,0.6588376205253069,0.6588376205253069,-3.228963137184526,-3.228963137184526,0.000136758126778406,0.000136758126778406 -1.2094117647058824,3.3218996648053247,3.3218996648053247,0.688129966247278,0.688129966247278,-3.9047535501650312,-3.9047535501650312,0.00012768470715311033,0.00012768470715311033 -1.2117647058823529,3.907970844791662,3.907970844791662,0.8783825753664684,0.8783825753664684,-4.595841844178314,-4.595841844178314,8.67005096437701e-05,8.67005096437701e-05 -1.2141176470588235,4.990511796915812,4.990511796915812,2.217301117623173,2.217301117623173,-5.619419870300522,-5.619419870300522,2.957660065685841e-05,2.957660065685841e-05 -1.216470588235294,7.82673730695293,7.82673730695293,1.5855617192965226,1.5855617192965226,-8.322083160642345,-8.322083160642345,4.191921149170715e-05,4.191921149170715e-05 -1.2188235294117646,8.647724680264782,8.647724680264782,0.8645514769957952,0.8645514769957952,-9.132759546654865,-9.132759546654865,8.763790990872233e-05,8.763790990872233e-05 -1.2211764705882353,9.162830125531269,9.162830125531269,0.7543529709884674,0.7543529709884674,-9.761714652332165,-9.761714652332165,0.00010884846004372913,0.00010884846004372913 -1.2235294117647058,9.609265221651903,9.609265221651903,0.7948439489436383,0.7948439489436383,-10.352055078152832,-10.352055078152832,0.00010056865730944865,0.00010056865730944865 -1.2258823529411764,10.11271713800273,10.11271713800273,1.0675731186718875,1.0675731186718875,-10.936189794341526,-10.936189794341526,6.682758630013714e-05,6.682758630013714e-05 -1.228235294117647,10.820713427921115,10.820713427921115,3.5005817896593623,3.5005817896593623,-11.606300892612639,-11.606300892612639,1.8153367042234765e-05,1.8153367042234765e-05 -1.2305882352941175,8.084251461217786,8.084251461217786,1.9484897219343709,1.9484897219343709,-8.770928091057117,-8.770928091057117,3.2707256555178486e-05,3.2707256555178486e-05 -1.2329411764705882,8.685237917388385,8.685237917388385,0.9722239260717355,0.9722239260717355,-9.360177584982797,-9.360177584982797,7.208454532371457e-05,7.208454532371457e-05 -1.2352941176470589,9.140722789333948,9.140722789333948,0.8210319268508083,0.8210319268508083,-9.902134498491797,-9.902134498491797,9.120323242365019e-05,9.120323242365019e-05 -1.2376470588235293,9.548976402047822,9.548976402047822,0.8529372440006237,0.8529372440006237,-10.427271259596708,-10.427271259596708,8.664378836825179e-05,8.664378836825179e-05 -1.24,9.974639253492697,9.974639253492697,1.1098930773628066,1.1098930773628066,-10.928848676458223,-10.928848676458223,6.105441337172693e-05,6.105441337172693e-05 -1.2423529411764704,10.379691872579336,10.379691872579336,2.7743635811595486,2.7743635811595486,-11.31922441718648,-11.31922441718648,2.2118885696782484e-05,2.2118885696782484e-05 -1.244705882352941,8.220572689928197,8.220572689928197,2.839373999853266,2.839373999853266,-9.087855047627748,-9.087855047627748,2.1280648557994462e-05,2.1280648557994462e-05 -1.2470588235294118,8.621105264620393,8.621105264620393,1.1415558001579047,1.1415558001579047,-9.464329723102583,-9.464329723102583,5.646767993879688e-05,5.646767993879688e-05 -1.2494117647058822,9.032542144116125,9.032542144116125,0.8914699787836374,0.8914699787836374,-9.933634303200288,-9.933634303200288,7.698433891857035e-05,7.698433891857035e-05 -1.251764705882353,9.407188050506399,9.407188050506399,0.8735617823911591,0.8735617823911591,-10.40454689175781,-10.40454689175781,7.880134532021867e-05,7.880134532021867e-05 -1.2541176470588236,9.780549758467602,9.780549758467602,1.0359316944114594,1.0359316944114594,-10.852512050447311,-10.852512050447311,6.257084185988017e-05,6.257084185988017e-05 -1.256470588235294,10.118018058695698,10.118018058695698,1.7774848945898531,1.7774848945898531,-11.200150544943892,-11.200150544943892,3.3493983905863514e-05,3.3493983905863514e-05 -1.2588235294117647,9.020387704621342,9.020387704621342,5.872352122606092,5.872352122606092,-10.053139287641764,-10.053139287641764,9.76981796983773e-06,9.76981796983773e-06 -1.2611764705882353,8.532346439225844,8.532346439225844,1.5922992418435942,1.5922992418435942,-9.529333472552148,-9.529333472552148,3.7306623274364626e-05,3.7306623274364626e-05 -1.2635294117647058,8.862377012430308,8.862377012430308,1.0438085951635554,1.0438085951635554,-9.885935901316136,-9.885935901316136,6.0274708833838704e-05,6.0274708833838704e-05 -1.2658823529411765,9.199456833333642,9.199456833333642,0.9252519372308998,0.9252519372308998,-10.29685828136965,-10.29685828136965,6.943901893897988e-05,6.943901893897988e-05 -1.268235294117647,9.526877175151295,9.526877175151295,0.9771264565894198,0.9771264565894198,-10.698419095625868,-10.698419095625868,6.364912096409383e-05,6.364912096409383e-05 -1.2705882352941176,9.833148368765741,9.833148368765741,1.2803864162221874,1.2803864162221874,-11.036084356128988,-11.036084356128988,4.5406079402770646e-05,4.5406079402770646e-05 -1.2729411764705882,9.877037214497138,9.877037214497138,2.5550067453789813,2.5550067453789813,-11.055502639591067,-11.055502639591067,2.1589942443366108e-05,2.1589942443366108e-05 -1.2752941176470587,8.787210070521349,8.787210070521349,2.831760540666727,2.831760540666727,-9.92424199618863,-9.92424199618863,1.9606796120474122e-05,1.9606796120474122e-05 -1.2776470588235294,8.732650714109417,8.732650714109417,1.4315865597569024,1.4315865597569024,-9.868906312581778,-9.868906312581778,4.058059072889697e-05,4.058059072889697e-05 -1.28,8.980382337614019,8.980382337614019,1.0842583470401315,1.0842583470401315,-10.162881429495743,-10.162881429495743,5.555175719903622e-05,5.555175719903622e-05 -1.2823529411764705,9.253331747853377,9.253331747853377,1.006062181038639,1.006062181038639,-10.501848436328828,-10.501848436328828,5.9629916171173324e-05,5.9629916171173324e-05 -1.2847058823529411,9.52188866558446,9.52188866558446,1.0912896939239105,1.0912896939239105,-10.818435098163324,-10.818435098163324,5.2653093219295976e-05,5.2653093219295976e-05 -1.2870588235294118,9.726121058209575,9.726121058209575,1.4491757452157594,1.4491757452157594,-11.026925083771713,-11.026925083771713,3.760281140655053e-05,3.760281140655053e-05 -1.2894117647058823,9.570977609695515,9.570977609695515,2.3913792574750583,2.3913792574750583,-10.84094347056141,-10.84094347056141,2.2297341693462086e-05,2.2297341693462086e-05 -1.291764705882353,8.94562262164568,8.94562262164568,2.231306522153138,2.231306522153138,-10.191698286794612,-10.191698286794612,2.449049689732296e-05,2.449049689732296e-05 -1.2941176470588236,8.866394111097158,8.866394111097158,1.4712995159482072,1.4712995159482072,-10.12858158687015,-10.12858158687015,3.872209198828479e-05,3.872209198828479e-05 -1.296470588235294,9.021808996921182,9.021808996921182,1.1757441639213957,1.1757441639213957,-10.333475420768744,-10.333475420768744,4.954340052760601e-05,4.954340052760601e-05 -1.2988235294117647,9.228525200899162,9.228525200899162,1.0924597775864695,1.0924597775864695,-10.593639479186457,-10.593639479186457,5.264452745339461e-05,5.264452745339461e-05 -1.3011764705882352,9.436725562592976,9.436725562592976,1.155894766522992,1.155894766522992,-10.832008375936287,-10.832008375936287,4.7900652406724936e-05,4.7900652406724936e-05 -1.3035294117647058,9.579592876896527,9.579592876896527,1.4202643311046688,1.4202643311046688,-10.969480919389982,-10.969480919389982,3.7660510106944764e-05,3.7660510106944764e-05 -1.3058823529411765,9.491611619032167,9.491611619032167,1.932194849224061,1.932194849224061,-10.856793046167772,-10.856793046167772,2.7627790771446884e-05,2.7627790771446884e-05 -1.308235294117647,9.134728415501264,9.134728415501264,2.042117818058447,2.042117818058447,-10.49055798915124,-10.49055798915124,2.694177075649849e-05,2.694177075649849e-05 -1.3105882352941176,8.968295212444135,8.968295212444135,1.6021859295847423,1.6021859295847423,-10.347386045710397,-10.347386045710397,3.55948009279941e-05,3.55948009279941e-05 -1.3129411764705883,9.018331201629996,9.018331201629996,1.3040540000401657,1.3040540000401657,-10.443972324294029,-10.443972324294029,4.452062298258309e-05,4.452062298258309e-05 -1.3152941176470587,9.15451154535846,9.15451154535846,1.1702284133049088,1.1702284133049088,-10.625241824127714,-10.625241824127714,4.91002169401398e-05,4.91002169401398e-05 -1.3176470588235294,9.318979867168672,9.318979867168672,1.161793094538962,1.161793094538962,-10.814149333156575,-10.814149333156575,4.813055954442197e-05,4.813055954442197e-05 -1.32,9.461728065540244,9.461728065540244,1.2895726897076416,1.2895726897076416,-10.953654197212202,-10.953654197212202,4.2491364704681375e-05,4.2491364704681375e-05 -1.3223529411764705,9.493163632470292,9.493163632470292,1.5778759626717835,1.5778759626717835,-10.97138811060519,-10.97138811060519,3.4938275963548796e-05,3.4938275963548796e-05 -1.3247058823529412,9.329677082916163,9.329677082916163,1.8647436886649136,1.8647436886649136,-10.808456872787113,-10.808456872787113,3.0461710384154094e-05,3.0461710384154094e-05 -1.3270588235294118,9.103636919294942,9.103636919294942,1.7720572180604133,1.7720572180604133,-10.60874852516953,-10.60874852516953,3.3151171918863275e-05,3.3151171918863275e-05 -1.3294117647058823,9.022062859671559,9.022062859671559,1.4821419584167275,1.4821419584167275,-10.57069856808947,-10.57069856808947,4.0346401484049487e-05,4.0346401484049487e-05 -1.331764705882353,9.075191692292876,9.075191692292876,1.2670373712697591,1.2670373712697591,-10.667498507189052,-10.667498507189052,4.702466862348442e-05,4.702466862348442e-05 -1.3341176470588234,9.203395309714951,9.203395309714951,1.1664882328207449,1.1664882328207449,-10.823256865420879,-10.823256865420879,5.020917928183862e-05,5.020917928183862e-05 -1.336470588235294,9.355988431816376,9.355988431816376,1.183195626319133,1.183195626319133,-10.98323651298066,-10.98323651298066,4.885405776319241e-05,4.885405776319241e-05 -1.3388235294117647,9.47164959527873,9.47164959527873,1.3326305509574603,1.3326305509574603,-11.096868281989174,-11.096868281989174,4.36324644342254e-05,4.36324644342254e-05 -1.3411764705882352,9.467946176878055,9.467946176878055,1.609858161024504,1.609858161024504,-11.10016318249041,-11.10016318249041,3.702129846734708e-05,3.702129846734708e-05 -1.3435294117647059,9.296654047322608,9.296654047322608,1.82674076869832,1.82674076869832,-10.955579015828729,-10.955579015828729,3.360183584364684e-05,3.360183584364684e-05 -1.3458823529411765,9.09600286487998,9.09600286487998,1.6988427935059625,1.6988427935059625,-10.797018877955404,-10.797018877955404,3.683320370671688e-05,3.683320370671688e-05 -1.348235294117647,9.036513385555269,9.036513385555269,1.4188672454366584,1.4188672454366584,-10.782908017139277,-10.782908017139277,4.4213097360473773e-05,4.4213097360473773e-05 -1.3505882352941176,9.110427935168754,9.110427935168754,1.219283947241796,1.219283947241796,-10.892556184285038,-10.892556184285038,5.089365066559325e-05,5.089365066559325e-05 -1.3529411764705883,9.256873654233539,9.256873654233539,1.1419491648565037,1.1419491648565037,-11.058696491864993,-11.058696491864993,5.368589757374614e-05,5.368589757374614e-05 -1.3552941176470588,9.417714090130673,9.417714090130673,1.1914964128175751,1.1914964128175751,-11.228515291349115,-11.228515291349115,5.1402739393380907e-05,5.1402739393380907e-05 -1.3576470588235294,9.52260860399736,9.52260860399736,1.3888991386264335,1.3888991386264335,-11.344401840006137,-11.344401840006137,4.475842723398585e-05,4.475842723398585e-05 -1.3599999999999999,9.478117310870573,9.478117310870573,1.7248448553854485,1.7248448553854485,-11.324156522176686,-11.324156522176686,3.6882503648708314e-05,3.6882503648708314e-05 -1.3623529411764705,9.241507409943768,9.241507409943768,1.9141700986649615,1.9141700986649615,-11.126269228556467,-11.126269228556467,3.38785669674819e-05,3.38785669674819e-05 -1.3647058823529412,9.029531800425909,9.029531800425909,1.6525487894039506,1.6525487894039506,-10.960104042464073,-10.960104042464073,3.951585837725887e-05,3.951585837725887e-05 -1.3670588235294117,9.015110736054691,9.015110736054691,1.3203289570178152,1.3203289570178152,-10.98839710759379,-10.98839710759379,4.914086951143606e-05,4.914086951143606e-05 -1.3694117647058823,9.140850558355138,9.140850558355138,1.1279053869934166,1.1279053869934166,-11.145403003636893,-11.145403003636893,5.6769160688584236e-05,5.6769160688584236e-05 -1.371764705882353,9.33287808773027,9.33287808773027,1.075466642064896,1.075466642064896,-11.3566151195472,-11.3566151195472,5.897138836939455e-05,5.897138836939455e-05 -1.3741176470588234,9.531422688702165,9.531422688702165,1.165166507285285,1.165166507285285,-11.569390893050656,-11.569390893050656,5.4528206198568464e-05,5.4528206198568464e-05 -1.3764705882352941,9.663333197650887,9.663333197650887,1.456326490707047,1.456326490707047,-11.720838359652834,-11.720838359652834,4.420514848053947e-05,4.420514848053947e-05 -1.3788235294117648,9.583256717140195,9.583256717140195,2.0469549770759095,2.0469549770759095,-11.672136496214193,-11.672136496214193,3.195720094890788e-05,3.195720094890788e-05 -1.3811764705882352,9.141358717694786,9.141358717694786,2.3576830514931797,2.3576830514931797,-11.271879841459217,-11.271879841459217,2.8028721004498225e-05,2.8028721004498225e-05 -1.383529411764706,8.843255628603409,8.843255628603409,1.702089741801243,1.702089741801243,-11.01880571449433,-11.01880571449433,3.8771517551858275e-05,3.8771517551858275e-05 -1.3858823529411763,8.887326417299178,8.887326417299178,1.214505546828824,1.214505546828824,-11.102643023743363,-11.102643023743363,5.3705245266112326e-05,5.3705245266112326e-05 -1.388235294117647,9.085977920153773,9.085977920153773,0.9892092196171953,0.9892092196171953,-11.33015506394981,-11.33015506394981,6.493346870135057e-05,6.493346870135057e-05 -1.3905882352941177,9.349544857711164,9.349544857711164,0.9231209555705163,0.9231209555705163,-11.612871235254232,-11.612871235254232,6.886025738155048e-05,6.886025738155048e-05 -1.3929411764705881,9.632336653331306,9.632336653331306,0.9926025945549443,0.9926025945549443,-11.911860465933024,-11.911860465933024,6.401878049941249e-05,6.401878049941249e-05 -1.3952941176470588,9.892928213470112,9.892928213470112,1.2660345364003893,1.2660345364003893,-12.194435609584357,-12.194435609584357,5.063557532204961e-05,5.063557532204961e-05 -1.3976470588235295,10.035958503178168,10.035958503178168,2.106798945328631,2.106798945328631,-12.369664583084587,-12.369664583084587,3.074076370421105e-05,3.074076370421105e-05 -1.4,9.382588525010746,9.382588525010746,4.944268376541042,4.944268376541042,-11.756781192212495,-11.756781192212495,1.315836861162297e-05,1.315836861162297e-05 -1.4023529411764706,8.45475604328717,8.45475604328717,2.297775335166258,2.297775335166258,-10.871254901432719,-10.871254901432719,2.8150878679074416e-05,2.8150878679074416e-05 -1.4047058823529412,8.564526940344535,8.564526940344535,1.240887577454877,1.240887577454877,-11.018384975247033,-11.018384975247033,5.1391547713409576e-05,5.1391547713409576e-05 -1.4070588235294117,8.840844113923158,8.840844113923158,0.896321074673871,0.896321074673871,-11.322357344764033,-11.322357344764033,6.992329600296909e-05,6.992329600296909e-05 -1.4094117647058824,9.170064352364403,9.170064352364403,0.770736708409504,0.770736708409504,-11.670444010217865,-11.670444010217865,8.028721874202985e-05,8.028721874202985e-05 -1.4117647058823528,9.522801110290846,9.522801110290846,0.764130628193429,0.764130628193429,-12.039215734712394,-12.039215734712394,8.069736308311731e-05,8.069736308311731e-05 -1.4141176470588235,9.885366199541945,9.885366199541945,0.8743884414115931,0.8743884414115931,-12.422544351798628,-12.422544351798628,7.084303657676592e-05,7.084303657676592e-05 -1.4164705882352941,10.25809892436717,10.25809892436717,1.2037927370882937,1.2037927370882937,-12.825073992459176,-12.825073992459176,5.179818837825122e-05,5.179818837825122e-05 -1.4188235294117646,10.686058589924745,10.686058589924745,2.4081793453102205,2.4081793453102205,-13.290573727179275,-13.290573727179275,2.5942016276203208e-05,2.5942016276203208e-05 -1.4211764705882353,13.215903843848324,13.215903843848324,10.541821012563727,10.541821012563727,-15.860523250532522,-15.860523250532522,5.886241737636082e-06,5.886241737636082e-06 -1.423529411764706,14.241557527038404,14.241557527038404,1.790061154942602,1.790061154942602,-16.92224233962689,-16.92224233962689,3.4131459929921394e-05,3.4131459929921394e-05 -1.4258823529411764,14.659936407106272,14.659936407106272,0.9981361765207362,0.9981361765207362,-17.368044160846832,-17.368044160846832,6.0061362239303975e-05,6.0061362239303975e-05 -1.428235294117647,15.054430140707728,15.054430140707728,0.745557855098478,0.745557855098478,-17.781132579002904,-17.781132579002904,7.9125035900044e-05,7.9125035900044e-05 -1.4305882352941177,15.44776541917495,15.44776541917495,0.6582545387667899,0.6582545387667899,-18.188955855057127,-18.188955855057127,8.893146879118134e-05,8.893146879118134e-05 -1.4329411764705882,15.84140966469624,15.84140966469624,0.6634052116344665,0.6634052116344665,-18.60007193274132,-18.60007193274132,8.83139432062695e-05,8.83139432062695e-05 -1.4352941176470588,16.239589745659963,16.239589745659963,0.759961000087146,0.759961000087146,-19.023527147988553,-19.023527147988553,7.745698737968229e-05,7.745698737968229e-05 -1.4376470588235293,16.663080565477426,16.663080565477426,1.0181027033788599,1.0181027033788599,-19.48069720561988,-19.48069720561988,5.792274172827081e-05,5.792274172827081e-05 -1.44,17.206790672630277,17.206790672630277,1.7858796897210554,1.7858796897210554,-20.062260350275636,-20.062260350275636,3.2828875062322975e-05,3.2828875062322975e-05 -1.4423529411764706,18.68449658746273,18.68449658746273,4.328001851942906,4.328001851942906,-21.576017999657623,-21.576017999657623,1.3351586292651738e-05,1.3351586292651738e-05 -1.444705882352941,20.21864416453481,20.21864416453481,1.7869968637185578,1.7869968637185578,-23.139188312866704,-23.139188312866704,3.1690375205378584e-05,3.1690375205378584e-05 -1.4470588235294117,20.787388572075038,20.787388572075038,0.9971031284130821,0.9971031284130821,-23.72786872489831,-23.72786872489831,5.5686353331851206e-05,5.5686353331851206e-05 -1.4494117647058824,21.23301832922683,21.23301832922683,0.7419555191446843,0.7419555191446843,-24.18670151043171,-24.18670151043171,7.384369042347843e-05,7.384369042347843e-05 -1.4517647058823528,21.645292903146046,21.645292903146046,0.6537220784927055,0.6537220784927055,-24.611979629595375,-24.611979629595375,8.347261024216495e-05,8.347261024216495e-05 -1.4541176470588235,22.04062436733814,22.04062436733814,0.6547264808962774,0.6547264808962774,-25.026440285267586,-25.026440285267586,8.352044000206889e-05,8.352044000206889e-05 -1.4564705882352942,22.427782143130894,22.427782143130894,0.7387645226345425,0.7387645226345425,-25.441269738508804,-25.441269738508804,7.421834744812629e-05,7.421834744812629e-05 -1.4588235294117646,22.823070256613427,22.823070256613427,0.9598670463131567,0.9598670463131567,-25.87100803592007,-25.87100803592007,5.697396048066876e-05,5.697396048066876e-05 -1.4611764705882353,23.276724404452025,23.276724404452025,1.5775120101276616,1.5775120101276616,-26.36082594127941,-26.36082594127941,3.427653185593895e-05,3.427653185593895e-05 -1.4635294117647057,24.24022639752732,24.24022639752732,4.7784880943221255,4.7784880943221255,-27.356082404456348,-27.356082404456348,1.1098322632439405e-05,1.1098322632439405e-05 -1.4658823529411764,26.463186862109875,26.463186862109875,2.5715404120974137,2.5715404120974137,-29.602113318842303,-29.602113318842303,2.0160123186295e-05,2.0160123186295e-05 -1.468235294117647,27.058742425667738,27.058742425667738,1.2242258791338803,1.2242258791338803,-30.211968536676718,-30.211968536676718,4.152580143895189e-05,4.152580143895189e-05 -1.4705882352941178,27.491972714018036,27.491972714018036,0.8690367724895167,0.8690367724895167,-30.654565075888513,-30.654565075888513,5.780486029961288e-05,5.780486029961288e-05 -1.4729411764705882,27.886456626425925,27.886456626425925,0.750578238805576,0.750578238805576,-31.06056329820429,-31.06056329820429,6.674973082163183e-05,6.674973082163183e-05 -1.4752941176470589,28.259332748183915,28.259332748183915,0.7442957590331023,0.7442957590331023,-31.4524283206264,-31.4524283206264,6.748460837253928e-05,6.748460837253928e-05 -1.4776470588235295,28.616527969787295,28.616527969787295,0.8344356320108466,0.8344356320108466,-31.837256845446475,-31.837256845446475,6.025434466925481e-05,6.025434466925481e-05 -1.48,28.96452569699411,28.96452569699411,1.081714214441045,1.081714214441045,-32.21883740070437,-32.21883740070437,4.622089469613586e-05,4.622089469613586e-05 -1.4823529411764707,29.314125495554975,29.314125495554975,1.8020119593496071,1.8020119593496071,-32.60234068248797,-32.60234068248797,2.7339062740052388e-05,2.7339062740052388e-05 -1.484705882352941,29.73534590524844,29.73534590524844,7.9915670957894385,7.9915670957894385,-33.052005740446,-33.052005740446,6.0279741632259775e-06,6.0279741632259775e-06 -1.4870588235294118,26.80431045781497,26.80431045781497,3.0940798840261823,3.0940798840261823,-30.139723199843214,-30.139723199843214,1.5187074220722847e-05,1.5187074220722847e-05 -1.4894117647058822,27.182207434316933,27.182207434316933,1.3631157663644857,1.3631157663644857,-30.52727374760776,-30.52727374760776,3.3750092620372025e-05,3.3750092620372025e-05 -1.4917647058823529,27.545105742873087,27.545105742873087,0.952831203506842,0.952831203506842,-30.895569221993387,-30.895569221993387,4.7707537690200784e-05,4.7707537690200784e-05 -1.4941176470588236,27.898738589476167,27.898738589476167,0.8142069952498121,0.8142069952498121,-31.25712968706857,-31.25712968706857,5.569084036983906e-05,5.569084036983906e-05 -1.4964705882352942,28.239130894542416,28.239130894542416,0.7957371371645471,0.7957371371645471,-31.613554497146836,-31.613554497146836,5.7128525855199824e-05,5.7128525855199824e-05 -1.4988235294117647,28.564369429713608,28.564369429713608,0.870492217261298,0.870492217261298,-31.964134282948578,-31.964134282948578,5.2281941813532276e-05,5.2281941813532276e-05 -1.5011764705882353,28.87555664991863,28.87555664991863,1.073660986916783,1.073660986916783,-32.30677350444497,-32.30677350444497,4.212491822240088e-05,4.212491822240088e-05 -1.5035294117647058,29.173715458716547,29.173715458716547,1.5772019672916764,1.5772019672916764,-32.636620077290544,-32.636620077290544,2.8223799477832027e-05,2.8223799477832027e-05 -1.5058823529411764,29.438332545073596,29.438332545073596,3.4818123917765815,3.4818123917765815,-32.927018621134806,-32.927018621134806,1.2481381820431095e-05,1.2481381820431095e-05 -1.5082352941176471,26.96119246009516,26.96119246009516,12.580232604481148,12.580232604481148,-30.465597325062426,-30.465597325062426,3.361565868145003e-06,3.361565868145003e-06 -1.5105882352941176,27.03353347619045,27.03353347619045,2.4116879628219445,2.4116879628219445,-30.54329337008506,-30.54329337008506,1.7132549265368744e-05,1.7132549265368744e-05 -1.5129411764705882,27.297040509460622,27.297040509460622,1.4561008249446954,1.4561008249446954,-30.80689729377262,-30.80689729377262,2.798983701281309e-05,2.798983701281309e-05 -1.5152941176470587,27.545191851105898,27.545191851105898,1.1493744438591538,1.1493744438591538,-31.056663301146607,-31.056663301146607,3.535871033861056e-05,3.535871033861056e-05 -1.5176470588235293,27.753361653646593,27.753361653646593,1.0310186338686276,1.0310186338686276,-31.274992253708938,-31.274992253708938,3.9568702304375155e-05,3.9568702304375155e-05 -1.52,27.914638086421487,27.914638086421487,0.9806640439440635,0.9806640439440635,-31.456580623314466,-31.456580623314466,4.175347700656372e-05,4.175347700656372e-05 -1.5223529411764707,28.043266014587843,28.043266014587843,0.9400371179902809,0.9400371179902809,-31.61309967919481,-31.61309967919481,4.3409616313007374e-05,4.3409616313007374e-05 -1.5247058823529411,28.17709949776665,28.17709949776665,0.8842167943025059,0.8842167943025059,-31.776958226282616,-31.776958226282616,4.5533629215384785e-05,4.5533629215384785e-05 -1.5270588235294118,28.362339688381507,28.362339688381507,0.8200957952451532,0.8200957952451532,-31.986797554583873,-31.986797554583873,4.7970266672698006e-05,4.7970266672698006e-05 -1.5294117647058822,28.63142583811556,28.63142583811556,0.7726081660582365,0.7726081660582365,-32.270452037934774,-32.270452037934774,4.95145463869694e-05,4.95145463869694e-05 -1.531764705882353,29.006339557674405,29.006339557674405,0.7616239342391171,0.7616239342391171,-32.64798121178686,-32.64798121178686,4.89382926251057e-05,4.89382926251057e-05 -1.5341176470588236,29.512607938315842,29.512607938315842,0.794225699962418,0.794225699962418,-33.14862342178803,-33.14862342178803,4.616217557854144e-05,4.616217557854144e-05 -1.536470588235294,30.186332113870282,30.186332113870282,0.8375196476312333,0.8375196476312333,-33.81607547049602,-33.81607547049602,4.360841134586026e-05,4.360841134586026e-05 -1.5388235294117647,30.995276308376617,30.995276308376617,0.7817369654886657,0.7817369654886657,-34.62607192271687,-34.62607192271687,4.698578200140861e-05,4.698578200140861e-05 -1.5411764705882351,31.761630084668912,31.761630084668912,0.6106744458050202,0.6106744458050202,-35.404530812212705,-35.404530812212705,6.067719301685048e-05,6.067719301685048e-05 -1.5435294117647058,32.38859354709018,32.38859354709018,0.4494641624125958,0.4494641624125958,-36.0542674267827,-36.0542674267827,8.274764385694034e-05,8.274764385694034e-05 -1.5458823529411767,32.92023409644032,32.92023409644032,0.33921632532477064,0.33921632532477064,-36.61326088366581,-36.61326088366581,0.00010895439674247508,0.00010895439674247508 -1.5482352941176472,33.41043231270548,33.41043231270548,0.267791600676981,0.267791600676981,-37.12871129267884,-37.12871129267884,0.0001356617918952021,0.0001356617918952021 -1.5505882352941176,33.894730409557816,33.894730409557816,0.2212320146657976,0.2212320146657976,-37.629533921781345,-37.629533921781345,0.00016012667705205127,0.00016012667705205127 -1.5529411764705883,34.394969029170596,34.394969029170596,0.19109676387055,0.19109676387055,-38.133339399214094,-38.133339399214094,0.00018047552480081284,0.00018047552480081284 -1.5552941176470587,34.922565175181894,34.922565175181894,0.17255122342276244,0.17255122342276244,-38.65291346114644,-38.65291346114644,0.00019601079194060095,0.00019601079194060095 -1.5576470588235294,35.48044025831134,35.48044025831134,0.16193367966174643,0.16193367966174643,-39.19754946528882,-39.19754946528882,0.000207464198117439,0.000207464198117439 -1.5599999999999998,36.06466296418887,36.06466296418887,0.15579666438382875,0.15579666438382875,-39.772707990934535,-39.772707990934535,0.00021721778227621003,0.00021721778227621003 -1.5623529411764705,36.66657359121359,36.66657359121359,0.15010817503676768,0.15010817503676768,-40.37632492787884,-40.37632492787884,0.00022887643866582687,0.00022887643866582687 -1.5647058823529412,37.27123496603307,37.27123496603307,0.14155827423450082,0.14155827423450082,-40.99627736879819,-40.99627736879819,0.00024622684006776985,0.00024622684006776985 -1.5670588235294118,37.86451870001493,37.86451870001493,0.12930499582399752,0.12930499582399752,-41.61396219460843,-41.61396219460843,0.0002714379484424723,0.0002714379484424723 -1.5694117647058823,38.438027135242464,38.438027135242464,0.1148204690482443,0.1148204690482443,-42.21465079003348,-42.21465079003348,0.00030408632449848544,0.00030408632449848544 -1.571764705882353,38.993006710486455,38.993006710486455,0.10058875725388267,0.10058875725388267,-42.792798050248,-42.792798050248,0.0003415519087366576,0.0003415519087366576 -1.5741176470588236,39.53957274170436,39.53957274170436,0.08830711621348289,0.08830711621348289,-43.35149665684328,-43.35149665684328,0.0003802946238766241,0.0003802946238766241 -1.576470588235294,40.08707089341486,40.08707089341486,0.07879019893834857,0.07879019893834857,-43.89760260364993,-43.89760260364993,0.0004170025082518652,0.0004170025082518652 -1.5788235294117647,40.64070031922968,40.64070031922968,0.07220777980469079,0.07220777980469079,-44.43885039768478,-44.43885039768478,0.00044937309288671257,0.00044937309288671257 -1.5811764705882352,41.19916624102104,41.19916624102104,0.06825687735141768,0.06825687735141768,-44.982300818298995,-44.982300818298995,0.00047657602494982507,0.00047657602494982507 -1.5835294117647059,41.75864788172887,41.75864788172887,0.06613648128261686,0.06613648128261686,-45.53335919616201,-45.53335919616201,0.0004993907136856558,0.0004993907136856558 -1.5858823529411765,42.31628595190214,42.31628595190214,0.0649386637362265,0.0649386637362265,-46.094976180541146,-46.094976180541146,0.0005201381866020455,0.0005201381866020455 -1.5882352941176474,42.87034745904299,42.87034745904299,0.06359069020053054,0.06359069020053054,-46.66698702310776,-46.66698702310776,0.0005420931751128411,0.0005420931751128411 -1.5905882352941176,43.4220628224188,43.4220628224188,0.06134436719066236,0.06134436719066236,-47.24567451720217,-47.24567451720217,0.0005685272895638313,0.0005685272895638313 -1.592941176470588,43.971543296252435,43.971543296252435,0.0579444512897099,0.0579444512897099,-47.82496854511052,-47.82496854511052,0.0006015586922115387,0.0006015586922115387 -1.5952941176470588,44.519847817354126,44.519847817354126,0.05369781346528961,0.05369781346528961,-48.39872370811144,-48.39872370811144,0.0006413818134248553,0.0006413818134248553 -1.5976470588235294,45.069499982831466,45.069499982831466,0.04925278227989351,0.04925278227989351,-48.96303300768846,-48.96303300768846,0.0006862037211986169,0.0006862037211986169 -1.6,45.62208207573648,45.62208207573648,0.04527349894692957,0.04527349894692957,-49.516918428581015,-49.516918428581015,0.0007329466917832544,0.0007329466917832544 -1.6023529411764705,46.176964429454976,46.176964429454976,0.042226959503417795,0.042226959503417795,-50.062132906181986,-50.062132906181986,0.0007782623850763774,0.0007782623850763774 -1.6047058823529412,46.72968347598484,46.72968347598484,0.04030949301736089,0.04030949301736089,-50.60200394784949,-50.60200394784949,0.0008193930358831306,0.0008193930358831306 -1.6070588235294117,47.275067437545545,47.275067437545545,0.03935596374535896,0.03935596374535896,-51.140281030171835,-51.140281030171835,0.0008548337529600345,0.0008548337529600345 -1.6094117647058825,47.81001817333519,47.81001817333519,0.03901909629249755,0.03901909629249755,-51.68053785143877,-51.68053785143877,0.0008846788725128357,0.0008846788725128357 -1.611764705882353,48.3355280914407,48.3355280914407,0.03887565227841419,0.03887565227841419,-52.22527509849755,-52.22527509849755,0.0009105456399710685,0.0009105456399710685 -1.6141176470588237,48.85588623027601,48.85588623027601,0.038495779449766614,0.038495779449766614,-52.775488151620124,-52.775488151620124,0.0009352263789229779,0.0009352263789229779 -1.616470588235294,49.37650636672976,49.37650636672976,0.03762166529806709,0.03762166529806709,-53.330457121385436,-53.330457121385436,0.0009619095387375013,0.0009619095387375013 -1.6188235294117648,49.90206042609726,49.90206042609726,0.03616556010901195,0.03616556010901195,-53.8877416533861,-53.8877416533861,0.0009932949682073444,0.0009932949682073444 -1.6211764705882352,50.43532920172575,50.43532920172575,0.034294960856595426,0.034294960856595426,-54.443918911621004,-54.443918911621004,0.001030653916999842,0.001030653916999842 -1.6235294117647059,50.97743801881663,50.97743801881663,0.03230796569517182,0.03230796569517182,-54.99593495251472,-54.99593495251472,0.0010734723217231184,0.0010734723217231184 -1.6258823529411766,51.52551328732949,51.52551328732949,0.03055594197646131,0.03055594197646131,-55.54172761141749,-55.54172761141749,0.0011195895959042021,0.0011195895959042021 -1.6282352941176468,52.07386714560174,52.07386714560174,0.02931020533126955,0.02931020533126955,-56.080933603899524,-56.080933603899524,0.0011658816791954832,0.0011658816791954832 -1.630588235294118,52.616117270802754,52.616117270802754,0.028633881698474747,0.028633881698474747,-56.61460863585265,-56.61460863585265,0.0012091485226445892,0.0012091485226445892 -1.6329411764705881,53.145032835637664,53.145032835637664,0.028442514295878494,0.028442514295878494,-57.14480407296123,-57.14480407296123,0.0012469169384850735,0.0012469169384850735 -1.6352941176470588,53.65875533292606,53.65875533292606,0.028530468901052514,0.028530468901052514,-57.673916244716665,-57.673916244716665,0.0012780038029856424,0.0012780038029856424 -1.6376470588235295,54.16127407039003,54.16127407039003,0.02862815810484063,0.02862815810484063,-58.204252564967675,-58.204252564967675,0.0013027474235271337,0.0013027474235271337 -1.6400000000000001,54.65834765313535,54.65834765313535,0.028566354661422,0.028566354661422,-58.73758022447811,-58.73758022447811,0.0013229424313996427,0.0013229424313996427 -1.6423529411764706,55.15697549609338,55.15697549609338,0.028170298642187584,0.028170298642187584,-59.274631112145954,-59.274631112145954,0.0013414408020952363,0.0013414408020952363 -1.6447058823529415,55.66394416756688,55.66394416756688,0.027438386515322006,0.027438386515322006,-59.814968553086025,-59.814968553086025,0.0013612996662913331,0.0013612996662913331 -1.6470588235294117,56.18331461915218,56.18331461915218,0.026441318117625425,0.026441318117625425,-60.35697509100722,-60.35697509100722,0.0013850849375614343,0.0013850849375614343 -1.6494117647058824,56.715546530605565,56.715546530605565,0.02536529617214043,0.02536529617214043,-60.89854995627907,-60.89854995627907,0.0014140280411922461,0.0014140280411922461 -1.651764705882353,57.257357232366275,57.257357232366275,0.024445074511598445,0.024445074511598445,-61.437386109783056,-61.437386109783056,0.0014477110265364694,0.0014477110265364694 -1.6541176470588237,57.801608140582395,57.801608140582395,0.02384750744753915,0.02384750744753915,-61.971981134778744,-61.971981134778744,0.0014841493348466002,0.0014841493348466002 -1.6564705882352944,58.33786000026468,58.33786000026468,0.023621120419664285,0.023621120419664285,-62.50174277405889,-62.50174277405889,0.001520373599687574,0.001520373599687574 -1.6588235294117644,58.859548709276226,58.859548709276226,0.023725096533501362,0.023725096533501362,-63.02721015322998,-63.02721015322998,0.0015532840094582157,0.0015532840094582157 -1.6611764705882353,59.363562978083614,59.363562978083614,0.023977072707813702,0.023977072707813702,-63.54978709189209,-63.54978709189209,0.0015803768876947325,0.0015803768876947325 -1.663529411764706,59.85367401355054,59.85367401355054,0.02423628129523059,0.02423628129523059,-64.07129764542586,-64.07129764542586,0.0016003526366577456,0.0016003526366577456 -1.6658823529411766,60.33549442331034,60.33549442331034,0.02434091890695242,0.02434091890695242,-64.59361321475077,-64.59361321475077,0.0016133505240831115,0.0016133505240831115 -1.668235294117647,60.81811735228554,60.81811735228554,0.024210885440833833,0.024210885440833833,-65.1183661054117,-65.1183661054117,0.0016209693270100363,0.0016209693270100363 -1.670588235294118,61.30844767945806,61.30844767945806,0.023802824193595373,0.023802824193595373,-65.64648996804091,-65.64648996804091,0.0016259091270400875,0.0016259091270400875 -1.672941176470588,61.81302383081392,61.81302383081392,0.023181337512240753,0.023181337512240753,-66.17794217158904,-66.17794217158904,0.0016313285271264395,0.0016313285271264395 -1.6752941176470588,62.33424269791024,62.33424269791024,0.02247838188816174,0.02247838188816174,-66.7118248158466,-66.7118248158466,0.0016400409395096632,0.0016400409395096632 -1.6776470588235295,62.87100045489796,62.87100045489796,0.021858014640472632,0.021858014640472632,-67.24656620401524,-67.24656620401524,0.0016538021635032223,0.0016538021635032223 -1.68,63.415588070076325,63.415588070076325,0.02148563362799421,0.02148563362799421,-67.78025939697352,-67.78025939697352,0.0016727819273981562,0.0016727819273981562 -1.6823529411764706,63.957324664688265,63.957324664688265,0.021415679925209232,0.021415679925209232,-68.3113145875318,-68.3113145875318,0.0016956255321500685,0.0016956255321500685 -1.684705882352941,64.48641228771574,64.48641228771574,0.02162998430257229,0.02162998430257229,-68.83889106726731,-68.83889106726731,0.001719789192868037,0.001719789192868037 -1.6870588235294117,64.99677579141928,64.99677579141928,0.022016276504068073,0.022016276504068073,-69.36314581055372,-69.36314581055372,0.0017423433788917688,0.0017423433788917688 -1.6894117647058824,65.48886179491836,65.48886179491836,0.022392628720580093,0.022392628720580093,-69.88497552922948,-69.88497552922948,0.0017606953107913708,0.0017606953107913708 -1.6917647058823528,65.96914910977331,65.96914910977331,0.022634382929956346,0.022634382929956346,-70.40591799015093,-70.40591799015093,0.0017733326093622532,0.0017733326093622532 -1.6941176470588235,66.4444324991805,66.4444324991805,0.022646304569352276,0.022646304569352276,-70.92769862592039,-70.92769862592039,0.0017801250121781678,0.0017801250121781678 -1.6964705882352942,66.92384119425773,66.92384119425773,0.02237563417154611,0.02237563417154611,-71.45191704631324,-71.45191704631324,0.0017825040963679948,0.0017825040963679948 -1.6988235294117644,67.41511547153766,67.41511547153766,0.021856582141831615,0.021856582141831615,-71.97971615392625,-71.97971615392625,0.0017831821355862281,0.0017831821355862281 -1.7011764705882353,67.92434003128193,67.92434003128193,0.02116214080558838,0.02116214080558838,-72.51134189650054,-72.51134189650054,0.001785569032981349,0.001785569032981349 -1.7035294117647062,68.45399459461532,68.45399459461532,0.020442172102773434,0.020442172102773434,-73.04620856452955,-73.04620856452955,0.0017930386668146474,0.0017930386668146474 -1.7058823529411766,69.00077334913804,69.00077334913804,0.019873786223333426,0.019873786223333426,-73.58285964029945,-73.58285964029945,0.001808168026693075,0.001808168026693075 -1.7082352941176469,69.55462633117409,69.55462633117409,0.019564512920354164,0.019564512920354164,-74.11943072451272,-74.11943072451272,0.0018320698455192548,0.0018320698455192548 -1.7105882352941175,70.10306096389814,70.10306096389814,0.019552546943689516,0.019552546943689516,-74.65404109911078,-74.65404109911078,0.0018641487021212799,0.0018641487021212799 -1.7129411764705882,70.63413671586476,70.63413671586476,0.019754404774002202,0.019754404774002202,-75.18558534115392,-75.18558534115392,0.0019024962986437836,0.0019024962986437836 -1.7152941176470589,71.1442479978695,71.1442479978695,0.020006971365967113,0.020006971365967113,-75.71367023573053,-75.71367023573053,0.001944501609573675,0.001944501609573675 -1.7176470588235295,71.6341528975069,71.6341528975069,0.020148583612566422,0.020148583612566422,-76.23878091536798,-76.23878091536798,0.0019876721792644754,0.0019876721792644754 -1.72,72.11011693240997,72.11011693240997,0.020068929692208356,0.020068929692208356,-76.76189154276655,-76.76189154276655,0.0020303420919255038,0.0020303420919255038 -1.7223529411764709,72.58201312202647,72.58201312202647,0.01969744641634332,0.01969744641634332,-77.28437804368488,-77.28437804368488,0.002072239074353274,0.002072239074353274 -1.7247058823529409,73.05494453963871,73.05494453963871,0.01901022128690244,0.01901022128690244,-77.80733307152742,-77.80733307152742,0.002114509324809046,0.002114509324809046 -1.7270588235294118,73.53907672471556,73.53907672471556,0.01806961713996842,0.01806961713996842,-78.33141889536334,-78.33141889536334,0.0021596563926123587,0.0021596563926123587 -1.7294117647058824,74.04094293258306,74.04094293258306,0.016995785130414137,0.016995785130414137,-78.85667314851526,-78.85667314851526,0.002210935037790805,0.002210935037790805 -1.731764705882353,74.56351448501313,74.56351448501313,0.015916832866518252,0.015916832866518252,-79.38229111463353,-79.38229111463353,0.0022716209027995285,0.0022716209027995285 -1.7341176470588235,75.10345733040155,75.10345733040155,0.015011225894439909,0.015011225894439909,-79.90705994878594,-79.90705994878594,0.0023443034916711338,0.0023443034916711338 -1.7364705882352938,75.65125065838637,75.65125065838637,0.014401674219190419,0.014401674219190419,-80.42932402928741,-80.42932402928741,0.002430189270827495,0.002430189270827495 -1.7388235294117647,76.191450766248,76.191450766248,0.0140800897455779,0.0140800897455779,-80.94777368354342,-80.94777368354342,0.0025290139813677497,0.0025290139813677497 -1.7411764705882353,76.71104851555043,76.71104851555043,0.013964054217490626,0.013964054217490626,-81.46145515867462,-81.46145515867462,0.002639079359834282,0.002639079359834282 -1.743529411764706,77.2049921947508,77.2049921947508,0.0139224741643771,0.0139224741643771,-81.97009282047486,-81.97009282047486,0.0027578825010973152,0.0027578825010973152 -1.7458823529411764,77.67398407483736,77.67398407483736,0.013807079077443695,0.013807079077443695,-82.47391102704366,-82.47391102704366,0.0028827537768298327,0.0028827537768298327 -1.748235294117647,78.12369969897165,78.12369969897165,0.013533261906469595,0.013533261906469595,-82.97364338713798,-82.97364338713798,0.003011445017072756,0.003011445017072756 -1.7505882352941176,78.56266175794693,78.56266175794693,0.01304984782312524,0.01304984782312524,-83.47005712936831,-83.47005712936831,0.003142733754466415,0.003142733754466415 -1.7529411764705882,78.99852839127473,78.99852839127473,0.01235866586724834,0.01235866586724834,-83.9639860561507,-83.9639860561507,0.003276444700227263,0.003276444700227263 -1.7552941176470591,79.44092928831583,79.44092928831583,0.011505442461860952,0.011505442461860952,-84.45609432300154,-84.45609432300154,0.003413588526223873,0.003413588526223873 -1.7576470588235293,79.8976596199891,79.8976596199891,0.010565130669865551,0.010565130669865551,-84.94663281675149,-84.94663281675149,0.0035560177232120387,0.0035560177232120387 -1.76,80.3753414880655,80.3753414880655,0.00964556505087314,0.00964556505087314,-85.43559125095747,-85.43559125095747,0.0037059375790629815,0.0037059375790629815 -1.7623529411764705,80.87574385713748,80.87574385713748,0.008854249718140854,0.008854249718140854,-85.92270395906458,-85.92270395906458,0.003865481771198678,0.003865481771198678 -1.7647058823529411,81.39302287109967,81.39302287109967,0.00829117553719241,0.00829117553719241,-86.40749457798297,-86.40749457798297,0.004036216974705149,0.004036216974705149 -1.7670588235294116,81.91211526479665,81.91211526479665,0.007981779837513742,0.007981779837513742,-86.88942184476527,-86.88942184476527,0.004218673559157051,0.004218673559157051 -1.7694117647058827,82.41513645647147,82.41513645647147,0.007884398937200176,0.007884398937200176,-87.36809979264936,-87.36809979264936,0.004412388795695133,0.004412388795695133 -1.7717647058823531,82.89145840631643,82.89145840631643,0.007913828636899834,0.007913828636899834,-87.8431774066231,-87.8431774066231,0.00461592105414639,0.00461592105414639 -1.7741176470588236,83.33818536552316,83.33818536552316,0.007950450104877061,0.007950450104877061,-88.31469337604686,-88.31469337604686,0.004827265004840425,0.004827265004840425 -1.776470588235294,83.75974660361393,83.75974660361393,0.007906814988541356,0.007906814988541356,-88.78278455851076,-88.78278455851076,0.005044102604252606,0.005044102604252606 -1.7788235294117647,84.16432040427547,84.16432040427547,0.007739609136893913,0.007739609136893913,-89.2478528907352,-89.2478528907352,0.0052643497545677735,0.0052643497545677735 -1.7811764705882354,84.55940416590808,84.55940416590808,0.007430968178362988,0.007430968178362988,-89.71023993872005,-89.71023993872005,0.005486482814179508,0.005486482814179508 -1.7835294117647063,84.95488255134373,84.95488255134373,0.006992774987569496,0.006992774987569496,-90.17041465335546,-90.17041465335546,0.005709671523408042,0.005709671523408042 -1.7858823529411765,85.3591613584423,85.3591613584423,0.0064568201797610605,0.0064568201797610605,-90.62874647319903,-90.62874647319903,0.005934014332729567,0.005934014332729567 -1.7882352941176471,85.78051174320808,85.78051174320808,0.00587024793277222,0.00587024793277222,-91.08550844652136,-91.08550844652136,0.006160312407390931,0.006160312407390931 -1.7905882352941174,86.22938512800779,86.22938512800779,0.005313746082848205,0.005313746082848205,-91.54087733286234,-91.54087733286234,0.006389870408302262,0.006389870408302262 -1.7929411764705883,86.70763782655034,86.70763782655034,0.004855973309659316,0.004855973309659316,-91.9948173677643,-91.9948173677643,0.006624295893862753,0.006624295893862753 -1.795294117647059,87.20765661704004,87.20765661704004,0.0045571114177337365,0.0045571114177337365,-92.4472664313398,-92.4472664313398,0.006864982464602216,0.006864982464602216 -1.7976470588235294,87.71144104433361,87.71144104433361,0.004443244472576996,0.004443244472576996,-92.89804390812185,-92.89804390812185,0.007112920207451428,0.007112920207451428 -1.8,88.19567853416062,88.19567853416062,0.004481555981153579,0.004481555981153579,-93.34694062058267,-93.34694062058267,0.007368436972656406,0.007368436972656406 diff --git a/sparameters/rotate_f258530e_3a26c260.yml b/sparameters/rotate_f258530e_3a26c260.yml deleted file mode 100644 index bbc9905f..00000000 --- a/sparameters/rotate_f258530e_3a26c260.yml +++ /dev/null @@ -1,27 +0,0 @@ -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: 4 -compute_time_seconds: 97.93509864807129 -compute_time_minutes: 1.6322516441345214 diff --git a/sparameters/rotate_f258530e_46e06d33.csv b/sparameters/rotate_f258530e_46e06d33.csv deleted file mode 100644 index 797a6337..00000000 --- a/sparameters/rotate_f258530e_46e06d33.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,0.6164010651031379,0.6164010651031379,0.5985604447782861,0.5985604447782861,-0.013896818458863279,-0.013896818458863279,0.002475073232127185,0.002475073232127185 -1.2023529411764706,1.8943363745318464,1.8943363745318464,0.4734863776387068,0.4734863776387068,-1.2890688139313178,-1.2890688139313178,0.0033240802764180535,0.0033240802764180535 -1.204705882352941,2.7455121594585603,2.7455121594585603,0.4043740247498702,0.4043740247498702,-2.2177493116867537,-2.2177493116867537,0.004069246193962343,0.004069246193962343 -1.2070588235294117,3.4662866844745626,3.4662866844745626,0.397778889146931,0.397778889146931,-3.0400626173446206,-3.0400626173446206,0.004048285359346521,0.004048285359346521 -1.2094117647058824,4.249434022050613,4.249434022050613,0.4587238928415779,0.4587238928415779,-3.886990207583132,-3.886990207583132,0.003248420546156897,0.003248420546156897 -1.2117647058823529,5.32602570600956,5.32602570600956,0.6571525054426774,0.6571525054426774,-4.955327243975633,-4.955327243975633,0.002102335352422023,0.002102335352422023 -1.2141176470588235,6.93358826283161,6.93358826283161,0.8005509146981984,0.8005509146981984,-6.524421422863616,-6.524421422863616,0.0017118993588437835,0.0017118993588437835 -1.216470588235294,8.197626015139438,8.197626015139438,0.5803104012645977,0.5803104012645977,-7.795512765374293,-7.795512765374293,0.0024675388513260817,0.0024675388513260817 -1.2188235294117646,9.005713155119174,9.005713155119174,0.47282596882510824,0.47282596882510824,-8.669615442963725,-8.669615442963725,0.0031158963585300025,0.0031158963585300025 -1.2211764705882353,9.684558079921235,9.684558079921235,0.4585246766433975,0.4585246766433975,-9.431542712718343,-9.431542712718343,0.0031406696143606297,0.0031406696143606297 -1.2235294117647058,10.40103069819561,10.40103069819561,0.5343235032813384,0.5343235032813384,-10.199570553067286,-10.199570553067286,0.0025239061026331644,0.0025239061026331644 -1.2258823529411764,11.348831145478002,11.348831145478002,0.8230854163374453,0.8230854163374453,-11.143802065789327,-11.143802065789327,0.001539333862537681,0.001539333862537681 -1.228235294117647,13.012680612427076,13.012680612427076,1.255731391876644,1.255731391876644,-12.780201721984382,-12.780201721984382,0.000997047967492912,0.000997047967492912 -1.2305882352941175,14.41500556397969,14.41500556397969,0.8000983249620294,0.8000983249620294,-14.188130773752262,-14.188130773752262,0.001611818943544402,0.001611818943544402 -1.2329411764705882,15.198039771592864,15.198039771592864,0.594500727804818,0.594500727804818,-15.0233205909112,-15.0233205909112,0.002215847927015128,0.002215847927015128 -1.2352941176470589,15.825931832416149,15.825931832416149,0.5534080085219774,0.5534080085219774,-15.719435630266112,-15.719435630266112,0.002336178019403274,0.002336178019403274 -1.2376470588235293,16.451275664634398,16.451275664634398,0.6321335906587423,0.6321335906587423,-16.391240191126787,-16.391240191126787,0.0019371184442353796,0.0019371184442353796 -1.24,17.194728933112906,17.194728933112906,0.9931821862739539,0.9931821862739539,-17.137210801609385,-17.137210801609385,0.0011654093490566788,0.0011654093490566788 -1.2423529411764704,18.721962966325858,18.721962966325858,2.694731555787605,2.694731555787605,-18.64249303742361,-18.64249303742361,0.00042130427775760083,0.00042130427775760083 -1.244705882352941,20.6831173754197,20.6831173754197,1.3344590384867265,1.3344590384867265,-20.602004025622186,-20.602004025622186,0.0008661313621828937,0.0008661313621828937 -1.2470588235294118,21.41594127707266,21.41594127707266,0.824286292287809,0.824286292287809,-21.370963352716796,-21.370963352716796,0.0014282813855958719,0.0014282813855958719 -1.2494117647058822,21.970838662399192,21.970838662399192,0.719062631901578,0.719062631901578,-21.98162030643545,-21.98162030643545,0.0016189146127489286,0.0016189146127489286 -1.251764705882353,22.48969248639008,22.48969248639008,0.792550526931571,0.792550526931571,-22.543090230276448,-22.543090230276448,0.001406484797094033,0.001406484797094033 -1.2541176470588236,23.005576222121835,23.005576222121835,1.203483004617308,1.203483004617308,-23.067079749193468,-23.067079749193468,0.0008796312091546172,0.0008796312091546172 -1.256470588235294,23.35749462680515,23.35749462680515,5.07563247552005,5.07563247552005,-23.40012807313623,-23.40012807313623,0.00020290016082708085,0.00020290016082708085 -1.2588235294117647,21.120736763564622,21.120736763564622,2.2657810927286888,2.2657810927286888,-21.151624223981912,-21.151624223981912,0.0004578129185574634,0.0004578129185574634 -1.2611764705882353,21.550251664923156,21.550251664923156,1.1523113471646032,1.1523113471646032,-21.599468649662562,-21.599468649662562,0.0009159080216063893,0.0009159080216063893 -1.2635294117647058,21.983068599134516,21.983068599134516,0.9715811057468029,0.9715811057468029,-22.072793268633248,-22.072793268633248,0.001084981833857946,0.001084981833857946 -1.2658823529411765,22.38647647924426,22.38647647924426,1.0788389786451422,1.0788389786451422,-22.513655910275197,-22.513655910275197,0.0009488866230377394,0.0009488866230377394 -1.268235294117647,22.682567921730573,22.682567921730573,1.6827794849839304,1.6827794849839304,-22.82237074019709,-22.82237074019709,0.0005823164540932036,0.0005823164540932036 -1.2705882352941176,22.094061064094397,22.094061064094397,3.750083773569812,3.750083773569812,-22.21817623977512,-22.21817623977512,0.0002532674668266205,0.0002532674668266205 -1.2729411764705882,21.479491865569987,21.479491865569987,1.7185416336024535,1.7185416336024535,-21.583295562977334,-21.583295562977334,0.0005517787353932057,0.0005517787353932057 -1.2752941176470587,21.77341783430893,21.77341783430893,1.108982022989562,1.108982022989562,-21.877243831776397,-21.877243831776397,0.0008698587843461385,0.0008698587843461385 -1.2776470588235294,22.17170189355323,22.17170189355323,1.014035031512774,1.014035031512774,-22.298628880886543,-22.298628880886543,0.0009613754380067933,0.0009613754380067933 -1.28,22.58440476265087,22.58440476265087,1.2231240292874708,1.2231240292874708,-22.740950878833182,-22.740950878833182,0.0007884171224869762,0.0007884171224869762 -1.2823529411764705,22.950319115479886,22.950319115479886,2.3797804233131763,2.3797804233131763,-23.121919977509037,-23.121919977509037,0.000393877988528227,0.000393877988528227 -1.2847058823529411,20.99742186494928,20.99742186494928,5.8239134320404276,5.8239134320404276,-21.160157826649183,-21.160157826649183,0.00015672204303058377,0.00015672204303058377 -1.2870588235294118,21.126044025356677,21.126044025356677,1.3717659668500037,1.3717659668500037,-21.266171846036514,-21.266171846036514,0.0006619551070450904,0.0006619551070450904 -1.2894117647058823,21.595155545371814,21.595155545371814,0.8823514300612714,0.8823514300612714,-21.72155312513501,-21.72155312513501,0.001047146642435931,0.001047146642435931 -1.291764705882353,22.083240443023044,22.083240443023044,0.7867277975600064,0.7867277975600064,-22.216610543512367,-22.216610543512367,0.0012016784381450503,0.0012016784381450503 -1.2941176470588236,22.588050549305933,22.588050549305933,0.8847207605778625,0.8847207605778625,-22.742320461656757,-22.742320461656757,0.0010804089430383266,0.0010804089430383266 -1.296470588235294,23.17244004486401,23.17244004486401,1.3460188422234496,1.3460188422234496,-23.344844608417265,-23.344844608417265,0.000706390197354482,0.000706390197354482 -1.2988235294117647,24.45158572720001,24.45158572720001,4.110994094739665,4.110994094739665,-24.626835689015525,-24.626835689015525,0.00022851189799992405,0.00022851189799992405 -1.3011764705882352,26.672184326798853,26.672184326798853,1.6799030279712446,1.6799030279712446,-26.834861072272588,-26.834861072272588,0.0005580061781419557,0.0005580061781419557 -1.3035294117647058,27.376862710436157,27.376862710436157,0.8686526100467151,0.8686526100467151,-27.52515573660386,-27.52515573660386,0.0010975641690862726,0.0010975641690862726 -1.3058823529411765,27.940341215969955,27.940341215969955,0.6748981439159913,0.6748981439159913,-28.08722979336773,-28.08722979336773,0.001455799033971075,0.001455799033971075 -1.308235294117647,28.47079404517796,28.47079404517796,0.6571681628630095,0.6571681628630095,-28.63240086936058,-28.63240086936058,0.0015386373911095042,0.0015386373911095042 -1.3105882352941176,29.016436952827444,29.016436952827444,0.779740383670646,0.779740383670646,-29.20032105626156,-29.20032105626156,0.0013200505099432314,0.0013200505099432314 -1.3129411764705883,29.678173429864145,29.678173429864145,1.2186100342785355,1.2186100342785355,-29.880449029746487,-29.880449029746487,0.0008507840323435926,0.0008507840323435926 -1.3152941176470587,31.087269831954046,31.087269831954046,2.708625929185259,2.708625929185259,-31.297013431782947,-31.297013431782947,0.0003849689737292246,0.0003849689737292246 -1.3176470588235294,32.84065078295014,32.84065078295014,1.3814515700273824,1.3814515700273824,-33.05020545826932,-33.05020545826932,0.0007658562942554913,0.0007658562942554913 -1.32,33.57786587235294,33.57786587235294,0.7918644888311668,0.7918644888311668,-33.789808018946644,-33.789808018946644,0.0013728462331795378,0.0013728462331795378 -1.3223529411764705,34.14194269941125,34.14194269941125,0.6258668307010331,0.6258668307010331,-34.36727209820181,-34.36727209820181,0.0017968828717053482,0.0017968828717053482 -1.3247058823529412,34.66029958812912,34.66029958812912,0.6029071866334598,0.6029071866334598,-34.91058881613622,-34.91058881613622,0.0019243797584515207,0.0019243797584515207 -1.3270588235294118,35.17981756800543,35.17981756800543,0.6903697442599473,0.6903697442599473,-35.460355673716286,-35.460355673716286,0.0017188390429311393,0.0017188390429311393 -1.3294117647058823,35.765428352480576,35.765428352480576,0.9890322666293818,0.9890322666293818,-36.07392919335378,-36.07392919335378,0.0012177519173320029,0.0012177519173320029 -1.331764705882353,36.723778449618294,36.723778449618294,2.0976735467323127,2.0976735467323127,-37.05363604953062,-37.05363604953062,0.0005816220854692355,0.0005816220854692355 -1.3341176470588234,38.733710548953404,38.733710548953404,1.9233923282604333,1.9233923282604333,-39.08019594282024,-39.08019594282024,0.0006457729350821736,0.0006457729350821736 -1.336470588235294,39.619908737325254,39.619908737325254,0.9405697435767194,0.9405697435767194,-39.984689003072816,-39.984689003072816,0.0013542666958850278,0.0013542666958850278 -1.3388235294117647,40.18771863078268,40.18771863078268,0.6726636607842787,0.6726636607842787,-40.57793638075482,-40.57793638075482,0.0019502141441957198,0.0019502141441957198 -1.3411764705882352,40.68548686619238,40.68548686619238,0.595982860769684,0.595982860769684,-41.109435197562384,-41.109435197562384,0.0022627663579062513,0.0022627663579062513 -1.3435294117647059,41.165343985144936,41.165343985144936,0.6197608685489697,0.6197608685489697,-41.62776831901839,-41.62776831901839,0.0022229532444167444,0.0022229532444167444 -1.3458823529411765,41.66199501989242,41.66199501989242,0.7637266562406803,0.7637266562406803,-42.16247110056386,-42.16247110056386,0.0018306879849620367,0.0018306879849620367 -1.348235294117647,42.250877975243995,42.250877975243995,1.2204938121933104,1.2204938121933104,-42.78525400974736,-42.78525400974736,0.001158650153239395,0.001158650153239395 -1.3505882352941176,43.48796010608429,43.48796010608429,3.0809910061869252,3.0809910061869252,-44.05214508180978,-44.05214508180978,0.000464784666165159,0.000464784666165159 -1.3529411764705883,45.38924119052554,45.38924119052554,1.656585627316788,1.656585627316788,-45.982544369660594,-45.982544369660594,0.0008789969769129497,0.0008789969769129497 -1.3552941176470588,46.07621211941983,46.07621211941983,0.8878339344961116,0.8878339344961116,-46.70211577640696,-46.70211577640696,0.0016735089309792119,0.0016735089309792119 -1.3576470588235294,46.57973162877162,46.57973162877162,0.6660187682706782,0.6660187682706782,-47.24388680948341,-47.24388680948341,0.002275959893373516,0.002275959893373516 -1.3599999999999999,47.03855849207268,47.03855849207268,0.6022280047363704,0.6022280047363704,-47.745410580877376,-47.745410580877376,0.0025581094470979765,0.0025581094470979765 -1.3623529411764705,47.487958749110014,47.487958749110014,0.63077883797278,0.63077883797278,-48.2387175589621,-48.2387175589621,0.0024682098011810064,0.0024682098011810064 -1.3647058823529412,47.95374932975942,47.95374932975942,0.7760088873334169,0.7760088873334169,-48.74612821613736,-48.74612821613736,0.0020184657577442863,0.0020184657577442863 -1.3670588235294117,48.49414332043177,48.49414332043177,1.2239066052811314,1.2239066052811314,-49.32430164549702,-49.32430164549702,0.0012856332025252212,0.0012856332025252212 -1.3694117647058823,49.563119637018396,49.563119637018396,3.2510300069076963,3.2510300069076963,-50.42829836983769,-50.42829836983769,0.0004869678264692644,0.0004869678264692644 -1.371764705882353,51.64786654449197,51.64786654449197,1.9474035661427387,1.9474035661427387,-52.54809761861121,-52.54809761861121,0.0008203508440415466,0.0008203508440415466 -1.3741176470588234,52.3285313351698,52.3285313351698,0.9713273606578792,0.9713273606578792,-53.266664006270105,-53.266664006270105,0.001662424783379941,0.001662424783379941 -1.3764705882352941,52.81062430600675,52.81062430600675,0.7026920439296397,0.7026920439296397,-53.790413350050045,-53.790413350050045,0.0023202108364822503,0.0023202108364822503 -1.3788235294117648,53.249046938273516,53.249046938273516,0.6151250143392905,0.6151250143392905,-54.27297021712237,-54.27297021712237,0.0026664718888994754,0.0026664718888994754 -1.3811764705882352,53.67732611353385,53.67732611353385,0.6203605180506121,0.6203605180506121,-54.74515696381012,-54.74515696381012,0.002648215512660623,0.002648215512660623 -1.383529411764706,54.11511790108796,54.11511790108796,0.7224253657724801,0.7224253657724801,-55.224297662635024,-55.224297662635024,0.002270305483009006,0.002270305483009006 -1.3858823529411763,54.5953844318929,54.5953844318929,1.0265766081802374,1.0265766081802374,-55.742421079959726,-55.742421079959726,0.0015938223393858885,0.0015938223393858885 -1.388235294117647,55.288425945992984,55.288425945992984,2.1773407834118803,2.1773407834118803,-56.47094511496925,-56.47094511496925,0.0007508625024497391,0.0007508625024497391 -1.3905882352941177,57.4581407112143,57.4581407112143,3.2451409997004337,3.2451409997004337,-58.67610712035608,-58.67610712035608,0.0005045934376054322,0.0005045934376054322 -1.3929411764705881,58.41314332587332,58.41314332587332,1.2426555758775688,1.2426555758775688,-59.66867179883761,-59.66867179883761,0.0013214674311811765,0.0013214674311811765 -1.3952941176470588,58.91499021409039,58.91499021409039,0.7999069441038932,0.7999069441038932,-60.21085182225118,-60.21085182225118,0.0020567927367741426,0.0020567927367741426 -1.3976470588235295,59.3483519641451,59.3483519641451,0.6494212659920666,0.6494212659920666,-60.686173260307946,-60.686173260307946,0.002530628520186944,0.002530628520186944 -1.4,59.76369707936386,59.76369707936386,0.6114805248063534,0.6114805248063534,-61.14299025356808,-61.14299025356808,0.002675125442827522,0.002675125442827522 -1.4023529411764706,60.18004681885741,60.18004681885741,0.6560171583850017,0.6560171583850017,-61.59829050918077,-61.59829050918077,0.002475416537359973,0.002475416537359973 -1.4047058823529412,60.61533735676401,60.61533735676401,0.81964592643206,0.81964592643206,-62.069262744445155,-62.069262744445155,0.0019658837341003203,0.0019658837341003203 -1.4070588235294117,61.1192966724154,61.1192966724154,1.3037846549401,1.3037846549401,-62.6065049988237,-62.6065049988237,0.0012282235587382675,0.0012282235587382675 -1.4094117647058824,62.11265610580264,62.11265610580264,3.551207169554742,3.551207169554742,-63.632828316696695,-63.632828316696695,0.0004491796828264077,0.0004491796828264077 -1.4117647058823528,64.24554482527195,64.24554482527195,2.2009461270821076,2.2009461270821076,-65.80026459953716,-65.80026459953716,0.0007231040169075287,0.0007231040169075287 -1.4141176470588235,64.89731216423324,64.89731216423324,1.0629978554381725,1.0629978554381725,-66.48904521897894,-66.48904521897894,0.0014931749468127782,0.0014931749468127782 -1.4164705882352941,65.34966600290605,65.34966600290605,0.751527962556237,0.751527962556237,-66.98012781106024,-66.98012781106024,0.002101573276800848,0.002101573276800848 -1.4188235294117646,65.76075508281907,65.76075508281907,0.64019377202652,0.64019377202652,-67.42981438357096,-67.42981438357096,0.0024472159167826537,0.0024472159167826537 -1.4211764705882353,66.1613728514351,66.1613728514351,0.6227080009484767,0.6227080009484767,-67.86703144320737,-67.86703144320737,0.0024893377672632147,0.0024893377672632147 -1.423529411764706,66.56564714427722,66.56564714427722,0.6870406521975191,0.6870406521975191,-68.30488072591321,-68.30488072591321,0.0022305662734463244,0.0022305662734463244 -1.4258823529411764,66.98956998879301,66.98956998879301,0.8854224928076616,0.8854224928076616,-68.75978750679586,-68.75978750679586,0.0017131430325303043,0.0017131430325303043 -1.428235294117647,67.48717656859779,67.48717656859779,1.4803073753465543,1.4803073753465543,-69.2874561639318,-69.2874561639318,0.0010164967827872916,0.0010164967827872916 -1.4305882352941177,68.62698148232023,68.62698148232023,4.543670941121855,4.543670941121855,-70.4583783675349,-70.4583783675349,0.00032916724922876604,0.00032916724922876604 -1.4329411764705882,70.67488574659338,70.67488574659338,2.1118588855440334,2.1118588855440334,-72.5395692251321,-72.5395692251321,0.0007042076901739219,0.0007042076901739219 -1.4352941176470588,71.25273500884161,71.25273500884161,1.0687086534719945,1.0687086534719945,-73.15273732133919,-73.15273732133919,0.0013816140550382257,0.0013816140550382257 -1.4376470588235293,71.67885945806748,71.67885945806748,0.7693552933220698,0.7693552933220698,-73.61477991937984,-73.61477991937984,0.0019002546176806628,0.0019002546176806628 -1.44,72.07166331842477,72.07166331842477,0.6600309805152291,0.6600309805152291,-74.0422370902063,-74.0422370902063,0.0021871340238671724,0.0021871340238671724 -1.4423529411764706,72.45554199001803,72.45554199001803,0.6428836152599298,0.6428836152599298,-74.45812611673466,-74.45812611673466,0.0022138800328652597,0.0022138800328652597 -1.444705882352941,72.8407424711942,72.8407424711942,0.7067141761100212,0.7067141761100212,-74.87243348658171,-74.87243348658171,0.001986439357482988,0.001986439357482988 -1.4470588235294117,73.2374601640617,73.2374601640617,0.8999025300211364,0.8999025300211364,-75.29655633591639,-75.29655633591639,0.0015416602853466398,0.0015416602853466398 -1.4494117647058824,73.67829910407123,73.67829910407123,1.4576866265246688,1.4576866265246688,-75.76493474330792,-75.76493474330792,0.0009427878668124506,0.0009427878668124506 -1.4517647058823528,74.49764078205457,74.49764078205457,4.570806302764155,4.570806302764155,-76.61360824390546,-76.61360824390546,0.00029821842864617026,0.00029821842864617026 -1.4541176470588235,76.96089263135842,76.96089263135842,2.7771364006089794,2.7771364006089794,-79.10848937924031,-79.10848937924031,0.00048662761983221014,0.00048662761983221014 -1.4564705882352942,77.52545443301626,77.52545443301626,1.2404934068208953,1.2404934068208953,-79.70630143744572,-79.70630143744572,0.001077722432094229,0.001077722432094229 -1.4588235294117646,77.9278866426573,77.9278866426573,0.8561205303136962,0.8561205303136962,-80.14180159553163,-80.14180159553163,0.001540245650165007,0.001540245650165007 -1.4611764705882353,78.29959407501318,78.29959407501318,0.7144136772357447,0.7144136772357447,-80.54471473909955,-80.54471473909955,0.0018161500225930107,0.0018161500225930107 -1.4635294117647057,78.66205641953967,78.66205641953967,0.6779694066751576,0.6779694066751576,-80.93543429479269,-80.93543429479269,0.0018813631443712368,0.0018813631443712368 -1.4658823529411764,79.02184836898256,79.02184836898256,0.7221424171751875,0.7221424171751875,-81.32075797867657,-81.32075797867657,0.0017380958195189267,0.0017380958195189267 -1.468235294117647,79.3820193285041,79.3820193285041,0.8765864268767615,0.8765864268767615,-81.7052168759196,-81.7052168759196,0.0014121229328262115,0.0014121229328262115 -1.4705882352941178,79.74873250885277,79.74873250885277,1.2898584074679813,1.2898584074679813,-82.0968707509387,-82.0968707509387,0.000948567231136975,0.000948567231136975 -1.4729411764705882,80.16662431043163,80.16662431043163,2.978805569642664,2.978805569642664,-82.54177500358496,-82.54177500358496,0.0004063557944839973,0.0004063557944839973 -1.4752941176470589,83.19141274904548,83.19141274904548,7.186223626254132,7.186223626254132,-85.59594504648287,-85.59594504648287,0.00016648055563690047,0.00016648055563690047 -1.4776470588235295,83.77082293124295,83.77082293124295,1.7458300787593903,1.7458300787593903,-86.20598685940415,-86.20598685940415,0.0006755195837594486,0.0006755195837594486 -1.48,84.13296856253703,84.13296856253703,1.0612702294450491,1.0612702294450491,-86.59813244196019,-86.59813244196019,0.0010919876204288927,0.0010919876204288927 -1.4823529411764707,84.47500714334488,84.47500714334488,0.828551019843371,0.828551019843371,-86.96783599805853,-86.96783599805853,0.001371129935432166,0.001371129935432166 -1.484705882352941,84.81117452451613,84.81117452451613,0.7466510305946807,0.7466510305946807,-87.32833303758788,-87.32833303758788,0.0014904607836369044,0.0014904607836369044 -1.4870588235294118,85.14350160996747,85.14350160996747,0.7546413035401242,0.7546413035401242,-87.68210339682469,-87.68210339682469,0.001446414736987028,0.001446414736987028 -1.4894117647058822,85.46965377795274,85.46965377795274,0.8563680694264579,0.8563680694264579,-88.0283218500049,-88.0283218500049,0.0012532999722819637,0.0012532999722819637 -1.4917647058823529,85.7826630121182,85.7826630121182,1.1245001028992088,1.1245001028992088,-88.36223165105798,-88.36223165105798,0.0009407490212845557,0.0009407490212845557 -1.4941176470588236,86.0596516757103,86.0596516757103,1.8985137459576054,1.8985137459576054,-88.66231966894459,-88.66231966894459,0.0005497103792321146,0.0005497103792321146 -1.4964705882352942,86.00885764441429,86.00885764441429,7.55615566255279,7.55615566255279,-88.63709536943406,-88.63709536943406,0.00013610996515430536,0.00013610996515430536 -1.4988235294117647,83.88462740845816,83.88462740845816,3.382412256984262,3.382412256984262,-86.53971259367272,-86.53971259367272,0.0002987374717337124,0.0002987374717337124 -1.5011764705882353,84.08088879230621,84.08088879230621,1.518639871033554,1.518639871033554,-86.76211818937475,-86.76211818937475,0.0006514256791738956,0.0006514256791738956 -1.5035294117647058,84.3638600786363,84.3638600786363,1.0524339134045837,1.0524339134045837,-87.06837883451041,-87.06837883451041,0.0009176073272205896,0.0009176073272205896 -1.5058823529411764,84.66357977819048,84.66357977819048,0.8775459621181818,0.8775459621181818,-87.3874553141446,-87.3874553141446,0.0010732189935785917,0.0010732189935785917 -1.5082352941176471,84.96721585716729,84.96721585716729,0.8289693949844227,0.8289693949844227,-87.70662594228482,-87.70662594228482,0.0011093356797324558,0.0011093356797324558 -1.5105882352941176,85.26669873262465,85.26669873262465,0.873961969242995,0.873961969242995,-88.01947016774449,-88.01947016774449,0.0010304349927049289,0.0010304349927049289 -1.5129411764705882,85.55125308244995,85.55125308244995,1.0368826898624102,1.0368826898624102,-88.317753765358,-88.317753765358,0.0008531184084893232,0.0008531184084893232 -1.5152941176470587,85.79745651344712,85.79745651344712,1.4411112826837675,1.4411112826837675,-88.57964085873036,-88.57964085873036,0.0006039217349262425,0.0006039217349262425 -1.5176470588235293,85.90796570712533,85.90796570712533,2.669841413803709,2.669841413803709,-88.70867702168704,-88.70867702168704,0.00032048821134745734,0.00032048821134745734 -1.52,84.95599151914053,84.95599151914053,6.649511264681106,6.649511264681106,-87.77680146881445,-87.77680146881445,0.00012614861873063788,0.00012614861873063788 -1.5223529411764707,84.1705651079146,84.1705651079146,2.5650936974390253,2.5650936974390253,-87.0108702591589,-87.0108702591589,0.00031927140776705253,0.00031927140776705253 -1.5247058823529411,84.29519123608239,84.29519123608239,1.4714172123405596,1.4714172123405596,-87.15175315136503,-87.15175315136503,0.0005414424613228073,0.0005414424613228073 -1.5270588235294118,84.534726686487,84.534726686487,1.103426974468147,1.103426974468147,-87.40245912236796,-87.40245912236796,0.000701284833235377,0.000701284833235377 -1.5294117647058822,84.80547521004081,84.80547521004081,0.9624111692079602,0.9624111692079602,-87.67899617780671,-87.67899617780671,0.0007819289695743883,0.0007819289695743883 -1.531764705882353,85.08480423631198,85.08480423631198,0.9419117276885439,0.9419117276885439,-87.96029965119214,-87.96029965119214,0.0007798069001386204,0.0007798069001386204 -1.5341176470588236,85.3584604776055,85.3584604776055,1.027344578304867,1.027344578304867,-88.23499509111787,-88.23499509111787,0.0007011712293925412,0.0007011712293925412 -1.536470588235294,85.60928123192826,85.60928123192826,1.266206000799437,1.266206000799437,-88.48857273400716,-88.48857273400716,0.0005598310610105395,0.0005598310610105395 -1.5388235294117647,85.79782600249433,85.79782600249433,1.8530528401695852,1.8530528401695852,-88.68299691211026,-88.68299691211026,0.0003768427657106332,0.0003768427657106332 -1.5411764705882351,85.73410911424463,85.73410911424463,3.6977607498501173,3.6977607498501173,-88.62776898494107,-88.62776898494107,0.0001856680921191757,0.0001856680921191757 -1.5435294117647058,84.5742931555792,84.5742931555792,5.146736586012322,5.146736586012322,-87.47673797172929,-87.47673797172929,0.0001306342786760325,0.0001306342786760325 -1.5458823529411767,84.22334138835302,84.22334138835302,2.322123837935982,2.322123837935982,-87.13144680829332,-87.13144680829332,0.00028240314877038775,0.00028240314877038775 -1.5482352941176472,84.35983819780377,84.35983819780377,1.4841817293940125,1.4841817293940125,-87.26801223166753,-87.26801223166753,0.00043009242010391273,0.00043009242010391273 -1.5505882352941176,84.58911465630541,84.58911465630541,1.1654433896490672,1.1654433896490672,-87.49052034433264,-87.49052034433264,0.000533785806194178,0.000533785806194178 -1.5529411764705883,84.84798054241172,84.84798054241172,1.0445498969108504,1.0445498969108504,-87.73687521598374,-87.73687521598374,0.0005832818672539995,0.0005832818672539995 -1.5552941176470587,85.11487116051518,85.11487116051518,1.0421997071997637,1.0421997071997637,-87.98902540806394,-87.98902540806394,0.0005765889261539314,0.0005765889261539314 -1.5576470588235294,85.376055482794,85.376055482794,1.1530184614936287,1.1530184614936287,-88.23687453229066,-88.23687453229066,0.0005174475872208428,0.0005174475872208428 -1.5599999999999998,85.61762239297985,85.61762239297985,1.4353931530689088,1.4353931530689088,-88.46946940876852,-88.46946940876852,0.0004143107224624104,0.0004143107224624104 -1.5623529411764705,85.81076031554313,85.81076031554313,2.1238643057234814,2.1238643057234814,-88.65805145822411,-88.65805145822411,0.00027919044380753376,0.00027919044380753376 -1.5647058823529412,85.80047107168942,85.80047107168942,4.52639161654457,4.52639161654457,-88.64583697006077,-88.64583697006077,0.00013027797193462478,0.00013027797193462478 -1.5670588235294118,84.31466654775235,84.31466654775235,7.305174693548092,7.305174693548092,-87.15740438137337,-87.15740438137337,7.999839143682762e-05,7.999839143682762e-05 -1.5694117647058823,83.97533489337421,83.97533489337421,2.6574527176598304,2.6574527176598304,-86.81139832522824,-86.81139832522824,0.00021742339424172174,0.00021742339424172174 -1.571764705882353,84.12922301227891,84.12922301227891,1.6155103191104143,1.6155103191104143,-86.95295732466799,-86.95295732466799,0.0003539685003332982,0.0003539685003332982 -1.5741176470588236,84.35753325048505,84.35753325048505,1.2236287272645183,1.2236287272645183,-87.16370361925652,-87.16370361925652,0.0004647896996448279,0.0004647896996448279 -1.576470588235294,84.60969531495319,84.60969531495319,1.0544255286358293,1.0544255286358293,-87.39626100199939,-87.39626100199939,0.000540552782405139,0.000540552782405139 -1.5788235294117647,84.86971178469781,84.86971178469781,1.0009985602528781,1.0009985602528781,-87.63886351196489,-87.63886351196489,0.0005751585416725397,0.0005751585416725397 -1.5811764705882352,85.13060908422152,85.13060908422152,1.0342819777825383,1.0342819777825383,-87.88808700749355,-87.88808700749355,0.000565380270952307,0.000565380270952307 -1.5835294117647059,85.39029125167247,85.39029125167247,1.165894121142255,1.165894121142255,-88.14302293699726,-88.14302293699726,0.0005103367811913556,0.0005103367811913556 -1.5858823529411765,85.65135125387035,85.65135125387035,1.4671696660885425,1.4671696660885425,-88.40506980831468,-88.40506980831468,0.0004117638049365904,0.0004117638049365904 -1.5882352941176474,85.92244148507098,85.92244148507098,2.2265446846537222,2.2265446846537222,-88.68009332068708,-88.68009332068708,0.0002743720363981775,0.0002743720363981775 -1.5905882352941176,86.25291654076071,86.25291654076071,5.818607632555154,5.818607632555154,-89.01390934147562,-89.01390934147562,0.00010573593183475899,0.00010573593183475899 -1.592941176470588,83.1309486724905,83.1309486724905,7.168661383345887,7.168661383345887,-85.89206107437676,-85.89206107437676,8.624965625425118e-05,8.624965625425118e-05 -1.5952941176470588,83.50552224444206,83.50552224444206,2.181874586892717,2.181874586892717,-86.26255597498835,-86.26255597498835,0.0002850905192281498,0.0002850905192281498 -1.5976470588235294,83.80932143085437,83.80932143085437,1.3123728212790038,1.3123728212790038,-86.55926691112039,-86.55926691112039,0.0004788055802239685,0.0004788055802239685 -1.6,84.10911966414676,84.10911966414676,0.979877768995782,0.979877768995782,-86.85192036822471,-86.85192036822471,0.0006517659170451514,0.0006517659170451514 -1.6023529411764705,84.40904513299634,84.40904513299634,0.8276905605492267,0.8276905605492267,-87.14827516821092,-87.14827516821092,0.0007885793955174671,0.0007885793955174671 -1.6047058823529412,84.71016881732801,84.71016881732801,0.764129351920975,0.764129351920975,-87.45179200831078,-87.45179200831078,0.000875572998001877,0.000875572998001877 -1.6070588235294117,85.01537684711674,85.01537684711674,0.7602387441204188,0.7602387441204188,-87.76592280996067,-87.76592280996067,0.0009020984625094443,0.0009020984625094443 -1.6094117647058825,85.33205241589867,85.33205241589867,0.8134746069742896,0.8134746069742896,-88.09673340617846,-88.09673340617846,0.0008614191068093012,0.0008614191068093012 -1.611764705882353,85.6753257255937,85.6753257255937,0.9461124007836835,0.9461124007836835,-88.45695290240992,-88.45695290240992,0.0007531973532963893,0.0007531973532963893 -1.6141176470588237,86.08231700608184,86.08231700608184,1.2319710452655501,1.2319710452655501,-88.88059609148667,-88.88059609148667,0.0005854160840649314,0.0005854160840649314 -1.616470588235294,86.67405944944066,86.67405944944066,1.8852028936419947,1.8852028936419947,-89.48636458232087,-89.48636458232087,0.00038589640817189146,0.00038589640817189146 -1.6188235294117648,87.82069805730984,87.82069805730984,2.725598800337529,2.725598800337529,-90.64323629526467,-90.64323629526467,0.00026901568900776664,0.00026901568900776664 -1.6211764705882352,88.96911608787838,88.96911608787838,1.7522859571391034,1.7522859571391034,-91.79844923957987,-91.79844923957987,0.00042256757086775633,0.00042256757086775633 -1.6235294117647059,89.57829360896227,89.57829360896227,1.0754928459398876,1.0754928459398876,-92.41320111919408,-92.41320111919408,0.000698103583745072,0.000698103583745072 -1.6258823529411766,90.01441832373573,90.01441832373573,0.7802946344804047,0.7802946344804047,-92.85632050373931,-92.85632050373931,0.0009799020262796223,0.0009799020262796223 -1.6282352941176468,90.39315547020753,90.39315547020753,0.6370299865936309,0.6370299865936309,-93.24583538970334,-93.24583538970334,0.0012260418526427192,0.0012260418526427192 -1.630588235294118,90.74876788540276,90.74876788540276,0.5661324993246811,0.5661324993246811,-93.61753001050502,-93.61753001050502,0.0014102180684778618,0.0014102180684778618 -1.6329411764705881,91.0973827260975,91.0973827260975,0.5380339857268639,0.5380339857268639,-93.9869881287318,-93.9869881287318,0.001513764580542694,0.001513764580542694 -1.6352941176470588,91.45167802116366,91.45167802116366,0.5425859921807764,0.5425859921807764,-94.36538811199947,-94.36538811199947,0.001525402315071266,0.001525402315071266 -1.6376470588235295,91.82680183807071,91.82680183807071,0.5800607027012588,0.5800607027012588,-94.76549895872732,-94.76549895872732,0.0014430850655953694,0.0014430850655953694 -1.6400000000000001,92.24649305521828,92.24649305521828,0.6597858783227842,0.6597858783227842,-95.20864578979509,-95.20864578979509,0.0012775867667882271,0.0012775867667882271 -1.6423529411764706,92.7539529725889,92.7539529725889,0.7985659903745158,0.7985659903745158,-95.7362854110922,-95.7362854110922,0.0010601594641419503,0.0010601594641419503 -1.6447058823529415,93.42427633647542,93.42427633647542,0.9853972346512073,0.9853972346512073,-96.42277129320587,-96.42277129320587,0.0008626405215285041,0.0008626405215285041 -1.6470588235294117,94.27718909482222,94.27718909482222,1.0469296392562262,1.0469296392562262,-97.28847530095047,-97.28847530095047,0.0008170633578904646,0.0008170633578904646 -1.6494117647058824,95.08259360439355,95.08259360439355,0.8619173684825165,0.8619173684825165,-98.10544144913356,-98.10544144913356,0.001002275844289909,0.001002275844289909 -1.651764705882353,95.6970303544484,95.6970303544484,0.6600521426865619,0.6600521426865619,-98.73270074959424,-98.73270074959424,0.0013269737657244565,0.0013269737657244565 -1.6541176470588237,96.18415858137685,96.18415858137685,0.5295477051295,0.5295477051295,-99.23589442858925,-99.23589442858925,0.0016815131189510358,0.0016815131189510358 -1.6564705882352944,96.60638448601746,96.60638448601746,0.4529911361648927,0.4529911361648927,-99.67865134044273,-99.67865134044273,0.001999473019520092,0.001999473019520092 -1.6588235294117644,96.99736889424497,96.99736889424497,0.410474260956508,0.410474260956508,-100.09432852468582,-100.09432852468582,0.0022404326352178897,0.0022404326352178897 -1.6611764705882353,97.37704997340475,97.37704997340475,0.391031488357689,0.391031488357689,-100.50155517588547,-100.50155517588547,0.0023791685754496546,0.0023791685754496546 -1.663529411764706,97.76090645899934,97.76090645899934,0.38980617313920535,0.38980617313920535,-100.91370880323466,-100.91370880323466,0.0024036510791642382,0.0024036510791642382 -1.6658823529411766,98.1645642073234,98.1645642073234,0.4057951933193339,0.4057951933193339,-101.34409427269772,-101.34409427269772,0.0023156748475730024,0.0023156748475730024 -1.668235294117647,98.60720721786844,98.60720721786844,0.440220594165936,0.440220594165936,-101.81020026278135,-101.81020026278135,0.0021347620223456853,0.0021347620223456853 -1.670588235294118,99.11451261927128,99.11451261927128,0.49303873932449854,0.49303873932449854,-102.33683401102748,-102.33683401102748,0.0019046302259858427,0.0019046302259858427 -1.672941176470588,99.71367129229913,99.71367129229913,0.5519807560072162,0.5519807560072162,-102.95150317326203,-102.95150317326203,0.0017032209200400594,0.0017032209200400594 -1.6752941176470588,100.39920035047946,100.39920035047946,0.5768190018924269,0.5768190018924269,-103.65039487552646,-103.65039487552646,0.0016373211101101703,0.0016373211101101703 -1.6776470588235295,101.09065902984874,101.09065902984874,0.5354230465407485,0.5354230465407485,-104.35535412809318,-104.35535412809318,0.0017790945169139478,0.0017790945169139478 -1.68,101.7019035560858,101.7019035560858,0.46037287691426654,0.46037287691426654,-104.98264648555502,-104.98264648555502,0.002094231634931351,0.002094231634931351 -1.6823529411764706,102.2221402010096,102.2221402010096,0.39290008073387706,0.39290008073387706,-105.5229135717323,-105.5229135717323,0.002487528979386918,0.002487528979386918 -1.684705882352941,102.67790428518782,102.67790428518782,0.34447962180085046,0.34447962180085046,-106.00313677238918,-106.00313677238918,0.002873597207902576,0.002873597207902576 -1.6870588235294117,103.0961192892149,103.0961192892149,0.31312092268874575,0.31312092268874575,-106.44921635838031,-106.44921635838031,0.003193143983650384,0.003193143983650384 -1.6894117647058824,103.49662375343581,103.49662375343581,0.29503659531087084,0.29503659531087084,-106.87926079584149,-106.87926079584149,0.003408062881069232,0.003408062881069232 -1.6917647058823528,103.89500267495046,103.89500267495046,0.28775272580218075,0.28775272580218075,-107.30668412270279,-107.30668412270279,0.0034984901900702845,0.0034984901900702845 -1.6941176470588235,104.30523346691531,104.30523346691531,0.29006670917126454,0.29006670917126454,-107.74318299144221,-107.74318299144221,0.003461937883558372,0.003461937883558372 -1.6964705882352942,104.74101151380702,104.74101151380702,0.3015480228336089,0.3015480228336089,-108.2012423196867,-108.2012423196867,0.003315295662281129,0.003315295662281129 -1.6988235294117644,105.21711652750392,105.21711652750392,0.321422509617779,0.321422509617779,-108.69517411525858,-108.69517411525858,0.0030977433369976954,0.0030977433369976954 -1.7011764705882353,105.74698319583601,105.74698319583601,0.34587486843013027,0.34587486843013027,-109.2390929597416,-109.2390929597416,0.0028748008479603875,0.0028748008479603875 -1.7035294117647062,106.33249169904398,106.33249169904398,0.3645615893997859,0.3645615893997859,-109.83705249983788,-109.83705249983788,0.002734921718642718,0.002734921718642718 -1.7058823529411766,106.94797906670598,106.94797906670598,0.3638348639678502,0.3638348639678502,-110.46598599212305,-110.46598599212305,0.002760500017283527,0.002760500017283527 -1.7082352941176469,107.54548339772073,107.54548339772073,0.34090429202334266,0.34090429202334266,-111.07996337257303,-111.07996337257303,0.0029773996331849194,0.0029773996331849194 -1.7105882352941175,108.09020022015736,108.09020022015736,0.3077900092354692,0.3077900092354692,-111.64557810020723,-111.64557810020723,0.0033372958328295194,0.0033372958328295194 -1.7129411764705882,108.57840211255338,108.57840211255338,0.2763596910418217,0.2763596910418217,-112.15938996855176,-112.15938996855176,0.0037567976746893297,0.0037567976746893297 -1.7152941176470589,109.02386594944537,109.02386594944537,0.2515276806592132,0.2515276806592132,-112.63384241564495,-112.63384241564495,0.004158267264945441,0.004158267264945441 -1.7176470588235295,109.44306595126737,109.44306595126737,0.23391789667658094,0.23391789667658094,-113.08353550636934,-113.08353550636934,0.004483016384979329,0.004483016384979329 -1.72,109.8510187814551,109.8510187814551,0.22296929610257102,0.22296929610257102,-113.52103676060128,-113.52103676060128,0.004693975064183137,0.004693975064183137 -1.7223529411764709,110.26052683725244,110.26052683725244,0.21796734001871196,0.21796734001871196,-113.95702666722094,-113.95702666722094,0.004773197564934157,0.004773197564934157 -1.7247058823529409,110.68256216950819,110.68256216950819,0.21852229062089856,0.21852229062089856,-114.40123412511795,-114.40123412511795,0.004723421295451292,0.004723421295451292 -1.7270588235294118,111.12776186691391,111.12776186691391,0.2242797737144011,0.2242797737144011,-114.86332541550607,-114.86332541550607,0.004567846525369561,0.004567846525369561 -1.7294117647058824,111.60453667079074,111.60453667079074,0.23433319742253264,0.23433319742253264,-115.35303501555116,-115.35303501555116,0.004352496039846151,0.004352496039846151 -1.731764705882353,112.1183012814464,112.1183012814464,0.246146321793167,0.246146321793167,-115.87748326033908,-115.87748326033908,0.004144520997240874,0.004144520997240874 -1.7341176470588235,112.66492928787578,112.66492928787578,0.2549231216550188,0.2549231216550188,-116.43552160213106,-116.43552160213106,0.004024022582951941,0.004024022582951941 -1.7364705882352938,113.22628093198317,113.22628093198317,0.2551915056779063,0.2551915056779063,-117.01162677087072,-117.01162677087072,0.004058235781998053,0.004058235781998053 -1.7388235294117647,113.77508407438867,113.77508407438867,0.24540909230619856,0.24540909230619856,-117.58004325785153,-117.58004325785153,0.004268583350928145,0.004268583350928145 -1.7411764705882353,114.28995796195504,114.28995796195504,0.22919422822638602,0.22919422822638602,-118.11985531159817,-118.11985531159817,0.004619411401119259,0.004619411401119259 -1.743529411764706,114.7656252292321,114.7656252292321,0.21160537682047081,0.21160537682047081,-118.62465270951596,-118.62465270951596,0.005040963557785673,0.005040963557785673 -1.7458823529411764,115.20855363278704,115.20855363278704,0.19590485550171377,0.19590485550171377,-119.09906193529022,-119.09906193529022,0.005459041966405468,0.005459041966405468 -1.748235294117647,115.63020443536729,115.63020443536729,0.18346262329589047,0.18346262329589047,-119.55199106802748,-119.55199106802748,0.0058128057414955445,0.0058128057414955445 -1.7505882352941176,116.0420264828445,116.0420264828445,0.1746462272683399,0.1746462272683399,-119.992657284777,-119.992657284777,0.006060110164393065,0.006060110164393065 -1.7529411764705882,116.45497911533734,116.45497911533734,0.16940865971671537,0.16940865971671537,-120.42954240963675,-120.42954240963675,0.006178911541178901,0.006178911541178901 -1.7552941176470591,116.87773043212418,116.87773043212418,0.16775504283855205,0.16775504283855205,-120.87060731689576,-120.87060731689576,0.006168097882332293,0.006168097882332293 -1.7576470588235293,117.31778180613344,117.31778180613344,0.1695462239556157,0.1695462239556157,-121.32329150973064,-121.32329150973064,0.006046607819796449,0.006046607819796449 -1.76,117.78008500695677,117.78008500695677,0.17434101260235557,0.17434101260235557,-121.79452735955249,-121.79452735955249,0.005854697487082226,0.005854697487082226 -1.7623529411764705,118.26680855225187,118.26680855225187,0.1809308269562309,0.1809308269562309,-122.28938291276032,-122.28938291276032,0.005651221932337007,0.005651221932337007 -1.7647058823529411,118.77531263676849,118.77531263676849,0.18706869699041626,0.18706869699041626,-122.80826975388649,-122.80826975388649,0.005506507669932996,0.005506507669932996 -1.7670588235294116,119.29573543433185,119.29573543433185,0.18992588598364912,0.18992588598364912,-123.34395590456167,-123.34395590456167,0.005485104130311262,0.005485104130311262 -1.7694117647058827,119.81181646761613,119.81181646761613,0.18758612237460145,0.18758612237460145,-123.8818861795678,-123.8818861795678,0.005622320008999885,0.005622320008999885 -1.7717647058823531,120.30914096170133,120.30914096170133,0.1803112106768267,0.1803112106768267,-124.40653195159797,-124.40653195159797,0.005909705904336315,0.005909705904336315 -1.7741176470588236,120.77906769092007,120.77906769092007,0.1701541931142434,0.1701541931142434,-124.90845597778163,-124.90845597778163,0.006299049476958982,0.006299049476958982 -1.776470588235294,121.22302379578525,121.22302379578525,0.1593657658502939,0.1593657658502939,-125.38614272837607,-125.38614272837607,0.006724956758293025,0.006724956758293025 -1.7788235294117647,121.64773794514085,121.64773794514085,0.14946351088448165,0.14946351088448165,-125.84345187838949,-125.84345187838949,0.007123671986157595,0.007123671986157595 -1.7811764705882354,122.06165477958281,122.06165477958281,0.1413351133219665,0.1413351133219665,-126.2866182015284,-126.2866182015284,0.007443484396308263,0.007443484396308263 -1.7835294117647063,122.4739377333029,122.4739377333029,0.13539611297507678,0.13539611297507678,-126.72222620398561,-126.72222620398561,0.007651710873824727,0.007651710873824727 -1.7858823529411765,122.89216346528765,122.89216346528765,0.13188766902683985,0.13188766902683985,-127.15667653196466,-127.15667653196466,0.00773451149863563,0.00773451149863563 -1.7882352941176471,123.32173330833744,123.32173330833744,0.1308710832473385,0.1308710832473385,-127.59604471073436,-127.59604471073436,0.007697720018820054,0.007697720018820054 -1.7905882352941174,123.76600257440124,123.76600257440124,0.13231344392691863,0.13231344392691863,-128.04584241092076,-128.04584241092076,0.007567322480206001,0.007567322480206001 -1.7929411764705883,124.22655106728162,124.22655106728162,0.1357091530288301,0.1357091530288301,-128.51069643278288,-128.51069643278288,0.007386195190372829,0.007386195190372829 -1.795294117647059,124.70094654271405,124.70094654271405,0.14012925321678232,0.14012925321678232,-128.99292361734823,-128.99292361734823,0.007213216598700662,0.007213216598700662 -1.7976470588235294,125.18542215539429,125.18542215539429,0.14405627034043836,0.14405627034043836,-129.49115447784433,-129.49115447784433,0.007109456202385682,0.007109456202385682 -1.8,125.67212477954357,125.67212477954357,0.14586882261289832,0.14586882261289832,-129.9991317979439,-129.9991317979439,0.007126091306942702,0.007126091306942702 diff --git a/sparameters/rotate_f258530e_46e06d33.yml b/sparameters/rotate_f258530e_46e06d33.yml deleted file mode 100644 index 465918a7..00000000 --- a/sparameters/rotate_f258530e_46e06d33.yml +++ /dev/null @@ -1,27 +0,0 @@ -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: -10 -compute_time_seconds: 75.88972020149231 -compute_time_minutes: 1.2648286700248719 diff --git a/sparameters/rotate_f258530e_49a8fbc1.csv b/sparameters/rotate_f258530e_49a8fbc1.csv deleted file mode 100644 index e3d984cd..00000000 --- a/sparameters/rotate_f258530e_49a8fbc1.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,2.0894795755153126,2.0894795755153126,0.5084278134815334,0.5084278134815334,-2.9243290781250746,-2.9243290781250746,0.0033200411447979737,0.0033200411447979737 -1.2023529411764706,2.864946278448887,2.864946278448887,0.43478302348282316,0.43478302348282316,-3.7790259832016435,-3.7790259832016435,0.003940418636189645,0.003940418636189645 -1.204705882352941,3.5661129021290185,3.5661129021290185,0.4473293831388846,0.4473293831388846,-4.559855667308776,-4.559855667308776,0.003693115837415082,0.003693115837415082 -1.2070588235294117,4.360583728173713,4.360583728173713,0.5773883097630378,0.5773883097630378,-5.390439832265869,-5.390439832265869,0.002681367965627966,0.002681367965627966 -1.2094117647058824,5.562900330426392,5.562900330426392,1.021119110063485,1.021119110063485,-6.581674728396815,-6.581674728396815,0.0014547413769769937,0.0014547413769769937 -1.2117647058823529,7.4103688976210975,7.4103688976210975,0.9995822932902378,0.9995822932902378,-8.4188184256801,-8.4188184256801,0.001501840169521732,0.001501840169521732 -1.2141176470588235,8.465558789520294,8.465558789520294,0.627164969758565,0.627164969758565,-9.50624546243317,-9.50624546243317,0.002467085995200367,0.002467085995200367 -1.216470588235294,9.1701475039119,9.1701475039119,0.5198194057920409,0.5198194057920409,-10.277246095849227,-10.277246095849227,0.0029951181736835955,0.0029951181736835955 -1.2188235294117646,9.80925027029215,9.80925027029215,0.5358854843688394,0.5358854843688394,-10.980932275861921,-10.980932275861921,0.002810002648028253,0.002810002648028253 -1.2211764705882353,10.50923069771765,10.50923069771765,0.7152929981020301,0.7152929981020301,-11.712269139383901,-11.712269139383901,0.001995987950440843,0.001995987950440843 -1.2235294117647058,11.5596921714645,11.5596921714645,1.535637228978784,1.535637228978784,-12.758907871517003,-12.758907871517003,0.0008975323055502885,0.0008975323055502885 -1.2258823529411764,13.808442106465971,13.808442106465971,1.5852660892948205,1.5852660892948205,-15.002993268321887,-15.002993268321887,0.0008720421030167649,0.0008720421030167649 -1.228235294117647,14.796259781788802,14.796259781788802,0.8032483283138138,0.8032483283138138,-16.017956966416598,-16.017956966416598,0.0017562407453569826,0.0017562407453569826 -1.2305882352941175,15.428612386715036,15.428612386715036,0.6305856164738607,0.6305856164738607,-16.704232904840534,-16.704232904840534,0.0022451069296896857,0.0022451069296896857 -1.2329411764705882,15.998039645459276,15.998039645459276,0.6373077399033636,0.6373077399033636,-17.328685379653052,-17.328685379653052,0.0021613711649759245,0.0021613711649759245 -1.2352941176470589,16.586638184811406,16.586638184811406,0.843616087653118,0.843616087653118,-17.948033991979628,-17.948033991979628,0.0015607966082813623,0.0015607966082813623 -1.2376470588235293,17.317986748295827,17.317986748295827,1.9878753697983007,1.9878753697983007,-18.68159897033564,-18.68159897033564,0.0006400015141868675,0.0006400015141868675 -1.24,20.335442400718218,20.335442400718218,2.9402595489967713,2.9402595489967713,-21.695778302194856,-21.695778302194856,0.0004304425645869716,0.0004304425645869716 -1.2423529411764704,21.144175193302278,21.144175193302278,1.0369047895652863,1.0369047895652863,-22.52280855000874,-22.52280855000874,0.0012360138062052597,0.0012360138062052597 -1.244705882352941,21.689393039379794,21.689393039379794,0.7605004334750026,0.7605004334750026,-23.110128164051954,-23.110128164051954,0.0016912548624847309,0.0016912548624847309 -1.2470588235294118,22.191218404449945,22.191218404449945,0.7446353976120513,0.7446353976120513,-23.659279274735535,-23.659279274735535,0.0016930391541349473,0.0016930391541349473 -1.2494117647058822,22.68604593447219,22.68604593447219,0.9536049038062685,0.9536049038062685,-24.1851153812407,-24.1851153812407,0.0012726379692736896,0.0012726379692736896 -1.251764705882353,23.148064173071795,23.148064173071795,2.074003792427337,2.074003792427337,-24.653856292987534,-24.653856292987534,0.0005650806350930228,0.0005650806350930228 -1.2541176470588236,20.898069150512818,20.898069150512818,4.629394009883354,4.629394009883354,-22.40010019172766,-22.40010019172766,0.0002498262896428477,0.0002498262896428477 -1.256470588235294,21.22075346710903,21.22075346710903,1.240918729787672,1.240918729787672,-22.731024820217442,-22.731024820217442,0.0009372799784944431,0.0009372799784944431 -1.2588235294117647,21.68052254250273,21.68052254250273,0.8622618012503067,0.8622618012503067,-23.21952620481553,-23.21952620481553,0.0013557043548825698,0.0013557043548825698 -1.2611764705882353,22.136608033561046,22.136608033561046,0.8175086166170672,0.8175086166170672,-23.71406729716285,-23.71406729716285,0.0014132670878802313,0.0014132670878802313 -1.2635294117647058,22.58651308311471,22.58651308311471,1.0064604929941094,1.0064604929941094,-24.19436754629936,-24.19436754629936,0.0011150088045548123,0.0011150088045548123 -1.2658823529411765,22.981852188804915,22.981852188804915,1.9592096770694534,1.9592096770694534,-24.600398605562148,-24.600398605562148,0.0005541114168692519,0.0005541114168692519 -1.268235294117647,21.179576730479045,21.179576730479045,6.129311066075834,6.129311066075834,-22.79403755363973,-22.79403755363973,0.00017366681406086567,0.00017366681406086567 -1.2705882352941176,21.169554486448032,21.169554486448032,1.3714668649607211,1.3714668649607211,-22.782721568498012,-22.782721568498012,0.0007755509519252917,0.0007755509519252917 -1.2729411764705882,21.601584580831098,21.601584580831098,0.8923027039253707,0.8923027039253707,-23.22894332367058,-23.22894332367058,0.0011996934969581727,0.0011996934969581727 -1.2752941176470587,22.052991273799748,22.052991273799748,0.8051037795070949,0.8051037795070949,-23.70748371101842,-23.70748371101842,0.0013265244856606778,0.0013265244856606778 -1.2776470588235294,22.51135128216374,22.51135128216374,0.9270712065557339,0.9270712065557339,-24.19248563788239,-24.19248563788239,0.001131946536423293,0.001131946536423293 -1.28,22.978412049117058,22.978412049117058,1.5295671614728739,1.5295671614728739,-24.673091969562858,-24.673091969562858,0.0006682735534592312,0.0006682735534592312 -1.2823529411764705,23.18395278547221,23.18395278547221,19.96622136636962,19.96622136636962,-24.876096432381413,-24.876096432381413,5.0147975292233184e-05,5.0147975292233184e-05 -1.2847058823529411,20.878007669271195,20.878007669271195,1.7054040234858914,1.7054040234858914,-22.56240248424849,-22.56240248424849,0.0005842486024911496,0.0005842486024911496 -1.2870588235294118,21.356003733163526,21.356003733163526,0.9271559991298368,0.9271559991298368,-23.041360528792797,-23.041360528792797,0.0010829567510369643,0.0010829567510369643 -1.2894117647058823,21.83127614608919,21.83127614608919,0.7565233932046928,0.7565233932046928,-23.53104477345692,-23.53104477345692,0.0013376599778737264,0.0013376599778737264 -1.291764705882353,22.30708907930068,22.30708907930068,0.7808836855463611,0.7808836855463611,-24.02753513445586,-24.02753513445586,0.0012930302104016977,0.0012930302104016977 -1.2941176470588236,22.805146766034547,22.805146766034547,1.0377639401104428,1.0377639401104428,-24.54098460177962,-24.54098460177962,0.00096070606163715,0.00096070606163715 -1.296470588235294,23.41295128100307,23.41295128100307,2.3533555927207335,2.3533555927207335,-25.15164465197379,-25.15164465197379,0.0004176301306067739,0.0004176301306067739 -1.2988235294117647,26.463429737602798,26.463429737602798,3.8422766479572994,3.8422766479572994,-28.19533763877559,-28.19533763877559,0.00025457265185607015,0.00025457265185607015 -1.3011764705882352,27.210824490122086,27.210824490122086,1.1641592531089209,1.1641592531089209,-28.93695741186886,-28.93695741186886,0.0008476202305376671,0.0008476202305376671 -1.3035294117647058,27.729386912461877,27.729386912461877,0.7818800001213935,0.7818800001213935,-29.459783164595407,-29.459783164595407,0.001282681630508756,0.001282681630508756 -1.3058823529411765,28.215264527879967,28.215264527879967,0.6966854535742375,0.6966854535742375,-29.96001282798044,-29.96001282798044,0.0014592282630402687,0.0014592282630402687 -1.308235294117647,28.698196896303855,28.698196896303855,0.7633814462177609,0.7633814462177609,-30.460308989030672,-30.460308989030672,0.0013388547166714145,0.0013388547166714145 -1.3105882352941176,29.21016923012877,29.21016923012877,1.0802960312786967,1.0802960312786967,-30.984289140685235,-30.984289140685235,0.0009453767744690238,0.0009453767744690238 -1.3129411764705883,29.914139352009855,29.914139352009855,2.7856208626742447,2.7856208626742447,-31.691648030375738,-31.691648030375738,0.0003669009549131485,0.0003669009549131485 -1.3152941176470587,32.77830705243791,32.77830705243791,2.869133391268154,2.869133391268154,-34.55472692000015,-34.55472692000015,0.0003596728239568715,0.0003596728239568715 -1.3176470588235294,33.489354183835985,33.489354183835985,1.085586162919031,1.085586162919031,-35.26842282680946,-35.26842282680946,0.0009690270202249697,0.0009690270202249697 -1.32,33.993838939885755,33.993838939885755,0.7580297421503576,0.7580297421503576,-35.78445604725651,-35.78445604725651,0.001420357397602804,0.001420357397602804 -1.3223529411764705,34.4608841159683,34.4608841159683,0.6807938710305607,0.6807938710305607,-36.27099850665453,-36.27099850665453,0.001613730267959846,0.001613730267959846 -1.3247058823529412,34.91857337841989,34.91857337841989,0.7383302143526966,0.7383302143526966,-36.750530566521896,-36.750530566521896,0.0015085996074280892,0.0015085996074280892 -1.3270588235294118,35.386892514218076,35.386892514218076,1.0025994993921266,1.0025994993921266,-37.23737949940667,-37.23737949940667,0.001121445511507427,0.001121445511507427 -1.3294117647058823,35.92656296070115,35.92656296070115,2.172068568349901,2.172068568349901,-37.79046616050584,-37.79046616050584,0.000523043897695988,0.000523043897695988 -1.331764705882353,38.90586097180648,38.90586097180648,5.379899293730732,5.379899293730732,-40.7809692989737,-40.7809692989737,0.00021457216171046772,0.00021457216171046772 -1.3341176470588234,39.676832692868594,39.676832692868594,1.325435642051795,1.325435642051795,-41.56643593233005,-41.56643593233005,0.0008903597303626994,0.0008903597303626994 -1.336470588235294,40.14502189581311,40.14502189581311,0.840690770904625,0.840690770904625,-42.055802323991,-42.055802323991,0.0014384357556809692,0.0014384357556809692 -1.3388235294117647,40.577821436459374,40.577821436459374,0.7066546702736748,0.7066546702736748,-42.51612747063057,-42.51612747063057,0.0017492615738851987,0.0017492615738851987 -1.3411764705882352,40.997142054875745,40.997142054875745,0.7117235084281152,0.7117235084281152,-42.965658681720804,-42.965658681720804,0.0017661643276394088,0.0017661643276394088 -1.3435294117647059,41.41101429526079,41.41101429526079,0.8576205866697864,0.8576205866697864,-43.408362458718585,-43.408362458718585,0.0014841003130036294,0.0014841003130036294 -1.3458823529411765,41.82081565927972,41.82081565927972,1.3574272117394992,1.3574272117394992,-43.84364560026487,-43.84364560026487,0.0009484299479340932,0.0009484299479340932 -1.348235294117647,42.19658223207239,42.19658223207239,5.283194877384998,5.283194877384998,-44.242803300325164,-44.242803300325164,0.0002471195444491682,0.0002471195444491682 -1.3505882352941176,39.53857042544859,39.53857042544859,2.6253296066322416,2.6253296066322416,-41.60940309854702,-41.60940309854702,0.0005061437797722529,0.0005061437797722529 -1.3529411764705883,39.92532541953899,39.92532541953899,1.140701508523801,1.140701508523801,-42.02500868547659,-42.02500868547659,0.0011879440640752766,0.0011879440640752766 -1.3552941176470588,40.31439971666244,40.31439971666244,0.8168924323292246,0.8168924323292246,-42.44777370752432,-42.44777370752432,0.0016894100473029987,0.0016894100473029987 -1.3576470588235294,40.697793548964434,40.697793548964434,0.7251496533399832,0.7251496533399832,-42.86781504958755,-42.86781504958755,0.0019307200211949559,0.0019307200211949559 -1.3599999999999999,41.075101049861445,41.075101049861445,0.7545319347804763,0.7545319347804763,-43.28182738301885,-43.28182738301885,0.001874293077791563,0.001874293077791563 -1.3623529411764705,41.442581148553266,41.442581148553266,0.9312861922850312,0.9312861922850312,-43.683678131740365,-43.683678131740365,0.0015297688405823656,0.0015297688405823656 -1.3647058823529412,41.77710578632909,41.77710578632909,1.5064564918836134,1.5064564918836134,-44.05000680517324,-44.05000680517324,0.0009527192021944942,0.0009527192021944942 -1.3670588235294117,41.7736621743476,41.7736621743476,5.7478323050517,5.7478323050517,-44.077421460992845,-44.077421460992845,0.0002520488543985912,0.0002520488543985912 -1.3694117647058823,39.75567428960926,39.75567428960926,2.63542110092069,2.63542110092069,-42.09182013830585,-42.09182013830585,0.0005559888507144229,0.0005559888507144229 -1.371764705882353,40.0031349235195,40.0031349235195,1.2046032328965557,1.2046032328965557,-42.374741874845306,-42.374741874845306,0.0012304996885766871,0.0012304996885766871 -1.3741176470588234,40.33803637237079,40.33803637237079,0.8637118147955778,0.8637118147955778,-42.7480600745267,-42.7480600745267,0.001732518162881926,0.001732518162881926 -1.3764705882352941,40.684842994399666,40.684842994399666,0.7581666713704809,0.7581666713704809,-43.13443898713959,-43.13443898713959,0.00198554458524729,0.00198554458524729 -1.3788235294117648,41.030960310097655,41.030960310097655,0.7719581985509002,0.7719581985509002,-43.51912232987022,-43.51912232987022,0.001955222608879029,0.001955222608879029 -1.3811764705882352,41.36681379471558,41.36681379471558,0.915529594084741,0.915529594084741,-43.89111309104358,-43.89111309104358,0.0016501258561176261,0.0016501258561176261 -1.383529411764706,41.66526273252695,41.66526273252695,1.349891409734559,1.349891409734559,-44.22344080317913,-44.22344080317913,0.0011204960205455819,0.0011204960205455819 -1.3858823529411763,41.74209731718507,41.74209731718507,3.25788687058566,3.25788687058566,-44.3333474703552,-44.3333474703552,0.0004655605353159639,0.0004655605353159639 -1.388235294117647,40.015399824647716,40.015399824647716,3.9344120745672138,3.9344120745672138,-42.640810459485955,-42.640810459485955,0.000387130377653742,0.000387130377653742 -1.3905882352941177,39.99313299216206,39.99313299216206,1.4831558450066409,1.4831558450066409,-42.65488488584406,-42.65488488584406,0.001031176059563007,0.001031176059563007 -1.3929411764705881,40.266847686856856,40.266847686856856,0.9800540726944126,0.9800540726944126,-42.96684398873445,-42.96684398873445,0.0015640563047991391,0.0015640563047991391 -1.3952941176470588,40.58043937476649,40.58043937476649,0.8121190376768243,0.8121190376768243,-43.31913870020912,-43.31913870020912,0.0018863261393701905,0.0018863261393701905 -1.3976470588235295,40.9022463402908,40.9022463402908,0.7807515805384981,0.7807515805384981,-43.67841440674483,-43.67841440674483,0.0019557468120810773,0.0019557468120810773 -1.4,41.21904125554662,41.21904125554662,0.8593923057692481,0.8593923057692481,-44.030321711125474,-44.030321711125474,0.0017686799518140453,0.0017686799518140453 -1.4023529411764706,41.51080859333093,41.51080859333093,1.1142533667614822,1.1142533667614822,-44.35496680653082,-44.35496680653082,0.0013584929161359264,0.0013584929161359264 -1.4047058823529412,41.70409329658023,41.70409329658023,1.8973089732352983,1.8973089732352983,-44.58012828385327,-44.58012828385327,0.0007957104580679027,0.0007957104580679027 -1.4070588235294117,41.1014567868887,41.1014567868887,5.289511160719225,5.289511160719225,-44.010057418481495,-44.010057418481495,0.0002850670830975206,0.0002850670830975206 -1.4094117647058824,40.027862079997966,40.027862079997966,2.3212852552423304,2.3212852552423304,-42.97071730900294,-42.97071730900294,0.0006489711303102106,0.0006489711303102106 -1.4117647058823528,40.1531079307042,40.1531079307042,1.2565838672959242,1.2565838672959242,-43.13185339769821,-43.13185339769821,0.0011961635340929015,0.0011961635340929015 -1.4141176470588235,40.416525008188785,40.416525008188785,0.9331981660924723,0.9331981660924723,-43.43168149213795,-43.43168149213795,0.0016033077102745855,0.0016033077102745855 -1.4164705882352941,40.70995667856198,40.70995667856198,0.8221450701968968,0.8221450701968968,-43.760529315397754,-43.760529315397754,0.001807374983166045,0.001807374983166045 -1.4188235294117646,41.00838917936463,41.00838917936463,0.8249724437697048,0.8249724437697048,-44.09232995981218,-44.09232995981218,0.0017864674298179628,0.0017864674298179628 -1.4211764705882353,41.295300992628505,41.295300992628505,0.9423766697433209,0.9423766697433209,-44.41036897289781,-44.41036897289781,0.0015513887424346907,0.0015513887424346907 -1.423529411764706,41.539463150342456,41.539463150342456,1.2699953264942887,1.2699953264942887,-44.684358236067425,-44.684358236067425,0.0011434995623799214,0.0011434995623799214 -1.4258823529411764,41.61793886945019,41.61793886945019,2.2497453213583523,2.2497453213583523,-44.79285000969986,-44.79285000969986,0.0006422148307957537,0.0006422148307957537 -1.428235294117647,40.77560041639867,40.77560041639867,4.3543287846829895,4.3543287846829895,-43.98185061411565,-43.98185061411565,0.00033035633514494713,0.00033035633514494713 -1.4305882352941177,40.139407605131574,40.139407605131574,2.0584024907874934,2.0584024907874934,-43.37857873015649,-43.37857873015649,0.0006952983564817042,0.0006952983564817042 -1.4329411764705882,40.24965423381744,40.24965423381744,1.2459979091036213,1.2459979091036213,-43.52264787338908,-43.52264787338908,0.0011407878862211595,0.0011407878862211595 -1.4352941176470588,40.48534763913462,40.48534763913462,0.9624428971180952,0.9624428971180952,-43.79170886592578,-43.79170886592578,0.001463546002058524,0.001463546002058524 -1.4376470588235293,40.75283858983327,40.75283858983327,0.8634903266503844,0.8634903266503844,-44.0909042997431,-44.0909042997431,0.0016139499903780967,0.0016139499903780967 -1.44,41.02478886251607,41.02478886251607,0.8732565621010263,0.8732565621010263,-44.39237211651066,-44.39237211651066,0.0015784547915661683,0.0015784547915661683 -1.4423529411764706,41.28098205252669,41.28098205252669,0.9957728709802603,0.9957728709802603,-44.67635196226875,-44.67635196226875,0.0013704565276590227,0.0013704565276590227 -1.444705882352941,41.48484612709075,41.48484612709075,1.3154336941416365,1.3154336941416365,-44.90753848653778,-44.90753848653778,0.0010287267101082818,0.0010287267101082818 -1.4470588235294117,41.51444529198656,41.51444529198656,2.1434757430252454,2.1434757430252454,-44.96526189747941,-44.96526189747941,0.0006268357825641301,0.0006268357825641301 -1.4494117647058824,40.899848327834114,40.899848327834114,3.511592950331875,3.511592950331875,-44.380385849355804,-44.380385849355804,0.00037994728829922233,0.00037994728829922233 -1.4517647058823528,40.29373477208257,40.29373477208257,2.1761847584047973,2.1761847584047973,-43.80536345343356,-43.80536345343356,0.0006080834335872642,0.0006080834335872642 -1.4541176470588235,40.31524886110464,40.31524886110464,1.3691398076323213,1.3691398076323213,-43.85829693005666,-43.85829693005666,0.0009566537059925964,0.0009566537059925964 -1.4564705882352942,40.500557907976024,40.500557907976024,1.0554323340047154,1.0554323340047154,-44.074030510774314,-44.074030510774314,0.0012258220216895916,0.0012258220216895916 -1.4588235294117646,40.73182407862621,40.73182407862621,0.9354195894126777,0.9354195894126777,-44.33374999782954,-44.33374999782954,0.0013646505065956333,0.0013646505065956333 -1.4611764705882353,40.97260959653303,40.97260959653303,0.9268459229017981,0.9268459229017981,-44.60089261268165,-44.60089261268165,0.0013592054692762984,0.0013592054692762984 -1.4635294117647057,41.19938079988567,41.19938079988567,1.0216029661574721,1.0216029661574721,-44.852657002835606,-44.852657002835606,0.001218514377981044,0.001218514377981044 -1.4658823529411764,41.37855636273096,41.37855636273096,1.267601653790377,1.267601653790377,-45.056733045034285,-45.056733045034285,0.0009719844437229905,0.0009719844437229905 -1.468235294117647,41.42802912001375,41.42802912001375,1.809885620868032,1.809885620868032,-45.13218492047068,-45.13218492047068,0.0006744242306536947,0.0006744242306536947 -1.4705882352941178,41.12162536435721,41.12162536435721,2.7150725367399233,2.7150725367399233,-44.85342512604657,-44.85342512604657,0.00044529608514281557,0.00044529608514281557 -1.4729411764705882,40.555334711751264,40.555334711751264,2.429056918640182,2.429056918640182,-44.31587844966915,-44.31587844966915,0.0004922521944528595,0.0004922521944528595 -1.4752941176470589,40.40738322774081,40.40738322774081,1.630408162882825,1.630408162882825,-44.19672182827658,-44.19672182827658,0.000723728406515873,0.000723728406515873 -1.4776470588235295,40.50270817802563,40.50270817802563,1.2318412332283926,1.2318412332283926,-44.319496244665594,-44.319496244665594,0.0009434087912792557,0.0009434087912792557 -1.48,40.679524468598494,40.679524468598494,1.0563942397805042,1.0563942397805042,-44.52158758409201,-44.52158758409201,0.0010824382686822173,0.0010824382686822173 -1.4823529411764707,40.88136851632126,40.88136851632126,1.0053238304752914,1.0053238304752914,-44.74645943987113,-44.74645943987113,0.0011196265547722718,0.0011196265547722718 -1.484705882352941,41.07903808704425,41.07903808704425,1.0510501691856469,1.0510501691856469,-44.96579747309684,-44.96579747309684,0.0010556468963610342,0.0010556468963610342 -1.4870588235294118,41.24395666327991,41.24395666327991,1.2069318454885842,1.2069318454885842,-45.15236427778333,-45.15236427778333,0.0009077796123671185,0.0009077796123671185 -1.4894117647058822,41.32834942742675,41.32834942742675,1.5256777430372142,1.5256777430372142,-45.25960023533841,-45.25960023533841,0.0007098149016939352,0.0007098149016939352 -1.4917647058823529,41.23559936484663,41.23559936484663,2.052006436991984,2.052006436991984,-45.191352647573694,-45.191352647573694,0.0005214875613415897,0.0005214875613415897 -1.4941176470588236,40.8923937026148,40.8923937026148,2.3767416420887346,2.3767416420887346,-44.873763004040306,-44.873763004040306,0.00044415846323129203,0.00044415846323129203 -1.4964705882352942,40.59784735332541,40.59784735332541,1.9670558726232783,1.9670558726232783,-44.604742449597154,-44.604742449597154,0.0005281518641173296,0.0005281518641173296 -1.4988235294117647,40.54942211148026,40.54942211148026,1.5106439159962177,1.5106439159962177,-44.58039965017924,-44.58039965017924,0.0006753672728665824,0.0006753672728665824 -1.5011764705882353,40.639897764113186,40.639897764113186,1.2512975365414798,1.2512975365414798,-44.69241303790107,-44.69241303790107,0.0007997674940898276,0.0007997674940898276 -1.5035294117647058,40.787632651200354,40.787632651200354,1.1337128489248058,1.1337128489248058,-44.85900354127145,-44.85900354127145,0.0008661407217869834,0.0008661407217869834 -1.5058823529411764,40.951565235722825,40.951565235722825,1.1163230535110877,1.1163230535110877,-45.03993514068716,-45.03993514068716,0.0008644575006898901,0.0008644575006898901 -1.5082352941176471,41.103695031293014,41.103695031293014,1.1887758416838796,1.1887758416838796,-45.208674733156506,-45.208674733156506,0.000799385616075557,0.000799385616075557 -1.5105882352941176,41.21378436141086,41.21378436141086,1.364052338461485,1.364052338461485,-45.33634151329786,-45.33634151329786,0.0006869865645278379,0.0006869865645278379 -1.5129411764705882,41.236946369668985,41.236946369668985,1.6642574903876077,1.6642574903876077,-45.378733961735094,-45.378733961735094,0.0005552755193496103,0.0005552755193496103 -1.5152941176470587,41.1139299154406,41.1139299154406,2.03123192223102,2.03123192223102,-45.27624537129347,-45.27624537129347,0.0004479991880762508,0.0004479991880762508 -1.5176470588235293,40.864185566600675,40.864185566600675,2.1415963635772757,2.1415963635772757,-45.04709203849693,-45.04709203849693,0.0004173814235054139,0.0004173814235054139 -1.52,40.67583297910356,40.67583297910356,1.861132120799203,1.861132120799203,-44.87783705663025,-44.87783705663025,0.00047057690596997705,0.00047057690596997705 -1.5223529411764707,40.640138800448135,40.640138800448135,1.5390161982851813,1.5390161982851813,-44.85829838737136,-44.85829838737136,0.0005567432994788388,0.0005567432994788388 -1.5247058823529411,40.70835658509765,40.70835658509765,1.3300419410940614,1.3300419410940614,-44.93926972423355,-44.93926972423355,0.0006303036333390136,0.0006303036333390136 -1.5270588235294118,40.82780434075259,40.82780434075259,1.2286416093229149,1.2286416093229149,-45.068588841465136,-45.068588841465136,0.0006687500402505707,0.0006687500402505707 -1.5294117647058822,40.96468502821791,40.96468502821791,1.2153856036949797,1.2153856036949797,-45.214098088098936,-45.214098088098936,0.0006643579436432452,0.0006643579436432452 -1.531764705882353,41.09383258874253,41.09383258874253,1.2854507298671594,1.2854507298671594,-45.352317875972346,-45.352317875972346,0.0006187762831679929,0.0006187762831679929 -1.5341176470588236,41.18912939524026,41.18912939524026,1.450407645812412,1.450407645812412,-45.45821291888186,-45.45821291888186,0.0005408119934615264,0.0005408119934615264 -1.536470588235294,41.213730604126575,41.213730604126575,1.7301212655724412,1.7301212655724412,-45.495087689054955,-45.495087689054955,0.00044680590151659503,0.00044680590151659503 -1.5388235294117647,41.11564520695996,41.11564520695996,2.0914705523993287,2.0914705523993287,-45.40994515706887,-45.40994515706887,0.0003634936747701328,0.0003634936747701328 -1.5411764705882351,40.88460682609439,40.88460682609439,2.274953565745947,2.274953565745947,-45.19082229388029,-45.19082229388029,0.0003278072291489002,0.0003278072291489002 -1.5435294117647058,40.66611757384568,40.66611757384568,2.0381397076055134,2.0381397076055134,-44.98121601632784,-44.98121601632784,0.00035821316199475807,0.00035821316199475807 -1.5458823529411767,40.59142074331423,40.59142074331423,1.6705242495403085,1.6705242495403085,-44.911406213154514,-44.911406213154514,0.000427758384637238,0.000427758384637238 -1.5482352941176472,40.638871082182554,40.638871082182554,1.4025524933074385,1.4025524933074385,-44.95981860833976,-44.95981860833976,0.0004995663823302333,0.0004995663823302333 -1.5505882352941176,40.756175397105245,40.756175397105245,1.2524060504849441,1.2524060504849441,-45.07556574313167,-45.07556574313167,0.00055049183509302,0.00055049183509302 -1.5529411764705883,40.90799842686485,40.90799842686485,1.1985607383228538,1.1985607383228538,-45.22534291424183,-45.22534291424183,0.0005682624802502404,0.0005682624802502404 -1.5552941176470587,41.0711286764015,41.0711286764015,1.2330692824486622,1.2330692824486622,-45.38801991932671,-45.38801991932671,0.0005473179005268104,0.0005473179005268104 -1.5576470588235294,41.22510722490181,41.22510722490181,1.373379054791622,1.373379054791622,-45.54388208624941,-45.54388208624941,0.00048747123559156596,0.00048747123559156596 -1.5599999999999998,41.339756031766676,41.339756031766676,1.6839314772642007,1.6839314772642007,-45.66220421208401,-45.66220421208401,0.0003940402273907241,0.0003940402273907241 -1.5623529411764705,41.33953241765863,41.33953241765863,2.3304870196465033,2.3304870196465033,-45.66594215106674,-45.66594215106674,0.0002816309910602231,0.0002816309910602231 -1.5647058823529412,41.01100787138276,41.01100787138276,3.375411318022202,3.375411318022202,-45.33955378305683,-45.33955378305683,0.0001919529125456587,0.0001919529125456587 -1.5670588235294118,40.415223042695494,40.415223042695494,2.9742204550644944,2.9742204550644944,-44.74259394598648,-44.74259394598648,0.00021493248056258125,0.00021493248056258125 -1.5694117647058823,40.23458056491135,40.23458056491135,1.9070677024520912,1.9070677024520912,-44.55676466287077,-44.55676466287077,0.00033125307782090607,0.00033125307782090607 -1.571764705882353,40.32061998054577,40.32061998054577,1.3634126363667578,1.3634126363667578,-44.63460300454491,-44.63460300454491,0.0004596106362151677,0.0004596106362151677 -1.5741176470588236,40.505586486961406,40.505586486961406,1.1050854204385132,1.1050854204385132,-44.81055897786689,-44.81055897786689,0.0005653389615233792,0.0005653389615233792 -1.576470588235294,40.73289158047831,40.73289158047831,0.9919464400408204,0.9919464400408204,-45.03058344441985,-45.03058344441985,0.0006307653406607632,0.0006307653406607632 -1.5788235294117647,40.98071990070623,40.98071990070623,0.9740848754226549,0.9740848754226549,-45.27445063206109,-45.27445063206109,0.0006451839021211448,0.0006451839021211448 -1.5811764705882352,41.239918845054135,41.239918845054135,1.0474575882809931,1.0474575882809931,-45.53356785130133,-45.53356785130133,0.0006030050798818385,0.0006030050798818385 -1.5835294117647059,41.50719515930402,41.50719515930402,1.2581707948125087,1.2581707948125087,-45.80335366786546,-45.80335366786546,0.0005038020759941962,0.0005038020759941962 -1.5858823529411765,41.78281056368715,41.78281056368715,1.8002449509309555,1.8002449509309555,-46.08219754288392,-46.08219754288392,0.0003525256965559609,0.0003525256965559609 -1.5882352941176474,42.07176236770486,42.07176236770486,3.985311935918037,3.985311935918037,-46.372973740920855,-46.372973740920855,0.00015913855482215878,0.00015913855482215878 -1.5905882352941176,39.17108949153598,39.17108949153598,10.224293767547216,10.224293767547216,-43.47142768148744,-43.47142768148744,6.197665801665305e-05,6.197665801665305e-05 -1.592941176470588,39.496874317984535,39.496874317984535,2.1638154341443854,2.1638154341443854,-43.79324928467478,-43.79324928467478,0.00029320332585166934,0.00029320332585166934 -1.5952941176470588,39.80425536289119,39.80425536289119,1.238535096836791,1.238535096836791,-44.095358438509784,-44.095358438509784,0.0005147404242456661,0.0005147404242456661 -1.5976470588235294,40.114532348305346,40.114532348305346,0.9105245261879279,0.9105245261879279,-44.40100517619575,-44.40100517619575,0.0007067918650616601,0.0007067918650616601 -1.6,40.42776932315204,40.42776932315204,0.7662322617291853,0.7662322617291853,-44.712500849046314,-44.712500849046314,0.0008511054604692448,0.0008511054604692448 -1.6023529411764705,40.74461240602347,40.74461240602347,0.7100188149590498,0.7100188149590498,-45.03188358451161,-45.03188358451161,0.0009325088482675267,0.0009325088482675267 -1.6047058823529412,41.068805410761826,41.068805410761826,0.7142099964854878,0.7142099964854878,-45.36309070719832,-45.36309070719832,0.0009407793668009854,0.0009407793668009854 -1.6070588235294117,41.409101494031205,41.409101494031205,0.7801267284792998,0.7801267284792998,-45.71346734129151,-45.71346734129151,0.0008721278558095521,0.0008721278558095521 -1.6094117647058825,41.78539513515962,41.78539513515962,0.9400525439972106,0.9400525439972106,-46.10114603102578,-46.10114603102578,0.0007306490255794253,0.0007306490255794253 -1.611764705882353,42.252860521714425,42.252860521714425,1.2988414919160185,1.2988414919160185,-46.57911691281982,-46.57911691281982,0.0005323833698210372,0.0005323833698210372 -1.6141176470588237,43.016320316486066,43.016320316486066,2.1179648337537724,2.1179648337537724,-47.351051754624386,-47.351051754624386,0.000328252216391194,0.000328252216391194 -1.616470588235294,44.36242898831472,44.36242898831472,2.286700222718411,2.286700222718411,-48.70311369668035,-48.70311369668035,0.00030584513960905377,0.00030584513960905377 -1.6188235294117648,45.262059455794216,45.262059455794216,1.317672482134621,1.317672482134621,-49.60691251159557,-49.60691251159557,0.0005351915449887997,0.0005351915449887997 -1.6211764705882352,45.784245151454186,45.784245151454186,0.8711679795221006,0.8711679795221006,-50.133381420589565,-50.133381420589565,0.0008190541976330331,0.0008190541976330331 -1.6235294117647059,46.1980043331736,46.1980043331736,0.6697291096490406,0.6697291096490406,-50.55338343978075,-50.55338343978075,0.0010812069252061182,0.0010812069252061182 -1.6258823529411766,46.57306290643653,46.57306290643653,0.5716017238657692,0.5716017238657692,-50.93821609349313,-50.93821609349313,0.0012879596330479814,0.0012879596330479814 -1.6282352941176468,46.93388131601798,46.93388131601798,0.5279886199744759,0.5279886199744759,-51.31272545822788,-51.31272545822788,0.0014174262527105932,0.0014174262527105932 -1.630588235294118,47.29455359203876,47.29455359203876,0.5214948429588352,0.5214948429588352,-51.690450789663274,-51.690450789663274,0.001455923170618831,0.001455923170618831 -1.6329411764705881,47.66916445866576,47.66916445866576,0.548843549314254,0.548843549314254,-52.08394967185363,-52.08394967185363,0.0013990764995886612,0.0013990764995886612 -1.6352941176470588,48.07783245776363,48.07783245776363,0.6173350711776872,0.6173350711776872,-52.51155093765144,-52.51155093765144,0.0012538527337366374,0.0012538527337366374 -1.6376470588235295,48.55795882349872,48.55795882349872,0.7454427094233744,0.7454427094233744,-53.008957031030995,-53.008957031030995,0.001044032257710659,0.001044032257710659 -1.6400000000000001,49.18351952538942,49.18351952538942,0.946651338175951,0.946651338175951,-53.64926688704715,-53.64926688704715,0.0008257345106963998,0.0008257345106963998 -1.6423529411764706,50.029410178554066,50.029410178554066,1.0941212360963106,1.0941212360963106,-54.50732053282185,-54.50732053282185,0.0007181120704232932,0.0007181120704232932 -1.6447058823529415,50.907506639660156,50.907506639660156,0.9423029833813434,0.9423029833813434,-55.3960285042127,-55.3960285042127,0.000839981374760569,0.000839981374760569 -1.6470588235294117,51.57697434087689,51.57697434087689,0.7087449298554961,0.7087449298554961,-56.07617864709507,-56.07617864709507,0.0011282944499825041,0.0011282944499825041 -1.6494117647058824,52.08935114768168,52.08935114768168,0.5546488598915836,0.5546488598915836,-56.60111072477361,-56.60111072477361,0.0014603673077244615,0.0014603673077244615 -1.651764705882353,52.52430655702615,52.52430655702615,0.46591163085019516,0.46591163085019516,-57.05168220479111,-57.05168220479111,0.0017630477049253206,0.0017630477049253206 -1.6541176470588237,52.92290586488389,52.92290586488389,0.41749886411836606,0.41749886411836606,-57.46933553380236,-57.46933553380236,0.0019944980223097894,0.0019944980223097894 -1.6564705882352944,53.307215991146066,53.307215991146066,0.39562406242812037,0.39562406242812037,-57.87551341909332,-57.87551341909332,0.0021290708820754394,0.0021290708820754394 -1.6588235294117644,53.69311311774467,53.69311311774467,0.3942854417115177,0.3942854417115177,-58.284707962314236,-58.284707962314236,0.002154271860800597,0.002154271860800597 -1.6611764705882353,54.09615061136955,54.09615061136955,0.4122658913864268,0.4122658913864268,-58.71085751586671,-58.71085751586671,0.0020707290101368613,0.0020707290101368613 -1.663529411764706,54.536145329637456,54.536145329637456,0.4514857253828346,0.4514857253828346,-59.172121523161124,-59.172121523161124,0.0018954107339969894,0.0018954107339969894 -1.6658823529411766,55.0413580811765,55.0413580811765,0.5137069370273096,0.5137069370273096,-59.69588150641617,-59.69588150641617,0.0016677760860023894,0.0016677760860023894 -1.668235294117647,55.64659763501024,55.64659763501024,0.5874515841404243,0.5874515841404243,-60.316830016569085,-60.316830016569085,0.0014608122103027558,0.0014608122103027558 -1.670588235294118,56.354909159502164,56.354909159502164,0.6234703918233034,0.6234703918233034,-61.03872631556887,-61.03872631556887,0.0013815138223481525,0.0013815138223481525 -1.672941176470588,57.074062518925466,57.074062518925466,0.5751298819799189,0.5751298819799189,-61.77089846313607,-61.77089846313607,0.0015072250583689844,0.0015072250583689844 -1.6752941176470588,57.70020318664693,57.70020318664693,0.48570556516456376,0.48570556516456376,-62.411268572803344,-62.411268572803344,0.0018012881225951212,0.0018012881225951212 -1.6776470588235295,58.225073306503916,58.225073306503916,0.4083984706572118,0.4083984706572118,-62.95301064479092,-62.95301064479092,0.0021656642192084915,0.0021656642192084915 -1.68,58.68240786622728,58.68240786622728,0.35520983605123085,0.35520983605123085,-63.43040943518252,-63.43040943518252,0.002517786720324028,0.002517786720324028 -1.6823529411764706,59.101578822177906,59.101578822177906,0.32217533787502367,0.32217533787502367,-63.87255871915596,-63.87255871915596,0.002802714453310807,0.002802714453310807 -1.684705882352941,59.5029405727248,59.5029405727248,0.3044071304283473,0.3044071304283473,-64.29893084073456,-64.29893084073456,0.0029863374516198517,0.0029863374516198517 -1.6870588235294117,59.902349069523936,59.902349069523936,0.2989200823079707,0.2989200823079707,-64.72357352000205,-64.72357352000205,0.00305181161841029,0.00305181161841029 -1.6894117647058824,60.31369593505265,60.31369593505265,0.30438334867911004,0.30438334867911004,-65.15892460716347,-65.15892460716347,0.002998221537093221,0.002998221537093221 -1.6917647058823528,60.75195219823114,60.75195219823114,0.3204528301935734,0.3204528301935734,-65.61858925938131,-65.61858925938131,0.002842902456071852,0.002842902456071852 -1.6941176470588235,61.23408888191152,61.23408888191152,0.34628868962431075,0.34628868962431075,-66.11894647552542,-66.11894647552542,0.002625219794549046,0.002625219794549046 -1.6964705882352942,61.776610573199065,61.776610573199065,0.37678988830230975,0.37678988830230975,-66.67681897114936,-66.67681897114936,0.002410670259828056,0.002410670259828056 -1.6988235294117644,62.382003704751604,62.382003704751604,0.39783108082268015,0.39783108082268015,-67.29579582570324,-67.29579582570324,0.0022873575306259233,0.0022873575306259233 -1.7011764705882353,63.017081771363536,63.017081771363536,0.3918666151957255,0.3918666151957255,-67.94427475977996,-67.94427475977996,0.0023336574847451696,0.0023336574847451696 -1.7035294117647062,63.62354892792156,63.62354892792156,0.35970655636801696,0.35970655636801696,-68.56596848797166,-68.56596848797166,0.002562385464192583,0.002562385464192583 -1.7058823529411766,64.16795084798157,64.16795084798157,0.31924647301231446,0.31924647301231446,-69.12846603229245,-69.12846603229245,0.0029139648058669008,0.0029139648058669008 -1.7082352941176469,64.65267384182532,64.65267384182532,0.284061377703058,0.284061377703058,-69.6347894256192,-69.6347894256192,0.0033045510816111933,0.0033045510816111933 -1.7105882352941175,65.09507184956624,65.09507184956624,0.25806254679391777,0.25806254679391777,-70.10157540395994,-70.10157540395994,0.0036632473543709346,0.0036632473543709346 -1.7129411764705882,65.51265284785448,65.51265284785448,0.24095869021684607,0.24095869021684607,-70.54534241790478,-70.54534241790478,0.003939924219438963,0.003939924219438963 -1.7152941176470589,65.9202385381443,65.9202385381443,0.23141608980037903,0.23141608980037903,-70.97911208416043,-70.97911208416043,0.004103871011760574,0.004103871011760574 -1.7176470588235295,66.33048041346295,66.33048041346295,0.2286077815521957,0.2286077815521957,-71.41393848342379,-71.41393848342379,0.004143686639728753,0.004143686639728753 -1.72,66.75506101446055,66.75506101446055,0.23188524754890202,0.23188524754890202,-71.8601248101795,-71.8601248101795,0.004065754405704464,0.004065754405704464 -1.7223529411764709,67.20529608951716,67.20529608951716,0.24072412027179532,0.24072412027179532,-72.32837138067705,-72.32837138067705,0.0038970977520162943,0.0038970977520162943 -1.7247058823529409,67.69139735656607,67.69139735656607,0.25360486478024297,0.25360486478024297,-72.8292742391355,-72.8292742391355,0.003686252795091249,0.003686252795091249 -1.7270588235294118,68.2192371807483,68.2192371807483,0.26678524106652535,0.26678524106652535,-73.36973028943505,-73.36973028943505,0.0035022648740300655,0.0035022648740300655 -1.7294117647058824,68.78180133202916,68.78180133202916,0.27381341024748307,0.27381341024748307,-73.9449195790881,-73.9449195790881,0.0034229229691875567,0.0034229229691875567 -1.731764705882353,69.3551946834613,69.3551946834613,0.2691573290953759,0.2691573290953759,-74.53247623964936,-74.53247623964936,0.0035043192795822823,0.0035043192795822823 -1.7341176470588235,69.90760350940694,69.90760350940694,0.2535927806523068,0.2535927806523068,-75.10225383426088,-75.10225383426088,0.003749942455506378,0.003749942455506378 -1.7364705882352938,70.41962350264475,70.41962350264475,0.23334806341926465,0.23334806341926465,-75.63557063034577,-75.63557063034577,0.004109908832163777,0.004109908832163777 -1.7388235294117647,70.89051376631815,70.89051376631815,0.21394128063483503,0.21394128063483503,-76.13107519151514,-76.13107519151514,0.004512546500389171,0.004512546500389171 -1.7411764705882353,71.32956422004598,71.32956422004598,0.1980932855495162,0.1980932855495162,-76.5968322509636,-76.5968322509636,0.004890363647729341,0.004890363647729341 -1.743529411764706,71.74871469450214,71.74871469450214,0.18652761082497724,0.18652761082497724,-77.04332663562012,-77.04332663562012,0.005191867563794721,0.005191867563794721 -1.7458823529411764,72.15965491006298,72.15965491006298,0.1791101547697729,0.1791101547697729,-77.48027013336426,-77.48027013336426,0.005384308776204124,0.005384308776204124 -1.748235294117647,72.5728514304916,72.5728514304916,0.1755891124586905,0.1755891124586905,-77.9165494703626,-77.9165494703626,0.005454089371272974,0.005454089371272974 -1.7505882352941176,72.99751581676495,72.99751581676495,0.1757144211024744,0.1757144211024744,-78.36023472235036,-78.36023472235036,0.0054067662733791304,0.0054067662733791304 -1.7529411764705882,73.44147099900856,73.44147099900856,0.17909491715537187,0.17909491715537187,-78.81920363639556,-78.81920363639556,0.0052674920456251,0.0052674920456251 -1.7552941176470591,73.91080469833139,73.91080469833139,0.18489403146562536,0.18489403146562536,-79.3004697533958,-79.3004697533958,0.005081000026431559,0.005081000026431559 -1.7576470588235293,74.40768486495745,74.40768486495745,0.19136443025509803,0.19136443025509803,-79.80803927367894,-79.80803927367894,0.004908518553557069,0.004908518553557069 -1.76,74.92766341107945,74.92766341107945,0.19577940066203198,0.19577940066203198,-80.33947528472122,-80.33947528472122,0.0048176228503292885,0.0048176228503292885 -1.7623529411764705,75.45698223860725,75.45698223860725,0.19539369829668313,0.19539369829668313,-80.88331522852788,-80.88331522852788,0.004862458159808415,0.004862458159808415 -1.7647058823529411,75.97705832448541,75.97705832448541,0.1894176216602113,0.1894176216602113,-81.42211503011664,-81.42211503011664,0.005060299830501702,0.005060299830501702 -1.7670588235294116,76.47275286052093,76.47275286052093,0.17939333538525173,0.17939333538525173,-81.94099867426564,-81.94099867426564,0.005385273251498883,0.005385273251498883 -1.7694117647058827,76.93916069028232,76.93916069028232,0.16799092488948641,0.16799092488948641,-82.43395131116104,-82.43395131116104,0.005781545231490699,0.005781545231490699 -1.7717647058823531,77.37912163313655,77.37912163313655,0.15721169499376847,0.15721169499376847,-82.90247263787082,-82.90247263787082,0.006185595634731107,0.006185595634731107 -1.7741176470588236,77.80068821477231,77.80068821477231,0.1481578550410519,0.1481578550410519,-83.35244165667692,-83.35244165667692,0.006541562137495658,0.006541562137495658 -1.776470588235294,78.21251884031287,78.21251884031287,0.14127931048243877,0.14127931048243877,-83.79076796622499,-83.79076796622499,0.006808427678245483,0.006808427678245483 -1.7788235294117647,78.62350565241807,78.62350565241807,0.13670694685600612,0.13670694685600612,-84.22444651132861,-84.22444651132861,0.006963002204099485,0.006963002204099485 -1.7811764705882354,79.04105410100804,79.04105410100804,0.13446009740177942,0.13446009740177942,-84.65985630348857,-84.65985630348857,0.007000662792513626,0.007000662792513626 -1.7835294117647063,79.47135986971371,79.47135986971371,0.13443904070840396,0.13443904070840396,-85.10304780463474,-85.10304780463474,0.006935144784440411,0.006935144784440411 -1.7858823529411765,79.91811513614526,79.91811513614526,0.13632250454778905,0.13632250454778905,-85.55944907305975,-85.55944907305975,0.006798460394632925,0.006798460394632925 -1.7882352941176471,80.38326022384315,80.38326022384315,0.13947971623994587,0.13947971623994587,-86.03285042878414,-86.03285042878414,0.006638520993133719,0.006638520993133719 -1.7905882352941174,80.86496055373433,80.86496055373433,0.14275000124886583,0.14275000124886583,-86.52410866250754,-86.52410866250754,0.006513034653139472,0.006513034653139472 -1.7929411764705883,81.35688511991432,81.35688511991432,0.14470329127425755,0.14470329127425755,-87.02927945429421,-87.02927945429421,0.006478068881153087,0.006478068881153087 -1.795294117647059,81.84921572041327,81.84921572041327,0.14402984620748177,0.14402984620748177,-87.53977924840417,-87.53977924840417,0.006571799785110648,0.006571799785110648 -1.7976470588235294,82.33037936279162,82.33037936279162,0.14040887029878107,0.14040887029878107,-88.04469225726604,-88.04469225726604,0.006801031622049692,0.006801031622049692 -1.8,82.79320835117545,82.79320835117545,0.13452030007333252,0.13452030007333252,-88.53545254162238,-88.53545254162238,0.00713938500855746,0.00713938500855746 diff --git a/sparameters/rotate_f258530e_49a8fbc1.yml b/sparameters/rotate_f258530e_49a8fbc1.yml deleted file mode 100644 index 389a9a6c..00000000 --- a/sparameters/rotate_f258530e_49a8fbc1.yml +++ /dev/null @@ -1,27 +0,0 @@ -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: -4 -compute_time_seconds: 110.626699924469 -compute_time_minutes: 1.8437783320744832 diff --git a/sparameters/rotate_f258530e_6292f352.csv b/sparameters/rotate_f258530e_6292f352.csv deleted file mode 100644 index 5543f9a0..00000000 --- a/sparameters/rotate_f258530e_6292f352.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,2.7732879456401163,2.7732879456401163,0.00241741925341702,0.00241741925341702,-2.0079186584482276,-2.0079186584482276,0.006123404958590561,0.006123404958590561 -1.2023529411764706,-0.2487361741520689,-0.2487361741520689,0.001989051628613406,0.001989051628613406,-3.283594342032382,-3.283594342032382,0.005298363661670394,0.005298363661670394 -1.204705882352941,-0.780912357657683,-0.780912357657683,0.002544541903687062,0.002544541903687062,-4.494645885327909,-4.494645885327909,0.005235949763461525,0.005235949763461525 -1.2070588235294117,-1.3111583103881768,-1.3111583103881768,0.0010954339235893977,0.0010954339235893977,-5.842943199872406,-5.842943199872406,0.005646509212873265,0.005646509212873265 -1.2094117647058824,1.7444602271204415,1.7444602271204415,0.0018944449305850093,0.0018944449305850093,-7.360290700644423,-7.360290700644423,0.005729463611888394,0.005729463611888394 -1.2117647058823529,2.809206721280049,2.809206721280049,0.0009884551892564736,0.0009884551892564736,-9.005928581692615,-9.005928581692615,0.005145942366394781,0.005145942366394781 -1.2141176470588235,3.6856831486116084,3.6856831486116084,0.001162222180065986,0.001162222180065986,-10.767804708795518,-10.767804708795518,0.004216445273821056,0.004216445273821056 -1.216470588235294,3.36605633211635,3.36605633211635,0.00723790104950459,0.00723790104950459,-12.618524689187337,-12.618524689187337,0.003482054971197871,0.003482054971197871 -1.2188235294117646,3.3818604461122015,3.3818604461122015,0.0013686564384640647,0.0013686564384640647,-14.389745450932367,-14.389745450932367,0.003270887140352494,0.003270887140352494 -1.2211764705882353,1.682018969987019,1.682018969987019,0.0024766192814061685,0.0024766192814061685,-15.903435798667712,-15.903435798667712,0.00356768891534315,0.00356768891534315 -1.2235294117647058,1.1342391455026564,1.1342391455026564,0.002642819526381632,0.002642819526381632,-17.233134080954475,-17.233134080954475,0.004617639935657281,0.004617639935657281 -1.2258823529411764,3.8950338420328063,3.8950338420328063,0.0018811536762752313,0.0018811536762752313,-18.58841547912136,-18.58841547912136,0.006597687620284221,0.006597687620284221 -1.228235294117647,4.373009474327939,4.373009474327939,0.0008834221463479046,0.0008834221463479046,-20.021645658160445,-20.021645658160445,0.009052596323374094,0.009052596323374094 -1.2305882352941175,3.9224826157480037,3.9224826157480037,0.000680321946034478,0.000680321946034478,-21.492201901021843,-21.492201901021843,0.011352231942867904,0.011352231942867904 -1.2329411764705882,3.7343918664492453,3.7343918664492453,0.0007882352181130894,0.0007882352181130894,-22.963846228979612,-22.963846228979612,0.012971669268567134,0.012971669268567134 -1.2352941176470589,3.1482446272887934,3.1482446272887934,0.0010511543163991954,0.0010511543163991954,-24.40378149538583,-24.40378149538583,0.013748692605241893,0.013748692605241893 -1.2376470588235293,4.195414584336556,4.195414584336556,8.394882274023154e-05,8.394882274023154e-05,-25.787751498860942,-25.787751498860942,0.013966365807013955,0.013966365807013955 -1.24,1.0686207311673188,1.0686207311673188,0.00039306430478274184,0.00039306430478274184,-27.112731045335767,-27.112731045335767,0.014330979061410959,0.014330979061410959 -1.2423529411764704,-0.042313754667385364,-0.042313754667385364,0.00029973630967070823,0.00029973630967070823,-28.421973717724452,-28.421973717724452,0.01554288764923702,0.01554288764923702 -1.244705882352941,-1.910494860131625,-1.910494860131625,0.0002799315736088214,0.0002799315736088214,-29.777877746217936,-29.777877746217936,0.01766996051360649,0.01766996051360649 -1.2470588235294118,-2.1668431092826475,-2.1668431092826475,0.00019267090245716375,0.00019267090245716375,-31.205502893726056,-31.205502893726056,0.020150562459029908,0.020150562459029908 -1.2494117647058822,-2.0525327135713316,-2.0525327135713316,0.00014064947455098573,0.00014064947455098573,-32.69511382192555,-32.69511382192555,0.022234682047777485,0.022234682047777485 -1.251764705882353,-3.2555464934922416,-3.2555464934922416,6.514924807483157e-05,6.514924807483157e-05,-34.22765685167441,-34.22765685167441,0.023361529564811672,0.023361529564811672 -1.2541176470588236,-4.203356526282143,-4.203356526282143,0.00033672665112737487,0.00033672665112737487,-35.78837348744758,-35.78837348744758,0.023231830109879285,0.023231830109879285 -1.256470588235294,-4.015016937160321,-4.015016937160321,0.0002087309459807124,0.0002087309459807124,-37.36763328991035,-37.36763328991035,0.021780454874591113,0.021780454874591113 -1.2588235294117647,-4.2851204249766335,-4.2851204249766335,0.0003085833291279804,0.0003085833291279804,-38.9601538288017,-38.9601538288017,0.019158667243889097,0.019158667243889097 -1.2611764705882353,-3.4293019401184197,-3.4293019401184197,0.00038137649430947524,0.00038137649430947524,-40.56600280741332,-40.56600280741332,0.015673578309536765,0.015673578309536765 -1.2635294117647058,-4.897727253927568,-4.897727253927568,0.00017616779313955492,0.00017616779313955492,-42.19173750291275,-42.19173750291275,0.011792637635600355,0.011792637635600355 -1.2658823529411765,-5.648834039201456,-5.648834039201456,0.00011812509605768053,0.00011812509605768053,-43.85596002967666,-43.85596002967666,0.007982667501198757,0.007982667501198757 -1.268235294117647,-6.733700433650145,-6.733700433650145,0.0005179857594238406,0.0005179857594238406,-45.609057477437865,-45.609057477437865,0.004737442060378092,0.004737442060378092 -1.2705882352941176,-7.135612762538668,-7.135612762538668,0.0015571844045826377,0.0015571844045826377,-47.59206415699689,-47.59206415699689,0.002482749718479669,0.002482749718479669 -1.2729411764705882,-9.598818348549166,-9.598818348549166,0.00022655857564354986,0.00022655857564354986,-49.94529966148062,-49.94529966148062,0.0015709422629812347,0.0015709422629812347 -1.2752941176470587,-11.88356667928763,-11.88356667928763,0.0011414351316161558,0.0011414351316161558,-52.16808686251136,-52.16808686251136,0.001487733982650166,0.001487733982650166 -1.2776470588235294,-11.989678657537134,-11.989678657537134,0.0021195977490878243,0.0021195977490878243,-54.15016480127469,-54.15016480127469,0.0013163776774334792,0.0013163776774334792 -1.28,-13.152115874793106,-13.152115874793106,0.0019345520454454807,0.0019345520454454807,-56.16744319783759,-56.16744319783759,0.0010007055011203828,0.0010007055011203828 -1.2823529411764705,-12.702410582294979,-12.702410582294979,0.001438227811405326,0.001438227811405326,-58.362537179095305,-58.362537179095305,0.0008118445547950213,0.0008118445547950213 -1.2847058823529411,-11.159133073660783,-11.159133073660783,0.002349468569362592,0.002349468569362592,-60.485821683850304,-60.485821683850304,0.0008012432876486849,0.0008012432876486849 -1.2870588235294118,-12.997670799096422,-12.997670799096422,0.0006991475307013795,0.0006991475307013795,-62.42168506042612,-62.42168506042612,0.0007620028710950975,0.0007620028710950975 -1.2894117647058823,-11.888525301248832,-11.888525301248832,0.0029265409848030434,0.0029265409848030434,-64.3610281368555,-64.3610281368555,0.0006079897196082531,0.0006079897196082531 -1.291764705882353,-11.97922926577884,-11.97922926577884,0.0018319917171383798,0.0018319917171383798,-66.52177182859153,-66.52177182859153,0.0004739167884371827,0.0004739167884371827 -1.2941176470588236,-11.814811911270901,-11.814811911270901,0.007561028658074571,0.007561028658074571,-68.71089518508735,-68.71089518508735,0.0005045804500466172,0.0005045804500466172 -1.296470588235294,-11.268048279267326,-11.268048279267326,0.0037471972692341266,0.0037471972692341266,-70.58794641193268,-70.58794641193268,0.0005460311333441322,0.0005460311333441322 -1.2988235294117647,-11.07574555593176,-11.07574555593176,0.001026641149518353,0.001026641149518353,-72.33269936913436,-72.33269936913436,0.0004658605503341196,0.0004658605503341196 -1.3011764705882352,-13.393641478317981,-13.393641478317981,0.0029498568887881,0.0029498568887881,-74.28040188024973,-74.28040188024973,0.0002775919253080284,0.0002775919253080284 -1.3035294117647058,-11.438902451730439,-11.438902451730439,0.005924143590382144,0.005924143590382144,-76.98985922487111,-76.98985922487111,0.00023976455546796527,0.00023976455546796527 -1.3058823529411765,-11.425680091566873,-11.425680091566873,0.006482221204282073,0.006482221204282073,-78.99178550228329,-78.99178550228329,0.000419315835263868,0.000419315835263868 -1.308235294117647,-12.364975439048335,-12.364975439048335,0.004014110943443593,0.004014110943443593,-80.55258683127636,-80.55258683127636,0.0005134940125072638,0.0005134940125072638 -1.3105882352941176,-11.961594882129383,-11.961594882129383,0.004251423630497725,0.004251423630497725,-81.98607588784215,-81.98607588784215,0.00043713743291007686,0.00043713743291007686 -1.3129411764705883,-12.627880062784387,-12.627880062784387,0.010824425749859265,0.010824425749859265,-83.3005647663727,-83.3005647663727,0.00020825989091906893,0.00020825989091906893 -1.3152941176470587,-9.890354929640868,-9.890354929640868,0.00905815442709493,0.00905815442709493,-81.93385457189261,-81.93385457189261,9.977839753127677e-05,9.977839753127677e-05 -1.3176470588235294,-7.915327571849858,-7.915327571849858,0.005604392269928006,0.005604392269928006,-83.04978436458461,-83.04978436458461,0.00037325267068862424,0.00037325267068862424 -1.32,-7.1866075961787725,-7.1866075961787725,0.005220132474556337,0.005220132474556337,-84.31167064975524,-84.31167064975524,0.0005268334244399573,0.0005268334244399573 -1.3223529411764705,-7.746451803134179,-7.746451803134179,0.006154665198413872,0.006154665198413872,-85.53436817929874,-85.53436817929874,0.0005155266241981081,0.0005155266241981081 -1.3247058823529412,-6.531012815001308,-6.531012815001308,0.007677630720078381,0.007677630720078381,-86.60687250422623,-86.60687250422623,0.00035791464314858254,0.00035791464314858254 -1.3270588235294118,-7.029139063582622,-7.029139063582622,0.008612335522970551,0.008612335522970551,-86.97373124370836,-86.97373124370836,0.00019402958648381745,0.00019402958648381745 -1.3294117647058823,-7.779270196404837,-7.779270196404837,0.008601199770549612,0.008601199770549612,-87.13704772268704,-87.13704772268704,0.0003277740103467591,0.0003277740103467591 -1.331764705882353,-6.227954918422856,-6.227954918422856,0.0014981532055176078,0.0014981532055176078,-88.08477850877144,-88.08477850877144,0.0005093071205263538,0.0005093071205263538 -1.3341176470588234,-6.1648996802005716,-6.1648996802005716,0.0021528235197280934,0.0021528235197280934,-89.1566814288675,-89.1566814288675,0.0005698691472044393,0.0005698691472044393 -1.336470588235294,-7.579314834219073,-7.579314834219073,0.002379353729809028,0.002379353729809028,-90.1716591909053,-90.1716591909053,0.0004931713562450312,0.0004931713562450312 -1.3388235294117647,-9.24792734586089,-9.24792734586089,0.00311023572946447,0.00311023572946447,-90.90253612570719,-90.90253612570719,0.00034748759129633964,0.00034748759129633964 -1.3411764705882352,-9.880946706160557,-9.880946706160557,0.0036676195072953594,0.0036676195072953594,-91.209291009814,-91.209291009814,0.0003365285177104859,0.0003365285177104859 -1.3435294117647059,-10.52138269418857,-10.52138269418857,0.005957937805576058,0.005957937805576058,-91.84060915785612,-91.84060915785612,0.000486513834309726,0.000486513834309726 -1.3458823529411765,-11.785568900345378,-11.785568900345378,0.004673035238971624,0.004673035238971624,-92.7608232204884,-92.7608232204884,0.0006030415347959765,0.0006030415347959765 -1.348235294117647,-12.655846655033152,-12.655846655033152,0.0010111674010888857,0.0010111674010888857,-93.71420904393469,-93.71420904393469,0.0006047286208733997,0.0006047286208733997 -1.3505882352941176,-10.36120090038461,-10.36120090038461,0.0010770216354848503,0.0010770216354848503,-94.55300024455786,-94.55300024455786,0.0005110845286722996,0.0005110845286722996 -1.3529411764705883,-8.97728362731343,-8.97728362731343,0.001953415911687186,0.001953415911687186,-95.12685229264726,-95.12685229264726,0.0004326352202818348,0.0004326352202818348 -1.3552941176470588,-10.09179980914851,-10.09179980914851,0.004378193856227101,0.004378193856227101,-95.63334591613665,-95.63334591613665,0.000491400842920116,0.000491400842920116 -1.3576470588235294,-10.679372934279616,-10.679372934279616,0.002452109821753483,0.002452109821753483,-96.36504960391039,-96.36504960391039,0.0006212120684815701,0.0006212120684815701 -1.3599999999999999,-10.146477888197817,-10.146477888197817,0.0012479050500940325,0.0012479050500940325,-97.23338760983852,-97.23338760983852,0.0006933726557172828,0.0006933726557172828 -1.3623529411764705,-8.202236902245035,-8.202236902245035,0.0008692496451915338,0.0008692496451915338,-98.09010782935485,-98.09010782935485,0.0006708631819652203,0.0006708631819652203 -1.3647058823529412,-7.788366911218564,-7.788366911218564,0.0027263045773251175,0.0027263045773251175,-98.82119274841553,-98.82119274841553,0.0005980674051705214,0.0005980674051705214 -1.3670588235294117,-8.627217418323335,-8.627217418323335,0.0022452793664225123,0.0022452793664225123,-99.392070277016,-99.392070277016,0.0005793890781571405,0.0005793890781571405 -1.3694117647058823,-7.2647700608201236,-7.2647700608201236,0.0007429172603272581,0.0007429172603272581,-100.00551018334359,-100.00551018334359,0.0006756212286083619,0.0006756212286083619 -1.371764705882353,-6.751768635508075,-6.751768635508075,0.0006992959807114731,0.0006992959807114731,-100.7648020792581,-100.7648020792581,0.0008055523365332522,0.0008055523365332522 -1.3741176470588234,-7.411572907311488,-7.411572907311488,0.0005643630871455065,0.0005643630871455065,-101.59478654379204,-101.59478654379204,0.0008847554902845051,0.0008847554902845051 -1.3764705882352941,-7.129087839220791,-7.129087839220791,0.0020583341687010794,0.0020583341687010794,-102.40953181664634,-102.40953181664634,0.0008967801895656577,0.0008967801895656577 -1.3788235294117648,-7.328035308254077,-7.328035308254077,0.001832204330576153,0.001832204330576153,-103.15502427790908,-103.15502427790908,0.0008837799746975192,0.0008837799746975192 -1.3811764705882352,-4.658909724646755,-4.658909724646755,0.0006587572003249017,0.0006587572003249017,-103.85036226739432,-103.85036226739432,0.0009215759217214724,0.0009215759217214724 -1.383529411764706,-5.447557168495947,-5.447557168495947,0.0003729872749573161,0.0003729872749573161,-104.57852626449557,-104.57852626449557,0.0010281265978667618,0.0010281265978667618 -1.3858823529411763,-5.560055327532401,-5.560055327532401,0.0015184559366018873,0.0015184559366018873,-105.38123578454412,-105.38123578454412,0.0011552367735026695,0.0011552367735026695 -1.388235294117647,-5.185756170367089,-5.185756170367089,0.0008116733988917548,0.0008116733988917548,-106.23265085570429,-106.23265085570429,0.001239505140914015,0.001239505140914015 -1.3905882352941177,-6.004591125059453,-6.004591125059453,0.0009897154923238843,0.0009897154923238843,-107.09233863251576,-107.09233863251576,0.0012541031845065957,0.0012541031845065957 -1.3929411764705881,-3.6663958350451002,-3.6663958350451002,0.0006425796910467626,0.0006425796910467626,-107.92437457970703,-107.92437457970703,0.0012133472147513545,0.0012133472147513545 -1.3952941176470588,-2.085436745307873,-2.085436745307873,0.0009676795382074703,0.0009676795382074703,-108.7134024328443,-108.7134024328443,0.0011613629655059985,0.0011613629655059985 -1.3976470588235295,-2.9698484163611627,-2.9698484163611627,0.0013625273076674524,0.0013625273076674524,-109.47853912579343,-109.47853912579343,0.0011382647856180387,0.0011382647856180387 -1.4,-3.381900673369074,-3.381900673369074,0.0012930652814372341,0.0012930652814372341,-110.25915330084698,-110.25915330084698,0.0011456712135521582,0.0011456712135521582 -1.4023529411764706,-2.8497735184477926,-2.8497735184477926,0.0007026568966158302,0.0007026568966158302,-111.07679752052788,-111.07679752052788,0.0011471237999932677,0.0011471237999932677 -1.4047058823529412,-1.5994601061947153,-1.5994601061947153,0.00046170923648800077,0.00046170923648800077,-111.92115965777002,-111.92115965777002,0.0011052488508353489,0.0011052488508353489 -1.4070588235294117,-0.9928704283189315,-0.9928704283189315,0.0009909056700981443,0.0009909056700981443,-112.759681190515,-112.759681190515,0.0010061911779211182,0.0010061911779211182 -1.4094117647058824,-1.4601202760430179,-1.4601202760430179,0.0019237368521985948,0.0019237368521985948,-113.55424379037682,-113.55424379037682,0.0008726056897750308,0.0008726056897750308 -1.4117647058823528,-1.7045971024890463,-1.7045971024890463,0.0019324197386441015,0.0019324197386441015,-114.27562538948135,-114.27562538948135,0.0007485219000190068,0.0007485219000190068 -1.4141176470588235,-1.3740443774784297,-1.3740443774784297,0.002312209222746208,0.002312209222746208,-114.93550264759435,-114.93550264759435,0.0006724331385783674,0.0006724331385783674 -1.4164705882352941,-0.9884142222520061,-0.9884142222520061,0.0006022062956447886,0.0006022062956447886,-115.59732982670192,-115.59732982670192,0.0006480051969029929,0.0006480051969029929 -1.4188235294117646,0.14791470131300996,0.14791470131300996,0.0014476815085588447,0.0014476815085588447,-116.30203588481301,-116.30203588481301,0.0006332118444185716,0.0006332118444185716 -1.4211764705882353,0.360738144008401,0.360738144008401,0.0030034791552367877,0.0030034791552367877,-117.01786147182546,-117.01786147182546,0.0005949391323489995,0.0005949391323489995 -1.423529411764706,-0.752030668879463,-0.752030668879463,0.0010566586824664046,0.0010566586824664046,-117.67347311867071,-117.67347311867071,0.000543649111391754,0.000543649111391754 -1.4258823529411764,0.48255246294884047,0.48255246294884047,0.0012264225650506927,0.0012264225650506927,-118.22637827342749,-118.22637827342749,0.0005216859327052102,0.0005216859327052102 -1.428235294117647,-1.3757739106553493,-1.3757739106553493,0.0008958055123471683,0.0008958055123471683,-118.76276543203053,-118.76276543203053,0.0005802784622556405,0.0005802784622556405 -1.4305882352941177,-0.21228510433186074,-0.21228510433186074,0.0013317486526192369,0.0013317486526192369,-119.40483569215533,-119.40483569215533,0.0007113069827746656,0.0007113069827746656 -1.4329411764705882,1.3739876123420596,1.3739876123420596,0.0016959287376982542,0.0016959287376982542,-120.14450450015671,-120.14450450015671,0.000857827325194379,0.000857827325194379 -1.4352941176470588,0.6872008600378995,0.6872008600378995,0.0012389190037014395,0.0012389190037014395,-120.92813469113347,-120.92813469113347,0.0009903632715309845,0.0009903632715309845 -1.4376470588235293,-0.6924896981810492,-0.6924896981810492,0.0005552106834100839,0.0005552106834100839,-121.71173247878035,-121.71173247878035,0.0011037724561271797,0.0011037724561271797 -1.44,-1.588083538567613,-1.588083538567613,0.000727141993616255,0.000727141993616255,-122.4764525349968,-122.4764525349968,0.0012166214469238523,0.0012166214469238523 -1.4423529411764706,-3.1548159870023427,-3.1548159870023427,0.0010043431712971874,0.0010043431712971874,-123.22897651952232,-123.22897651952232,0.0013585950611447511,0.0013585950611447511 -1.444705882352941,-2.938343461262987,-2.938343461262987,0.0011396546661128664,0.0011396546661128664,-123.98704416825218,-123.98704416825218,0.0015507863930492628,0.0015507863930492628 -1.4470588235294117,-2.7806500963675798,-2.7806500963675798,0.0002081160187775767,0.0002081160187775767,-124.76738988357849,-124.76738988357849,0.0017896736159152484,0.0017896736159152484 -1.4494117647058824,-4.539854524613385,-4.539854524613385,4.90502189791562e-05,4.90502189791562e-05,-125.56811891372939,-125.56811891372939,0.002053973754214579,0.002053973754214579 -1.4517647058823528,-3.1584427223865235,-3.1584427223865235,0.00019440813882775187,0.00019440813882775187,-126.37923041088135,-126.37923041088135,0.0023229602248711376,0.0023229602248711376 -1.4541176470588235,-0.9751693947556862,-0.9751693947556862,0.0005577019565123909,0.0005577019565123909,-127.18877981150455,-127.18877981150455,0.0025864651546716366,0.0025864651546716366 -1.4564705882352942,-0.9172918810298745,-0.9172918810298745,0.0003532899384336455,0.0003532899384336455,-127.98857594054363,-127.98857594054363,0.0028542088024161635,0.0028542088024161635 -1.4588235294117646,-1.953730269148015,-1.953730269148015,0.0003611487420771208,0.0003611487420771208,-128.77730040375334,-128.77730040375334,0.003151941302347116,0.003151941302347116 -1.4611764705882353,-1.100827631408777,-1.100827631408777,0.0001288786495905786,0.0001288786495905786,-129.55921380005265,-129.55921380005265,0.0035035264531781125,0.0035035264531781125 -1.4635294117647057,-3.1292456029703932,-3.1292456029703932,0.0001941394788044669,0.0001941394788044669,-130.34205737604097,-130.34205737604097,0.003924074127000576,0.003924074127000576 -1.4658823529411764,-4.001752351639794,-4.001752351639794,0.00017124396119127231,0.00017124396119127231,-131.13137010042635,-131.13137010042635,0.004411521810773077,0.004411521810773077 -1.468235294117647,-3.4532445170654102,-3.4532445170654102,0.00013504527557794195,0.00013504527557794195,-131.92718098309555,-131.92718098309555,0.004947688296263042,0.004947688296263042 -1.4705882352941178,-3.4499390992214747,-3.4499390992214747,2.6025534684277406e-05,2.6025534684277406e-05,-132.727243685322,-132.727243685322,0.005516153510043143,0.005516153510043143 -1.4729411764705882,-2.496216910993376,-2.496216910993376,7.745145729471047e-05,7.745145729471047e-05,-133.52759611336148,-133.52759611336148,0.00610510818235661,0.00610510818235661 -1.4752941176470589,-2.0572695049510537,-2.0572695049510537,0.00016282198619918395,0.00016282198619918395,-134.32577161618704,-134.32577161618704,0.006722426858006872,0.006722426858006872 -1.4776470588235295,-2.4005030008670802,-2.4005030008670802,0.0001635549931759749,0.0001635549931759749,-135.12177695590123,-135.12177695590123,0.007381668079229837,0.007381668079229837 -1.48,-2.623638255155106,-2.623638255155106,0.00015766135531326624,0.00015766135531326624,-135.91735006860537,-135.91735006860537,0.008099126880515757,0.008099126880515757 -1.4823529411764707,-2.8818257868732364,-2.8818257868732364,0.00018075659672120962,0.00018075659672120962,-136.71539733940642,-136.71539733940642,0.008878323358950072,0.008878323358950072 -1.484705882352941,-2.7698676934771327,-2.7698676934771327,8.863457150477331e-05,8.863457150477331e-05,-137.51832691742305,-137.51832691742305,0.009706230261118916,0.009706230261118916 -1.4870588235294118,-3.002300126241824,-3.002300126241824,0.0001221033188987021,0.0001221033188987021,-138.32709315652397,-138.32709315652397,0.010554966469325692,0.010554966469325692 -1.4894117647058822,-2.5123300986129875,-2.5123300986129875,6.88258256017902e-05,6.88258256017902e-05,-139.14169227994753,-139.14169227994753,0.011387741630063076,0.011387741630063076 -1.4917647058823529,-3.0884471078348046,-3.0884471078348046,9.455742512416766e-05,9.455742512416766e-05,-139.96107281856106,-139.96107281856106,0.012173042765063785,0.012173042765063785 -1.4941176470588236,-2.6037817497803917,-2.6037817497803917,0.00012062788969927712,0.00012062788969927712,-140.78467615648754,-140.78467615648754,0.01288029711829474,0.01288029711829474 -1.4964705882352942,-2.695751975490134,-2.695751975490134,0.00013006579475106382,0.00013006579475106382,-141.61240361214402,-141.61240361214402,0.013494619245411921,0.013494619245411921 -1.4988235294117647,-2.8242615660835635,-2.8242615660835635,0.00011612077304995599,0.00011612077304995599,-142.4453347498675,-142.4453347498675,0.014001827378532054,0.014001827378532054 -1.5011764705882353,-2.8302573829995104,-2.8302573829995104,0.00016623135496328113,0.00016623135496328113,-143.28571423795196,-143.28571423795196,0.01439484854784869,0.01439484854784869 -1.5035294117647058,-3.0034055916444533,-3.0034055916444533,0.00019133571069501182,0.00019133571069501182,-144.1363065620659,-144.1363065620659,0.01466103137235222,0.01466103137235222 -1.5058823529411764,-3.2052574920960293,-3.2052574920960293,0.00020664593948134484,0.00020664593948134484,-145.00076955086058,-145.00076955086058,0.014797576259553497,0.014797576259553497 -1.5082352941176471,-3.085156013187128,-3.085156013187128,0.00014540251283339369,0.00014540251283339369,-145.88295003098176,-145.88295003098176,0.014813011287818712,0.014813011287818712 -1.5105882352941176,-3.4828906965551862,-3.4828906965551862,8.804250244815285e-05,8.804250244815285e-05,-146.78664702617212,-146.78664702617212,0.014749771959853759,0.014749771959853759 -1.5129411764705882,-2.5630977295143187,-2.5630977295143187,0.00015602493926516076,0.00015602493926516076,-147.7150270797631,-147.7150270797631,0.01469940883091293,0.01469940883091293 -1.5152941176470587,-2.8798691260562173,-2.8798691260562173,8.615295054332553e-05,8.615295054332553e-05,-148.6680596328323,-148.6680596328323,0.014808847110604942,0.014808847110604942 -1.5176470588235293,-2.811264431065202,-2.811264431065202,6.884226629723913e-05,6.884226629723913e-05,-149.63990629120798,-149.63990629120798,0.01527195386454584,0.01527195386454584 -1.52,-3.041404053909508,-3.041404053909508,0.00010819821777407961,0.00010819821777407961,-150.6171331071476,-150.6171331071476,0.016288042070117175,0.016288042070117175 -1.5223529411764707,-3.4132688660278596,-3.4132688660278596,9.759556458262051e-05,9.759556458262051e-05,-151.5825393070497,-151.5825393070497,0.017999822706140003,0.017999822706140003 -1.5247058823529411,-3.1150105445333574,-3.1150105445333574,0.00010800444059370237,0.00010800444059370237,-152.52192143265782,-152.52192143265782,0.020460922524883712,0.020460922524883712 -1.5270588235294118,-3.163243223801979,-3.163243223801979,0.00011791283821854097,0.00011791283821854097,-153.42894884738357,-153.42894884738357,0.02364697247003064,0.02364697247003064 -1.5294117647058822,-3.1793419998014993,-3.1793419998014993,0.00011937774129119957,0.00011937774129119957,-154.3041350097499,-154.3041350097499,0.02749117997027472,0.02749117997027472 -1.531764705882353,-3.2454980134546343,-3.2454980134546343,0.0001348621210639561,0.0001348621210639561,-155.15121439228514,-155.15121439228514,0.031907525064111444,0.031907525064111444 -1.5341176470588236,-3.4886010001441026,-3.4886010001441026,0.00011440843437919488,0.00011440843437919488,-155.97489416929997,-155.97489416929997,0.03680106947294981,0.03680106947294981 -1.536470588235294,-3.6157388120841842,-3.6157388120841842,0.0001063411793504077,0.0001063411793504077,-156.77898569968784,-156.77898569968784,0.04207401260684428,0.04207401260684428 -1.5388235294117647,-3.7036224113520944,-3.7036224113520944,9.01927531618046e-05,9.01927531618046e-05,-157.56636057826614,-157.56636057826614,0.047629539984053344,0.047629539984053344 -1.5411764705882351,-3.691765182508376,-3.691765182508376,9.519555349477662e-05,9.519555349477662e-05,-158.33922701995562,-158.33922701995562,0.053380413420052335,0.053380413420052335 -1.5435294117647058,-3.4778106558990523,-3.4778106558990523,0.00010537910073707696,0.00010537910073707696,-159.09889482079274,-159.09889482079274,0.05925563625667785,0.05925563625667785 -1.5458823529411767,-3.6561090733687927,-3.6561090733687927,9.400645830692744e-05,9.400645830692744e-05,-159.84663615147576,-159.84663615147576,0.06520965629852553,0.06520965629852553 -1.5482352941176472,-3.712297953920478,-3.712297953920478,0.00010823651798169619,0.00010823651798169619,-160.5834460945268,-160.5834460945268,0.07121740650363612,0.07121740650363612 -1.5505882352941176,-3.7404370926678507,-3.7404370926678507,0.00011498507046294562,0.00011498507046294562,-161.31048778787903,-161.31048778787903,0.07727068529996882,0.07727068529996882 -1.5529411764705883,-3.727163551491635,-3.727163551491635,0.00011822071910659438,0.00011822071910659438,-162.0289122822265,-162.0289122822265,0.08336114249648484,0.08336114249648484 -1.5552941176470587,-3.776347428528165,-3.776347428528165,0.00011014632274367347,0.00011014632274367347,-162.73988283929646,-162.73988283929646,0.0894643756924816,0.0894643756924816 -1.5576470588235294,-3.85534408232062,-3.85534408232062,0.00010744481206873918,0.00010744481206873918,-163.44431029448518,-163.44431029448518,0.09552974764144442,0.09552974764144442 -1.5599999999999998,-3.845305615089463,-3.845305615089463,0.00011968667463153852,0.00011968667463153852,-164.14283725425238,-164.14283725425238,0.10148896324664955,0.10148896324664955 -1.5623529411764705,-3.9244630635937092,-3.9244630635937092,0.00010340489365661071,0.00010340489365661071,-164.8356773712369,-164.8356773712369,0.10725709030110317,0.10725709030110317 -1.5647058823529412,-3.9368483036738713,-3.9368483036738713,0.00010280946743125818,0.00010280946743125818,-165.52282831725697,-165.52282831725697,0.11275958309257339,0.11275958309257339 -1.5670588235294118,-3.9297153401687894,-3.9297153401687894,0.0001016341963668448,0.0001016341963668448,-166.20405073187405,-166.20405073187405,0.11794694568171961,0.11794694568171961 -1.5694117647058823,-3.908870456041294,-3.908870456041294,9.955074122330384e-05,9.955074122330384e-05,-166.87916434757534,-166.87916434757534,0.12280175715473257,0.12280175715473257 -1.571764705882353,-3.960167760621026,-3.960167760621026,0.00010027751538172318,0.00010027751538172318,-167.54803263957652,-167.54803263957652,0.12734050385520254,0.12734050385520254 -1.5741176470588236,-4.015902560375206,-4.015902560375206,0.00010052375301042479,0.00010052375301042479,-168.21085785953943,-168.21085785953943,0.1316014139503238,0.1316014139503238 -1.576470588235294,-4.093124071144147,-4.093124071144147,0.00010472669730489735,0.00010472669730489735,-168.86796174247885,-168.86796174247885,0.13562218464198675,0.13562218464198675 -1.5788235294117647,-4.112205646550768,-4.112205646550768,0.00010082665944638538,0.00010082665944638538,-169.51979508068732,-169.51979508068732,0.13942343396277446,0.13942343396277446 -1.5811764705882352,-4.187033306139927,-4.187033306139927,0.00011081752605023445,0.00011081752605023445,-170.16689259523184,-170.16689259523184,0.1429961877175955,0.1429961877175955 -1.5835294117647059,-4.3057443107465465,-4.3057443107465465,0.00010414345301428394,0.00010414345301428394,-170.80958645314297,-170.80958645314297,0.14630677088669314,0.14630677088669314 -1.5858823529411765,-4.310624094727748,-4.310624094727748,0.00010388690196295889,0.00010388690196295889,-171.44801643075982,-171.44801643075982,0.14930871354783137,0.14930871354783137 -1.5882352941176474,-4.300559934010476,-4.300559934010476,0.00010007212279852406,0.00010007212279852406,-172.08217462153934,-172.08217462153934,0.15195861116950712,0.15195861116950712 -1.5905882352941176,-4.337975268894761,-4.337975268894761,9.60610110913173e-05,9.60610110913173e-05,-172.71187267517843,-172.71187267517843,0.1542329298544759,0.1542329298544759 -1.592941176470588,-4.3412456927756615,-4.3412456927756615,9.946189188283491e-05,9.946189188283491e-05,-173.33692739485483,-173.33692739485483,0.15613445264918327,0.15613445264918327 -1.5952941176470588,-4.339117975139544,-4.339117975139544,0.00010276648048112372,0.00010276648048112372,-173.9572031413206,-173.9572031413206,0.1576894226999808,0.1576894226999808 -1.5976470588235294,-4.40144837482554,-4.40144837482554,0.00010575366145138055,0.00010575366145138055,-174.57272443205687,-174.57272443205687,0.15893573798910374,0.15893573798910374 -1.6,-4.446374788017762,-4.446374788017762,0.0001050150337600992,0.0001050150337600992,-175.18350416969255,-175.18350416969255,0.15990937849538825,0.15990937849538825 -1.6023529411764705,-4.481708609688925,-4.481708609688925,0.00010638906347822553,0.00010638906347822553,-175.78969529609319,-175.78969529609319,0.16063817445687698,0.16063817445687698 -1.6047058823529412,-4.535157652635634,-4.535157652635634,0.0001046371226229663,0.0001046371226229663,-176.39146930844362,-176.39146930844362,0.16113318965459852,0.16113318965459852 -1.6070588235294117,-4.57396101208614,-4.57396101208614,0.00010166744522022538,0.00010166744522022538,-176.9887957663602,-176.9887957663602,0.1614046467443541,0.1614046467443541 -1.6094117647058825,-4.555136721560844,-4.555136721560844,9.153665859130611e-05,9.153665859130611e-05,-177.58173889185298,-177.58173889185298,0.16146466554297886,0.16146466554297886 -1.611764705882353,-4.5702656939961,-4.5702656939961,9.12086075294255e-05,9.12086075294255e-05,-178.1702255942197,-178.1702255942197,0.16133788923084483,0.16133788923084483 -1.6141176470588237,-4.562609533527657,-4.562609533527657,8.936065767145585e-05,8.936065767145585e-05,-178.75419293755894,-178.75419293755894,0.16105967788586462,0.16105967788586462 -1.616470588235294,-4.570954781155349,-4.570954781155349,9.253576697234519e-05,9.253576697234519e-05,-179.3337201591329,-179.3337201591329,0.16067107426151817,0.16067107426151817 -1.6188235294117648,-4.581602917596801,-4.581602917596801,9.251857862499232e-05,9.251857862499232e-05,-179.90895904145606,-179.90895904145606,0.16020957457161522,0.16020957457161522 -1.6211764705882352,-4.698080277409133,-4.698080277409133,9.647106123959386e-05,9.647106123959386e-05,-180.4800002435429,-180.4800002435429,0.15970060987768686,0.15970060987768686 -1.6235294117647059,-4.792905739836545,-4.792905739836545,9.262165245570816e-05,9.262165245570816e-05,-181.04705254311497,-181.04705254311497,0.1591547528615527,0.1591547528615527 -1.6258823529411766,-4.8784216253143375,-4.8784216253143375,8.354308584963608e-05,8.354308584963608e-05,-181.61012049482179,-181.61012049482179,0.15857773155934504,0.15857773155934504 -1.6282352941176468,-4.9422675259435325,-4.9422675259435325,8.441475096221859e-05,8.441475096221859e-05,-182.16915414910494,-182.16915414910494,0.15797895261607126,0.15797895261607126 -1.630588235294118,-4.931228959291935,-4.931228959291935,8.088960705820621e-05,8.088960705820621e-05,-182.72406108037433,-182.72406108037433,0.15739070885582124,0.15739070885582124 -1.6329411764705881,-4.956597410841358,-4.956597410841358,7.917726881120878e-05,7.917726881120878e-05,-183.2747798940437,-183.2747798940437,0.15685875268296876,0.15685875268296876 -1.6352941176470588,-4.8740876888483005,-4.8740876888483005,7.765493757428766e-05,7.765493757428766e-05,-183.8213247128054,-183.8213247128054,0.1564520293763295,0.1564520293763295 -1.6376470588235295,-4.98187884376655,-4.98187884376655,8.516846714285289e-05,8.516846714285289e-05,-184.36394477587322,-184.36394477587322,0.15623572288015278,0.15623572288015278 -1.6400000000000001,-5.045063115521127,-5.045063115521127,8.190853088817457e-05,8.190853088817457e-05,-184.90306696880003,-184.90306696880003,0.15625865721008275,0.15625865721008275 -1.6423529411764706,-5.084703413834959,-5.084703413834959,8.883027537769192e-05,8.883027537769192e-05,-185.43911055070436,-185.43911055070436,0.15654475465644455,0.15654475465644455 -1.6447058823529415,-5.186812374631892,-5.186812374631892,9.069540589118051e-05,9.069540589118051e-05,-185.97246665975135,-185.97246665975135,0.15709329038092482,0.15709329038092482 -1.6470588235294117,-5.246163337543685,-5.246163337543685,8.882084663923658e-05,8.882084663923658e-05,-186.50331395319617,-186.50331395319617,0.1578913318344827,0.1578913318344827 -1.6494117647058824,-5.3336155598796715,-5.3336155598796715,8.194431933530184e-05,8.194431933530184e-05,-187.03183100747978,-187.03183100747978,0.15893576317870825,0.15893576317870825 -1.651764705882353,-5.341172896559538,-5.341172896559538,8.50793767000683e-05,8.50793767000683e-05,-187.55796259956134,-187.55796259956134,0.1602489553599383,0.1602489553599383 -1.6541176470588237,-5.361763767790813,-5.361763767790813,8.030199297714142e-05,8.030199297714142e-05,-188.0818627378009,-188.0818627378009,0.16187861659318428,0.16187861659318428 -1.6564705882352944,-5.397977642564562,-5.397977642564562,7.009979516140187e-05,7.009979516140187e-05,-188.60374628445575,-188.60374628445575,0.16389110452182434,0.16389110452182434 -1.6588235294117644,-5.446387380174168,-5.446387380174168,6.565642581153547e-05,6.565642581153547e-05,-189.12409994704495,-189.12409994704495,0.16634822125000664,0.16634822125000664 -1.6611764705882353,-5.379680618616689,-5.379680618616689,9.199769014017952e-05,9.199769014017952e-05,-189.6435649800357,-189.6435649800357,0.1692813043342215,0.1692813043342215 -1.663529411764706,-5.423587528678,-5.423587528678,8.808063214125783e-05,8.808063214125783e-05,-190.16272949346785,-190.16272949346785,0.17268909954191225,0.17268909954191225 -1.6658823529411766,-5.501353796425361,-5.501353796425361,8.805364930045174e-05,8.805364930045174e-05,-190.68198200720636,-190.68198200720636,0.1765399352864159,0.1765399352864159 -1.668235294117647,-5.620693102757458,-5.620693102757458,8.937801662357213e-05,8.937801662357213e-05,-191.20162146741035,-191.20162146741035,0.18079784100970975,0.18079784100970975 -1.670588235294118,-5.618919352526836,-5.618919352526836,8.636601380232066e-05,8.636601380232066e-05,-191.7216895372656,-191.7216895372656,0.18545078430486872,0.18545078430486872 -1.672941176470588,-5.568346301916231,-5.568346301916231,8.059253522000605e-05,8.059253522000605e-05,-192.2422029721952,-192.2422029721952,0.19052013303794085,0.19052013303794085 -1.6752941176470588,-5.699424078715371,-5.699424078715371,7.166109479602748e-05,7.166109479602748e-05,-192.76335599224726,-192.76335599224726,0.19607035492344177,0.19607035492344177 -1.6776470588235295,-5.719797764030028,-5.719797764030028,7.200913445609858e-05,7.200913445609858e-05,-193.2857283655826,-193.2857283655826,0.20217234266820736,0.20217234266820736 -1.68,-5.6471285641818545,-5.6471285641818545,7.349753462768084e-05,7.349753462768084e-05,-193.81005736610962,-193.81005736610962,0.2088680693390905,0.2088680693390905 -1.6823529411764706,-5.73581488721644,-5.73581488721644,7.048467454798623e-05,7.048467454798623e-05,-194.3372584097963,-194.3372584097963,0.21612431388792733,0.21612431388792733 -1.684705882352941,-5.756108493040605,-5.756108493040605,7.350894751520759e-05,7.350894751520759e-05,-194.86817981354056,-194.86817981354056,0.22380453216607488,0.22380453216607488 -1.6870588235294117,-5.862880678834865,-5.862880678834865,7.835890545631864e-05,7.835890545631864e-05,-195.40339790833974,-195.40339790833974,0.2316724920390876,0.2316724920390876 -1.6894117647058824,-5.892959563137942,-5.892959563137942,7.56294105752609e-05,7.56294105752609e-05,-195.9430139355828,-195.9430139355828,0.23941107039134332,0.23941107039134332 -1.6917647058823528,-5.987406220597146,-5.987406220597146,7.367834733004225e-05,7.367834733004225e-05,-196.48667047223884,-196.48667047223884,0.24668163671186918,0.24668163671186918 -1.6941176470588235,-6.1386519063101215,-6.1386519063101215,7.273414329473728e-05,7.273414329473728e-05,-197.03365624642188,-197.03365624642188,0.2531594704590649,0.2531594704590649 -1.6964705882352942,-6.2149699746855624,-6.2149699746855624,7.348537517066013e-05,7.348537517066013e-05,-197.5829871819671,-197.5829871819671,0.25859223466288744,0.25859223466288744 -1.6988235294117644,-6.223289293614932,-6.223289293614932,6.674846406044265e-05,6.674846406044265e-05,-198.133693111572,-198.133693111572,0.2628212205184927,0.2628212205184927 -1.7011764705882353,-6.32221471981812,-6.32221471981812,6.846508794935041e-05,6.846508794935041e-05,-198.68476040781184,-198.68476040781184,0.2657798291886391,0.2657798291886391 -1.7035294117647062,-6.1963369398010135,-6.1963369398010135,6.491949065912319e-05,6.491949065912319e-05,-199.2354828744806,-199.2354828744806,0.26749392141706246,0.26749392141706246 -1.7058823529411766,-6.238304897451397,-6.238304897451397,6.784500271681428e-05,6.784500271681428e-05,-199.78529898682572,-199.78529898682572,0.26804191936803545,0.26804191936803545 -1.7082352941176469,-6.265018164105762,-6.265018164105762,7.222360910068836e-05,7.222360910068836e-05,-200.3339524402497,-200.3339524402497,0.2675208098701816,0.2675208098701816 -1.7105882352941175,-6.2809759551312965,-6.2809759551312965,7.480132387229302e-05,7.480132387229302e-05,-200.88124483369668,-200.88124483369668,0.2660167306596388,0.2660167306596388 -1.7129411764705882,-6.354444899986263,-6.354444899986263,7.776389985322696e-05,7.776389985322696e-05,-201.4272544268124,-201.4272544268124,0.2635880272556431,0.2635880272556431 -1.7152941176470589,-6.483686171540523,-6.483686171540523,7.657617802811122e-05,7.657617802811122e-05,-201.97194939011405,-201.97194939011405,0.2602520620998577,0.2602520620998577 -1.7176470588235295,-6.543518206335837,-6.543518206335837,7.621493588173806e-05,7.621493588173806e-05,-202.51517393601634,-202.51517393601634,0.25600949044017784,0.25600949044017784 -1.72,-6.563391163753219,-6.563391163753219,7.558019524814013e-05,7.558019524814013e-05,-203.0565662856654,-203.0565662856654,0.250860312529584,0.250860312529584 -1.7223529411764709,-6.8759327267905235,-6.8759327267905235,9.137616728517603e-05,9.137616728517603e-05,-203.5956837001193,-203.5956837001193,0.24484588051938178,0.24484588051938178 -1.7247058823529409,-6.660659139431676,-6.660659139431676,7.504917044715085e-05,7.504917044715085e-05,-204.13187532924272,-204.13187532924272,0.23805086771866954,0.23805086771866954 -1.7270588235294118,-6.7210064347169105,-6.7210064347169105,7.006131684443561e-05,7.006131684443561e-05,-204.66446017764432,-204.66446017764432,0.2306437043763928,0.2306437043763928 -1.7294117647058824,-6.737118714367464,-6.737118714367464,7.09705047773186e-05,7.09705047773186e-05,-205.19290592983867,-205.19290592983867,0.222834163984354,0.222834163984354 -1.731764705882353,-6.6041504557514354,-6.6041504557514354,6.793496659798045e-05,6.793496659798045e-05,-205.71684131038043,-205.71684131038043,0.21487314136504762,0.21487314136504762 -1.7341176470588235,-6.528649427611944,-6.528649427611944,6.920909687913935e-05,6.920909687913935e-05,-206.2364013842797,-206.2364013842797,0.2070054270450268,0.2070054270450268 -1.7364705882352938,-6.608299730777782,-6.608299730777782,7.063853731583024e-05,7.063853731583024e-05,-206.75196801527565,-206.75196801527565,0.19942816995160942,0.19942816995160942 -1.7388235294117647,-6.667026817211521,-6.667026817211521,7.494296914392807e-05,7.494296914392807e-05,-207.2644474488815,-207.2644474488815,0.1922583929668273,0.1922583929668273 -1.7411764705882353,-6.921835019559626,-6.921835019559626,9.188947457258282e-05,9.188947457258282e-05,-207.77477995784568,-207.77477995784568,0.18551558488929484,0.18551558488929484 -1.743529411764706,-6.987071397009053,-6.987071397009053,8.528935116791714e-05,8.528935116791714e-05,-208.28400806116966,-208.28400806116966,0.1791274201759192,0.1791274201759192 -1.7458823529411764,-6.882798439164214,-6.882798439164214,8.944852753259111e-05,8.944852753259111e-05,-208.79276000086168,-208.79276000086168,0.1729669660786131,0.1729669660786131 -1.748235294117647,-7.07663452761215,-7.07663452761215,7.83390534714935e-05,7.83390534714935e-05,-209.30141037072346,-209.30141037072346,0.16687719844971055,0.16687719844971055 -1.7505882352941176,-7.156508546938779,-7.156508546938779,8.065799492444877e-05,8.065799492444877e-05,-209.80971638387376,-209.80971638387376,0.16073278666969548,0.16073278666969548 -1.7529411764705882,-6.9187221466244875,-6.9187221466244875,6.273184909890393e-05,6.273184909890393e-05,-210.31714211344726,-210.31714211344726,0.15445228282870588,0.15445228282870588 -1.7552941176470591,-6.909613031058359,-6.909613031058359,7.245103462829032e-05,7.245103462829032e-05,-210.82297033700743,-210.82297033700743,0.1480344339770547,0.1480344339770547 -1.7576470588235293,-7.187176281451889,-7.187176281451889,7.093203655759821e-05,7.093203655759821e-05,-211.3263084073337,-211.3263084073337,0.14153453358335202,0.14153453358335202 -1.76,-6.818006251124299,-6.818006251124299,6.442059458308621e-05,6.442059458308621e-05,-211.82650547354407,-211.82650547354407,0.13505190460327116,0.13505190460327116 -1.7623529411764705,-7.0551046666816415,-7.0551046666816415,6.835711260543845e-05,6.835711260543845e-05,-212.32323020694977,-212.32323020694977,0.12871093482846194,0.12871093482846194 -1.7647058823529411,-7.282562364766813,-7.282562364766813,0.00010813291530922608,0.00010813291530922608,-212.8165212644492,-212.8165212644492,0.1226131183979896,0.1226131183979896 -1.7670588235294116,-6.921389124658049,-6.921389124658049,0.00011003887340706796,0.00011003887340706796,-213.30672988486901,-213.30672988486901,0.11683453211057913,0.11683453211057913 -1.7694117647058827,-7.107302468024013,-7.107302468024013,0.00010388740132099956,0.00010388740132099956,-213.79451521043225,-213.79451521043225,0.11139214380945492,0.11139214380945492 -1.7717647058823531,-7.3557850535158895,-7.3557850535158895,8.898626678207705e-05,8.898626678207705e-05,-214.28040346321947,-214.28040346321947,0.10626565299245175,0.10626565299245175 -1.7741176470588236,-7.776135953111501,-7.776135953111501,7.500635806652263e-05,7.500635806652263e-05,-214.76487019392445,-214.76487019392445,0.10140316495974001,0.10140316495974001 -1.776470588235294,-7.917895525001557,-7.917895525001557,0.00010189896548385314,0.00010189896548385314,-215.24796880558537,-215.24796880558537,0.09674627059801465,0.09674627059801465 -1.7788235294117647,-7.857391417411761,-7.857391417411761,6.76846120788483e-05,6.76846120788483e-05,-215.72950945758802,-215.72950945758802,0.09224840053693857,0.09224840053693857 -1.7811764705882354,-7.540670196660667,-7.540670196660667,6.013889900904774e-05,6.013889900904774e-05,-216.20891460070894,-216.20891460070894,0.0878994243091024,0.0878994243091024 -1.7835294117647063,-7.777598392169006,-7.777598392169006,5.278439577598926e-05,5.278439577598926e-05,-216.685602103649,-216.685602103649,0.08371821132171854,0.08371821132171854 -1.7858823529411765,-7.035581420741719,-7.035581420741719,9.844260645377064e-05,9.844260645377064e-05,-217.15915550146272,-217.15915550146272,0.07974754399219931,0.07974754399219931 -1.7882352941176471,-7.320852332575597,-7.320852332575597,0.00011152860749953076,0.00011152860749953076,-217.62936873084,-217.62936873084,0.07603984550887014,0.07603984550887014 -1.7905882352941174,-7.199469573889555,-7.199469573889555,6.759822158341187e-05,6.759822158341187e-05,-218.09652373879794,-218.09652373879794,0.07264237081651666,0.07264237081651666 -1.7929411764705883,-7.443853222904234,-7.443853222904234,0.00012403626946475425,0.00012403626946475425,-218.56122384638405,-218.56122384638405,0.0695801497842726,0.0695801497842726 -1.795294117647059,-7.284264622552337,-7.284264622552337,0.00014796382388949738,0.00014796382388949738,-219.02450174555466,-219.02450174555466,0.0668437061879319,0.0668437061879319 -1.7976470588235294,-7.6443778531611875,-7.6443778531611875,0.00010971242387503714,0.00010971242387503714,-219.4870208387663,-219.4870208387663,0.06439978343097544,0.06439978343097544 -1.8,-8.268698393350064,-8.268698393350064,0.00012370912840149468,0.00012370912840149468,-219.94947837260403,-219.94947837260403,0.06219584596210587,0.06219584596210587 diff --git a/sparameters/rotate_f258530e_6292f352.yml b/sparameters/rotate_f258530e_6292f352.yml deleted file mode 100644 index 96ebf2ce..00000000 --- a/sparameters/rotate_f258530e_6292f352.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 30 -fiber_xoffset: 29 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 186.9194347858429 -compute_time_minutes: 3.1153239130973818 diff --git a/sparameters/rotate_f258530e_68720cc2.csv b/sparameters/rotate_f258530e_68720cc2.csv deleted file mode 100644 index e948aa23..00000000 --- a/sparameters/rotate_f258530e_68720cc2.csv +++ /dev/null @@ -1,51 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.5,-3.059102483358212,-3.059102483358212,0.0003791982684850891,0.0003791982684850891,-2.673576788443494,-2.673576788443494,0.006925765800850355,0.006925765800850355 -1.5020408163265306,-3.624158540249753,-3.624158540249753,0.00024814326129510175,0.00024814326129510175,-3.197247626089017,-3.197247626089017,0.007495292173388817,0.007495292173388817 -1.5040816326530613,-3.156806118556771,-3.156806118556771,0.00013405264612046438,0.00013405264612046438,-3.709904671843276,-3.709904671843276,0.00807451752344725,0.00807451752344725 -1.506122448979592,-3.1503485548584083,-3.1503485548584083,7.553747715237857e-05,7.553747715237857e-05,-4.210275831990607,-4.210275831990607,0.008681866640148934,0.008681866640148934 -1.5081632653061225,-3.1323651238748282,-3.1323651238748282,0.00010707823117738836,0.00010707823117738836,-4.6983410535768915,-4.6983410535768915,0.009362771020331971,0.009362771020331971 -1.510204081632653,-1.8340633324569149,-1.8340633324569149,0.00010552459233953123,0.00010552459233953123,-5.176323632524705,-5.176323632524705,0.01015526338406907,0.01015526338406907 -1.5122448979591836,-2.796565005012199,-2.796565005012199,0.00019021264544676747,0.00019021264544676747,-5.647959884310897,-5.647959884310897,0.011108378673969197,0.011108378673969197 -1.5142857142857142,-2.788815724114657,-2.788815724114657,0.00017555578104588054,0.00017555578104588054,-6.117408053635122,-6.117408053635122,0.012260693792169557,0.012260693792169557 -1.5163265306122449,-4.253560011824593,-4.253560011824593,0.00010850209890152426,0.00010850209890152426,-6.587675303266511,-6.587675303266511,0.013628004942516907,0.013628004942516907 -1.5183673469387755,-3.7376275523097027,-3.7376275523097027,0.00015491754822710244,0.00015491754822710244,-7.060261440979189,-7.060261440979189,0.01523150393025871,0.01523150393025871 -1.5204081632653061,-3.32767748096271,-3.32767748096271,0.00013474377253008476,0.00013474377253008476,-7.535929684643991,-7.535929684643991,0.017091040184259353,0.017091040184259353 -1.5224489795918368,-3.0142224423135224,-3.0142224423135224,0.00011759802575005101,0.00011759802575005101,-8.014842056376693,-8.014842056376693,0.01922937498116369,0.01922937498116369 -1.5244897959183674,-3.251708339876936,-3.251708339876936,6.902423096156848e-05,6.902423096156848e-05,-8.497655306125164,-8.497655306125164,0.021688733426878052,0.021688733426878052 -1.5265306122448983,-3.149838614299363,-3.149838614299363,0.00012866433114660286,0.00012866433114660286,-8.984874064934168,-8.984874064934168,0.024497755680042314,0.024497755680042314 -1.5285714285714287,-3.325485253153407,-3.325485253153407,0.00011911735624869961,0.00011911735624869961,-9.47739714517601,-9.47739714517601,0.02768034718221083,0.02768034718221083 -1.530612244897959,-3.5770837869963095,-3.5770837869963095,0.00014634689029364252,0.00014634689029364252,-9.975323482854522,-9.975323482854522,0.031239227206174048,0.031239227206174048 -1.5326530612244897,-3.457439513637309,-3.457439513637309,0.00013444431311254016,0.00013444431311254016,-10.478566403344562,-10.478566403344562,0.03516123333108903,0.03516123333108903 -1.5346938775510204,-3.5609927275195203,-3.5609927275195203,0.0001175089653567316,0.0001175089653567316,-10.98623224703531,-10.98623224703531,0.039414191679755003,0.039414191679755003 -1.536734693877551,-3.584112801976315,-3.584112801976315,0.00012788179490365054,0.00012788179490365054,-11.497291007331725,-11.497291007331725,0.043963464586589174,0.043963464586589174 -1.5387755102040817,-3.477583788806012,-3.477583788806012,0.0001122876426615424,0.0001122876426615424,-12.010624591640742,-12.010624591640742,0.0487685800207002,0.0487685800207002 -1.5408163265306123,-3.6192160768529127,-3.6192160768529127,0.00010475848104535778,0.00010475848104535778,-12.525048836218003,-12.525048836218003,0.053794408848315226,0.053794408848315226 -1.542857142857143,-3.5749193269632653,-3.5749193269632653,0.00012550101123537673,0.00012550101123537673,-13.039480655876774,-13.039480655876774,0.05901621194359264,0.05901621194359264 -1.5448979591836736,-3.5488428995688373,-3.5488428995688373,0.00012892102326841982,0.00012892102326841982,-13.553256707507389,-13.553256707507389,0.0644148327902764,0.0644148327902764 -1.546938775510204,-3.5515368363901945,-3.5515368363901945,0.00013777425274184277,0.00013777425274184277,-14.065838862596765,-14.065838862596765,0.06998563696960497,0.06998563696960497 -1.5489795918367348,-3.727177057403818,-3.727177057403818,0.000123250461923087,0.000123250461923087,-14.57675080169846,-14.57675080169846,0.07572621736089702,0.07572621736089702 -1.5510204081632653,-3.871356445350029,-3.871356445350029,0.00013380788059272136,0.00013380788059272136,-15.085947054847203,-15.085947054847203,0.0816412182010836,0.0816412182010836 -1.5530612244897959,-3.7116677887297045,-3.7116677887297045,0.0001102346297645946,0.0001102346297645946,-15.59336743067856,-15.59336743067856,0.087731635169307,0.087731635169307 -1.5551020408163265,-3.836079011987183,-3.836079011987183,0.00010597328124812013,0.00010597328124812013,-16.09911132235612,-16.09911132235612,0.09399708941438174,0.09399708941438174 -1.5571428571428572,-3.7291265716929662,-3.7291265716929662,0.00010055282503939513,0.00010055282503939513,-16.603286893650747,-16.603286893650747,0.10041401732251706,0.10041401732251706 -1.5591836734693876,-3.737851815622371,-3.737851815622371,9.7732636591206e-05,9.7732636591206e-05,-17.105880047671562,-17.105880047671562,0.10695689979854008,0.10695689979854008 -1.5612244897959184,-3.765851012654669,-3.765851012654669,0.00010780405369912868,0.00010780405369912868,-17.606805530537304,-17.606805530537304,0.1135908811060428,0.1135908811060428 -1.563265306122449,-3.6843388313568535,-3.6843388313568535,0.00010915508746594502,0.00010915508746594502,-18.105852065670767,-18.105852065670767,0.12027385714981811,0.12027385714981811 -1.5653061224489797,-3.8918630662400524,-3.8918630662400524,0.00010311016587322842,0.00010311016587322842,-18.60277724848181,-18.60277724848181,0.12698094538525898,0.12698094538525898 -1.5673469387755101,-3.902838513151914,-3.902838513151914,0.00011342860313488752,0.00011342860313488752,-19.097244132437794,-19.097244132437794,0.13370009550971737,0.13370009550971737 -1.569387755102041,-4.016860124490606,-4.016860124490606,0.00010244318678116963,0.00010244318678116963,-19.589113546536556,-19.589113546536556,0.14044358837530707,0.14044358837530707 -1.5714285714285714,-4.048490282239447,-4.048490282239447,0.00011147482124374385,0.00011147482124374385,-20.078242417458423,-20.078242417458423,0.14723903015047135,0.14723903015047135 -1.573469387755102,-4.022821318989312,-4.022821318989312,0.00010130997503653895,0.00010130997503653895,-20.564712601216517,-20.564712601216517,0.15413041481422565,0.15413041481422565 -1.5755102040816327,-4.042657929465175,-4.042657929465175,7.651445904329867e-05,7.651445904329867e-05,-21.048836614432812,-21.048836614432812,0.16114991424347488,0.16114991424347488 -1.577551020408163,-4.04409021027419,-4.04409021027419,9.557964653771252e-05,9.557964653771252e-05,-21.530858833376588,-21.530858833376588,0.16832576254896123,0.16832576254896123 -1.579591836734694,-4.093589856076322,-4.093589856076322,9.982851028061536e-05,9.982851028061536e-05,-22.0111366379948,-22.0111366379948,0.17565519654791348,0.17565519654791348 -1.5816326530612246,-4.175639594782387,-4.175639594782387,0.0001023385380573086,0.0001023385380573086,-22.489978036351133,-22.489978036351133,0.18312035381457967,0.18312035381457967 -1.5836734693877552,-4.199919354305503,-4.199919354305503,9.951835882252781e-05,9.951835882252781e-05,-22.96752697079998,-22.96752697079998,0.19068189364003374,0.19068189364003374 -1.5857142857142859,-4.2246775830747705,-4.2246775830747705,0.00010093026055425373,0.00010093026055425373,-23.443891820776045,-23.443891820776045,0.19829038775583477,0.19829038775583477 -1.5877551020408165,-4.246597760511607,-4.246597760511607,0.00010160420518737004,0.00010160420518737004,-23.919030078499386,-23.919030078499386,0.20589853471280006,0.20589853471280006 -1.5897959183673471,-4.330154813290408,-4.330154813290408,9.688067331617581e-05,9.688067331617581e-05,-24.392944000780776,-24.392944000780776,0.21346020220205084,0.21346020220205084 -1.5918367346938775,-4.3428196951757165,-4.3428196951757165,9.409873999398222e-05,9.409873999398222e-05,-24.86553601823604,-24.86553601823604,0.2209379361973885,0.2209379361973885 -1.593877551020408,-4.300590149980781,-4.300590149980781,9.427344970086774e-05,9.427344970086774e-05,-25.33676958096049,-25.33676958096049,0.22829705720779328,0.22829705720779328 -1.5959183673469388,-4.383982876962712,-4.383982876962712,9.578600651776489e-05,9.578600651776489e-05,-25.80662780514802,-25.80662780514802,0.2355039880512903,0.2355039880512903 -1.5979591836734695,-4.38396702001168,-4.38396702001168,0.00010243509301995481,0.00010243509301995481,-26.274970059760527,-26.274970059760527,0.24252872161398525,0.24252872161398525 -1.6,-4.459365097191106,-4.459365097191106,9.857648384300062e-05,9.857648384300062e-05,-26.7418593662393,-26.7418593662393,0.24934171953038148,0.24934171953038148 diff --git a/sparameters/rotate_f258530e_68720cc2.yml b/sparameters/rotate_f258530e_68720cc2.yml deleted file mode 100644 index cb44535b..00000000 --- a/sparameters/rotate_f258530e_68720cc2.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: 25 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 77.55401849746704 -compute_time_minutes: 1.292566974957784 diff --git a/sparameters/rotate_f258530e_6ae86fa9.csv b/sparameters/rotate_f258530e_6ae86fa9.csv deleted file mode 100644 index 8956c92d..00000000 --- a/sparameters/rotate_f258530e_6ae86fa9.csv +++ /dev/null @@ -1,51 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.5,-3.024890444787791,-3.024890444787791,0.0001404062757044278,0.0001404062757044278,1.2579105829640727,1.2579105829640727,0.07619015532020645,0.07619015532020645 -1.5020408163265306,-3.1925333348225555,-3.1925333348225555,0.00013377398926794621,0.00013377398926794621,0.8728739494852784,0.8728739494852784,0.07945211070730641,0.07945211070730641 -1.5040816326530613,-3.1602299196416093,-3.1602299196416093,0.00011530910171399716,0.00011530910171399716,0.4907771868650131,0.4907771868650131,0.08245766889583585,0.08245766889583585 -1.506122448979592,-2.9723449835582203,-2.9723449835582203,0.00012023814396094598,0.00012023814396094598,0.11424498620006741,0.11424498620006741,0.08543238927598015,0.08543238927598015 -1.5081632653061225,-3.0045400198122323,-3.0045400198122323,0.000123460433814076,0.000123460433814076,-0.2563985763968677,-0.2563985763968677,0.08875459802205025,0.08875459802205025 -1.510204081632653,-3.0864584632820162,-3.0864584632820162,0.000123337434584809,0.000123337434584809,-0.6238291477718364,-0.6238291477718364,0.0927880023981732,0.0927880023981732 -1.5122448979591836,-3.2088992024424123,-3.2088992024424123,0.00012084339510120614,0.00012084339510120614,-0.9926556531855135,-0.9926556531855135,0.09772029648484849,0.09772029648484849 -1.5142857142857142,-3.234060536144841,-3.234060536144841,0.00011296363240301367,0.00011296363240301367,-1.3669322721188526,-1.3669322721188526,0.10345087611564167,0.10345087611564167 -1.5163265306122449,-3.2155616577661923,-3.2155616577661923,0.0001259727258969768,0.0001259727258969768,-1.7483672404855837,-1.7483672404855837,0.10963671001708669,0.10963671001708669 -1.5183673469387755,-3.2977526793608547,-3.2977526793608547,0.00011082326277786507,0.00011082326277786507,-2.1359471777667256,-2.1359471777667256,0.11584673935964168,0.11584673935964168 -1.5204081632653061,-3.0992965511088326,-3.0992965511088326,0.00010925335382737608,0.00010925335382737608,-2.526557141025045,-2.526557141025045,0.12173292109570254,0.12173292109570254 -1.5224489795918368,-3.2509177768638846,-3.2509177768638846,0.00012802067256058566,0.00012802067256058566,-2.9164019709841105,-2.9164019709841105,0.1271850096757905,0.1271850096757905 -1.5244897959183674,-3.3282690474306666,-3.3282690474306666,0.00011903317706666817,0.00011903317706666817,-3.30235249239534,-3.30235249239534,0.13236910077500957,0.13236910077500957 -1.5265306122448983,-3.362157235588188,-3.362157235588188,0.00011830785191165143,0.00011830785191165143,-3.6830729593781055,-3.6830729593781055,0.13768702528783486,0.13768702528783486 -1.5285714285714287,-3.4610095119321245,-3.4610095119321245,0.00012182673802817832,0.00012182673802817832,-4.059286081206343,-4.059286081206343,0.14362984949439994,0.14362984949439994 -1.530612244897959,-3.4679103102884037,-3.4679103102884037,0.00011443951911982977,0.00011443951911982977,-4.433754316647136,-4.433754316647136,0.15059718110597523,0.15059718110597523 -1.5326530612244897,-3.467002610438206,-3.467002610438206,0.00010932607477085191,0.00010932607477085191,-4.809822162581484,-4.809822162581484,0.15873514187862894,0.15873514187862894 -1.5346938775510204,-3.4688381872329064,-3.4688381872329064,0.00011564908133416013,0.00011564908133416013,-5.190198103932679,-5.190198103932679,0.1678899977461948,0.1678899977461948 -1.536734693877551,-3.470591700646371,-3.470591700646371,0.00011614833049751748,0.00011614833049751748,-5.575925472556071,-5.575925472556071,0.17767773839093723,0.17767773839093723 -1.5387755102040817,-3.5172138487909215,-3.5172138487909215,0.00012163332034695147,0.00012163332034695147,-5.96639876248209,-5.96639876248209,0.18765170920260082,0.18765170920260082 -1.5408163265306123,-3.5858270634054703,-3.5858270634054703,0.0001206254129917703,0.0001206254129917703,-6.35978811550821,-6.35978811550821,0.1974326005904288,0.1974326005904288 -1.542857142857143,-3.611163961249567,-3.611163961249567,0.00012161634634462282,0.00012161634634462282,-6.753928854763982,-6.753928854763982,0.20683768902444472,0.20683768902444472 -1.5448979591836736,-3.630718245229384,-3.630718245229384,0.0001184179821781318,0.0001184179821781318,-7.146901768394509,-7.146901768394509,0.21590523824564392,0.21590523824564392 -1.546938775510204,-3.644281273282797,-3.644281273282797,0.00011277489980728183,0.00011277489980728183,-7.537601913936552,-7.537601913936552,0.22486527786588306,0.22486527786588306 -1.5489795918367348,-3.657349881693563,-3.657349881693563,0.00011094661568193941,0.00011094661568193941,-7.925754676853782,-7.925754676853782,0.23405164346178167,0.23405164346178167 -1.5510204081632653,-3.701390771412005,-3.701390771412005,0.00012278847563549389,0.00012278847563549389,-8.311994329216136,-8.311994329216136,0.24378907321248505,0.24378907321248505 -1.5530612244897959,-3.697401057465217,-3.697401057465217,0.00012103080780812758,0.00012103080780812758,-8.697467260873815,-8.697467260873815,0.2542982362037227,0.2542982362037227 -1.5551020408163265,-3.688514764427956,-3.688514764427956,0.00011526762628351827,0.00011526762628351827,-9.083400149165488,-9.083400149165488,0.2656367048977661,0.2656367048977661 -1.5571428571428572,-3.775515372788205,-3.775515372788205,0.00011533927264196466,0.00011533927264196466,-9.47077502855247,-9.47077502855247,0.27770678445079133,0.27770678445079133 -1.5591836734693876,-3.846137795815741,-3.846137795815741,0.00011139903874461706,0.00011139903874461706,-9.860008813470536,-9.860008813470536,0.29029059411911734,0.29029059411911734 -1.5612244897959184,-3.8415484858406606,-3.8415484858406606,0.00010733972431280919,0.00010733972431280919,-10.251091994642831,-10.251091994642831,0.30312311055328905,0.30312311055328905 -1.563265306122449,-3.8439887903190195,-3.8439887903190195,0.00010668372191208298,0.00010668372191208298,-10.643567681511875,-10.643567681511875,0.31594506829439584,0.31594506829439584 -1.5653061224489797,-3.8787225792569564,-3.8787225792569564,0.00010301581269363423,0.00010301581269363423,-11.036781727866432,-11.036781727866432,0.328573528882851,0.328573528882851 -1.5673469387755101,-3.8694811289781588,-3.8694811289781588,0.00010444546839225225,0.00010444546839225225,-11.430024253888975,-11.430024253888975,0.3409046562229482,0.3409046562229482 -1.569387755102041,-3.898508299216361,-3.898508299216361,0.0001032415555244558,0.0001032415555244558,-11.822692059371892,-11.822692059371892,0.35293358804982533,0.35293358804982533 -1.5714285714285714,-3.9814723956020432,-3.9814723956020432,0.00010453800867239162,0.00010453800867239162,-12.21431849730052,-12.21431849730052,0.36473976379501377,0.36473976379501377 -1.573469387755102,-4.035236054788531,-4.035236054788531,0.00010274552215550788,0.00010274552215550788,-12.604687743781335,-12.604687743781335,0.37645582241190967,0.37645582241190967 -1.5755102040816327,-4.041885665499338,-4.041885665499338,9.481694780075073e-05,9.481694780075073e-05,-12.99388816697788,-12.99388816697788,0.38823119099122955,0.38823119099122955 -1.577551020408163,-4.119654744723221,-4.119654744723221,9.679191381829481e-05,9.679191381829481e-05,-13.382077562560642,-13.382077562560642,0.40019340103896484,0.40019340103896484 -1.579591836734694,-4.144607114348016,-4.144607114348016,9.77855073574947e-05,9.77855073574947e-05,-13.769607094537358,-13.769607094537358,0.41241371452576353,0.41241371452576353 -1.5816326530612246,-4.1639980691327505,-4.1639980691327505,9.765767060449964e-05,9.765767060449964e-05,-14.156842514579207,-14.156842514579207,0.4248924466985655,0.4248924466985655 -1.5836734693877552,-4.188841256555889,-4.188841256555889,9.968634495071055e-05,9.968634495071055e-05,-14.544022512198042,-14.544022512198042,0.4375631799171321,0.4375631799171321 -1.5857142857142859,-4.210793207431653,-4.210793207431653,0.00010147306293504552,0.00010147306293504552,-14.931313792240948,-14.931313792240948,0.450308247974582,0.450308247974582 -1.5877551020408165,-4.288150885461821,-4.288150885461821,0.00010260069453129253,0.00010260069453129253,-15.318694006567977,-15.318694006567977,0.46299152776198893,0.46299152776198893 -1.5897959183673471,-4.3465022025686215,-4.3465022025686215,0.00010169776481721581,0.00010169776481721581,-15.706080577395246,-15.706080577395246,0.47547817754577226,0.47547817754577226 -1.5918367346938775,-4.356334603047902,-4.356334603047902,9.982760124955206e-05,9.982760124955206e-05,-16.093310175723794,-16.093310175723794,0.48766517219483213,0.48766517219483213 -1.593877551020408,-4.351511890149105,-4.351511890149105,9.584639412589578e-05,9.584639412589578e-05,-16.480184473328553,-16.480184473328553,0.49947699425290354,0.49947699425290354 -1.5959183673469388,-4.38539913838125,-4.38539913838125,9.791983146594564e-05,9.791983146594564e-05,-16.866551460050847,-16.866551460050847,0.5108753396542485,0.5108753396542485 -1.5979591836734695,-4.417015615163077,-4.417015615163077,9.991143387087132e-05,9.991143387087132e-05,-17.252191974264477,-17.252191974264477,0.5218441370897821,0.5218441370897821 -1.6,-4.40372927730235,-4.40372927730235,9.977212291765863e-05,9.977212291765863e-05,-17.637085077350996,-17.637085077350996,0.5323936046549115,0.5323936046549115 diff --git a/sparameters/rotate_f258530e_6ae86fa9.yml b/sparameters/rotate_f258530e_6ae86fa9.yml deleted file mode 100644 index f0632e82..00000000 --- a/sparameters/rotate_f258530e_6ae86fa9.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: 19 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 174.0717260837555 -compute_time_minutes: 2.9011954347292583 diff --git a/sparameters/rotate_f258530e_73260aa2.csv b/sparameters/rotate_f258530e_73260aa2.csv deleted file mode 100644 index fe4c9a65..00000000 --- a/sparameters/rotate_f258530e_73260aa2.csv +++ /dev/null @@ -1,51 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.5,3.0870996816885143,3.0870996816885143,0.00013720732824249636,0.00013720732824249636,2.1145988395744526,2.1145988395744526,0.015237009718215679,0.015237009718215679 -1.5020408163265306,3.2017048883973986,3.2017048883973986,0.00014920308883767464,0.00014920308883767464,1.4222814069305738,1.4222814069305738,0.016089254478455228,0.016089254478455228 -1.5040816326530613,3.2711914833948352,3.2711914833948352,0.00015210353047356056,0.00015210353047356056,0.7299031620651633,0.7299031620651633,0.016940574030793104,0.016940574030793104 -1.506122448979592,3.309116949217845,3.309116949217845,0.00015595711351878538,0.00015595711351878538,0.03731861561785311,0.03731861561785311,0.01778452369733138,0.01778452369733138 -1.5081632653061225,3.3466293805906027,3.3466293805906027,0.00014756416912658208,0.00014756416912658208,-0.6552843011739627,-0.6552843011739627,0.018611490774421525,0.018611490774421525 -1.510204081632653,3.3487678930381426,3.3487678930381426,0.00013776059275092423,0.00013776059275092423,-1.3478843682364252,-1.3478843682364252,0.01940869976538247,0.01940869976538247 -1.5122448979591836,3.2886540241538373,3.2886540241538373,0.00012164654431548817,0.00012164654431548817,-2.0401590574921524,-2.0401590574921524,0.020161804587750676,0.020161804587750676 -1.5142857142857142,3.2539061564631178,3.2539061564631178,0.00010880996655365902,0.00010880996655365902,-2.7316483441744377,-2.7316483441744377,0.020856059199491565,0.020856059199491565 -1.5163265306122449,3.167813506844833,3.167813506844833,9.245350499249065e-05,9.245350499249065e-05,-3.4217401265213585,-3.4217401265213585,0.021479565871190556,0.021479565871190556 -1.5183673469387755,3.056765323054474,3.056765323054474,9.348844672665947e-05,9.348844672665947e-05,-4.1098164675915925,-4.1098164675915925,0.02202374935003743,0.02202374935003743 -1.5204081632653061,2.968356457742594,2.968356457742594,9.269053559842055e-05,9.269053559842055e-05,-4.795278862405981,-4.795278862405981,0.022485250819247564,0.022485250819247564 -1.5224489795918368,2.8902458328699505,2.8902458328699505,0.000101292591010893,0.000101292591010893,-5.477551120113352,-5.477551120113352,0.022865265739890537,0.022865265739890537 -1.5244897959183674,2.8256744019199287,2.8256744019199287,0.00010710399602580083,0.00010710399602580083,-6.156291067852526,-6.156291067852526,0.02316856803771508,0.02316856803771508 -1.5265306122448983,2.8238491433254187,2.8238491433254187,0.00011907390998978856,0.00011907390998978856,-6.831341913955737,-6.831341913955737,0.023401945531625452,0.023401945531625452 -1.5285714285714287,2.7642258026912834,2.7642258026912834,0.0001314231235422996,0.0001314231235422996,-7.502563287817722,-7.502563287817722,0.023572867575135232,0.023572867575135232 -1.530612244897959,2.849698029264154,2.849698029264154,0.00013589042617239734,0.00013589042617239734,-8.170122737845594,-8.170122737845594,0.02368641587244358,0.02368641587244358 -1.5326530612244897,2.7845599021135605,2.7845599021135605,0.00013891722667316975,0.00013891722667316975,-8.83409472815691,-8.83409472815691,0.02374542119428745,0.02374542119428745 -1.5346938775510204,2.779642926835171,2.779642926835171,0.0001389781372852982,0.0001389781372852982,-9.494649238440616,-9.494649238440616,0.02374957468075765,0.02374957468075765 -1.536734693877551,2.803564014891183,2.803564014891183,0.00013597900473416398,0.00013597900473416398,-10.151743372307918,-10.151743372307918,0.023696975801692756,0.023696975801692756 -1.5387755102040817,2.8493531926079014,2.8493531926079014,0.00012966916146743302,0.00012966916146743302,-10.805364584271905,-10.805364584271905,0.023585440148560545,0.023585440148560545 -1.5408163265306123,2.853221888391815,2.853221888391815,0.00012555151072055401,0.00012555151072055401,-11.455210221056838,-11.455210221056838,0.023414090099934573,0.023414090099934573 -1.542857142857143,2.9031047650522877,2.9031047650522877,0.00011368882287147976,0.00011368882287147976,-12.101002168112593,-12.101002168112593,0.023186100947231805,0.023186100947231805 -1.5448979591836736,2.92000756421874,2.92000756421874,0.00010737286472496904,0.00010737286472496904,-12.742355357119859,-12.742355357119859,0.022907417334056785,0.022907417334056785 -1.546938775510204,2.868002063651338,2.868002063651338,0.0001031582542491847,0.0001031582542491847,-13.379131331275724,-13.379131331275724,0.02258850600255313,0.02258850600255313 -1.5489795918367348,2.732391579959244,2.732391579959244,9.27572442853804e-05,9.27572442853804e-05,-14.01108861355526,-14.01108861355526,0.022241368935431684,0.022241368935431684 -1.5510204081632653,2.6401001949695937,2.6401001949695937,9.377641792984835e-05,9.377641792984835e-05,-14.638346779805696,-14.638346779805696,0.02187857547290276,0.02187857547290276 -1.5530612244897959,2.463513160288064,2.463513160288064,9.617725490167366e-05,9.617725490167366e-05,-15.261151037720316,-15.261151037720316,0.021510129776906542,0.021510129776906542 -1.5551020408163265,2.3143662534212264,2.3143662534212264,9.803339115441278e-05,9.803339115441278e-05,-15.879893651165993,-15.879893651165993,0.021142183063293025,0.021142183063293025 -1.5571428571428572,2.219365275243198,2.219365275243198,0.00011066883186984893,0.00011066883186984893,-16.49502302479851,-16.49502302479851,0.020776126126545478,0.020776126126545478 -1.5591836734693876,2.1748948291617505,2.1748948291617505,0.00012069887499137376,0.00012069887499137376,-17.106862939893787,-17.106862939893787,0.02040912497926974,0.02040912497926974 -1.5612244897959184,2.189834442692926,2.189834442692926,0.00012157389082460463,0.00012157389082460463,-17.715622842579872,-17.715622842579872,0.020035702448520435,0.020035702448520435 -1.563265306122449,2.269389096744201,2.269389096744201,0.0001235016374963945,0.0001235016374963945,-18.32129471238125,-18.32129471238125,0.019650262573195243,0.019650262573195243 -1.5653061224489797,2.3568525896442623,2.3568525896442623,0.00013595802357602288,0.00013595802357602288,-18.9236368149825,-18.9236368149825,0.019248900882089658,0.019248900882089658 -1.5673469387755101,2.388475359878482,2.388475359878482,0.00013571970761790307,0.00013571970761790307,-19.522274817046995,-19.522274817046995,0.018831735845190434,0.018831735845190434 -1.569387755102041,2.479518390730889,2.479518390730889,0.00013832465378749067,0.00013832465378749067,-20.11689952800933,-20.11689952800933,0.01840288174624306,0.01840288174624306 -1.5714285714285714,2.476094575308444,2.476094575308444,0.00013810868942406147,0.00013810868942406147,-20.707133328559696,-20.707133328559696,0.017969649027079742,0.017969649027079742 -1.573469387755102,2.475425788181405,2.475425788181405,0.0001270441484760143,0.0001270441484760143,-21.29290704117486,-21.29290704117486,0.017541656731419646,0.017541656731419646 -1.5755102040816327,2.5480274284928357,2.5480274284928357,0.00011122688131120069,0.00011122688131120069,-21.87438908633863,-21.87438908633863,0.01712727120148504,0.01712727120148504 -1.577551020408163,2.480221611345889,2.480221611345889,0.00010682544223386405,0.00010682544223386405,-22.451855741673903,-22.451855741673903,0.01673279310798629,0.01673279310798629 -1.579591836734694,2.4105164784807283,2.4105164784807283,7.757462626234331e-05,7.757462626234331e-05,-23.02578811012034,-23.02578811012034,0.01636053257296197,0.01636053257296197 -1.5816326530612246,2.379481118189774,2.379481118189774,6.965200616714565e-05,6.965200616714565e-05,-23.596681175480775,-23.596681175480775,0.01600840288477657,0.01600840288477657 -1.5836734693877552,2.233025872792904,2.233025872792904,5.4289412025335645e-05,5.4289412025335645e-05,-24.16483541970308,-24.16483541970308,0.015671717132773027,0.015671717132773027 -1.5857142857142859,2.135158228114067,2.135158228114067,5.393422974560882e-05,5.393422974560882e-05,-24.730380515660258,-24.730380515660258,0.015344781025499774,0.015344781025499774 -1.5877551020408165,1.923572701120846,1.923572701120846,6.102608324854814e-05,6.102608324854814e-05,-25.29317244999947,-25.29317244999947,0.015022531321822229,0.015022531321822229 -1.5897959183673471,1.7557422566723506,1.7557422566723506,7.25606688084074e-05,7.25606688084074e-05,-25.852994637410944,-25.852994637410944,0.01470287427069887,0.01470287427069887 -1.5918367346938775,1.6782066250828331,1.6782066250828331,8.83704547475298e-05,8.83704547475298e-05,-26.4095160986654,-26.4095160986654,0.014385881982982381,0.014385881982982381 -1.593877551020408,1.6114846157973486,1.6114846157973486,0.00010470227071601451,0.00010470227071601451,-26.962485385576944,-26.962485385576944,0.014075134371325652,0.014075134371325652 -1.5959183673469388,1.6040041298478889,1.6040041298478889,0.00011788240042669063,0.00011788240042669063,-27.51183482775247,-27.51183482775247,0.013774945701732363,0.013774945701732363 -1.5979591836734695,1.4950687029476577,1.4950687029476577,0.0001228938828995648,0.0001228938828995648,-28.057562312175946,-28.057562312175946,0.01348940192741115,0.01348940192741115 -1.6,1.487572832748773,1.487572832748773,0.00013012345962840784,0.00013012345962840784,-28.600020884390013,-28.600020884390013,0.013221205062042551,0.013221205062042551 diff --git a/sparameters/rotate_f258530e_73260aa2.yml b/sparameters/rotate_f258530e_73260aa2.yml deleted file mode 100644 index 74849dfc..00000000 --- a/sparameters/rotate_f258530e_73260aa2.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: 35 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 352.96917605400085 -compute_time_minutes: 5.882819600900015 diff --git a/sparameters/rotate_f258530e_75dfd42e.csv b/sparameters/rotate_f258530e_75dfd42e.csv deleted file mode 100644 index 78e3d738..00000000 --- a/sparameters/rotate_f258530e_75dfd42e.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,-2.387251716525358,-2.387251716525358,0.0022297020765397963,0.0022297020765397963,-2.678329420312949,-2.678329420312949,0.004463464480181344,0.004463464480181344 -1.2023529411764706,-5.438192936424739,-5.438192936424739,0.006867464126630921,0.006867464126630921,-4.012468255084821,-4.012468255084821,0.003148494292423615,0.003148494292423615 -1.204705882352941,-5.985181006286013,-5.985181006286013,0.004787920680339202,0.004787920680339202,-4.929036425712297,-4.929036425712297,0.002444793581687567,0.002444793581687567 -1.2070588235294117,-7.625816950893548,-7.625816950893548,0.0014117979794203092,0.0014117979794203092,-5.936233866075903,-5.936233866075903,0.003198350083978418,0.003198350083978418 -1.2094117647058824,-10.378840317188768,-10.378840317188768,0.001785587071864264,0.001785587071864264,-7.345573528852828,-7.345573528852828,0.004151660240443397,0.004151660240443397 -1.2117647058823529,-9.088416153902058,-9.088416153902058,0.001858152179113838,0.001858152179113838,-8.908976171228568,-8.908976171228568,0.004433715645486644,0.004433715645486644 -1.2141176470588235,-10.476470450011476,-10.476470450011476,0.001547707548603998,0.001547707548603998,-10.518871193157997,-10.518871193157997,0.0040230736633472325,0.0040230736633472325 -1.216470588235294,-8.584005363482598,-8.584005363482598,0.006301683395255565,0.006301683395255565,-12.099722918157914,-12.099722918157914,0.003203738512508631,0.003203738512508631 -1.2188235294117646,-10.542533391984115,-10.542533391984115,0.0027397561588698906,0.0027397561588698906,-13.515054192076034,-13.515054192076034,0.0024171910042629025,0.0024171910042629025 -1.2211764705882353,-11.661367387855524,-11.661367387855524,0.0031667598340922223,0.0031667598340922223,-14.697485029692963,-14.697485029692963,0.0023600820016249297,0.0023600820016249297 -1.2235294117647058,-11.473265141397363,-11.473265141397363,0.0018524597078050226,0.0018524597078050226,-16.00903888358203,-16.00903888358203,0.0033012877981461507,0.0033012877981461507 -1.2258823529411764,-8.708078802045636,-8.708078802045636,0.003172024968910092,0.003172024968910092,-17.531386679317748,-17.531386679317748,0.004819508314498075,0.004819508314498075 -1.228235294117647,-8.588361621983347,-8.588361621983347,0.00197674861778491,0.00197674861778491,-19.11778057746723,-19.11778057746723,0.006323688159913305,0.006323688159913305 -1.2305882352941175,-8.951120131031164,-8.951120131031164,0.000334610730590485,0.000334610730590485,-20.703877535448893,-20.703877535448893,0.007511882551350544,0.007511882551350544 -1.2329411764705882,-10.48278295783994,-10.48278295783994,0.0006935605777040546,0.0006935605777040546,-22.243826418956033,-22.243826418956033,0.008101441209539434,0.008101441209539434 -1.2352941176470589,-11.262031537222763,-11.262031537222763,0.0017055663603529607,0.0017055663603529607,-23.707373598223487,-23.707373598223487,0.008144539435682848,0.008144539435682848 -1.2376470588235293,-10.621256247914353,-10.621256247914353,0.00025842828671591956,0.00025842828671591956,-25.064423120741434,-25.064423120741434,0.008068203004950151,0.008068203004950151 -1.24,-11.84377132928583,-11.84377132928583,0.0012813649715465141,0.0012813649715465141,-26.34957445365982,-26.34957445365982,0.008620290973725768,0.008620290973725768 -1.2423529411764704,-13.077354224208,-13.077354224208,0.0002227641359589127,0.0002227641359589127,-27.67146851183504,-27.67146851183504,0.010176720223487062,0.010176720223487062 -1.244705882352941,-15.271277550044974,-15.271277550044974,0.0005649856888159958,0.0005649856888159958,-29.09377763960336,-29.09377763960336,0.01236427693405631,0.01236427693405631 -1.2470588235294118,-15.941437972748673,-15.941437972748673,0.0004984669884355229,0.0004984669884355229,-30.60478720244017,-30.60478720244017,0.014534102274022012,0.014534102274022012 -1.2494117647058822,-15.610204228473751,-15.610204228473751,0.00033169193408631476,0.00033169193408631476,-32.17556384714768,-32.17556384714768,0.01614302039902426,0.01614302039902426 -1.251764705882353,-15.036238210063688,-15.036238210063688,0.00023983175483186325,0.00023983175483186325,-33.78618211433038,-33.78618211433038,0.016927229817116866,0.016927229817116866 -1.2541176470588236,-14.78872250106204,-14.78872250106204,8.741357929526197e-05,8.741357929526197e-05,-35.425440782323534,-35.425440782323534,0.016821305308654694,0.016821305308654694 -1.256470588235294,-15.976201411606528,-15.976201411606528,6.375192187429594e-05,6.375192187429594e-05,-37.08451692565809,-37.08451692565809,0.015930853669135017,0.015930853669135017 -1.2588235294117647,-17.488458602836793,-17.488458602836793,0.0005508633466569037,0.0005508633466569037,-38.75516573319564,-38.75516573319564,0.014426705199383553,0.014426705199383553 -1.2611764705882353,-16.397180303238827,-16.397180303238827,0.0004446813286553806,0.0004446813286553806,-40.42876456269622,-40.42876456269622,0.012448564034655503,0.012448564034655503 -1.2635294117647058,-17.383588727981753,-17.383588727981753,0.0005555566557534234,0.0005555566557534234,-42.10136849985687,-42.10136849985687,0.010130947647725196,0.010130947647725196 -1.2658823529411765,-16.542158691979754,-16.542158691979754,0.00045402531789754514,0.00045402531789754514,-43.77400598317597,-43.77400598317597,0.007582560333645124,0.007582560333645124 -1.268235294117647,-13.711989722670566,-13.711989722670566,0.0005846636455651562,0.0005846636455651562,-45.467946887455064,-45.467946887455064,0.005021699485328754,0.005021699485328754 -1.2705882352941176,-13.712220317889782,-13.712220317889782,0.0021502795009148796,0.0021502795009148796,-47.26308286791187,-47.26308286791187,0.002744088635435116,0.002744088635435116 -1.2729411764705882,-13.857935272496862,-13.857935272496862,0.0029828191971422624,0.0029828191971422624,-49.50509595387381,-49.50509595387381,0.0012512359178004455,0.0012512359178004455 -1.2752941176470587,-12.218874896578857,-12.218874896578857,0.00169537824117328,0.00169537824117328,-52.14216928259042,-52.14216928259042,0.0012123329336678568,0.0012123329336678568 -1.2776470588235294,-11.081759608364232,-11.081759608364232,0.0021259979388289414,0.0021259979388289414,-54.103626157227595,-54.103626157227595,0.0014547429431667996,0.0014547429431667996 -1.28,-8.842206080707014,-8.842206080707014,0.00017226814153044407,0.00017226814153044407,-55.85718070636362,-55.85718070636362,0.0012621481962319069,0.0012621481962319069 -1.2823529411764705,-8.991816540334682,-8.991816540334682,0.0009264179428439807,0.0009264179428439807,-57.72681275960847,-57.72681275960847,0.000778018062789538,0.000778018062789538 -1.2847058823529411,-7.327976961997338,-7.327976961997338,0.003689222685642462,0.003689222685642462,-60.257754411427804,-60.257754411427804,0.0004754476920929266,0.0004754476920929266 -1.2870588235294118,-6.664631112243954,-6.664631112243954,0.004433325185785952,0.004433325185785952,-62.57721741894082,-62.57721741894082,0.0006956733491828979,0.0006956733491828979 -1.2894117647058823,-5.0910295520312365,-5.0910295520312365,0.0012346145286809562,0.0012346145286809562,-64.32271736408495,-64.32271736408495,0.0008294418594794627,0.0008294418594794627 -1.291764705882353,-5.18514591453793,-5.18514591453793,0.002778132626191977,0.002778132626191977,-65.96462417892363,-65.96462417892363,0.0006931411367265342,0.0006931411367265342 -1.2941176470588236,-6.970236728354896,-6.970236728354896,0.009115814607248009,0.009115814607248009,-67.79090972312152,-67.79090972312152,0.0003777638773725549,0.0003777638773725549 -1.296470588235294,-5.700155761876559,-5.700155761876559,0.008922574446329455,0.008922574446329455,-70.63331611367062,-70.63331611367062,0.00024124421985416132,0.00024124421985416132 -1.2988235294117647,-5.00893312824002,-5.00893312824002,0.004855236648221484,0.004855236648221484,-72.76531341913301,-72.76531341913301,0.0004566469525351948,0.0004566469525351948 -1.3011764705882352,-7.11784289043999,-7.11784289043999,0.0007948122061413162,0.0007948122061413162,-74.38005946846403,-74.38005946846403,0.0005471064240550669,0.0005471064240550669 -1.3035294117647058,-4.355254693287514,-4.355254693287514,0.0035765755346929503,0.0035765755346929503,-75.9451866816356,-75.9451866816356,0.0004436361180794946,0.0004436361180794946 -1.3058823529411765,-6.770081834245086,-6.770081834245086,0.0056537578415067225,0.0056537578415067225,-77.74961497708038,-77.74961497708038,0.00022254001306333497,0.00022254001306333497 -1.308235294117647,-6.567860125585527,-6.567860125585527,0.013767730874984271,0.013767730874984271,-80.708532563268,-80.708532563268,0.00017883763154051224,0.00017883763154051224 -1.3105882352941176,-5.206391373628911,-5.206391373628911,0.009437003080230818,0.009437003080230818,-82.62625787765438,-82.62625787765438,0.00033803992498422376,0.00033803992498422376 -1.3129411764705883,-6.245505025305241,-6.245505025305241,0.005033931110610238,0.005033931110610238,-84.14457533454723,-84.14457533454723,0.0003799661626436898,0.0003799661626436898 -1.3152941176470587,-4.109597911437011,-4.109597911437011,0.005050852416732429,0.005050852416732429,-85.63366826319633,-85.63366826319633,0.00027633527889865103,0.00027633527889865103 -1.3176470588235294,-1.9977385348761767,-1.9977385348761767,0.02278852433826649,0.02278852433826649,-87.65936583487544,-87.65936583487544,9.225765068629241e-05,9.225765068629241e-05 -1.32,0.023462593584719287,0.023462593584719287,0.0118664786415622,0.0118664786415622,-84.52716889987586,-84.52716889987586,0.00018563484512861827,0.00018563484512861827 -1.3223529411764705,-0.006911565704383074,-0.006911565704383074,0.0037292152312799393,0.0037292152312799393,-86.0408154644595,-86.0408154644595,0.00033049075905089827,0.00033049075905089827 -1.3247058823529412,0.44555293677580965,0.44555293677580965,0.003636013990592822,0.003636013990592822,-87.3623034955292,-87.3623034955292,0.00035371264897650974,0.00035371264897650974 -1.3270588235294118,3.237110212409907,3.237110212409907,0.004380784875878231,0.004380784875878231,-88.56375387876791,-88.56375387876791,0.0002385305792405787,0.0002385305792405787 -1.3294117647058823,5.694614852520755,5.694614852520755,0.04228334359922823,0.04228334359922823,-88.83020197227668,-88.83020197227668,6.129954971691875e-05,6.129954971691875e-05 -1.331764705882353,7.180687653935598,7.180687653935598,0.003442866483992025,0.003442866483992025,-88.45254255192837,-88.45254255192837,0.00021373348183246213,0.00021373348183246213 -1.3341176470588234,4.293039563123067,4.293039563123067,0.0018952799905121104,0.0018952799905121104,-89.52826025644232,-89.52826025644232,0.00037395276748146736,0.00037395276748146736 -1.336470588235294,5.249099235167908,5.249099235167908,0.0015065711212829743,0.0015065711212829743,-90.63789536364334,-90.63789536364334,0.00042069282765415096,0.00042069282765415096 -1.3388235294117647,4.082544788943082,4.082544788943082,0.007254201545847749,0.007254201545847749,-91.6372804245683,-91.6372804245683,0.00034531260914999533,0.00034531260914999533 -1.3411764705882352,4.466687529362353,4.466687529362353,0.01044010407394784,0.01044010407394784,-92.19758947911035,-92.19758947911035,0.00022900843299387827,0.00022900843299387827 -1.3435294117647059,3.0717334008271027,3.0717334008271027,0.0042810891139126546,0.0042810891139126546,-92.37004241653922,-92.37004241653922,0.00028000056731523025,0.00028000056731523025 -1.3458823529411765,1.4138309595079714,1.4138309595079714,0.005826626012564011,0.005826626012564011,-93.10648210046497,-93.10648210046497,0.0004391246588050516,0.0004391246588050516 -1.348235294117647,-0.30409651237627194,-0.30409651237627194,0.0017039007459841574,0.0017039007459841574,-94.04952371929866,-94.04952371929866,0.000534821383386492,0.000534821383386492 -1.3505882352941176,2.6356265512835924,2.6356265512835924,0.001806031873565411,0.001806031873565411,-94.9701232442151,-94.9701232442151,0.0005249952732745159,0.0005249952732745159 -1.3529411764705883,4.264300748659727,4.264300748659727,0.002040683550912755,0.002040683550912755,-95.71480007585934,-95.71480007585934,0.0004510126571859251,0.0004510126571859251 -1.3552941176470588,4.15335636858115,4.15335636858115,0.0038443737191233896,0.0038443737191233896,-96.2205360876094,-96.2205360876094,0.00043630014443258377,0.00043630014443258377 -1.3576470588235294,1.4107922820937788,1.4107922820937788,0.0016182514030368474,0.0016182514030368474,-96.79942021315645,-96.79942021315645,0.0005510307159447485,0.0005510307159447485 -1.3599999999999999,0.5061776774425998,0.5061776774425998,0.0026709722217402214,0.0026709722217402214,-97.58695597253714,-97.58695597253714,0.0006918007956292396,0.0006918007956292396 -1.3623529411764705,-1.0329121663239924,-1.0329121663239924,0.00160424981769471,0.00160424981769471,-98.45142380721171,-98.45142380721171,0.0007677515911610911,0.0007677515911610911 -1.3647058823529412,-0.6223762062368244,-0.6223762062368244,0.0014464878036044638,0.0014464878036044638,-99.2703690488107,-99.2703690488107,0.0007649540246879728,0.0007649540246879728 -1.3670588235294117,-1.9500819647327228,-1.9500819647327228,0.0009632276272601838,0.0009632276272601838,-99.98204580307022,-99.98204580307022,0.0007413871570848242,0.0007413871570848242 -1.3694117647058823,-0.6249672224352886,-0.6249672224352886,0.0004676748628773886,0.0004676748628773886,-100.62711858927824,-100.62711858927824,0.0007900264697743045,0.0007900264697743045 -1.371764705882353,1.0938570267555245,1.0938570267555245,0.001173978029975877,0.001173978029975877,-101.33316275516736,-101.33316275516736,0.0009224306276121625,0.0009224306276121625 -1.3741176470588234,0.05119067808904469,0.05119067808904469,0.00044356767178164335,0.00044356767178164335,-102.13156980892761,-102.13156980892761,0.0010667889074446506,0.0010667889074446506 -1.3764705882352941,-0.609240460701599,-0.609240460701599,0.0015090567752754224,0.0015090567752754224,-102.97194287944787,-102.97194287944787,0.001156846664464937,0.001156846664464937 -1.3788235294117648,-0.9391077623069524,-0.9391077623069524,0.0012864007064872188,0.0012864007064872188,-103.7991871506339,-103.7991871506339,0.0011807117479404354,0.0011807117479404354 -1.3811764705882352,2.168728519414334,2.168728519414334,0.0008131575784986572,0.0008131575784986572,-104.58044217893932,-104.58044217893932,0.0011784461375485519,0.0011784461375485519 -1.383529411764706,2.3774780553129937,2.3774780553129937,0.0004926433314403322,0.0004926433314403322,-105.32779334674215,-105.32779334674215,0.0012024156697132934,0.0012024156697132934 -1.3858823529411763,1.363653211005855,1.363653211005855,0.0010662676751325233,0.0010662676751325233,-106.08497214686389,-106.08497214686389,0.0012748235026135133,0.0012748235026135133 -1.388235294117647,0.8752431539844604,0.8752431539844604,0.00035316061200968776,0.00035316061200968776,-106.88505721886142,-106.88505721886142,0.0013600277254070278,0.0013600277254070278 -1.3905882352941177,1.2126343131320583,1.2126343131320583,0.0003275356993664644,0.0003275356993664644,-107.71916897160794,-107.71916897160794,0.0014085156451558295,0.0014085156451558295 -1.3929411764705881,-1.6154788922595174,-1.6154788922595174,0.00018219669753661322,0.00018219669753661322,-108.56059916069515,-108.56059916069515,0.001390297101805662,0.001390297101805662 -1.3952941176470588,-0.035518235673413674,-0.035518235673413674,0.0008363034436442918,0.0008363034436442918,-109.37797680058897,-109.37797680058897,0.0013167858559633148,0.0013167858559633148 -1.3976470588235295,-2.355913359416845,-2.355913359416845,0.001083672521932963,0.001083672521932963,-110.15526369747751,-110.15526369747751,0.0012309052309536024,0.0012309052309536024 -1.4,-3.5022892127642042,-3.5022892127642042,0.0006584256218477254,0.0006584256218477254,-110.90259894857468,-110.90259894857468,0.0011704599105484127,0.0011704599105484127 -1.4023529411764706,-3.689840412705005,-3.689840412705005,0.0002806485185677728,0.0002806485185677728,-111.6536211581087,-111.6536211581087,0.0011422579194321663,0.0011422579194321663 -1.4047058823529412,-6.772773499022071,-6.772773499022071,0.00066123327821221,0.00066123327821221,-112.43503990907756,-112.43503990907756,0.0011146636603499088,0.0011146636603499088 -1.4070588235294117,-6.729897004278154,-6.729897004278154,0.0008736060060939443,0.0008736060060939443,-113.23765638387421,-113.23765638387421,0.0010506399231728291,0.0010506399231728291 -1.4094117647058824,-7.293540220690707,-7.293540220690707,0.0017532061060437586,0.0017532061060437586,-114.02991805463192,-114.02991805463192,0.0009378280241345315,0.0009378280241345315 -1.4117647058823528,-7.662250993861951,-7.662250993861951,0.0008066307834661916,0.0008066307834661916,-114.77177413375034,-114.77177413375034,0.000798315422149044,0.000798315422149044 -1.4141176470588235,-6.880100477618997,-6.880100477618997,0.0010333837133744658,0.0010333837133744658,-115.43032786441233,-115.43032786441233,0.0006746309495225596,0.0006746309495225596 -1.4164705882352941,-8.060252123378204,-8.060252123378204,0.001745376178382084,0.001745376178382084,-116.01939070560974,-116.01939070560974,0.000608374149174297,0.000608374149174297 -1.4188235294117646,-5.7393041740311626,-5.7393041740311626,0.0013927114661554608,0.0013927114661554608,-116.61803925631818,-116.61803925631818,0.0005901834866984649,0.0005901834866984649 -1.4211764705882353,-5.848918305949346,-5.848918305949346,0.002118769205674902,0.002118769205674902,-117.26013362021969,-117.26013362021969,0.0005776501887387101,0.0005776501887387101 -1.423529411764706,-7.3051911978154696,-7.3051911978154696,0.0024620449865637353,0.0024620449865637353,-117.8959174316025,-117.8959174316025,0.0005474891646198054,0.0005474891646198054 -1.4258823529411764,-5.349840843415189,-5.349840843415189,0.0008631026175312526,0.0008631026175312526,-118.45608350825297,-118.45608350825297,0.0005150572789472887,0.0005150572789472887 -1.428235294117647,-8.048825358566726,-8.048825358566726,0.002065674662644107,0.002065674662644107,-118.9504445178154,-118.9504445178154,0.0005334085244208599,0.0005334085244208599 -1.4305882352941177,-6.0187272766728235,-6.0187272766728235,0.0021183802381327813,0.0021183802381327813,-119.49603150241849,-119.49603150241849,0.0006282524543867377,0.0006282524543867377 -1.4329411764705882,-4.083238886792714,-4.083238886792714,0.0012244014157879533,0.0012244014157879533,-120.15170052539405,-120.15170052539405,0.0007575966401776445,0.0007575966401776445 -1.4352941176470588,-5.838981712469672,-5.838981712469672,0.001353658648687596,0.001353658648687596,-120.8730445892979,-120.8730445892979,0.0008763376524763599,0.0008763376524763599 -1.4376470588235293,-5.758272607227441,-5.758272607227441,0.0008334623242930551,0.0008334623242930551,-121.61375086948104,-121.61375086948104,0.000967612561232886,0.000967612561232886 -1.44,-7.905454818003037,-7.905454818003037,0.0009192423580918872,0.0009192423580918872,-122.33725527731961,-122.33725527731961,0.001034051740756556,0.001034051740756556 -1.4423529411764706,-9.67752779163297,-9.67752779163297,0.0007502830916261985,0.0007502830916261985,-123.04008200694493,-123.04008200694493,0.0011048778802099802,0.0011048778802099802 -1.444705882352941,-9.743623495651928,-9.743623495651928,0.0015570933118917538,0.0015570933118917538,-123.73699819509301,-123.73699819509301,0.0012029678843482735,0.0012029678843482735 -1.4470588235294117,-10.086663754753385,-10.086663754753385,0.00040942151278945845,0.00040942151278945845,-124.4536967251231,-124.4536967251231,0.0013279247588112821,0.0013279247588112821 -1.4494117647058824,-12.561704345636079,-12.561704345636079,0.00047108918489567803,0.00047108918489567803,-125.1959655725162,-125.1959655725162,0.0014597577382300048,0.0014597577382300048 -1.4517647058823528,-9.690613381857046,-9.690613381857046,0.0002414345231191708,0.0002414345231191708,-125.95625550371021,-125.95625550371021,0.001569667923530784,0.001569667923530784 -1.4541176470588235,-7.4192047343980825,-7.4192047343980825,0.0005293248742615867,0.0005293248742615867,-126.7204543248538,-126.7204543248538,0.001644846477991173,0.001644846477991173 -1.4564705882352942,-7.429647320566471,-7.429647320566471,0.0007120211789171997,0.0007120211789171997,-127.4725824027589,-127.4725824027589,0.00168681276291083,0.00168681276291083 -1.4588235294117646,-8.671800692869105,-8.671800692869105,0.0004497511354152902,0.0004497511354152902,-128.2113497706205,-128.2113497706205,0.0017150897266229308,0.0017150897266229308 -1.4611764705882353,-8.174862432047112,-8.174862432047112,0.0002836788255116091,0.0002836788255116091,-128.94045986938957,-128.94045986938957,0.0017479598871207888,0.0017479598871207888 -1.4635294117647057,-9.845346980070449,-9.845346980070449,0.0002668826388151277,0.0002668826388151277,-129.67384843001074,-129.67384843001074,0.0017917357928964595,0.0017917357928964595 -1.4658823529411764,-11.71074588099545,-11.71074588099545,0.000336714947147285,0.000336714947147285,-130.42524810406053,-130.42524810406053,0.0018320733870928598,0.0018320733870928598 -1.468235294117647,-11.271590461364417,-11.271590461364417,0.0005787314687183281,0.0005787314687183281,-131.1982794140036,-131.1982794140036,0.0018436387133046546,0.0018436387133046546 -1.4705882352941178,-13.075093438785755,-13.075093438785755,0.00023600287293093828,0.00023600287293093828,-131.99379261451756,-131.99379261451756,0.0018069836889942979,0.0018069836889942979 -1.4729411764705882,-14.485858506797943,-14.485858506797943,0.00029147639711814277,0.00029147639711814277,-132.8084857514404,-132.8084857514404,0.0017135946872672261,0.0017135946872672261 -1.4752941176470589,-14.638732115558028,-14.638732115558028,0.0004189144138858371,0.0004189144138858371,-133.6481811806454,-133.6481811806454,0.0015738537807965362,0.0015738537807965362 -1.4776470588235295,-15.450036951287725,-15.450036951287725,0.00048716317755298337,0.00048716317755298337,-134.5293379533719,-134.5293379533719,0.0014106160195811407,0.0014106160195811407 -1.48,-16.048402734285688,-16.048402734285688,0.0002050759641473562,0.0002050759641473562,-135.48544635744977,-135.48544635744977,0.0012687470624994626,0.0012687470624994626 -1.4823529411764707,-15.96304021100182,-15.96304021100182,0.00046603355425134613,0.00046603355425134613,-136.54635122433467,-136.54635122433467,0.0012177557211226642,0.0012177557211226642 -1.484705882352941,-16.786858346738846,-16.786858346738846,0.00028486871954422826,0.00028486871954422826,-137.6714951848274,-137.6714951848274,0.0013624590887015354,0.0013624590887015354 -1.4870588235294118,-16.22842036319721,-16.22842036319721,0.00010383717025700977,0.00010383717025700977,-138.74380625719937,-138.74380625719937,0.00176798370923067,0.00176798370923067 -1.4894117647058822,-16.862087157574326,-16.862087157574326,0.0004864149781802848,0.0004864149781802848,-139.71592475785474,-139.71592475785474,0.0024235623773036963,0.0024235623773036963 -1.4917647058823529,-17.281366586694336,-17.281366586694336,0.00016669929504210568,0.00016669929504210568,-140.60850899712884,-140.60850899712884,0.0032886173848087575,0.0032886173848087575 -1.4941176470588236,-15.41082252954161,-15.41082252954161,9.899323402897684e-05,9.899323402897684e-05,-141.44929997896676,-141.44929997896676,0.004327063043983752,0.004327063043983752 -1.4964705882352942,-14.740126755777064,-14.740126755777064,0.00014723942669614266,0.00014723942669614266,-142.25496972139848,-142.25496972139848,0.005512478450119865,0.005512478450119865 -1.4988235294117647,-14.395525634791282,-14.395525634791282,0.00021312894262525586,0.00021312894262525586,-143.03522979986838,-143.03522979986838,0.006827984876279573,0.006827984876279573 -1.5011764705882353,-15.260522643895747,-15.260522643895747,0.0001849123761886916,0.0001849123761886916,-143.79603126803926,-143.79603126803926,0.00826778658254359,0.00826778658254359 -1.5035294117647058,-15.016878404833895,-15.016878404833895,0.0001824591367507292,0.0001824591367507292,-144.54225849580905,-144.54225849580905,0.009825823517902826,0.009825823517902826 -1.5058823529411764,-15.519252016699,-15.519252016699,0.00021085501685973193,0.00021085501685973193,-145.27767863124606,-145.27767863124606,0.011497342300363521,0.011497342300363521 -1.5082352941176471,-15.860620134261653,-15.860620134261653,0.00010604328672041115,0.00010604328672041115,-146.00491569113868,-146.00491569113868,0.013260467155840524,0.013260467155840524 -1.5105882352941176,-16.437270311609552,-16.437270311609552,8.136738968506954e-05,8.136738968506954e-05,-146.72524991608452,-146.72524991608452,0.015075150330640639,0.015075150330640639 -1.5129411764705882,-15.523257643770858,-15.523257643770858,0.00014404097973641684,0.00014404097973641684,-147.43873488735628,-147.43873488735628,0.01688900328537338,0.01688900328537338 -1.5152941176470587,-15.803231590463666,-15.803231590463666,8.154035333118829e-05,8.154035333118829e-05,-148.14389047862068,-148.14389047862068,0.018650678289791094,0.018650678289791094 -1.5176470588235293,-15.612209459718246,-15.612209459718246,0.00010719812382235473,0.00010719812382235473,-148.83902144420173,-148.83902144420173,0.02031375205924181,0.02031375205924181 -1.52,-15.709696441497176,-15.709696441497176,0.00014351236377528655,0.00014351236377528655,-149.52205180064354,-149.52205180064354,0.02186186407204301,0.02186186407204301 -1.5223529411764707,-15.73573298870335,-15.73573298870335,0.00014009567621866051,0.00014009567621866051,-150.1914787114819,-150.1914787114819,0.023303009633869606,0.023303009633869606 -1.5247058823529411,-15.982362136566529,-15.982362136566529,0.00014749552104788277,0.00014749552104788277,-150.84642110504225,-150.84642110504225,0.024677128280135394,0.024677128280135394 -1.5270588235294118,-16.086953847441187,-16.086953847441187,0.00014116232218533336,0.00014116232218533336,-151.4868373502055,-151.4868373502055,0.026042011606070472,0.026042011606070472 -1.5294117647058822,-16.115862936021017,-16.115862936021017,0.0001348608363676791,0.0001348608363676791,-152.1135392347889,-152.1135392347889,0.02746509427692077,0.02746509427692077 -1.531764705882353,-16.277353728328364,-16.277353728328364,0.00012288917176292425,0.00012288917176292425,-152.72802080689598,-152.72802080689598,0.02902387560800912,0.02902387560800912 -1.5341176470588236,-16.000238632298483,-16.000238632298483,0.00012112153604699346,0.00012112153604699346,-153.33200576705846,-153.33200576705846,0.030782471345370856,0.030782471345370856 -1.536470588235294,-15.922718676938949,-15.922718676938949,0.00014007409554679954,0.00014007409554679954,-153.927541216239,-153.927541216239,0.032818848824594904,0.032818848824594904 -1.5388235294117647,-15.962128537531937,-15.962128537531937,0.00016317683433841366,0.00016317683433841366,-154.51661174195155,-154.51661174195155,0.03520540016025952,0.03520540016025952 -1.5411764705882351,-16.00896740111682,-16.00896740111682,0.00014879289158822696,0.00014879289158822696,-155.10167357255918,-155.10167357255918,0.03801861877855428,0.03801861877855428 -1.5435294117647058,-16.277461493387463,-16.277461493387463,0.0001514827491270558,0.0001514827491270558,-155.6850360953105,-155.6850360953105,0.041326378646269805,0.041326378646269805 -1.5458823529411767,-16.292317808791424,-16.292317808791424,0.00014209604078617059,0.00014209604078617059,-156.26888648620564,-156.26888648620564,0.0451782950868703,0.0451782950868703 -1.5482352941176472,-16.063494571862975,-16.063494571862975,0.00011800961669245216,0.00011800961669245216,-156.8549439614008,-156.8549439614008,0.049607693464281594,0.049607693464281594 -1.5505882352941176,-16.208784228697798,-16.208784228697798,0.00011667832488286126,0.00011667832488286126,-157.44432135866668,-157.44432135866668,0.05462175099079439,0.05462175099079439 -1.5529411764705883,-16.221054952504453,-16.221054952504453,0.00010666871840355919,0.00010666871840355919,-158.03750128663722,-158.03750128663722,0.060207535003193036,0.060207535003193036 -1.5552941176470587,-16.241427564223553,-16.241427564223553,0.00012384484303035236,0.00012384484303035236,-158.6346773187294,-158.6346773187294,0.06632959968476855,0.06632959968476855 -1.5576470588235294,-16.31498769778214,-16.31498769778214,0.0001230926030961866,0.0001230926030961866,-159.23556778543193,-159.23556778543193,0.0729402153543118,0.0729402153543118 -1.5599999999999998,-16.301404546238135,-16.301404546238135,0.00011374204365377494,0.00011374204365377494,-159.83964383757922,-159.83964383757922,0.07996435241854184,0.07996435241854184 -1.5623529411764705,-16.463182878114264,-16.463182878114264,0.0001229093710385136,0.0001229093710385136,-160.44617249057004,-160.44617249057004,0.08731345370512097,0.08731345370512097 -1.5647058823529412,-16.49356829091719,-16.49356829091719,0.00011424411231790515,0.00011424411231790515,-161.05426034473692,-161.05426034473692,0.09489685644334649,0.09489685644334649 -1.5670588235294118,-16.52439283925563,-16.52439283925563,0.00011155431137093501,0.00011155431137093501,-161.662916448299,-161.662916448299,0.10262269978779877,0.10262269978779877 -1.5694117647058823,-16.561598318516765,-16.561598318516765,0.00010150635292676915,0.00010150635292676915,-162.27127799503253,-162.27127799503253,0.11042096148079746,0.11042096148079746 -1.571764705882353,-16.559268547058313,-16.559268547058313,0.00010329894400316988,0.00010329894400316988,-162.87853481967878,-162.87853481967878,0.11824389846955205,0.11824389846955205 -1.5741176470588236,-16.56278842999815,-16.56278842999815,0.00010282813308067232,0.00010282813308067232,-163.48422961159355,-163.48422961159355,0.12606502942303496,0.12606502942303496 -1.576470588235294,-16.57164963025664,-16.57164963025664,0.00011046947265308849,0.00011046947265308849,-164.08806981926855,-164.08806981926855,0.1338730551958328,0.1338730551958328 -1.5788235294117647,-16.59876027115252,-16.59876027115252,0.00010100236969960951,0.00010100236969960951,-164.69001758359286,-164.69001758359286,0.14164910938138942,0.14164910938138942 -1.5811764705882352,-16.686193880235546,-16.686193880235546,0.0001140711033331743,0.0001140711033331743,-165.29019216971275,-165.29019216971275,0.14935785137237106,0.14935785137237106 -1.5835294117647059,-16.761816032592154,-16.761816032592154,0.00011638984637691988,0.00011638984637691988,-165.88860938113305,-165.88860938113305,0.15694335485968142,0.15694335485968142 -1.5858823529411765,-16.772182133638257,-16.772182133638257,0.00010604062589074205,0.00010604062589074205,-166.4852496254626,-166.4852496254626,0.16431659562747022,0.16431659562747022 -1.5882352941176474,-16.831412953412304,-16.831412953412304,0.00010249752058950204,0.00010249752058950204,-167.07993967045218,-167.07993967045218,0.17138515974735588,0.17138515974735588 -1.5905882352941176,-16.853646297409085,-16.853646297409085,9.634448701602778e-05,9.634448701602778e-05,-167.67232490524586,-167.67232490524586,0.17806816575762088,0.17806816575762088 -1.592941176470588,-16.843834091575438,-16.843834091575438,9.822629140077092e-05,9.822629140077092e-05,-168.26202468420777,-168.26202468420777,0.18430578485513224,0.18430578485513224 -1.5952941176470588,-16.868112704473333,-16.868112704473333,9.830285758311145e-05,9.830285758311145e-05,-168.8486771035976,-168.8486771035976,0.19007116656027823,0.19007116656027823 -1.5976470588235294,-16.896367653677917,-16.896367653677917,0.00010207438792722811,0.00010207438792722811,-169.43205484950957,-169.43205484950957,0.19536920048901557,0.19536920048901557 -1.6,-16.924168459120885,-16.924168459120885,0.00010172808020586315,0.00010172808020586315,-170.01197844629127,-170.01197844629127,0.20021614251726016,0.20021614251726016 -1.6023529411764705,-16.973614363357864,-16.973614363357864,0.00010032309788872212,0.00010032309788872212,-170.58841926009532,-170.58841926009532,0.20463575582379695,0.20463575582379695 -1.6047058823529412,-17.02396721712976,-17.02396721712976,0.00010019402112467815,0.00010019402112467815,-171.1615099499755,-171.1615099499755,0.20863424287317406,0.20863424287317406 -1.6070588235294117,-17.03923864193205,-17.03923864193205,9.89989728489613e-05,9.89989728489613e-05,-171.73119182812087,-171.73119182812087,0.21221267375099065,0.21221267375099065 -1.6094117647058825,-17.138119301508745,-17.138119301508745,8.913257196736262e-05,8.913257196736262e-05,-172.29753630411346,-172.29753630411346,0.21536386145812172,0.21536386145812172 -1.611764705882353,-17.12335976376158,-17.12335976376158,8.818283422979454e-05,8.818283422979454e-05,-172.8604540386616,-172.8604540386616,0.21807986454279676,0.21807986454279676 -1.6141176470588237,-17.131379170863266,-17.131379170863266,8.528611673329073e-05,8.528611673329073e-05,-173.41979392992906,-173.41979392992906,0.22037410832869134,0.22037410832869134 -1.616470588235294,-17.146008256084027,-17.146008256084027,8.491678393375198e-05,8.491678393375198e-05,-173.97549657717818,-173.97549657717818,0.2222730146656473,0.2222730146656473 -1.6188235294117648,-17.178467452380644,-17.178467452380644,8.356951633269466e-05,8.356951633269466e-05,-174.52752927540192,-174.52752927540192,0.22381594809255037,0.22381594809255037 -1.6211764705882352,-17.19465374966151,-17.19465374966151,8.509274673244833e-05,8.509274673244833e-05,-175.07583004437816,-175.07583004437816,0.22504738865018903,0.22504738865018903 -1.6235294117647059,-17.251366201158415,-17.251366201158415,8.79706186600119e-05,8.79706186600119e-05,-175.62053645034746,-175.62053645034746,0.2259992689282069,0.2259992689282069 -1.6258823529411766,-17.37356015949463,-17.37356015949463,8.587546725797888e-05,8.587546725797888e-05,-176.16163387918928,-176.16163387918928,0.22670514029298947,0.22670514029298947 -1.6282352941176468,-17.387858624621472,-17.387858624621472,8.050819105684776e-05,8.050819105684776e-05,-176.6991501712184,-176.6991501712184,0.22718443162657806,0.22718443162657806 -1.630588235294118,-17.467745480884197,-17.467745480884197,7.746036018704818e-05,7.746036018704818e-05,-177.23303531542797,-177.23303531542797,0.22746943354501592,0.22746943354501592 -1.6329411764705881,-17.495756343321716,-17.495756343321716,7.58191749415241e-05,7.58191749415241e-05,-177.76326494547618,-177.76326494547618,0.22760248806733424,0.22760248806733424 -1.6352941176470588,-17.515497066939897,-17.515497066939897,6.482266555632008e-05,6.482266555632008e-05,-178.28976098132458,-178.28976098132458,0.2276497597105466,0.2276497597105466 -1.6376470588235295,-17.50375762878691,-17.50375762878691,7.346128832516349e-05,7.346128832516349e-05,-178.81258644552602,-178.81258644552602,0.227690199591452,0.227690199591452 -1.6400000000000001,-17.567868291246917,-17.567868291246917,7.5088087056608e-05,7.5088087056608e-05,-179.33199158943498,-179.33199158943498,0.2277956572729161,0.2277956572729161 -1.6423529411764706,-17.630348539942997,-17.630348539942997,7.384571756664465e-05,7.384571756664465e-05,-179.84821079713743,-179.84821079713743,0.22802813548937872,0.22802813548937872 -1.6447058823529415,-17.709722550898658,-17.709722550898658,7.886218169494788e-05,7.886218169494788e-05,-180.36158399643824,-180.36158399643824,0.22841810956813863,0.22841810956813863 -1.6470588235294117,-17.779368377155425,-17.779368377155425,8.054809361194043e-05,8.054809361194043e-05,-180.87233116988958,-180.87233116988958,0.22897168051957545,0.22897168051957545 -1.6494117647058824,-17.87862323544879,-17.87862323544879,7.427381679458051e-05,7.427381679458051e-05,-181.38073144264652,-181.38073144264652,0.2296845964361033,0.2296845964361033 -1.651764705882353,-17.887011536174995,-17.887011536174995,7.497441477587294e-05,7.497441477587294e-05,-181.88680403853309,-181.88680403853309,0.23055991021249447,0.23055991021249447 -1.6541176470588237,-17.879812908470004,-17.879812908470004,7.163329037724492e-05,7.163329037724492e-05,-182.3906781435365,-182.3906781435365,0.2316179991153557,0.2316179991153557 -1.6564705882352944,-17.902683050956107,-17.902683050956107,7.164878094938425e-05,7.164878094938425e-05,-182.8924027754532,-182.8924027754532,0.23290376761972825,0.23290376761972825 -1.6588235294117644,-18.021258380380445,-18.021258380380445,6.48920015383781e-05,6.48920015383781e-05,-183.39219770750776,-183.39219770750776,0.2344731152747412,0.2344731152747412 -1.6611764705882353,-17.87365739267966,-17.87365739267966,7.675482718304769e-05,7.675482718304769e-05,-183.89043281614866,-183.89043281614866,0.23636883888604626,0.23636883888604626 -1.663529411764706,-17.95772376233915,-17.95772376233915,7.826213931463583e-05,7.826213931463583e-05,-184.38750721170734,-184.38750721170734,0.23860867894390572,0.23860867894390572 -1.6658823529411766,-18.034492510897888,-18.034492510897888,8.010776582200364e-05,8.010776582200364e-05,-184.88378536319036,-184.88378536319036,0.24117152871810726,0.24117152871810726 -1.668235294117647,-18.092701392741677,-18.092701392741677,8.125626780315037e-05,8.125626780315037e-05,-185.3795858954329,-185.3795858954329,0.24402112343618965,0.24402112343618965 -1.670588235294118,-18.19419763080422,-18.19419763080422,7.499644803097743e-05,7.499644803097743e-05,-185.8750358892311,-185.8750358892311,0.24711574831488933,0.24711574831488933 -1.672941176470588,-18.162777207629524,-18.162777207629524,6.451627660600624e-05,6.451627660600624e-05,-186.37014338106374,-186.37014338106374,0.25043892512630894,0.25043892512630894 -1.6752941176470588,-18.208878577397815,-18.208878577397815,6.626101272240964e-05,6.626101272240964e-05,-186.86497516123933,-186.86497516123933,0.2540124572958805,0.2540124572958805 -1.6776470588235295,-18.23322230100395,-18.23322230100395,6.731442543827926e-05,6.731442543827926e-05,-187.35983765179566,-187.35983765179566,0.2578820532799743,0.2578820532799743 -1.68,-18.1432491621601,-18.1432491621601,7.091389003488531e-05,7.091389003488531e-05,-187.85511572618418,-187.85511572618418,0.26208348760012984,0.26208348760012984 -1.6823529411764706,-18.237064696664252,-18.237064696664252,6.156724255720681e-05,6.156724255720681e-05,-188.35142523921107,-188.35142523921107,0.2666060290706204,0.2666060290706204 -1.684705882352941,-18.303027034056488,-18.303027034056488,6.171322399236612e-05,6.171322399236612e-05,-188.84941749484256,-188.84941749484256,0.2713531432518367,0.2713531432518367 -1.6870588235294117,-18.378376696178588,-18.378376696178588,7.403003470986242e-05,7.403003470986242e-05,-189.3496513359481,-189.3496513359481,0.2761230383451165,0.2761230383451165 -1.6894117647058824,-18.410851178956154,-18.410851178956154,6.822244637784715e-05,6.822244637784715e-05,-189.85231000678095,-189.85231000678095,0.28064544084975196,0.28064544084975196 -1.6917647058823528,-18.54899809368395,-18.54899809368395,7.056714112308787e-05,7.056714112308787e-05,-190.35716349298227,-190.35716349298227,0.28461708761584487,0.28461708761584487 -1.6941176470588235,-18.624140407103482,-18.624140407103482,6.721296505145919e-05,6.721296505145919e-05,-190.86359581789372,-190.86359581789372,0.28776529494559383,0.28776529494559383 -1.6964705882352942,-18.73136005189341,-18.73136005189341,6.83456591992302e-05,6.83456591992302e-05,-191.37069074493587,-191.37069074493587,0.2899066178136215,0.2899066178136215 -1.6988235294117644,-18.769381672578945,-18.769381672578945,5.7410554002052134e-05,5.7410554002052134e-05,-191.87746480290582,-191.87746480290582,0.2909925521766939,0.2909925521766939 -1.7011764705882353,-18.7696794715035,-18.7696794715035,5.7360853642172086e-05,5.7360853642172086e-05,-192.38296388606463,-192.38296388606463,0.29110316314674894,0.29110316314674894 -1.7035294117647062,-18.733692205620947,-18.733692205620947,5.8503461462227485e-05,5.8503461462227485e-05,-192.8865931754312,-192.8865931754312,0.29043221829709487,0.29043221829709487 -1.7058823529411766,-18.792106853146908,-18.792106853146908,6.03772663703768e-05,6.03772663703768e-05,-193.3881045942501,-193.3881045942501,0.28922341949941927,0.28922341949941927 -1.7082352941176469,-18.811644869583343,-18.811644869583343,6.618147917864667e-05,6.618147917864667e-05,-193.88772310123818,-193.88772310123818,0.2877112645059209,0.2877112645059209 -1.7105882352941175,-18.912876890544794,-18.912876890544794,7.416775189177394e-05,7.416775189177394e-05,-194.38591330197102,-194.38591330197102,0.28605287187383865,0.28605287187383865 -1.7129411764705882,-19.0397879444314,-19.0397879444314,7.325828193653913e-05,7.325828193653913e-05,-194.88347693212773,-194.88347693212773,0.28428976547651624,0.28428976547651624 -1.7152941176470589,-19.109515409479766,-19.109515409479766,7.361894628476262e-05,7.361894628476262e-05,-195.38103181345596,-195.38103181345596,0.2823431822559632,0.2823431822559632 -1.7176470588235295,-19.154352334847026,-19.154352334847026,7.16975378329573e-05,7.16975378329573e-05,-195.87896526947821,-195.87896526947821,0.28006296783029594,0.28006296783029594 -1.72,-19.15037141750498,-19.15037141750498,7.14710672468112e-05,7.14710672468112e-05,-196.37722395750023,-196.37722395750023,0.2772651722325352,0.2772651722325352 -1.7223529411764709,-19.499374632818025,-19.499374632818025,7.356295439456212e-05,7.356295439456212e-05,-196.8755071557683,-196.8755071557683,0.27381305286749463,0.27381305286749463 -1.7247058823529409,-19.243456465676356,-19.243456465676356,6.55209061432151e-05,6.55209061432151e-05,-197.3731983448933,-197.3731983448933,0.2696406903266784,0.2696406903266784 -1.7270588235294118,-19.238791499978436,-19.238791499978436,6.833622806273137e-05,6.833622806273137e-05,-197.86957004827275,-197.86957004827275,0.2648109356758543,0.2648109356758543 -1.7294117647058824,-19.222744197862433,-19.222744197862433,6.625212620340153e-05,6.625212620340153e-05,-198.3641123486127,-198.3641123486127,0.25945816483650347,0.25945816483650347 -1.731764705882353,-19.21056922420269,-19.21056922420269,7.220451983638598e-05,7.220451983638598e-05,-198.85649377966263,-198.85649377966263,0.25378910030663954,0.25378910030663954 -1.7341176470588235,-19.172319773411967,-19.172319773411967,8.26162043414135e-05,8.26162043414135e-05,-199.34691180019033,-199.34691180019033,0.24800711563431568,0.24800711563431568 -1.7364705882352938,-19.192403569190684,-19.192403569190684,8.398045755889573e-05,8.398045755889573e-05,-199.8357779960087,-199.8357779960087,0.24226358465595935,0.24226358465595935 -1.7388235294117647,-19.28216501416693,-19.28216501416693,8.558784543852982e-05,8.558784543852982e-05,-200.32389188456787,-200.32389188456787,0.23661587832620115,0.23661587832620115 -1.7411764705882353,-19.529216983407856,-19.529216983407856,7.943272575448207e-05,7.943272575448207e-05,-200.8119991294151,-200.8119991294151,0.23102634639584074,0.23102634639584074 -1.743529411764706,-19.5891491822146,-19.5891491822146,7.291703923088583e-05,7.291703923088583e-05,-201.30076228875774,-201.30076228875774,0.22536858975147644,0.22536858975147644 -1.7458823529411764,-19.61751032678061,-19.61751032678061,7.73337703349189e-05,7.73337703349189e-05,-201.79042205292336,-201.79042205292336,0.21948056418020098,0.21948056418020098 -1.748235294117647,-19.62216279210753,-19.62216279210753,6.689243607961942e-05,6.689243607961942e-05,-202.28094311852095,-202.28094311852095,0.21319800571381337,0.21319800571381337 -1.7505882352941176,-19.675975347165245,-19.675975347165245,6.846540356967062e-05,6.846540356967062e-05,-202.77174656348,-202.77174656348,0.20641310155120396,0.20641310155120396 -1.7529411764705882,-19.40138362582226,-19.40138362582226,6.559723111778712e-05,6.559723111778712e-05,-203.26210494676567,-203.26210494676567,0.19909726150372847,0.19909726150372847 -1.7552941176470591,-19.601715209598325,-19.601715209598325,7.037708574362205e-05,7.037708574362205e-05,-203.75123558663284,-203.75123558663284,0.19129731088572657,0.19129731088572657 -1.7576470588235293,-19.633357318550576,-19.633357318550576,6.670153423763565e-05,6.670153423763565e-05,-204.23826878336462,-204.23826878336462,0.18313910158598157,0.18313910158598157 -1.76,-19.55187924947923,-19.55187924947923,8.857938013970289e-05,8.857938013970289e-05,-204.7225978126848,-204.7225978126848,0.17478397950826433,0.17478397950826433 -1.7623529411764705,-19.735770015032234,-19.735770015032234,7.9933185423733e-05,7.9933185423733e-05,-205.2039695937116,-205.2039695937116,0.16639590002217064,0.16639590002217064 -1.7647058823529411,-20.00779024008127,-20.00779024008127,9.521278043958004e-05,9.521278043958004e-05,-205.68233805785587,-205.68233805785587,0.15812301628390651,0.15812301628390651 -1.7670588235294116,-19.666519052944416,-19.666519052944416,8.81868794426414e-05,8.81868794426414e-05,-206.157941699648,-206.157941699648,0.15006341243746987,0.15006341243746987 -1.7694117647058827,-19.81811340987188,-19.81811340987188,8.92013768135405e-05,8.92013768135405e-05,-206.63115960828318,-206.63115960828318,0.1422623468031227,0.1422623468031227 -1.7717647058823531,-20.24461005124971,-20.24461005124971,7.720922854305162e-05,7.720922854305162e-05,-207.10228541935572,-207.10228541935572,0.13472950376535991,0.13472950376535991 -1.7741176470588236,-20.19101067910437,-20.19101067910437,5.517119215014922e-05,5.517119215014922e-05,-207.5715120907348,-207.5715120907348,0.12743894668910796,0.12743894668910796 -1.776470588235294,-20.73243835378437,-20.73243835378437,5.4072255434998375e-05,5.4072255434998375e-05,-208.0387612665171,-208.0387612665171,0.12036927680548849,0.12036927680548849 -1.7788235294117647,-19.889116762350874,-19.889116762350874,4.8050939455095784e-05,4.8050939455095784e-05,-208.50382948895043,-208.50382948895043,0.11351870746821358,0.11351870746821358 -1.7811764705882354,-19.768057988030407,-19.768057988030407,5.866708054134035e-05,5.866708054134035e-05,-208.96622271101776,-208.96622271101776,0.10690104638894998,0.10690104638894998 -1.7835294117647063,-19.792281111628753,-19.792281111628753,6.297027600751085e-05,6.297027600751085e-05,-209.42562557402638,-209.42562557402638,0.1005608934264607,0.1005608934264607 -1.7858823529411765,-19.92389039295808,-19.92389039295808,0.00010155961251066069,0.00010155961251066069,-209.8817867393438,-209.8817867393438,0.0945456484820354,0.0945456484820354 -1.7882352941176471,-20.14203622597678,-20.14203622597678,0.00012075235203574756,0.00012075235203574756,-210.33483755216383,-210.33483755216383,0.0889064148187683,0.0889064148187683 -1.7905882352941174,-20.099829784025932,-20.099829784025932,0.00010615983314020533,0.00010615983314020533,-210.78507507255424,-210.78507507255424,0.0836733189209892,0.0836733189209892 -1.7929411764705883,-20.47617939166599,-20.47617939166599,0.00010601429854609879,0.00010601429854609879,-211.23309365258513,-211.23309365258513,0.07884346409203956,0.07884346409203956 -1.795294117647059,-20.549381424308933,-20.549381424308933,0.00011779311343577796,0.00011779311343577796,-211.67962210635594,-211.67962210635594,0.0743897841606333,0.0743897841606333 -1.7976470588235294,-20.655334927161416,-20.655334927161416,8.112308370933183e-05,8.112308370933183e-05,-212.12508230138295,-212.12508230138295,0.0702715913441941,0.0702715913441941 -1.8,-21.22006046357928,-21.22006046357928,5.7469868635555345e-05,5.7469868635555345e-05,-212.56979219430133,-212.56979219430133,0.06643873536897842,0.06643873536897842 diff --git a/sparameters/rotate_f258530e_75dfd42e.yml b/sparameters/rotate_f258530e_75dfd42e.yml deleted file mode 100644 index badaa283..00000000 --- a/sparameters/rotate_f258530e_75dfd42e.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 30 -fiber_xoffset: 27 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 199.21872282028198 -compute_time_minutes: 3.3203120470046996 diff --git a/sparameters/rotate_f258530e_86a0c5f2.csv b/sparameters/rotate_f258530e_86a0c5f2.csv deleted file mode 100644 index 6d12697f..00000000 --- a/sparameters/rotate_f258530e_86a0c5f2.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,2.8698915033984287,2.8698915033984287,0.04445040903250752,0.04445040903250752,-2.69223403169653,-2.69223403169653,0.0016810844075866183,0.0016810844075866183 -1.2023529411764706,2.9516080428347737,2.9516080428347737,0.045686235100659625,0.045686235100659625,-3.7960460593993717,-3.7960460593993717,0.0015885340699680474,0.0015885340699680474 -1.204705882352941,3.032391757576215,3.032391757576215,0.043252689850982746,0.043252689850982746,-4.896075410481307,-4.896075410481307,0.0014973643918840434,0.0014973643918840434 -1.2070588235294117,3.026360414448658,3.026360414448658,0.03861705789303211,0.03861705789303211,-5.99521984194234,-5.99521984194234,0.0014112496212195557,0.0014112496212195557 -1.2094117647058824,2.91196945893826,2.91196945893826,0.03683123044783275,0.03683123044783275,-7.092944751914083,-7.092944751914083,0.0013340115595767196,0.0013340115595767196 -1.2117647058823529,2.8316507406756344,2.8316507406756344,0.04036092647714967,0.04036092647714967,-8.186142524902413,-8.186142524902413,0.001265960249374256,0.001265960249374256 -1.2141176470588235,2.8799617041754018,2.8799617041754018,0.04507334218502131,0.04507334218502131,-9.27206596970119,-9.27206596970119,0.0012045466728609516,0.0012045466728609516 -1.216470588235294,2.981532231624398,2.981532231624398,0.04646161171333875,0.04646161171333875,-10.351610334255053,-10.351610334255053,0.0011446470075121222,0.0011446470075121222 -1.2188235294117646,3.0886350035203063,3.0886350035203063,0.04284144855845902,0.04284144855845902,-11.42772730691185,-11.42772730691185,0.0010847558319617898,0.0010847558319617898 -1.2211764705882353,3.0866724738525964,3.0866724738525964,0.03710503311260026,0.03710503311260026,-12.503679940559582,-12.503679940559582,0.001028121911095428,0.001028121911095428 -1.2235294117647058,2.9379389610444075,2.9379389610444075,0.03473216154300479,0.03473216154300479,-13.57878295286909,-13.57878295286909,0.0009779423716766143,0.0009779423716766143 -1.2258823529411764,2.824871780370801,2.824871780370801,0.039121727495121314,0.039121727495121314,-14.648988290738957,-14.648988290738957,0.000934787188383086,0.000934787188383086 -1.228235294117647,2.8770366778406093,2.8770366778406093,0.04499605377603837,0.04499605377603837,-15.711482521742566,-15.711482521742566,0.0008962948360669897,0.0008962948360669897 -1.2305882352941175,3.022041770994443,3.022041770994443,0.046808379924285014,0.046808379924285014,-16.766010854170347,-16.766010854170347,0.0008573890338668954,0.0008573890338668954 -1.2329411764705882,3.1495726972120317,3.1495726972120317,0.042787448087215525,0.042787448087215525,-17.817627236494783,-17.817627236494783,0.0008178454896254789,0.0008178454896254789 -1.2352941176470589,3.156807322943324,3.156807322943324,0.035838558269215746,0.035838558269215746,-18.869274206647546,-18.869274206647546,0.0007794062712382548,0.0007794062712382548 -1.2376470588235293,2.978464512005201,2.978464512005201,0.031953926038460326,0.031953926038460326,-19.92108157175648,-19.92108157175648,0.0007455268962284442,0.0007455268962284442 -1.24,2.8158299938751314,2.8158299938751314,0.036795717722531984,0.036795717722531984,-20.968367321471554,-20.968367321471554,0.0007172695197864178,0.0007172695197864178 -1.2423529411764704,2.861774506622111,2.861774506622111,0.043847226082619546,0.043847226082619546,-22.007513444036316,-22.007513444036316,0.0006924519409108805,0.0006924519409108805 -1.244705882352941,3.0305367588243515,3.0305367588243515,0.04702295067339059,0.04702295067339059,-23.038582340878257,-23.038582340878257,0.0006671175566111925,0.0006671175566111925 -1.2470588235294118,3.19474096364005,3.19474096364005,0.043674458583368304,0.043674458583368304,-24.066058265688497,-24.066058265688497,0.0006401888447379341,0.0006401888447379341 -1.2494117647058822,3.263018151662434,3.263018151662434,0.03552067235324038,0.03552067235324038,-25.09441778655943,-25.09441778655943,0.0006133637909899233,0.0006133637909899233 -1.251764705882353,3.0865640522450324,3.0865640522450324,0.02905052258548472,0.02905052258548472,-26.123873659088922,-26.123873659088922,0.000589973530887429,0.000589973530887429 -1.2541176470588236,2.833928463257827,2.833928463257827,0.032523823276309136,0.032523823276309136,-27.150178990630156,-27.150178990630156,0.0005713148470308059,0.0005713148470308059 -1.256470588235294,2.8368415891745786,2.8368415891745786,0.04085203661678708,0.04085203661678708,-28.167639976306745,-28.167639976306745,0.0005560613358699493,0.0005560613358699493 -1.2588235294117647,3.0053302805841047,3.0053302805841047,0.046093797965975715,0.046093797965975715,-29.17627908113797,-29.17627908113797,0.000540831605586242,0.000540831605586242 -1.2611764705882353,3.206462074576909,3.206462074576909,0.04421348118593378,0.04421348118593378,-30.179331180649953,-30.179331180649953,0.0005240251993788064,0.0005240251993788064 -1.2635294117647058,3.348864116705374,3.348864116705374,0.03666696194936051,0.03666696194936051,-31.181684291848043,-31.181684291848043,0.0005060942595856093,0.0005060942595856093 -1.2658823529411765,3.2691889127075373,3.2691889127075373,0.027032507656025922,0.027032507656025922,-32.186016051378495,-32.186016051378495,0.0004900408228728635,0.0004900408228728635 -1.268235294117647,2.905579490985079,2.905579490985079,0.025951921299799296,0.025951921299799296,-33.18811411457889,-33.18811411457889,0.00047794358750596796,0.00047794358750596796 -1.2705882352941176,2.7783595459762163,2.7783595459762163,0.03462374865841466,0.03462374865841466,-34.18212447056492,-34.18212447056492,0.0004690346901933642,0.0004690346901933642 -1.2729411764705882,2.9145280553540593,2.9145280553540593,0.04253684537545649,0.04253684537545649,-35.165133888660385,-35.165133888660385,0.00046088536445101463,0.00046088536445101463 -1.2752941176470587,3.1386967674227706,3.1386967674227706,0.04410638199373797,0.04410638199373797,-36.13933500300878,-36.13933500300878,0.00045085874679318415,0.00045085874679318415 -1.2776470588235294,3.3548414018594164,3.3548414018594164,0.038844607660332986,0.038844607660332986,-37.11074633664066,-37.11074633664066,0.0004387715357923448,0.0004387715357923448 -1.28,3.431813033553466,3.431813033553466,0.028400671110641304,0.028400671110641304,-38.08347657282172,-38.08347657282172,0.0004262584610388044,0.0004262584610388044 -1.2823529411764705,3.1106839124272714,3.1106839124272714,0.020603359557293793,0.020603359557293793,-39.05674687174553,-39.05674687174553,0.00041575372841513896,0.00041575372841513896 -1.2847058823529411,2.716503496960841,2.716503496960841,0.02613645999041717,0.02613645999041717,-40.02497030142459,-40.02497030142459,0.00040813913186813665,0.00040813913186813665 -1.2870588235294118,2.746486707864043,2.746486707864043,0.036472881901931035,0.036472881901931035,-40.983210850101194,-40.983210850101194,0.00040206016747290445,0.00040206016747290445 -1.2894117647058823,2.961771828525558,2.961771828525558,0.042667787849476016,0.042667787849476016,-41.93099645937384,-41.93099645937384,0.0003948718870871675,0.0003948718870871675 -1.291764705882353,3.216889682896845,3.216889682896845,0.04176019050385243,0.04176019050385243,-42.873124307199355,-42.873124307199355,0.00038520044236766104,0.00038520044236766104 -1.2941176470588236,3.4346021380478087,3.4346021380478087,0.033668153444312995,0.033668153444312995,-43.81541595867813,-43.81541595867813,0.00037360426788581274,0.00037360426788581274 -1.296470588235294,3.4422148992891612,3.4422148992891612,0.02187021465259776,0.02187021465259776,-44.7610209985944,-44.7610209985944,0.00036200765417928726,0.00036200765417928726 -1.2988235294117647,2.8554769677137424,2.8554769677137424,0.01722687419353094,0.01722687419353094,-45.70756474084292,-45.70756474084292,0.00035267521530482295,0.00035267521530482295 -1.3011764705882352,2.5536210916362805,2.5536210916362805,0.027327336045283347,0.027327336045283347,-46.648727440318865,-46.648727440318865,0.00034574489715597347,0.00034574489715597347 -1.3035294117647058,2.7016240978842188,2.7016240978842188,0.038387833989438486,0.038387833989438486,-47.580179916624054,-47.580179916624054,0.00033976456169417,0.00033976456169417 -1.3058823529411765,2.9693876728890976,2.9693876728890976,0.04382367239040297,0.04382367239040297,-48.50260334996258,-48.50260334996258,0.000332390054007045,0.000332390054007045 -1.308235294117647,3.2597069781616166,3.2597069781616166,0.041317040437034415,0.041317040437034415,-49.42149410508617,-49.42149410508617,0.0003228480594070596,0.0003228480594070596 -1.3105882352941176,3.504580701249966,3.504580701249966,0.031422773101415745,0.031422773101415745,-50.34322675698628,-50.34322675698628,0.0003118368170799475,0.0003118368170799475 -1.3129411764705883,3.48886153420914,3.48886153420914,0.017963326066142045,0.017963326066142045,-51.27025649295276,-51.27025649295276,0.00030156238230621426,0.00030156238230621426 -1.3152941176470587,2.6157306299190144,2.6157306299190144,0.015024147499746232,0.015024147499746232,-52.199243195273425,-52.199243195273425,0.000293862190649732,0.000293862190649732 -1.3176470588235294,2.415731479870684,2.415731479870684,0.028870861703864877,0.028870861703864877,-53.12243201591811,-53.12243201591811,0.0002888032792513182,0.0002888032792513182 -1.32,2.6442497824034974,2.6442497824034974,0.04100629056403967,0.04100629056403967,-54.03464229049387,-54.03464229049387,0.0002847565652166329,0.0002847565652166329 -1.3223529411764705,2.959294550250248,2.959294550250248,0.04628002336800969,0.04628002336800969,-54.93715346887395,-54.93715346887395,0.00027962385094583496,0.00027962385094583496 -1.3247058823529412,3.285222610488016,3.285222610488016,0.043562517623596905,0.043562517623596905,-55.83617780769554,-55.83617780769554,0.00027243491773724845,0.00027243491773724845 -1.3270588235294118,3.591025293861349,3.591025293861349,0.032789013908715525,0.032789013908715525,-56.73811295098851,-56.73811295098851,0.00026402206728985786,0.00026402206728985786 -1.3294117647058823,3.7032796476558505,3.7032796476558505,0.01659257118367631,0.01659257118367631,-57.646391284474205,-57.646391284474205,0.0002563365016072258,0.0002563365016072258 -1.331764705882353,2.4745271950100607,2.4745271950100607,0.011290487228344548,0.011290487228344548,-58.55712783211129,-58.55712783211129,0.00025121653320534556,0.00025121653320534556 -1.3341176470588234,2.2680911021568315,2.2680911021568315,0.027626065733608006,0.027626065733608006,-59.461428310558134,-59.461428310558134,0.0002488219502794035,0.0002488219502794035 -1.336470588235294,2.5466188002005907,2.5466188002005907,0.04144285438093471,0.04144285438093471,-60.352765294186746,-60.352765294186746,0.0002476214533037814,0.0002476214533037814 -1.3388235294117647,2.895269550952838,2.895269550952838,0.04794667084813105,0.04794667084813105,-61.231813829905335,-61.231813829905335,0.0002455614510998567,0.0002455614510998567 -1.3411764705882352,3.250920246915472,3.250920246915472,0.046435965312492625,0.046435965312492625,-62.10428864787798,-62.10428864787798,0.0002414228043795664,0.0002414228043795664 -1.3435294117647059,3.6152072521260195,3.6152072521260195,0.03675964025468471,0.03675964025468471,-62.97869729930661,-62.97869729930661,0.00023563289187446235,0.00023563289187446235 -1.3458823529411765,3.906512296375637,3.906512296375637,0.020379999477825022,0.020379999477825022,-63.858909559272576,-63.858909559272576,0.00022989413884576495,0.00022989413884576495 -1.348235294117647,2.746034383300121,2.746034383300121,0.00451343277399,0.00451343277399,-64.74240723142661,-64.74240723142661,0.00022599147154789373,0.00022599147154789373 -1.3505882352941176,2.011322222964725,2.011322222964725,0.0218758448316841,0.0218758448316841,-65.62078159263174,-65.62078159263174,0.00022465053483820946,0.00022465053483820946 -1.3529411764705883,2.324175481869894,2.324175481869894,0.038215298773853115,0.038215298773853115,-66.48594674069027,-66.48594674069027,0.00022472784129708517,0.00022472784129708517 -1.3552941176470588,2.6882996398566834,2.6882996398566834,0.047658688908719965,0.047658688908719965,-67.33605161675072,-67.33605161675072,0.0002244365143792977,0.0002244365143792977 -1.3576470588235294,3.0621902023920113,3.0621902023920113,0.049341856668198354,0.049341856668198354,-68.1755983406321,-68.1755983406321,0.00022204079422156228,0.00022204079422156228 -1.3599999999999999,3.44087818874712,3.44087818874712,0.04299253953836699,0.04299253953836699,-69.01224030408642,-69.01224030408642,0.00021723383811950736,0.00021723383811950736 -1.3623529411764705,3.8299313312087646,3.8299313312087646,0.029187124517621083,0.029187124517621083,-69.85222084674119,-69.85222084674119,0.00021102964219191792,0.00021102964219191792 -1.3647058823529412,4.223436627214876,4.223436627214876,0.010056600945911548,0.010056600945911548,-70.69792477512972,-70.69792477512972,0.0002050645535668074,0.0002050645535668074 -1.3670588235294117,1.507179944125682,1.507179944125682,0.011665574842894674,0.011665574842894674,-71.54413772108539,-71.54413772108539,0.000200669339047004,0.000200669339047004 -1.3694117647058823,1.9035912885846802,1.9035912885846802,0.031752236836750665,0.031752236836750665,-72.38222208586174,-72.38222208586174,0.00019780470167709711,0.00019780470167709711 -1.371764705882353,2.2901440309680385,2.2901440309680385,0.04653808514874877,0.04653808514874877,-73.20597806041687,-73.20597806041687,0.0001951405481931488,0.0001951405481931488 -1.3741176470588234,2.669702140829754,2.669702140829754,0.05422219833469071,0.05422219833469071,-74.0152199031265,-74.0152199031265,0.00019098581625937426,0.00019098581625937426 -1.3764705882352941,3.0488575305640637,3.0488575305640637,0.05402620701431358,0.05402620701431358,-74.81533851526143,-74.81533851526143,0.0001840985109692716,0.0001840985109692716 -1.3788235294117648,3.43881098035402,3.43881098035402,0.04536220700571869,0.04536220700571869,-75.61513631094078,-75.61513631094078,0.00017442092155910474,0.00017442092155910474 -1.3811764705882352,3.8825679594420075,3.8825679594420075,0.02883483288902694,0.02883483288902694,-76.42262314463196,-76.42262314463196,0.00016288442695562693,0.00016288442695562693 -1.383529411764706,4.8036170175525115,4.8036170175525115,0.006328539634087416,0.006328539634087416,-77.2410041632386,-77.2410041632386,0.0001511352974915939,0.0001511352974915939 -1.3858823529411763,7.518221955959567,7.518221955959567,0.0232278564597755,0.0232278564597755,-78.06755273104382,-78.06755273104382,0.00014030056323872158,0.00014030056323872158 -1.388235294117647,8.024995747195188,8.024995747195188,0.05081797811864101,0.05081797811864101,-78.89399420264427,-78.89399420264427,0.00013057396393209006,0.00013057396393209006 -1.3905882352941177,8.457926867605408,8.457926867605408,0.07372296366158021,0.07372296366158021,-79.7129125847548,-79.7129125847548,0.00012085828558906786,0.00012085828558906786 -1.3929411764705881,8.873800888282192,8.873800888282192,0.0891469184818862,0.0891469184818862,-80.52462413632524,-80.52462413632524,0.00010976663828898665,0.00010976663828898665 -1.3952941176470588,9.298576335313927,9.298576335313927,0.09552882945034757,0.09552882945034757,-81.33996388810397,-81.33996388810397,9.631148794676293e-05,9.631148794676293e-05 -1.3976470588235295,9.765022349375053,9.765022349375053,0.0890586950545903,0.0890586950545903,-82.18466516080774,-82.18466516080774,8.073053038094917e-05,8.073053038094917e-05 -1.4,10.363007005278345,10.363007005278345,0.06444802487687001,0.06444802487687001,-83.10142544196745,-83.10142544196745,6.490870291688659e-05,6.490870291688659e-05 -1.4023529411764706,11.855822418790146,11.855822418790146,0.01850468198478823,0.01850468198478823,-84.14631000790806,-84.14631000790806,5.2627627040312525e-05,5.2627627040312525e-05 -1.4047058823529412,14.442304630820312,14.442304630820312,0.06632983618080714,0.06632983618080714,-85.3098861373182,-85.3098861373182,4.8649319073456365e-05,4.8649319073456365e-05 -1.4070588235294117,15.311984718140053,15.311984718140053,0.11611163395439521,0.11611163395439521,-86.4421978192886,-86.4421978192886,5.405881669804611e-05,5.405881669804611e-05 -1.4094117647058824,15.968507985519599,15.968507985519599,0.12866660111089298,0.12866660111089298,-87.45726695346693,-87.45726695346693,6.496837546404945e-05,6.496837546404945e-05 -1.4117647058823528,16.524433175371513,16.524433175371513,0.11776259749414339,0.11776259749414339,-88.38740739759618,-88.38740739759618,7.813706382488421e-05,7.813706382488421e-05 -1.4141176470588235,17.033610311354266,17.033610311354266,0.09379510178990791,0.09379510178990791,-89.27057221715788,-89.27057221715788,9.291621631713024e-05,9.291621631713024e-05 -1.4164705882352941,17.5214587979483,17.5214587979483,0.06356049159364578,0.06356049159364578,-90.12031822434868,-90.12031822434868,0.00010999077849205631,0.00010999077849205631 -1.4188235294117646,18.036170201085373,18.036170201085373,0.03308515198667893,0.03308515198667893,-90.93752805848423,-90.93752805848423,0.0001296835649024266,0.0001296835649024266 -1.4211764705882353,18.988002830942026,18.988002830942026,0.008689231399646885,0.008689231399646885,-91.72276155397637,-91.72276155397637,0.00015149242638511917,0.00015149242638511917 -1.423529411764706,21.37290335733524,21.37290335733524,0.014585029625720872,0.014585029625720872,-92.48046444372045,-92.48046444372045,0.00017428449889103572,0.00017428449889103572 -1.4258823529411764,21.915765916097413,21.915765916097413,0.027396585507128826,0.027396585507128826,-93.21771819091,-93.21771819091,0.00019655224415942595,0.00019655224415942595 -1.428235294117647,22.314230518051467,22.314230518051467,0.03452369787244469,0.03452369787244469,-93.94263643544015,-93.94263643544015,0.0002171566407146357,0.0002171566407146357 -1.4305882352941177,22.672391771968442,22.672391771968442,0.03626336694409074,0.03626336694409074,-94.661682093527,-94.661682093527,0.00023565620630540868,0.00023565620630540868 -1.4329411764705882,23.024869898940715,23.024869898940715,0.033436099539778226,0.033436099539778226,-95.37921124310473,-95.37921124310473,0.0002521527349201924,0.0002521527349201924 -1.4352941176470588,23.391694147806255,23.391694147806255,0.02671810126821154,0.02671810126821154,-96.09686449700813,-96.09686449700813,0.00026733985446380826,0.00026733985446380826 -1.4376470588235293,23.781430572298678,23.781430572298678,0.017535969608227866,0.017535969608227866,-96.81391783430826,-96.81391783430826,0.0002820071176817816,0.0002820071176817816 -1.44,24.34211353613029,24.34211353613029,0.007373777758141414,0.007373777758141414,-97.52778282209547,-97.52778282209547,0.0002964768750847876,0.0002964768750847876 -1.4423529411764706,26.765338333535865,26.765338333535865,0.00428284648133407,0.00428284648133407,-98.23612414033732,-98.23612414033732,0.00031066344880380063,0.00031066344880380063 -1.444705882352941,27.549450335403648,27.549450335403648,0.012412516121058162,0.012412516121058162,-98.93766051927187,-98.93766051927187,0.00032384757295372536,0.00032384757295372536 -1.4470588235294117,27.9447455750681,27.9447455750681,0.018794389752984395,0.018794389752984395,-99.63269187123535,-99.63269187123535,0.00033506990772172473,0.00033506990772172473 -1.4494117647058824,28.28794981557574,28.28794981557574,0.022356482659324824,0.022356482659324824,-100.32300060051233,-100.32300060051233,0.0003435092456867287,0.0003435092456867287 -1.4517647058823528,28.62434983169907,28.62434983169907,0.02322016595676521,0.02322016595676521,-101.01118102936722,-101.01118102936722,0.00034879375309673733,0.00034879375309673733 -1.4541176470588235,28.95696983423536,28.95696983423536,0.02113958508071794,0.02113958508071794,-101.69960604631648,-101.69960604631648,0.00035102991115863134,0.00035102991115863134 -1.4564705882352942,29.30514806503774,29.30514806503774,0.016536159958885997,0.016536159958885997,-102.38990463632916,-102.38990463632916,0.0003507916712475718,0.0003507916712475718 -1.4588235294117646,29.6994669221516,29.6994669221516,0.009964945883983554,0.009964945883983554,-103.08265828276883,-103.08265828276883,0.0003488841045388962,0.0003488841045388962 -1.4611764705882353,30.582546732840356,30.582546732840356,0.0026792747854350145,0.0026792747854350145,-103.7768423741119,-103.7768423741119,0.00034590733623566177,0.00034590733623566177 -1.4635294117647057,33.035513408089955,33.035513408089955,0.006485065047391765,0.006485065047391765,-104.47116047770068,-104.47116047770068,0.00034208119481458823,0.00034208119481458823 -1.4658823529411764,33.505699505839374,33.505699505839374,0.013743775207445831,0.013743775207445831,-105.16428171735357,-105.16428171735357,0.000337253027897226,0.000337253027897226 -1.468235294117647,33.869540731375025,33.869540731375025,0.019635357969980366,0.019635357969980366,-105.85565699365132,-105.85565699365132,0.00033084805076238156,0.00033084805076238156 -1.4705882352941178,34.213113365251886,34.213113365251886,0.023259656517839147,0.023259656517839147,-106.54660404548136,-106.54660404548136,0.00032237195186701474,0.00032237195186701474 -1.4729411764705882,34.548243536524964,34.548243536524964,0.024157276817410492,0.024157276817410492,-107.23935671477574,-107.23935671477574,0.0003116322552017378,0.0003116322552017378 -1.4752941176470589,34.89263599815991,34.89263599815991,0.02228073128669723,0.02228073128669723,-107.93718459947398,-107.93718459947398,0.00029887751781467034,0.00029887751781467034 -1.4776470588235295,35.24984981423493,35.24984981423493,0.017420144865968688,0.017420144865968688,-108.64346274496472,-108.64346274496472,0.0002848887357315303,0.0002848887357315303 -1.48,35.66184892464895,35.66184892464895,0.009903669756082683,0.009903669756082683,-109.36051267552944,-109.36051267552944,0.0002708541337355286,0.0002708541337355286 -1.4823529411764707,37.22530080598477,37.22530080598477,0.0012572962242537267,0.0012572962242537267,-110.08878990698943,-110.08878990698943,0.0002579744639796979,0.0002579744639796979 -1.484705882352941,39.29475452865865,39.29475452865865,0.009999534632838576,0.009999534632838576,-110.8268839704783,-110.8268839704783,0.0002471786178655647,0.0002471786178655647 -1.4870588235294118,39.73751548521627,39.73751548521627,0.01963032660127498,0.01963032660127498,-111.57151880951595,-111.57151880951595,0.00023890354810651975,0.00023890354810651975 -1.4894117647058822,40.1367770895429,40.1367770895429,0.027015937588816947,0.027015937588816947,-112.31955258706742,-112.31955258706742,0.0002330887021126565,0.0002330887021126565 -1.4917647058823529,40.52894574221958,40.52894574221958,0.031126137213760906,0.031126137213760906,-113.06901659861408,-113.06901659861408,0.00022943218949121526,0.00022943218949121526 -1.4941176470588236,40.918287826395705,40.918287826395705,0.03128375002989464,0.03128375002989464,-113.81885918458495,-113.81885918458495,0.00022785139906532034,0.00022785139906532034 -1.4964705882352942,41.3074287952448,41.3074287952448,0.027381432634633725,0.027381432634633725,-114.56854507666455,-114.56854507666455,0.00022850681808590678,0.00022850681808590678 -1.4988235294117647,41.68376063999142,41.68376063999142,0.02012495896801791,0.02012495896801791,-115.31574024473453,-115.31574024473453,0.0002319151064730284,0.0002319151064730284 -1.5011764705882353,42.04666226026667,42.04666226026667,0.01064548413532665,0.01064548413532665,-116.05663527609013,-116.05663527609013,0.00023837664198821413,0.00023837664198821413 -1.5035294117647058,41.82373128412253,41.82373128412253,0.0006470894900510276,0.0006470894900510276,-116.78615853951723,-116.78615853951723,0.00024788015385167865,0.00024788015385167865 -1.5058823529411764,39.70275199253748,39.70275199253748,0.008683907495176783,0.008683907495176783,-117.50029929401613,-117.50029929401613,0.0002597074396156637,0.0002597074396156637 -1.5082352941176471,40.01902830779602,40.01902830779602,0.015964825623855688,0.015964825623855688,-118.19726232940896,-118.19726232940896,0.0002727736827360526,0.0002727736827360526 -1.5105882352941176,40.33235791057081,40.33235791057081,0.02073918169300184,0.02073918169300184,-118.87784064791667,-118.87784064791667,0.0002857427784466251,0.0002857427784466251 -1.5129411764705882,40.625648414549616,40.625648414549616,0.02286222298684403,0.02286222298684403,-119.54421741330975,-119.54421741330975,0.0002974348328489212,0.0002974348328489212 -1.5152941176470587,40.916427422501336,40.916427422501336,0.022506492945630542,0.022506492945630542,-120.19935718437034,-120.19935718437034,0.00030700358350223137,0.00030700358350223137 -1.5176470588235293,41.18886471376621,41.18886471376621,0.019804986701293513,0.019804986701293513,-120.84569294237455,-120.84569294237455,0.0003139586096297538,0.0003139586096297538 -1.52,41.44334039646007,41.44334039646007,0.015257375759475502,0.015257375759475502,-121.48511426696618,-121.48511426696618,0.0003181504252068425,0.0003181504252068425 -1.5223529411764707,41.64715821408846,41.64715821408846,0.009233006023718637,0.009233006023718637,-122.1182356598881,-122.1182356598881,0.0003195492212859481,0.0003195492212859481 -1.5247058823529411,41.44986526503203,41.44986526503203,0.002714153602379292,0.002714153602379292,-122.7450803646731,-122.7450803646731,0.0003181083191745355,0.0003181083191745355 -1.5270588235294118,39.514184191995646,39.514184191995646,0.005322217581100322,0.005322217581100322,-123.3647493931171,-123.3647493931171,0.0003136218681583298,0.0003136218681583298 -1.5294117647058822,39.59098127068839,39.59098127068839,0.012136418818962916,0.012136418818962916,-123.97611538603194,-123.97611538603194,0.0003057657376315544,0.0003057657376315544 -1.531764705882353,39.78917519909025,39.78917519909025,0.018161336043398525,0.018161336043398525,-124.57779658791596,-124.57779658791596,0.00029385166694062195,0.00029385166694062195 -1.5341176470588236,39.99747379083267,39.99747379083267,0.023151709478108465,0.023151709478108465,-125.16860344701216,-125.16860344701216,0.00027737907459034,0.00027737907459034 -1.536470588235294,40.19899284726484,40.19899284726484,0.0265516230831079,0.0265516230831079,-125.74651627149038,-125.74651627149038,0.0002557896429710647,0.0002557896429710647 -1.5388235294117647,40.381682511640946,40.381682511640946,0.02802685626271108,0.02802685626271108,-126.30835504152515,-126.30835504152515,0.00022884175504444496,0.00022884175504444496 -1.5411764705882351,40.53194082759743,40.53194082759743,0.027364055835476894,0.027364055835476894,-126.84737000160789,-126.84737000160789,0.0001965919124193886,0.0001965919124193886 -1.5435294117647058,40.59940810541291,40.59940810541291,0.02371278370161643,0.02371278370161643,-127.34757893706839,-127.34757893706839,0.00015971261303983141,0.00015971261303983141 -1.5458823529411767,40.40875155336589,40.40875155336589,0.015618626632185412,0.015618626632185412,-127.76703416478934,-127.76703416478934,0.00012006158562949317,0.00012006158562949317 -1.5482352941176472,38.64792664553496,38.64792664553496,0.012335203595102706,0.012335203595102706,-127.98471437225857,-127.98471437225857,8.37036955035094e-05,8.37036955035094e-05 -1.5505882352941176,37.41905188418895,37.41905188418895,0.03868048006774531,0.03868048006774531,-127.82907358721607,-127.82907358721607,7.115013733042463e-05,7.115013733042463e-05 -1.5529411764705883,36.863683970972694,36.863683970972694,0.04446193802157102,0.04446193802157102,-127.76370533712539,-127.76370533712539,0.00010259655930659823,0.00010259655930659823 -1.5552941176470587,36.7407978380243,36.7407978380243,0.036904758387019745,0.036904758387019745,-128.04987241782052,-128.04987241782052,0.00015991909863432712,0.00015991909863432712 -1.5576470588235294,36.79437238279318,36.79437238279318,0.028955944725509587,0.028955944725509587,-128.48935264542442,-128.48935264542442,0.00022964662106778375,0.00022964662106778375 -1.5599999999999998,36.91404893526941,36.91404893526941,0.02190579706488408,0.02190579706488408,-128.98930096445432,-128.98930096445432,0.0003079826024711273,0.0003079826024711273 -1.5623529411764705,37.05373494897999,37.05373494897999,0.015590084273905163,0.015590084273905163,-129.5164799192821,-129.5164799192821,0.00039378680560896954,0.00039378680560896954 -1.5647058823529412,37.18188021143222,37.18188021143222,0.010131783384680466,0.010131783384680466,-130.05674668540775,-130.05674668540775,0.0004865389173046335,0.0004865389173046335 -1.5670588235294118,37.24055100509718,37.24055100509718,0.00561440866601976,0.00561440866601976,-130.60367180348996,-130.60367180348996,0.0005857966033371433,0.0005857966033371433 -1.5694117647058823,36.957273902181264,36.957273902181264,0.0022412379964007524,0.0022412379964007524,-131.1540145910306,-131.1540145910306,0.0006910869434217279,0.0006910869434217279 -1.571764705882353,35.668861483986774,35.668861483986774,0.002023573666627171,0.002023573666627171,-131.70605063445663,-131.70605063445663,0.0008018667261653381,0.0008018667261653381 -1.5741176470588236,35.41209849736179,35.41209849736179,0.003661529664395593,0.003661529664395593,-132.25899298284955,-132.25899298284955,0.0009176962202639786,0.0009176962202639786 -1.576470588235294,35.4839216490429,35.4839216490429,0.004857767505208088,0.004857767505208088,-132.8122958048417,-132.8122958048417,0.0010381360739873688,0.0010381360739873688 -1.5788235294117647,35.63109368906115,35.63109368906115,0.0053902005203933,0.0053902005203933,-133.36567993210056,-133.36567993210056,0.0011628330954934739,0.0011628330954934739 -1.5811764705882352,35.79476089313491,35.79476089313491,0.005342750180242333,0.005342750180242333,-133.9189385332725,-133.9189385332725,0.0012915970011201578,0.0012915970011201578 -1.5835294117647059,35.958099679571,35.958099679571,0.004831662935676332,0.004831662935676332,-134.47178197529124,-134.47178197529124,0.0014244935725896957,0.0014244935725896957 -1.5858823529411765,36.117799493734445,36.117799493734445,0.004000060188466243,0.004000060188466243,-135.02393772787673,-135.02393772787673,0.0015612683932813556,0.0015612683932813556 -1.5882352941176474,36.24700560578583,36.24700560578583,0.002953963614097184,0.002953963614097184,-135.575159747893,-135.575159747893,0.0017018181871600543,0.0017018181871600543 -1.5905882352941176,36.29182431861309,36.29182431861309,0.0018456729652649507,0.0018456729652649507,-136.12517820026432,-136.12517820026432,0.001845898687148142,0.001845898687148142 -1.592941176470588,35.93998778595775,35.93998778595775,0.0009144493367760375,0.0009144493367760375,-136.67382682457955,-136.67382682457955,0.0019930483577094023,0.0019930483577094023 -1.5952941176470588,34.909255403898484,34.909255403898484,0.0009073384018337297,0.0009073384018337297,-137.2209811216103,-137.2209811216103,0.0021427211177083533,0.0021427211177083533 -1.5976470588235294,34.620881034518604,34.620881034518604,0.0015723643142188854,0.0015723643142188854,-137.76665060807798,-137.76665060807798,0.00229428472336563,0.00229428472336563 -1.6,34.67017011437582,34.67017011437582,0.0021717884379585622,0.0021717884379585622,-138.31080811000368,-138.31080811000368,0.0024469725527988618,0.0024469725527988618 -1.6023529411764705,34.79323186183794,34.79323186183794,0.002545250374727318,0.002545250374727318,-138.85353361341149,-138.85353361341149,0.0026002295588696323,0.0026002295588696323 -1.6047058823529412,34.939875238476546,34.939875238476546,0.0026897425699814767,0.0026897425699814767,-139.394978550354,-139.394978550354,0.002753411570544528,0.002753411570544528 -1.6070588235294117,35.09360982145098,35.09360982145098,0.0025877334481981414,0.0025877334481981414,-139.9351469970044,-139.9351469970044,0.0029061241532066,0.0029061241532066 -1.6094117647058825,35.24253818802939,35.24253818802939,0.0022926290237681966,0.0022926290237681966,-140.47414753212394,-140.47414753212394,0.003058102448565313,0.003058102448565313 -1.611764705882353,35.35879039261931,35.35879039261931,0.001841558091180439,0.001841558091180439,-141.0119788307507,-141.0119788307507,0.0032090364997529727,0.0032090364997529727 -1.6141176470588237,35.40791951725119,35.40791951725119,0.001303883007831974,0.001303883007831974,-141.54857780694525,-141.54857780694525,0.0033587641100368583,0.0033587641100368583 -1.616470588235294,35.23999821526044,35.23999821526044,0.0007787884759807128,0.0007787884759807128,-142.08392657767266,-142.08392657767266,0.003506966421599737,0.003506966421599737 -1.6188235294117648,34.48611714628631,34.48611714628631,0.0005674889751694643,0.0005674889751694643,-142.61798028825586,-142.61798028825586,0.003653325789157195,0.003653325789157195 -1.6211764705882352,33.950100441985825,33.950100441985825,0.0008790891324324198,0.0008790891324324198,-143.15062002819005,-143.15062002819005,0.0037973131910324837,0.0037973131910324837 -1.6235294117647059,33.8832162446053,33.8832162446053,0.0013018225688121133,0.0013018225688121133,-143.68189091108022,-143.68189091108022,0.0039383471157818355,0.0039383471157818355 -1.6258823529411766,33.961146663335555,33.961146663335555,0.0016390095318821903,0.0016390095318821903,-144.21174122731165,-144.21174122731165,0.004075763237247995,0.004075763237247995 -1.6282352941176468,34.078136177512874,34.078136177512874,0.0018429103002910504,0.0018429103002910504,-144.7402150607107,-144.7402150607107,0.0042089082224888155,0.0042089082224888155 -1.630588235294118,34.21353074968857,34.21353074968857,0.0019166264924558418,0.0019166264924558418,-145.26735818178508,-145.26735818178508,0.004337197912431857,0.004337197912431857 -1.6329411764705881,34.34793091525228,34.34793091525228,0.001831971486027003,0.001831971486027003,-145.79326796174104,-145.79326796174104,0.004460061263947501,0.004460061263947501 -1.6352941176470588,34.46786132862283,34.46786132862283,0.0016267359536281147,0.0016267359536281147,-146.31796560153103,-146.31796560153103,0.004577205672388735,0.004577205672388735 -1.6376470588235295,34.54430593245962,34.54430593245962,0.0013069707302706195,0.0013069707302706195,-146.84149948684302,-146.84149948684302,0.004688365627825931,0.004688365627825931 -1.6400000000000001,34.52513251447299,34.52513251447299,0.0009439657600741782,0.0009439657600741782,-147.36395425510395,-147.36395425510395,0.004793353057312775,0.004793353057312775 -1.6423529411764706,34.23782591306659,34.23782591306659,0.0006324402135576428,0.0006324402135576428,-147.885304651264,-147.885304651264,0.004892126250970938,0.004892126250970938 -1.6447058823529415,33.59222309401834,33.59222309401834,0.0005940480289953636,0.0005940480289953636,-148.4055496839358,-148.4055496839358,0.004984539849572674,0.004984539849572674 -1.6470588235294117,33.23895309427168,33.23895309427168,0.0008621884893899553,0.0008621884893899553,-148.92459497583582,-148.92459497583582,0.005070430542160764,0.005070430542160764 -1.6494117647058824,33.1897135826913,33.1897135826913,0.0011950784142858968,0.0011950784142858968,-149.44250675341155,-149.44250675341155,0.005149505485149019,0.005149505485149019 -1.651764705882353,33.24800082306463,33.24800082306463,0.0014865523633636319,0.0014865523633636319,-149.95918415696696,-149.95918415696696,0.005221424458815515,0.005221424458815515 -1.6541176470588237,33.35037473255471,33.35037473255471,0.0016756833859118382,0.0016756833859118382,-150.47468978740847,-150.47468978740847,0.005285742520169101,0.005285742520169101 -1.6564705882352944,33.46886547951162,33.46886547951162,0.0017513888691823697,0.0017513888691823697,-150.98898329919928,-150.98898329919928,0.00534203234533542,0.00534203234533542 -1.6588235294117644,33.587031441299054,33.587031441299054,0.0017134233847611127,0.0017134233847611127,-151.5020979857223,-151.5020979857223,0.005389887336385839,0.005389887336385839 -1.6611764705882353,33.68167165783693,33.68167165783693,0.0015747483727530326,0.0015747483727530326,-152.01410528023817,-152.01410528023817,0.005428972350893812,0.005428972350893812 -1.663529411764706,33.74336577496679,33.74336577496679,0.0013308198096159275,0.0013308198096159275,-152.52506229266876,-152.52506229266876,0.0054591424086659155,0.0054591424086659155 -1.6658823529411766,33.72200198571511,33.72200198571511,0.0010375495550476914,0.0010375495550476914,-153.0349737624765,-153.0349737624765,0.005480239048783746,0.005480239048783746 -1.668235294117647,33.505962907823324,33.505962907823324,0.0007710300759358154,0.0007710300759358154,-153.54394663985306,-153.54394663985306,0.0054923434057962935,0.0054923434057962935 -1.670588235294118,33.04067105774037,33.04067105774037,0.0006988485159748959,0.0006988485159748959,-154.05200159582725,-154.05200159582725,0.005495582750361874,0.005495582750361874 -1.672941176470588,32.67993975838027,32.67993975838027,0.0008978951755361217,0.0008978951755361217,-154.55910322793216,-154.55910322793216,0.005489998132586633,0.005489998132586633 -1.6752941176470588,32.554883714787245,32.554883714787245,0.0012122724793543612,0.0012122724793543612,-155.0652298198272,-155.0652298198272,0.005475758939562791,0.005475758939562791 -1.6776470588235295,32.56806888314116,32.56806888314116,0.0015262634673174442,0.0015262634673174442,-155.5704487331387,-155.5704487331387,0.005452833078725319,0.005452833078725319 -1.68,32.63901094012763,32.63901094012763,0.0017843281195411046,0.0017843281195411046,-156.07468557109814,-156.07468557109814,0.005421159710010804,0.005421159710010804 -1.6823529411764706,32.73613081752585,32.73613081752585,0.0019318103203984217,0.0019318103203984217,-156.577919436279,-156.577919436279,0.005380578365705716,0.005380578365705716 -1.684705882352941,32.83841751718822,32.83841751718822,0.0019828462309107947,0.0019828462309107947,-157.08015381146873,-157.08015381146873,0.0053308960759599145,0.0053308960759599145 -1.6870588235294117,32.92406887862759,32.92406887862759,0.0019144564484360306,0.0019144564484360306,-157.58143820022008,-157.58143820022008,0.005271827715303266,0.005271827715303266 -1.6894117647058824,32.98953848837865,32.98953848837865,0.0017437594319810817,0.0017437594319810817,-158.08180964214904,-158.08180964214904,0.005203189364981296,0.005203189364981296 -1.6917647058823528,32.99465743800871,32.99465743800871,0.0014903335916395272,0.0014903335916395272,-158.58132360244633,-158.58132360244633,0.0051248915795318265,0.0051248915795318265 -1.6941176470588235,32.8901986817399,32.8901986817399,0.0012146668811769128,0.0012146668811769128,-159.08005055563632,-159.08005055563632,0.005036845198576432,0.005036845198576432 -1.6964705882352942,32.6076422812554,32.6076422812554,0.001046293750312553,0.001046293750312553,-159.57805916957923,-159.57805916957923,0.004939144184855766,0.004939144184855766 -1.6988235294117644,32.25387861931625,32.25387861931625,0.0011202851533797034,0.0011202851533797034,-160.07545265225886,-160.07545265225886,0.004831943416870569,0.004831943416870569 -1.7011764705882353,32.030832498518805,32.030832498518805,0.001431941986106735,0.001431941986106735,-160.57226808695012,-160.57226808695012,0.004715414805195493,0.004715414805195493 -1.7035294117647062,31.966474046289825,31.966474046289825,0.0018517104517307003,0.0018517104517307003,-161.06862167207314,-161.06862167207314,0.004589789689059772,0.004589789689059772 -1.7058823529411766,31.98804796576427,31.98804796576427,0.002267828719234347,0.002267828719234347,-161.56454930469354,-161.56454930469354,0.004455146098978333,0.004455146098978333 -1.7082352941176469,32.05173215311724,32.05173215311724,0.0026246367302327086,0.0026246367302327086,-162.06016436415072,-162.06016436415072,0.004311702077729554,0.004311702077729554 -1.7105882352941175,32.134277401516854,32.134277401516854,0.0028832976416613477,0.0028832976416613477,-162.55546292040302,-162.55546292040302,0.004159408199332832,0.004159408199332832 -1.7129411764705882,32.22237826021125,32.22237826021125,0.0030035424088255755,0.0030035424088255755,-163.05064349939187,-163.05064349939187,0.003998178290104706,0.003998178290104706 -1.7152941176470589,32.29577869500545,32.29577869500545,0.0029892197106569617,0.0029892197106569617,-163.54587446445512,-163.54587446445512,0.0038278392831049197,0.0038278392831049197 -1.7176470588235295,32.34224090478766,32.34224090478766,0.0028427381311002383,0.0028427381311002383,-164.04140191223894,-164.04140191223894,0.0036483480067434253,0.0036483480067434253 -1.72,32.335676435950965,32.335676435950965,0.002604223864154965,0.002604223864154965,-164.5375315421681,-164.5375315421681,0.0034596107935059932,0.0034596107935059932 -1.7223529411764709,32.231095193105844,32.231095193105844,0.002303025987363795,0.002303025987363795,-165.034816227882,-165.034816227882,0.003261679901291058,0.003261679901291058 -1.7247058823529409,32.01988843360802,32.01988843360802,0.0022434489250764502,0.0022434489250764502,-165.5339134814707,-165.5339134814707,0.0030545190863297865,0.0030545190863297865 -1.7270588235294118,31.766050455390964,31.766050455390964,0.002511808990221734,0.002511808990221734,-166.03572395889944,-166.03572395889944,0.002838723864515973,0.002838723864515973 -1.7294117647058824,31.60030461088379,31.60030461088379,0.003201957685317069,0.003201957685317069,-166.54156073535574,-166.54156073535574,0.0026148396794043413,0.0026148396794043413 -1.731764705882353,31.55641192081902,31.55641192081902,0.004212443160206921,0.004212443160206921,-167.05319074078065,-167.05319074078065,0.002383862956209536,0.002383862956209536 -1.7341176470588235,31.593282846528272,31.593282846528272,0.00545276839299068,0.00545276839299068,-167.57340194625152,-167.57340194625152,0.0021472697035622274,0.0021472697035622274 -1.7364705882352938,31.68593378234263,31.68593378234263,0.0068288854105162,0.0068288854105162,-168.10612010040802,-168.10612010040802,0.0019072229250919675,0.0019072229250919675 -1.7388235294117647,31.816329513865785,31.816329513865785,0.00825342267701538,0.00825342267701538,-168.65781985333743,-168.65781985333743,0.0016671580527079675,0.0016671580527079675 -1.7411764705882353,31.98013874442708,31.98013874442708,0.009692153154824714,0.009692153154824714,-169.23863128306434,-169.23863128306434,0.0014332163729140646,0.0014332163729140646 -1.743529411764706,32.18284094048431,32.18284094048431,0.011116385157187344,0.011116385157187344,-169.86486467827726,-169.86486467827726,0.0012161367899526292,0.0012161367899526292 -1.7458823529411764,32.42931787421014,32.42931787421014,0.012219112722636009,0.012219112722636009,-170.55849106180042,-170.55849106180042,0.0010357337105787309,0.0010357337105787309 -1.748235294117647,32.71916137234257,32.71916137234257,0.012309288840913759,0.012309288840913759,-171.3345463783631,-171.3345463783631,0.0009246906205935456,0.0009246906205935456 -1.7505882352941176,32.99578135744507,32.99578135744507,0.010996972637387848,0.010996972637387848,-172.1621951013868,-172.1621951013868,0.0009202670634506692,0.0009202670634506692 -1.7529411764705882,33.167990230079134,33.167990230079134,0.008971360181850227,0.008971360181850227,-172.95969760431714,-172.95969760431714,0.0010346805416719916,0.0010346805416719916 -1.7552941176470591,33.20684348228181,33.20684348228181,0.007361522953240905,0.007361522953240905,-173.67508208248643,-173.67508208248643,0.0012449777761278603,0.0012449777761278603 -1.7576470588235293,33.19915985819021,33.19915985819021,0.00659380717138259,0.00659380717138259,-174.31283502090332,-174.31283502090332,0.0015197358728474167,0.0015197358728474167 -1.76,33.203015265264234,33.203015265264234,0.006285043030916468,0.006285043030916468,-174.89546573340866,-174.89546573340866,0.0018371344912056534,0.0018371344912056534 -1.7623529411764705,33.24628805259321,33.24628805259321,0.006031941924059927,0.006031941924059927,-175.4415647388484,-175.4415647388484,0.0021845264398428392,0.0021845264398428392 -1.7647058823529411,33.30134901401858,33.30134901401858,0.005716408731134155,0.005716408731134155,-175.9631677016147,-175.9631677016147,0.002554729974774121,0.002554729974774121 -1.7670588235294116,33.37564046335693,33.37564046335693,0.005368330558971378,0.005368330558971378,-176.46775770359017,-176.46775770359017,0.0029434620550034293,0.0029434620550034293 -1.7694117647058827,33.44792399236721,33.44792399236721,0.004889599597303392,0.004889599597303392,-176.96013487584662,-176.96013487584662,0.0033480802669271885,0.0033480802669271885 -1.7717647058823531,33.50815884652005,33.50815884652005,0.004333743392802108,0.004333743392802108,-177.443274130723,-177.443274130723,0.003766715596688569,0.003766715596688569 -1.7741176470588236,33.55085806139116,33.55085806139116,0.003764908770813383,0.003764908770813383,-177.91931486025925,-177.91931486025925,0.004198064235362565,0.004198064235362565 -1.776470588235294,33.561668792371236,33.561668792371236,0.003192618870731626,0.003192618870731626,-178.38963239821544,-178.38963239821544,0.004641323929291151,0.004641323929291151 -1.7788235294117647,33.5311108826279,33.5311108826279,0.0026874991384982835,0.0026874991384982835,-178.8552728827384,-178.8552728827384,0.005095705150791964,0.005095705150791964 -1.7811764705882354,33.4487576671654,33.4487576671654,0.002277707804881437,0.002277707804881437,-179.31689155218226,-179.31689155218226,0.00556064674761953,0.00556064674761953 -1.7835294117647063,33.31442796435289,33.31442796435289,0.002000375196241531,0.002000375196241531,-179.77502294469397,-179.77502294469397,0.006035672857875841,0.006035672857875841 -1.7858823529411765,33.15257186774443,33.15257186774443,0.001886950778212791,0.001886950778212791,-180.2300831142708,-180.2300831142708,0.006520438771432991,0.006520438771432991 -1.7882352941176471,33.01667966522788,33.01667966522788,0.0018860057088934939,0.0018860057088934939,-180.682313094765,-180.682313094765,0.00701446439873211,0.00701446439873211 -1.7905882352941174,32.92992691447474,32.92992691447474,0.0019616425830984263,0.0019616425830984263,-181.1319775949548,-181.1319775949548,0.007517135368842045,0.007517135368842045 -1.7929411764705883,32.883418997273225,32.883418997273225,0.0020337970191110118,0.0020337970191110118,-181.5792082610618,-181.5792082610618,0.008027953730072099,0.008027953730072099 -1.795294117647059,32.86993476602004,32.86993476602004,0.0020798237423834596,0.0020798237423834596,-182.02419152399477,-182.02419152399477,0.008546365578022033,0.008546365578022033 -1.7976470588235294,32.8756641939729,32.8756641939729,0.002084127352008021,0.002084127352008021,-182.46702150950895,-182.46702150950895,0.009071512635454035,0.009071512635454035 -1.8,32.89118609610494,32.89118609610494,0.0020257621358747446,0.0020257621358747446,-182.90780308142203,-182.90780308142203,0.009602706473536315,0.009602706473536315 diff --git a/sparameters/rotate_f258530e_86a0c5f2.yml b/sparameters/rotate_f258530e_86a0c5f2.yml deleted file mode 100644 index 54eaae3b..00000000 --- a/sparameters/rotate_f258530e_86a0c5f2.yml +++ /dev/null @@ -1,27 +0,0 @@ -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: 6 -compute_time_seconds: 76.55245423316956 -compute_time_minutes: 1.2758742372194927 diff --git a/sparameters/rotate_f258530e_8890572b.csv b/sparameters/rotate_f258530e_8890572b.csv deleted file mode 100644 index 4318c1fe..00000000 --- a/sparameters/rotate_f258530e_8890572b.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,-3.0792908686338856,-3.0792908686338856,0.05616704622751955,0.05616704622751955,3.001586062893841,3.001586062893841,0.0017917351510355636,0.0017917351510355636 -1.2023529411764706,-3.0869145693328774,-3.0869145693328774,0.055730207944873454,0.055730207944873454,1.8971622540181352,1.8971622540181352,0.0016763229737993552,0.0016763229737993552 -1.204705882352941,-3.0839708518792395,-3.0839708518792395,0.056865711693529185,0.056865711693529185,0.795563879408275,0.795563879408275,0.0015630627529291208,0.0015630627529291208 -1.2070588235294117,-3.0738797035606185,-3.0738797035606185,0.0573472557121042,0.0573472557121042,-0.3054467959866618,-0.3054467959866618,0.0014524285728864381,0.0014524285728864381 -1.2094117647058824,-3.086276880371114,-3.086276880371114,0.05924663799894053,0.05924663799894053,-1.4055991349759096,-1.4055991349759096,0.0013454606266768338,0.0013454606266768338 -1.2117647058823529,-3.061443040763175,-3.061443040763175,0.06039760162808498,0.06039760162808498,-2.5063271130834233,-2.5063271130834233,0.001240600888439511,0.001240600888439511 -1.2141176470588235,-3.0470757294928084,-3.0470757294928084,0.06029663082826891,0.06029663082826891,-3.6089403888399114,-3.6089403888399114,0.001141259467443684,0.001141259467443684 -1.216470588235294,-3.0317505264588,-3.0317505264588,0.0638983551596033,0.0638983551596033,-4.714432964410624,-4.714432964410624,0.0010470921193935522,0.0010470921193935522 -1.2188235294117646,-3.000700363807722,-3.000700363807722,0.06598306897106843,0.06598306897106843,-5.824743893077752,-5.824743893077752,0.00095771437436037,0.00095771437436037 -1.2211764705882353,-2.9632031812204853,-2.9632031812204853,0.06818555039799905,0.06818555039799905,-6.943234249325609,-6.943234249325609,0.0008744848209980362,0.0008744848209980362 -1.2235294117647058,-2.9137371739877036,-2.9137371739877036,0.0711700003050696,0.0711700003050696,-8.07047302886959,-8.07047302886959,0.0007972627845640112,0.0007972627845640112 -1.2258823529411764,-2.828057515130247,-2.828057515130247,0.07523581547400195,0.07523581547400195,-9.212067104748073,-9.212067104748073,0.0007304566368501017,0.0007304566368501017 -1.228235294117647,-2.7418587744049594,-2.7418587744049594,0.07656211136217807,0.07656211136217807,-10.370888243076978,-10.370888243076978,0.0006735652957033707,0.0006735652957033707 -1.2305882352941175,-2.6187224378377616,-2.6187224378377616,0.07852794044624423,0.07852794044624423,-11.546646103066747,-11.546646103066747,0.0006321096293101403,0.0006321096293101403 -1.2329411764705882,-2.464053295408403,-2.464053295408403,0.07759474595452151,0.07759474595452151,-12.742204265852179,-12.742204265852179,0.0006092956149731677,0.0006092956149731677 -1.2352941176470589,-2.322230162106817,-2.322230162106817,0.07319977827300189,0.07319977827300189,-13.94078842544157,-13.94078842544157,0.0006106318671175476,0.0006106318671175476 -1.2376470588235293,-2.180326395094712,-2.180326395094712,0.06652292091598679,0.06652292091598679,-15.131974559553413,-15.131974559553413,0.0006390746813172973,0.0006390746813172973 -1.24,-2.0515609468601697,-2.0515609468601697,0.05893071872240766,0.05893071872240766,-16.297346617958283,-16.297346617958283,0.0006935030795141081,0.0006935030795141081 -1.2423529411764704,-1.965097388083288,-1.965097388083288,0.05035594876740656,0.05035594876740656,-17.42784472580742,-17.42784472580742,0.0007724389380814665,0.0007724389380814665 -1.244705882352941,-1.9204994819715127,-1.9204994819715127,0.043374449051033104,0.043374449051033104,-18.521131695851818,-18.521131695851818,0.0008705875306731808,0.0008705875306731808 -1.2470588235294118,-1.8949956585168084,-1.8949956585168084,0.03638230612810723,0.03638230612810723,-19.580019826147137,-19.580019826147137,0.0009852085453442693,0.0009852085453442693 -1.2494117647058822,-1.8801827621514717,-1.8801827621514717,0.03125227522642325,0.03125227522642325,-20.610879056666118,-20.610879056666118,0.0011115938883637694,0.0011115938883637694 -1.251764705882353,-1.9035575302351213,-1.9035575302351213,0.026380747337324883,0.026380747337324883,-21.615174112145812,-21.615174112145812,0.0012471748255141705,0.0012471748255141705 -1.2541176470588236,-1.9276000565150606,-1.9276000565150606,0.02279672839307513,0.02279672839307513,-22.598426620614116,-22.598426620614116,0.001389115390355428,0.001389115390355428 -1.256470588235294,-1.9854259478480278,-1.9854259478480278,0.020131136385524925,0.020131136385524925,-23.563080109533313,-23.563080109533313,0.0015340256197464615,0.0015340256197464615 -1.2588235294117647,-2.0242358437439223,-2.0242358437439223,0.017182143596986103,0.017182143596986103,-24.5109940771407,-24.5109940771407,0.001680542517780985,0.001680542517780985 -1.2611764705882353,-2.107605478128318,-2.107605478128318,0.015392939647116249,0.015392939647116249,-25.444253778452183,-25.444253778452183,0.0018251103968527904,0.0018251103968527904 -1.2635294117647058,-2.1914018081403213,-2.1914018081403213,0.013868663788468391,0.013868663788468391,-26.364354616535383,-26.364354616535383,0.0019645806949635403,0.0019645806949635403 -1.2658823529411765,-2.2781530588908128,-2.2781530588908128,0.012591306453131995,0.012591306453131995,-27.272341806118142,-27.272341806118142,0.002096911561058764,0.002096911561058764 -1.268235294117647,-2.388863073057422,-2.388863073057422,0.011264693998022155,0.011264693998022155,-28.169064040245534,-28.169064040245534,0.0022185345745872943,0.0022185345745872943 -1.2705882352941176,-2.4760551548104006,-2.4760551548104006,0.01025969326919717,0.01025969326919717,-29.055566380371893,-29.055566380371893,0.0023278855731153165,0.0023278855731153165 -1.2729411764705882,-2.5960747186743203,-2.5960747186743203,0.009813077245935414,0.009813077245935414,-29.932011948901533,-29.932011948901533,0.0024219320328627675,0.0024219320328627675 -1.2752941176470587,-2.720055678664695,-2.720055678664695,0.00914786210438163,0.00914786210438163,-30.799217042440567,-30.799217042440567,0.0024984621305848146,0.0024984621305848146 -1.2776470588235294,-2.8226952145213224,-2.8226952145213224,0.008524232233822444,0.008524232233822444,-31.657517781375308,-31.657517781375308,0.0025554692311624324,0.0025554692311624324 -1.28,-2.963508572615573,-2.963508572615573,0.00810901780254284,0.00810901780254284,-32.50734223724844,-32.50734223724844,0.002591700719501391,0.002591700719501391 -1.2823529411764705,-3.093947681764343,-3.093947681764343,0.007757984014653794,0.007757984014653794,-33.348823209438194,-33.348823209438194,0.00260557828175188,0.00260557828175188 -1.2847058823529411,-3.238697263592789,-3.238697263592789,0.007572996676216522,0.007572996676216522,-34.18223878614292,-34.18223878614292,0.0025960583377328352,0.0025960583377328352 -1.2870588235294118,-3.3938067890837993,-3.3938067890837993,0.007379277367663969,0.007379277367663969,-35.0075717966006,-35.0075717966006,0.0025628610479787872,0.0025628610479787872 -1.2894117647058823,-3.5144897268301216,-3.5144897268301216,0.007313802473992453,0.007313802473992453,-35.82462490964769,-35.82462490964769,0.0025066323772662434,0.0025066323772662434 -1.291764705882353,-3.6757913459291944,-3.6757913459291944,0.007339564179294329,0.007339564179294329,-36.63349111186341,-36.63349111186341,0.0024272808053023734,0.0024272808053023734 -1.2941176470588236,-3.8469836753609683,-3.8469836753609683,0.007318255210724098,0.007318255210724098,-37.433666759783875,-37.433666759783875,0.0023264137761145236,0.0023264137761145236 -1.296470588235294,-4.009080193189173,-4.009080193189173,0.007511134958949219,0.007511134958949219,-38.224644877383575,-38.224644877383575,0.0022049531552200074,0.0022049531552200074 -1.2988235294117647,-4.173045541313615,-4.173045541313615,0.007847794757824458,0.007847794757824458,-39.005656718582365,-39.005656718582365,0.0020655583352480167,0.0020655583352480167 -1.3011764705882352,-4.347964687345485,-4.347964687345485,0.008303596818221721,0.008303596818221721,-39.775690039879144,-39.775690039879144,0.001910200599171336,0.001910200599171336 -1.3035294117647058,-4.5333784592139335,-4.5333784592139335,0.008765038713996715,0.008765038713996715,-40.532597005152006,-40.532597005152006,0.0017419426205293263,0.0017419426205293263 -1.3058823529411765,-4.724854739844209,-4.724854739844209,0.009685976196407934,0.009685976196407934,-41.27435064868216,-41.27435064868216,0.0015645563948868848,0.0015645563948868848 -1.308235294117647,-4.934899963012878,-4.934899963012878,0.010581502595803266,0.010581502595803266,-41.99683070837284,-41.99683070837284,0.0013820169065558161,0.0013820169065558161 -1.3105882352941176,-5.182537685789777,-5.182537685789777,0.011790362633583278,0.011790362633583278,-42.69393341637988,-42.69393341637988,0.0011997640120317182,0.0011997640120317182 -1.3129411764705883,-5.432487119756186,-5.432487119756186,0.013433083581223592,0.013433083581223592,-43.35692815585024,-43.35692815585024,0.001024349473721709,0.001024349473721709 -1.3152941176470587,-5.741821749316831,-5.741821749316831,0.015449469910795653,0.015449469910795653,-43.97316308303213,-43.97316308303213,0.000864659047304827,0.000864659047304827 -1.3176470588235294,-6.106724954730606,-6.106724954730606,0.017923791173507255,0.017923791173507255,-44.52732314318777,-44.52732314318777,0.0007333403658568527,0.0007333403658568527 -1.32,-6.53149780886412,-6.53149780886412,0.019606236855167304,0.019606236855167304,-45.013160036702345,-45.013160036702345,0.0006459427997374483,0.0006459427997374483 -1.3223529411764705,-7.027571982928008,-7.027571982928008,0.020049163329580833,0.020049163329580833,-45.45481042771935,-45.45481042771935,0.0006152260652894217,0.0006152260652894217 -1.3247058823529412,-7.475888912864341,-7.475888912864341,0.018986221721320428,0.018986221721320428,-45.90658435284964,-45.90658435284964,0.0006407325107042991,0.0006407325107042991 -1.3270588235294118,-7.895700242245228,-7.895700242245228,0.016861546303386314,0.016861546303386314,-46.41025186900713,-46.41025186900713,0.0007065815739553977,0.0007065815739553977 -1.3294117647058823,-8.24332592547794,-8.24332592547794,0.014420258265793953,0.014420258265793953,-46.96968016833431,-46.96968016833431,0.0007922638569350678,0.0007922638569350678 -1.331764705882353,-8.540010341932488,-8.540010341932488,0.012755212396404146,0.012755212396404146,-47.57086900335074,-47.57086900335074,0.000883056849209582,0.000883056849209582 -1.3341176470588234,-8.80531007669936,-8.80531007669936,0.011400157389439395,0.011400157389439395,-48.20016265126687,-48.20016265126687,0.0009685553619525453,0.0009685553619525453 -1.336470588235294,-9.042759287483763,-9.042759287483763,0.010428538290376353,0.010428538290376353,-48.845821562632814,-48.845821562632814,0.0010429417980467373,0.0010429417980467373 -1.3388235294117647,-9.293653691862856,-9.293653691862856,0.009532034108637958,0.009532034108637958,-49.50025028452481,-49.50025028452481,0.001102829986064727,0.001102829986064727 -1.3411764705882352,-9.550039557161861,-9.550039557161861,0.008967903439640877,0.008967903439640877,-50.157472952675256,-50.157472952675256,0.0011465176501596912,0.0011465176501596912 -1.3435294117647059,-9.778305224320338,-9.778305224320338,0.008602141721789863,0.008602141721789863,-50.813558313606,-50.813558313606,0.001173549100620356,0.001173549100620356 -1.3458823529411765,-9.996172236031393,-9.996172236031393,0.008340561219734047,0.008340561219734047,-51.464962819610676,-51.464962819610676,0.0011842329983617313,0.0011842329983617313 -1.348235294117647,-10.258568216172897,-10.258568216172897,0.00832651144476611,0.00832651144476611,-52.10843108742805,-52.10843108742805,0.001180189562198855,0.001180189562198855 -1.3505882352941176,-10.483642038415358,-10.483642038415358,0.008243036380378802,0.008243036380378802,-52.7410787553956,-52.7410787553956,0.0011634424765835667,0.0011634424765835667 -1.3529411764705883,-10.747698981337464,-10.747698981337464,0.008348470497906815,0.008348470497906815,-53.35998890145727,-53.35998890145727,0.0011375540620954102,0.0011375540620954102 -1.3552941176470588,-11.015020651610172,-11.015020651610172,0.008489315180373517,0.008489315180373517,-53.962163775612325,-53.962163775612325,0.001107173959404306,0.001107173959404306 -1.3576470588235294,-11.292813978750633,-11.292813978750633,0.008574074710524111,0.008574074710524111,-54.545356705306794,-54.545356705306794,0.001076932279464437,0.001076932279464437 -1.3599999999999999,-11.604308567309584,-11.604308567309584,0.008579326807583334,0.008579326807583334,-55.10887545319342,-55.10887545319342,0.0010542311663353369,0.0010542311663353369 -1.3623529411764705,-11.91653122925638,-11.91653122925638,0.00841874155526711,0.00841874155526711,-55.654869514194836,-55.654869514194836,0.0010454475001657826,0.0010454475001657826 -1.3647058823529412,-12.237962479816842,-12.237962479816842,0.00823857563014809,0.00823857563014809,-56.18826498304439,-56.18826498304439,0.0010567319555535345,0.0010567319555535345 -1.3670588235294117,-12.56990227050642,-12.56990227050642,0.007840999752640866,0.007840999752640866,-56.71740467603169,-56.71740467603169,0.0010924571617355215,0.0010924571617355215 -1.3694117647058823,-12.892800534325406,-12.892800534325406,0.007289848614785811,0.007289848614785811,-57.250710011132405,-57.250710011132405,0.0011538431105578128,0.0011538431105578128 -1.371764705882353,-13.190737661540604,-13.190737661540604,0.006686379915147707,0.006686379915147707,-57.79479464270753,-57.79479464270753,0.0012394970261594626,0.0012394970261594626 -1.3741176470588234,-13.495132178692806,-13.495132178692806,0.006198364955175572,0.006198364955175572,-58.35297986703666,-58.35297986703666,0.0013459488441477402,0.0013459488441477402 -1.3764705882352941,-13.759112955592695,-13.759112955592695,0.00561559974512967,0.00561559974512967,-58.92582034477291,-58.92582034477291,0.0014686342226274652,0.0014686342226274652 -1.3788235294117648,-14.01061832292545,-14.01061832292545,0.005099093218122786,0.005099093218122786,-59.51177508585867,-59.51177508585867,0.0016027961476950783,0.0016027961476950783 -1.3811764705882352,-14.240420293327226,-14.240420293327226,0.004552090300178962,0.004552090300178962,-60.108649099603824,-60.108649099603824,0.0017448024064915053,0.0017448024064915053 -1.383529411764706,-14.468253512536283,-14.468253512536283,0.0041843294878304415,0.0041843294878304415,-60.713932586963146,-60.713932586963146,0.0018907788937415043,0.0018907788937415043 -1.3858823529411763,-14.677707429953681,-14.677707429953681,0.0038265616202224177,0.0038265616202224177,-61.32549191266371,-61.32549191266371,0.002037901238884407,0.002037901238884407 -1.388235294117647,-14.896828057506212,-14.896828057506212,0.003464187306841565,0.003464187306841565,-61.94139719142568,-61.94139719142568,0.0021839681637907914,0.0021839681637907914 -1.3905882352941177,-15.093607346105495,-15.093607346105495,0.003190229732408112,0.003190229732408112,-62.560008679606355,-62.560008679606355,0.0023270141513304604,0.0023270141513304604 -1.3929411764705881,-15.298933756277627,-15.298933756277627,0.0029608390962493117,0.0029608390962493117,-63.180075855214895,-63.180075855214895,0.0024658140882994816,0.0024658140882994816 -1.3952941176470588,-15.520016345322846,-15.520016345322846,0.0027369201738851358,0.0027369201738851358,-63.80044673044915,-63.80044673044915,0.002599460389757161,0.002599460389757161 -1.3976470588235295,-15.727775668845482,-15.727775668845482,0.0026031505956963844,0.0026031505956963844,-64.4202669499969,-64.4202669499969,0.002727582863002825,0.002727582863002825 -1.4,-15.923951473908602,-15.923951473908602,0.0024644151306545117,0.0024644151306545117,-65.03880579625783,-65.03880579625783,0.002850042766532866,0.002850042766532866 -1.4023529411764706,-16.13093833232252,-16.13093833232252,0.002330967692896908,0.002330967692896908,-65.65550004147919,-65.65550004147919,0.0029670570997709605,0.0029670570997709605 -1.4047058823529412,-16.331981299716293,-16.331981299716293,0.0022346303521416275,0.0022346303521416275,-66.26985908726866,-66.26985908726866,0.0030792559210360074,0.0030792559210360074 -1.4070588235294117,-16.526566322494187,-16.526566322494187,0.002123121227326486,0.002123121227326486,-66.88157544363702,-66.88157544363702,0.003187349340554952,0.003187349340554952 -1.4094117647058824,-16.707942791673467,-16.707942791673467,0.002060567664697574,0.002060567664697574,-67.49037781413523,-67.49037781413523,0.0032926242854033074,0.0032926242854033074 -1.4117647058823528,-16.91166248726834,-16.91166248726834,0.0019634759803219748,0.0019634759803219748,-68.0961455424617,-68.0961455424617,0.0033962541292365763,0.0033962541292365763 -1.4141176470588235,-17.109532540174214,-17.109532540174214,0.0018780599465712969,0.0018780599465712969,-68.69884900007169,-68.69884900007169,0.0034995230883512365,0.0034995230883512365 -1.4164705882352941,-17.320189905386677,-17.320189905386677,0.0017964546511021274,0.0017964546511021274,-69.29854075206353,-69.29854075206353,0.0036041127918091413,0.0036041127918091413 -1.4188235294117646,-17.51675201170823,-17.51675201170823,0.0017009562712695858,0.0017009562712695858,-69.89531819598552,-69.89531819598552,0.0037115091431885404,0.0037115091431885404 -1.4211764705882353,-17.73259740661373,-17.73259740661373,0.0016199614537924306,0.0016199614537924306,-70.48938010449477,-70.48938010449477,0.0038230892753536696,0.0038230892753536696 -1.423529411764706,-17.948024746823517,-17.948024746823517,0.0015643268899310108,0.0015643268899310108,-71.08104128154339,-71.08104128154339,0.003939965981799056,0.003939965981799056 -1.4258823529411764,-18.16223878912941,-18.16223878912941,0.0015017106645363412,0.0015017106645363412,-71.6705273663658,-71.6705273663658,0.004063540092643736,0.004063540092643736 -1.428235294117647,-18.368061957433444,-18.368061957433444,0.0014577584459793149,0.0014577584459793149,-72.25822970215474,-72.25822970215474,0.004194437997647585,0.004194437997647585 -1.4305882352941177,-18.608887964209966,-18.608887964209966,0.0014005800008264132,0.0014005800008264132,-72.8444237720578,-72.8444237720578,0.00433308817907985,0.00433308817907985 -1.4329411764705882,-18.78813077723959,-18.78813077723959,0.0014050545487611127,0.0014050545487611127,-73.42941870709045,-73.42941870709045,0.0044798623639157745,0.0044798623639157745 -1.4352941176470588,-19.006330884434906,-19.006330884434906,0.0013687936075749787,0.0013687936075749787,-74.01346362494914,-74.01346362494914,0.004634455313806518,0.004634455313806518 -1.4376470588235293,-19.190069354988225,-19.190069354988225,0.0013555332621924133,0.0013555332621924133,-74.59678838543752,-74.59678838543752,0.004796340175916254,0.004796340175916254 -1.44,-19.370143884732286,-19.370143884732286,0.00131103212402318,0.00131103212402318,-75.17952561577606,-75.17952561577606,0.004964644755094213,0.004964644755094213 -1.4423529411764706,-19.556808122840703,-19.556808122840703,0.0012806454202742242,0.0012806454202742242,-75.7617772120408,-75.7617772120408,0.005138261231592708,0.005138261231592708 -1.444705882352941,-19.726861547468545,-19.726861547468545,0.0012408270202286505,0.0012408270202286505,-76.34362631512894,-76.34362631512894,0.005315699080531967,0.005315699080531967 -1.4470588235294117,-19.907017749875532,-19.907017749875532,0.0012019078933864689,0.0012019078933864689,-76.92497478260184,-76.92497478260184,0.005495300665157413,0.005495300665157413 -1.4494117647058824,-20.082384423076583,-20.082384423076583,0.001169506046567088,0.001169506046567088,-77.5058124812475,-77.5058124812475,0.005675259451538246,0.005675259451538246 -1.4517647058823528,-20.263584833324256,-20.263584833324256,0.0011373410740467545,0.0011373410740467545,-78.08607459418691,-78.08607459418691,0.005853697170224427,0.005853697170224427 -1.4541176470588235,-20.436485506137792,-20.436485506137792,0.0011042012718756504,0.0011042012718756504,-78.66553691036401,-78.66553691036401,0.006028466744980265,0.006028466744980265 -1.4564705882352942,-20.614331663503247,-20.614331663503247,0.0010758546769898336,0.0010758546769898336,-79.24414230853085,-79.24414230853085,0.006197496795148142,0.006197496795148142 -1.4588235294117646,-20.782087240230716,-20.782087240230716,0.0010651284685208806,0.0010651284685208806,-79.82161786862365,-79.82161786862365,0.006358888297078432,0.006358888297078432 -1.4611764705882353,-20.95227749513696,-20.95227749513696,0.0010494933513992733,0.0010494933513992733,-80.39781115435142,-80.39781115435142,0.006510358606771806,0.006510358606771806 -1.4635294117647057,-21.102107499161733,-21.102107499161733,0.0010442178790953135,0.0010442178790953135,-80.972566265797,-80.972566265797,0.006650143392190681,0.006650143392190681 -1.4658823529411764,-21.26795273863919,-21.26795273863919,0.00102871555111681,0.00102871555111681,-81.5455584762569,-81.5455584762569,0.006776337748683564,0.006776337748683564 -1.468235294117647,-21.42027200839899,-21.42027200839899,0.001009276750396397,0.001009276750396397,-82.11662774281449,-82.11662774281449,0.00688713111867682,0.00688713111867682 -1.4705882352941178,-21.568467524922195,-21.568467524922195,0.0010095080845478235,0.0010095080845478235,-82.68550373617606,-82.68550373617606,0.006981338515965927,0.006981338515965927 -1.4729411764705882,-21.72116073810364,-21.72116073810364,0.001002082541998357,0.001002082541998357,-83.2519995128057,-83.2519995128057,0.007057428337985216,0.007057428337985216 -1.4752941176470589,-21.875298862703925,-21.875298862703925,0.0009812070575354191,0.0009812070575354191,-83.81579076658262,-83.81579076658262,0.00711441652211814,0.00711441652211814 -1.4776470588235295,-22.019771822069654,-22.019771822069654,0.0009761287940823988,0.0009761287940823988,-84.37666677430941,-84.37666677430941,0.0071515148486835265,0.0071515148486835265 -1.48,-22.17028547831428,-22.17028547831428,0.0009507484336908952,0.0009507484336908952,-84.93434337649104,-84.93434337649104,0.007168590100176566,0.007168590100176566 -1.4823529411764707,-22.336257522410786,-22.336257522410786,0.000941795776058964,0.000941795776058964,-85.48849180948042,-85.48849180948042,0.007165235340957957,0.007165235340957957 -1.484705882352941,-22.505075691740043,-22.505075691740043,0.00091800352312057,0.00091800352312057,-86.03885288320386,-86.03885288320386,0.007141882458404589,0.007141882458404589 -1.4870588235294118,-22.667160500762197,-22.667160500762197,0.0009171951741184392,0.0009171951741184392,-86.58511521680482,-86.58511521680482,0.0070993636080699165,0.0070993636080699165 -1.4894117647058822,-22.857052860990926,-22.857052860990926,0.0009020084673098732,0.0009020084673098732,-87.1269044060362,-87.1269044060362,0.007038661794139107,0.007038661794139107 -1.4917647058823529,-23.0342383430306,-23.0342383430306,0.0008973279139185803,0.0008973279139185803,-87.66388849789145,-87.66388849789145,0.006961320626658806,0.006961320626658806 -1.4941176470588236,-23.230591538075053,-23.230591538075053,0.0008884110553093465,0.0008884110553093465,-88.19575138138514,-88.19575138138514,0.006869568640371592,0.006869568640371592 -1.4964705882352942,-23.414409935095925,-23.414409935095925,0.0009000306108196042,0.0009000306108196042,-88.72208657167914,-88.72208657167914,0.006765908947983055,0.006765908947983055 -1.4988235294117647,-23.62404920087671,-23.62404920087671,0.0009108305686059696,0.0009108305686059696,-89.24260179776311,-89.24260179776311,0.0066532762532876665,0.0066532762532876665 -1.5011764705882353,-23.818956089790703,-23.818956089790703,0.0009059211883260844,0.0009059211883260844,-89.7569921858155,-89.7569921858155,0.006535226069846148,0.006535226069846148 -1.5035294117647058,-24.042041367964313,-24.042041367964313,0.0009125853425397309,0.0009125853425397309,-90.26497573941755,-90.26497573941755,0.0064156114428110195,0.0064156114428110195 -1.5058823529411764,-24.25267328244084,-24.25267328244084,0.0009180144701779825,0.0009180144701779825,-90.76638451040124,-90.76638451040124,0.006298597824931415,0.006298597824931415 -1.5082352941176471,-24.47890882942743,-24.47890882942743,0.000928051960185831,0.000928051960185831,-91.26121160966314,-91.26121160966314,0.0061886766534360975,0.0061886766534360975 -1.5105882352941176,-24.70404447448957,-24.70404447448957,0.0009334690915879441,0.0009334690915879441,-91.74949204110855,-91.74949204110855,0.006090292381096944,0.006090292381096944 -1.5129411764705882,-24.948289672740856,-24.948289672740856,0.0009515668877781529,0.0009515668877781529,-92.23159502869255,-92.23159502869255,0.006007737042357579,0.006007737042357579 -1.5152941176470587,-25.187531144820433,-25.187531144820433,0.0009591848295973537,0.0009591848295973537,-92.7079428100762,-92.7079428100762,0.0059450076854297585,0.0059450076854297585 -1.5176470588235293,-25.438882227171742,-25.438882227171742,0.0009763578095029788,0.0009763578095029788,-93.17928607551508,-93.17928607551508,0.0059052038025425675,0.0059052038025425675 -1.52,-25.68341456403185,-25.68341456403185,0.0009787181037514373,0.0009787181037514373,-93.64644736240918,-93.64644736240918,0.0058906801813038735,0.0058906801813038735 -1.5223529411764707,-25.938702003993495,-25.938702003993495,0.0010039067702242725,0.0010039067702242725,-94.110413710956,-94.110413710956,0.005902678663820996,0.005902678663820996 -1.5247058823529411,-26.18635320527053,-26.18635320527053,0.0010179847565978352,0.0010179847565978352,-94.57219801301756,-94.57219801301756,0.005941039280974507,0.005941039280974507 -1.5270588235294118,-26.413608228772368,-26.413608228772368,0.0010339773143921674,0.0010339773143921674,-95.03268572326695,-95.03268572326695,0.006004705444996343,0.006004705444996343 -1.5294117647058822,-26.649530144369873,-26.649530144369873,0.0010453525083252114,0.0010453525083252114,-95.492642017428,-95.492642017428,0.00609131820441905,0.00609131820441905 -1.531764705882353,-26.87519246022999,-26.87519246022999,0.0010507903502236645,0.0010507903502236645,-95.95266663490055,-95.95266663490055,0.006197966495114133,0.006197966495114133 -1.5341176470588236,-27.096845595045295,-27.096845595045295,0.0010577488183272788,0.0010577488183272788,-96.41311266430243,-96.41311266430243,0.006320682696720937,0.006320682696720937 -1.536470588235294,-27.305561060988857,-27.305561060988857,0.001072262110247514,0.001072262110247514,-96.87412325252318,-96.87412325252318,0.006455751672371899,0.006455751672371899 -1.5388235294117647,-27.51914208946576,-27.51914208946576,0.001073818723170331,0.001073818723170331,-97.33556100277492,-97.33556100277492,0.006599315174999367,0.006599315174999367 -1.5411764705882351,-27.717625036949453,-27.717625036949453,0.0010763744691250521,0.0010763744691250521,-97.79727591264644,-97.79727591264644,0.006747822840284464,0.006747822840284464 -1.5435294117647058,-27.916007037584343,-27.916007037584343,0.0010638740450996111,0.0010638740450996111,-98.25882499670782,-98.25882499670782,0.006898108019612729,0.006898108019612729 -1.5458823529411767,-28.10855953582295,-28.10855953582295,0.0010627170804537044,0.0010627170804537044,-98.71982402976016,-98.71982402976016,0.007047879266345667,0.007047879266345667 -1.5482352941176472,-28.30738508862551,-28.30738508862551,0.0010594351363115138,0.0010594351363115138,-99.1797148981486,-99.1797148981486,0.007195557226906943,0.007195557226906943 -1.5505882352941176,-28.495039898228598,-28.495039898228598,0.001053382907263717,0.001053382907263717,-99.63799586566245,-99.63799586566245,0.007340603192377952,0.007340603192377952 -1.5529411764705883,-28.692586089208415,-28.692586089208415,0.0010432031893795953,0.0010432031893795953,-100.094076991945,-100.094076991945,0.007483866667507715,0.007483866667507715 -1.5552941176470587,-28.895118931742033,-28.895118931742033,0.0010317976698982617,0.0010317976698982617,-100.54756910343846,-100.54756910343846,0.0076269263785074095,0.0076269263785074095 -1.5576470588235294,-29.08607664528211,-29.08607664528211,0.0010183369554361114,0.0010183369554361114,-100.99800021513408,-100.99800021513408,0.00777281583930123,0.00777281583930123 -1.5599999999999998,-29.272288512874493,-29.272288512874493,0.0010017802608185407,0.0010017802608185407,-101.44507080766776,-101.44507080766776,0.00792600954512243,0.00792600954512243 -1.5623529411764705,-29.470867117636065,-29.470867117636065,0.000986074749806684,0.000986074749806684,-101.88860396242033,-101.88860396242033,0.008091951668448427,0.008091951668448427 -1.5647058823529412,-29.671418423825468,-29.671418423825468,0.0009687999457217425,0.0009687999457217425,-102.32862076788436,-102.32862076788436,0.008277443071932391,0.008277443071932391 -1.5670588235294118,-29.871490687940728,-29.871490687940728,0.0009489815831605472,0.0009489815831605472,-102.7653111602577,-102.7653111602577,0.008489864529744946,0.008489864529744946 -1.5694117647058823,-30.05844391294114,-30.05844391294114,0.0009182575229881616,0.0009182575229881616,-103.19912168879131,-103.19912168879131,0.008737374240639832,0.008737374240639832 -1.571764705882353,-30.270643363342842,-30.270643363342842,0.000890438136708509,0.000890438136708509,-103.63067967170306,-103.63067967170306,0.009028138862486532,0.009028138862486532 -1.5741176470588236,-30.468488266319635,-30.468488266319635,0.0008487396454882801,0.0008487396454882801,-104.06082902520514,-104.06082902520514,0.009370265353986109,0.009370265353986109 -1.576470588235294,-30.67175686561989,-30.67175686561989,0.0008031519750357961,0.0008031519750357961,-104.49047368774106,-104.49047368774106,0.009770777242678772,0.009770777242678772 -1.5788235294117647,-30.876799628520956,-30.876799628520956,0.000752937406028298,0.000752937406028298,-104.92054935855681,-104.92054935855681,0.010235690179373346,0.010235690179373346 -1.5811764705882352,-31.09615273994171,-31.09615273994171,0.0007087681474939854,0.0007087681474939854,-105.35207129542134,-105.35207129542134,0.010769290144504085,0.010769290144504085 -1.5835294117647059,-31.30860156682543,-31.30860156682543,0.0006530340950253217,0.0006530340950253217,-105.78570714529299,-105.78570714529299,0.01137430288769891,0.01137430288769891 -1.5858823529411765,-31.483903914737933,-31.483903914737933,0.0006204510400447357,0.0006204510400447357,-106.22212932572019,-106.22212932572019,0.01205196681031235,0.01205196681031235 -1.5882352941176474,-31.704879903526823,-31.704879903526823,0.0005669204842798167,0.0005669204842798167,-106.66180150330439,-106.66180150330439,0.01280170527872337,0.01280170527872337 -1.5905882352941176,-31.926761768869923,-31.926761768869923,0.0005213975815314162,0.0005213975815314162,-107.10490042336349,-107.10490042336349,0.013621741771234024,0.013621741771234024 -1.592941176470588,-32.13691094518855,-32.13691094518855,0.0004889722806821151,0.0004889722806821151,-107.55154412208981,-107.55154412208981,0.014509068232458585,0.014509068232458585 -1.5952941176470588,-32.34162282184085,-32.34162282184085,0.00045712408231316626,0.00045712408231316626,-108.00166283699497,-108.00166283699497,0.01545992036615695,0.01545992036615695 -1.5976470588235294,-32.55033218097757,-32.55033218097757,0.0004258390546689609,0.0004258390546689609,-108.45511543983784,-108.45511543983784,0.016469704246515192,0.016469704246515192 -1.6,-32.74444039446994,-32.74444039446994,0.0004040084837385616,0.0004040084837385616,-108.91163828191989,-108.91163828191989,0.01753342348846168,0.01753342348846168 -1.6023529411764705,-32.92058385781613,-32.92058385781613,0.0003870313836092418,0.0003870313836092418,-109.37094796251792,-109.37094796251792,0.018645509315787536,0.018645509315787536 -1.6047058823529412,-33.11691504606807,-33.11691504606807,0.0003699222986289193,0.0003699222986289193,-109.83282322614156,-109.83282322614156,0.019800696356439208,0.019800696356439208 -1.6070588235294117,-33.28435304604154,-33.28435304604154,0.0003586420507261394,0.0003586420507261394,-110.29688484037831,-110.29688484037831,0.02099276726722491,0.02099276726722491 -1.6094117647058825,-33.463201275101234,-33.463201275101234,0.00034639161958973676,0.00034639161958973676,-110.76291271000706,-110.76291271000706,0.022216192928131873,0.022216192928131873 -1.611764705882353,-33.63163914009367,-33.63163914009367,0.0003355951940906301,0.0003355951940906301,-111.23062415478502,-111.23062415478502,0.02346487642593932,0.02346487642593932 -1.6141176470588237,-33.79462746838778,-33.79462746838778,0.00032656691292314434,0.00032656691292314434,-111.69972011989474,-111.69972011989474,0.024732882410199337,0.024732882410199337 -1.616470588235294,-33.94962069901946,-33.94962069901946,0.0003173738320971341,0.0003173738320971341,-112.16999118796457,-112.16999118796457,0.026014384232148028,0.026014384232148028 -1.6188235294117648,-34.10102454867582,-34.10102454867582,0.00031073392994339014,0.00031073392994339014,-112.6412404538847,-112.6412404538847,0.027303576862968304,0.027303576862968304 -1.6211764705882352,-34.238427014649616,-34.238427014649616,0.0003058438464701236,0.0003058438464701236,-113.11320099436145,-113.11320099436145,0.02859447592952448,0.02859447592952448 -1.6235294117647059,-34.39793903934378,-34.39793903934378,0.00029954013185996587,0.00029954013185996587,-113.5857885873941,-113.5857885873941,0.029881626216156663,0.029881626216156663 -1.6258823529411766,-34.53433820322992,-34.53433820322992,0.00029603011814579244,0.00029603011814579244,-114.05876292859494,-114.05876292859494,0.031159447871711904,0.031159447871711904 -1.6282352941176468,-34.67630300967043,-34.67630300967043,0.000293904751191997,0.000293904751191997,-114.53200520250839,-114.53200520250839,0.03242250648047156,0.03242250648047156 -1.630588235294118,-34.833200717353755,-34.833200717353755,0.00029170256690507233,0.00029170256690507233,-115.00537991670869,-115.00537991670869,0.03366549952053538,0.03366549952053538 -1.6329411764705881,-34.96279975517437,-34.96279975517437,0.00029312961641887037,0.00029312961641887037,-115.4787926432332,-115.4787926432332,0.034883398727244816,0.034883398727244816 -1.6352941176470588,-35.08981209449182,-35.08981209449182,0.00029256644250907817,0.00029256644250907817,-115.9520925147223,-115.9520925147223,0.03607130952323943,0.03607130952323943 -1.6376470588235295,-35.21580855919388,-35.21580855919388,0.00029639496624937,0.00029639496624937,-116.42517804868176,-116.42517804868176,0.03722440148504912,0.03722440148504912 -1.6400000000000001,-35.33725275534783,-35.33725275534783,0.0003003329877936374,0.0003003329877936374,-116.89802847483081,-116.89802847483081,0.03833830577522199,0.03833830577522199 -1.6423529411764706,-35.44863199919573,-35.44863199919573,0.0003012042060806698,0.0003012042060806698,-117.3705176116477,-117.3705176116477,0.03940862268125393,0.03940862268125393 -1.6447058823529415,-35.560598206120986,-35.560598206120986,0.00030553898583350386,0.00030553898583350386,-117.84259876822632,-117.84259876822632,0.04043136225597351,0.04043136225597351 -1.6470588235294117,-35.66626626520852,-35.66626626520852,0.0003074959849367119,0.0003074959849367119,-118.31414132175836,-118.31414132175836,0.04140267585587144,0.04140267585587144 -1.6494117647058824,-35.769034566172465,-35.769034566172465,0.0003111792849749402,0.0003111792849749402,-118.78517547392951,-118.78517547392951,0.042318957926680494,0.042318957926680494 -1.651764705882353,-35.87523795807815,-35.87523795807815,0.0003164116564329591,0.0003164116564329591,-119.25557114528985,-119.25557114528985,0.04317695380488852,0.04317695380488852 -1.6541176470588237,-35.971888324981464,-35.971888324981464,0.00032024355797983037,0.00032024355797983037,-119.72534782863484,-119.72534782863484,0.04397358071051968,0.04397358071051968 -1.6564705882352944,-36.06681140301717,-36.06681140301717,0.00032145466582416397,0.00032145466582416397,-120.194410341305,-120.194410341305,0.04470585611604473,0.04470585611604473 -1.6588235294117644,-36.16556000885672,-36.16556000885672,0.0003238723073365439,0.0003238723073365439,-120.66272319851994,-120.66272319851994,0.045371534159165366,0.045371534159165366 -1.6611764705882353,-36.26216492485004,-36.26216492485004,0.00032707096615364987,0.00032707096615364987,-121.13025707043431,-121.13025707043431,0.045968200915669014,0.045968200915669014 -1.663529411764706,-36.35726919235151,-36.35726919235151,0.0003300028316539672,0.0003300028316539672,-121.59698278298795,-121.59698278298795,0.046493897195712015,0.046493897195712015 -1.6658823529411766,-36.457539193295915,-36.457539193295915,0.0003326877620454285,0.0003326877620454285,-122.06282967605169,-122.06282967605169,0.04694674371541922,0.04694674371541922 -1.668235294117647,-36.55106974739971,-36.55106974739971,0.00033541938512164117,0.00033541938512164117,-122.5278243751672,-122.5278243751672,0.04732541461303417,0.04732541461303417 -1.670588235294118,-36.64878223376901,-36.64878223376901,0.000337580793388356,0.000337580793388356,-122.99193348938834,-122.99193348938834,0.04762870334631841,0.04762870334631841 -1.672941176470588,-36.743843742995296,-36.743843742995296,0.00034250400263058324,0.00034250400263058324,-123.45508752713683,-123.45508752713683,0.04785559047411943,0.04785559047411943 -1.6752941176470588,-36.840501041955875,-36.840501041955875,0.00034696751987128285,0.00034696751987128285,-123.91725834166722,-123.91725834166722,0.048005399500260976,0.048005399500260976 -1.6776470588235295,-36.94369477155386,-36.94369477155386,0.00035181422644100336,0.00035181422644100336,-124.37848482387479,-124.37848482387479,0.04807777728540203,0.04807777728540203 -1.68,-37.036130275867954,-37.036130275867954,0.000359979893439211,0.000359979893439211,-124.83870632767095,-124.83870632767095,0.048072330573083195,0.048072330573083195 -1.6823529411764706,-37.13261955877553,-37.13261955877553,0.0003652208985503471,0.0003652208985503471,-125.29789855196807,-125.29789855196807,0.047989268699763776,0.047989268699763776 -1.684705882352941,-37.22795311779348,-37.22795311779348,0.0003710311263494955,0.0003710311263494955,-125.75603003663925,-125.75603003663925,0.047828886213030455,0.047828886213030455 -1.6870588235294117,-37.322239249721186,-37.322239249721186,0.00037999650292874337,0.00037999650292874337,-126.21312287208129,-126.21312287208129,0.047591299993108696,0.047591299993108696 -1.6894117647058824,-37.408495426977204,-37.408495426977204,0.00038925670822213533,0.00038925670822213533,-126.66914562046472,-126.66914562046472,0.04727743132241896,0.04727743132241896 -1.6917647058823528,-37.506083840016764,-37.506083840016764,0.00039767473323873095,0.00039767473323873095,-127.12408457971529,-127.12408457971529,0.04688835561116312,0.04688835561116312 -1.6941176470588235,-37.59645604022202,-37.59645604022202,0.0004077264752915895,0.0004077264752915895,-127.57792100464961,-127.57792100464961,0.046424999108639925,0.046424999108639925 -1.6964705882352942,-37.691843057603826,-37.691843057603826,0.00041730734415092765,0.00041730734415092765,-128.03063349998027,-128.03063349998027,0.04588863820276824,0.04588863820276824 -1.6988235294117644,-37.78159085477374,-37.78159085477374,0.000426412217427923,0.000426412217427923,-128.48224432238626,-128.48224432238626,0.045280861919478735,0.045280861919478735 -1.7011764705882353,-37.8692588298524,-37.8692588298524,0.0004366076609433586,0.0004366076609433586,-128.9327073599636,-128.9327073599636,0.04460319985545211,0.04460319985545211 -1.7035294117647062,-37.96563800517327,-37.96563800517327,0.00044906648238031844,0.00044906648238031844,-129.38204244633386,-129.38204244633386,0.04385738539290542,0.04385738539290542 -1.7058823529411766,-38.06084620111145,-38.06084620111145,0.0004612181794985153,0.0004612181794985153,-129.8302432024739,-129.8302432024739,0.04304572367700866,0.04304572367700866 -1.7082352941176469,-38.151784763519025,-38.151784763519025,0.0004751774314301844,0.0004751774314301844,-130.27733572083042,-130.27733572083042,0.04216971845850356,0.04216971845850356 -1.7105882352941175,-38.24979412315871,-38.24979412315871,0.0004899657498950953,0.0004899657498950953,-130.72324736462255,-130.72324736462255,0.04123251747103607,0.04123251747103607 -1.7129411764705882,-38.34869926204824,-38.34869926204824,0.0005063000380482577,0.0005063000380482577,-131.16804997894337,-131.16804997894337,0.04023574625818833,0.04023574625818833 -1.7152941176470589,-38.43755664563217,-38.43755664563217,0.0005236929223257883,0.0005236929223257883,-131.61173971053324,-131.61173971053324,0.039182256855398265,0.039182256855398265 -1.7176470588235295,-38.535802090945836,-38.535802090945836,0.000543047090643969,0.000543047090643969,-132.05433305220376,-132.05433305220376,0.03807449749775622,0.03807449749775622 -1.72,-38.6349326475611,-38.6349326475611,0.000564667961905634,0.000564667961905634,-132.49580566281548,-132.49580566281548,0.03691563196160039,0.03691563196160039 -1.7223529411764709,-38.74154757426553,-38.74154757426553,0.0005969604214302642,0.0005969604214302642,-132.93624434710608,-132.93624434710608,0.035708087827220326,0.035708087827220326 -1.7247058823529409,-38.82990815240665,-38.82990815240665,0.0006175888989972801,0.0006175888989972801,-133.37564231426325,-133.37564231426325,0.03445494035740016,0.03445494035740016 -1.7270588235294118,-38.929045050137795,-38.929045050137795,0.0006486645123219483,0.0006486645123219483,-133.81404389284938,-133.81404389284938,0.03315951499335678,0.03315951499335678 -1.7294117647058824,-39.027462109960084,-39.027462109960084,0.0006816505770309685,0.0006816505770309685,-134.25152643865104,-134.25152643865104,0.031824320476871684,0.031824320476871684 -1.731764705882353,-39.121504975998704,-39.121504975998704,0.0007228745865401763,0.0007228745865401763,-134.6881096155704,-134.6881096155704,0.03045322006385851,0.03045322006385851 -1.7341176470588235,-39.22016927283585,-39.22016927283585,0.0007625066411842471,0.0007625066411842471,-135.12396320732017,-135.12396320732017,0.029049024298814587,0.029049024298814587 -1.7364705882352938,-39.30927742162961,-39.30927742162961,0.0008143007535912379,0.0008143007535912379,-135.55911480955834,-135.55911480955834,0.027615366180121715,0.027615366180121715 -1.7388235294117647,-39.420732789773574,-39.420732789773574,0.0008621936929018682,0.0008621936929018682,-135.99374342269067,-135.99374342269067,0.02615541083182832,0.02615541083182832 -1.7411764705882353,-39.51593080906747,-39.51593080906747,0.0009304775875583861,0.0009304775875583861,-136.4280141163719,-136.4280141163719,0.024672638671666004,0.024672638671666004 -1.743529411764706,-39.61161841131254,-39.61161841131254,0.0010026482721320795,0.0010026482721320795,-136.8621848033434,-136.8621848033434,0.02317085937432201,0.02317085937432201 -1.7458823529411764,-39.70942680968295,-39.70942680968295,0.0010952617169643,0.0010952617169643,-137.29649754221984,-137.29649754221984,0.021653716347102905,0.021653716347102905 -1.748235294117647,-39.80163658428519,-39.80163658428519,0.001183870720300993,0.001183870720300993,-137.73141116984343,-137.73141116984343,0.02012503319427518,0.02012503319427518 -1.7505882352941176,-39.88986163662833,-39.88986163662833,0.0013143045260951424,0.0013143045260951424,-138.16736861729268,-138.16736861729268,0.01858878774396302,0.01858878774396302 -1.7529411764705882,-39.980723575513196,-39.980723575513196,0.0014477014930461473,0.0014477014930461473,-138.6051113918285,-138.6051113918285,0.017049819359517077,0.017049819359517077 -1.7552941176470591,-40.06683688234618,-40.06683688234618,0.0016167174676176253,0.0016167174676176253,-139.04562267374118,-139.04562267374118,0.01551264948661084,0.01551264948661084 -1.7576470588235293,-40.14213504066384,-40.14213504066384,0.0018192599064253902,0.0018192599064253902,-139.4902697605287,-139.4902697605287,0.013983654218525836,0.013983654218525836 -1.76,-40.21730787812112,-40.21730787812112,0.0020880985967275684,0.0020880985967275684,-139.9410347146144,-139.9410347146144,0.012469885706147996,0.012469885706147996 -1.7623529411764705,-40.27703999823694,-40.27703999823694,0.0024019069386907216,0.0024019069386907216,-140.40100830775566,-140.40100830775566,0.01098080313655871,0.01098080313655871 -1.7647058823529411,-40.32348127408361,-40.32348127408361,0.0028439821646851224,0.0028439821646851224,-140.8747274016148,-140.8747274016148,0.009530227144288113,0.009530227144288113 -1.7670588235294116,-40.33875626408668,-40.33875626408668,0.003380998269061041,0.003380998269061041,-141.36952986972702,-141.36952986972702,0.008139311254457065,0.008139311254457065 -1.7694117647058827,-40.32408938788667,-40.32408938788667,0.004149616580391997,0.004149616580391997,-141.89711388588674,-141.89711388588674,0.0068426608581351744,0.0068426608581351744 -1.7717647058823531,-40.27082857737678,-40.27082857737678,0.005074476663510584,0.005074476663510584,-142.47516339726806,-142.47516339726806,0.00570107201972809,0.00570107201972809 -1.7741176470588236,-40.132536427029734,-40.132536427029734,0.0061319950468211966,0.0061319950468211966,-143.12474385907328,-143.12474385907328,0.004818418665328182,0.004818418665328182 -1.776470588235294,-39.91489284858973,-39.91489284858973,0.0069169810839519105,0.0069169810839519105,-143.85012330619793,-143.85012330619793,0.004344117495088949,0.004344117495088949 -1.7788235294117647,-39.66979811676396,-39.66979811676396,0.007051541563056797,0.007051541563056797,-144.60324964098805,-144.60324964098805,0.004399407721975963,0.004399407721975963 -1.7811764705882354,-39.472582835977235,-39.472582835977235,0.006427319003155716,0.006427319003155716,-145.30646198146212,-145.30646198146212,0.004954009844195435,0.004954009844195435 -1.7835294117647063,-39.35152425018158,-39.35152425018158,0.005537384103183275,0.005537384103183275,-145.92780528766747,-145.92780528766747,0.005855971731410488,0.005855971731410488 -1.7858823529411765,-39.29422255864886,-39.29422255864886,0.004785554747904159,0.004785554747904159,-146.47983088732184,-146.47983088732184,0.006961555546011142,0.006961555546011142 -1.7882352941176471,-39.30373810403507,-39.30373810403507,0.004190708870262777,0.004190708870262777,-146.98360837307916,-146.98360837307916,0.008178915945234951,0.008178915945234951 -1.7905882352941174,-39.32350763490276,-39.32350763490276,0.0036944385098683437,0.0036944385098683437,-147.45521334546,-147.45521334546,0.009457181411820545,0.009457181411820545 -1.7929411764705883,-39.369726732325056,-39.369726732325056,0.0033290200352099,0.0033290200352099,-147.90481629253165,-147.90481629253165,0.010766866273763775,0.010766866273763775 -1.795294117647059,-39.43243880373527,-39.43243880373527,0.0030431405989766436,0.0030431405989766436,-148.33900846685756,-148.33900846685756,0.012091674414377803,0.012091674414377803 -1.7976470588235294,-39.49902546891103,-39.49902546891103,0.002797817305631099,0.002797817305631099,-148.76185864726742,-148.76185864726742,0.013421225545471056,0.013421225545471056 -1.8,-39.57570522387755,-39.57570522387755,0.0026074033502801017,0.0026074033502801017,-149.1761158507768,-149.1761158507768,0.01474917701999165,0.01474917701999165 diff --git a/sparameters/rotate_f258530e_8890572b.yml b/sparameters/rotate_f258530e_8890572b.yml deleted file mode 100644 index d26c19ce..00000000 --- a/sparameters/rotate_f258530e_8890572b.yml +++ /dev/null @@ -1,27 +0,0 @@ -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: 10 -compute_time_seconds: 93.3253698348999 -compute_time_minutes: 1.555422830581665 diff --git a/sparameters/rotate_f258530e_8c630bfa.csv b/sparameters/rotate_f258530e_8c630bfa.csv deleted file mode 100644 index 76cc80ce..00000000 --- a/sparameters/rotate_f258530e_8c630bfa.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,-2.7263642000704937,-2.7263642000704937,0.0035986878913710127,0.0035986878913710127,1.993225827874131,1.993225827874131,0.0027252501328559452,0.0027252501328559452 -1.2023529411764706,0.1050636484395267,0.1050636484395267,0.04135937032273117,0.04135937032273117,-0.04790202801838164,-0.04790202801838164,0.000582005568943754,0.000582005568943754 -1.204705882352941,2.6717071782429884,2.6717071782429884,0.018952131785265725,0.018952131785265725,2.451401722139714,2.451401722139714,0.0010812446361415714,0.0010812446361415714 -1.2070588235294117,2.994606209302654,2.994606209302654,0.0071557828355673135,0.0071557828355673135,1.0741642783562007,1.0741642783562007,0.0012699837478025355,0.0012699837478025355 -1.2094117647058824,0.10665219851184221,0.10665219851184221,0.0054068296575517085,0.0054068296575517085,0.7352759042266115,0.7352759042266115,0.0012755200343794921,0.0012755200343794921 -1.2117647058823529,-2.2982523416620984,-2.2982523416620984,0.002784755456959641,0.002784755456959641,-0.18532841004087178,-0.18532841004087178,0.003194853411392353,0.003194853411392353 -1.2141176470588235,-1.6616290734439365,-1.6616290734439365,0.004877008712306085,0.004877008712306085,-1.6129468483245568,-1.6129468483245568,0.0053720981195709595,0.0053720981195709595 -1.216470588235294,-2.1817825118063086,-2.1817825118063086,0.0025202124372280103,0.0025202124372280103,-3.1397528720495926,-3.1397528720495926,0.006752563160628626,0.006752563160628626 -1.2188235294117646,-2.992577430110562,-2.992577430110562,0.0012297518624560147,0.0012297518624560147,-4.696666350644341,-4.696666350644341,0.006869442787083669,0.006869442787083669 -1.2211764705882353,-5.011705516183884,-5.011705516183884,0.001612895224613327,0.001612895224613327,-6.265871252870029,-6.265871252870029,0.0058359722411497955,0.0058359722411497955 -1.2235294117647058,-5.135421688198496,-5.135421688198496,0.0032226323579382264,0.0032226323579382264,-7.84918976553174,-7.84918976553174,0.004239371146121122,0.004239371146121122 -1.2258823529411764,-8.175143518106259,-8.175143518106259,0.0025959398974505104,0.0025959398974505104,-9.469417787162062,-9.469417787162062,0.002916994040024859,0.002916994040024859 -1.228235294117647,-5.3855973274219675,-5.3855973274219675,0.0020743331668872,0.0020743331668872,-11.150080034666349,-11.150080034666349,0.002481781524259531,0.002481781524259531 -1.2305882352941175,-7.564089205508171,-7.564089205508171,0.0002832912012514475,0.0002832912012514475,-12.770340687795459,-12.770340687795459,0.0032469231077396645,0.0032469231077396645 -1.2329411764705882,-8.555039703126496,-8.555039703126496,0.0013853295660596165,0.0013853295660596165,-14.343851495233125,-14.343851495233125,0.004930577470179301,0.004930577470179301 -1.2352941176470589,-9.080511176114697,-9.080511176114697,0.0024343923545854496,0.0024343923545854496,-15.91856260355792,-15.91856260355792,0.00686867675372884,0.00686867675372884 -1.2376470588235293,-8.583007164522549,-8.583007164522549,0.0007541208508907069,0.0007541208508907069,-17.53165866145445,-17.53165866145445,0.008366494869499176,0.008366494869499176 -1.24,-9.908412748909928,-9.908412748909928,0.0007827473969646539,0.0007827473969646539,-19.206287842804645,-19.206287842804645,0.008983349274052015,0.008983349274052015 -1.2423529411764704,-9.915665593111338,-9.915665593111338,0.0005277359678699756,0.0005277359678699756,-20.969234507158173,-20.969234507158173,0.008858224256893265,0.008858224256893265 -1.244705882352941,-10.521893151732344,-10.521893151732344,0.0009492991011184269,0.0009492991011184269,-22.816516076589906,-22.816516076589906,0.008659291118125715,0.008659291118125715 -1.2470588235294118,-10.435548583244906,-10.435548583244906,0.0008182854509996495,0.0008182854509996495,-24.67459910606537,-24.67459910606537,0.008803581646156456,0.008803581646156456 -1.2494117647058822,-10.193545539087143,-10.193545539087143,0.0007374874246149397,0.0007374874246149397,-26.468728384552975,-26.468728384552975,0.008911646928334375,0.008911646928334375 -1.251764705882353,-9.68051070060348,-9.68051070060348,0.0005574374792147858,0.0005574374792147858,-28.199435753966227,-28.199435753966227,0.008301657086583375,0.008301657086583375 -1.2541176470588236,-10.732475665676482,-10.732475665676482,0.00028967496567065045,0.00028967496567065045,-29.926492279838914,-29.926492279838914,0.006752640803115791,0.006752640803115791 -1.256470588235294,-13.079537072582553,-13.079537072582553,0.00136994144146698,0.00136994144146698,-31.74758631897068,-31.74758631897068,0.004715063534893578,0.004715063534893578 -1.2588235294117647,-12.630026952803895,-12.630026952803895,0.001549564023492073,0.001549564023492073,-33.822644836263414,-33.822644836263414,0.0030957991788900727,0.0030957991788900727 -1.2611764705882353,-10.934163425709718,-10.934163425709718,0.0013455875447023014,0.0013455875447023014,-36.10074412533503,-36.10074412533503,0.002645062787660606,0.002645062787660606 -1.2635294117647058,-9.090539609608541,-9.090539609608541,0.0008492754983226238,0.0008492754983226238,-38.21924690650681,-38.21924690650681,0.0028198118195388575,0.0028198118195388575 -1.2658823529411765,-7.8735118246386655,-7.8735118246386655,0.00195900646805022,0.00195900646805022,-40.202126677068996,-40.202126677068996,0.0030554531861392933,0.0030554531861392933 -1.268235294117647,-6.8295946202890425,-6.8295946202890425,0.0016805269598299272,0.0016805269598299272,-42.06055131636156,-42.06055131636156,0.0033862018879991375,0.0033862018879991375 -1.2705882352941176,-5.590586530384618,-5.590586530384618,0.002152008820380401,0.002152008820380401,-43.73002471013097,-43.73002471013097,0.0035835279881673804,0.0035835279881673804 -1.2729411764705882,-5.429539825285591,-5.429539825285591,0.001607692349387055,0.001607692349387055,-45.21170581848974,-45.21170581848974,0.003200075023942136,0.003200075023942136 -1.2752941176470587,-5.533329900186814,-5.533329900186814,0.0009879326478637077,0.0009879326478637077,-46.46218336904122,-46.46218336904122,0.0021535243293139875,0.0021535243293139875 -1.2776470588235294,-4.502831733239143,-4.502831733239143,0.0054144912182928304,0.0054144912182928304,-47.016177464614316,-47.016177464614316,0.001077260707472373,0.001077260707472373 -1.28,-5.659716547336678,-5.659716547336678,0.0024997013871779854,0.0024997013871779854,-47.14929705854348,-47.14929705854348,0.0016191561840681297,0.0016191561840681297 -1.2823529411764705,-5.537895001126487,-5.537895001126487,0.0017449099196646038,0.0017449099196646038,-48.09504177627689,-48.09504177627689,0.002420486136561887,0.002420486136561887 -1.2847058823529411,-6.510515843137859,-6.510515843137859,0.0006743719092440208,0.0006743719092440208,-49.129943912381044,-49.129943912381044,0.002506032685594585,0.002506032685594585 -1.2870588235294118,-9.055949370836968,-9.055949370836968,0.0023449222210962938,0.0023449222210962938,-49.99834264766877,-49.99834264766877,0.0019790939828671183,0.0019790939828671183 -1.2894117647058823,-11.956456835605923,-11.956456835605923,0.0008736162992849898,0.0008736162992849898,-50.458604238430844,-50.458604238430844,0.0016059999626370173,0.0016059999626370173 -1.291764705882353,-11.550529213646076,-11.550529213646076,0.0010451902023181927,0.0010451902023181927,-50.9440235299266,-50.9440235299266,0.0020137344346405845,0.0020137344346405845 -1.2941176470588236,-12.502556243037958,-12.502556243037958,0.0012025847374734868,0.0012025847374734868,-51.741915630635816,-51.741915630635816,0.0024411332628829726,0.0024411332628829726 -1.296470588235294,-12.736012574935902,-12.736012574935902,0.0007844921036085741,0.0007844921036085741,-52.58357914659934,-52.58357914659934,0.0023991880971305237,0.0023991880971305237 -1.2988235294117647,-12.014983411118049,-12.014983411118049,0.0005455989987836009,0.0005455989987836009,-53.269393469908145,-53.269393469908145,0.0020639105642327317,0.0020639105642327317 -1.3011764705882352,-10.865107484627838,-10.865107484627838,0.0015398567323583277,0.0015398567323583277,-53.76518456862568,-53.76518456862568,0.002004912390781291,0.002004912390781291 -1.3035294117647058,-11.899404471240128,-11.899404471240128,0.0011568002067177856,0.0011568002067177856,-54.359468582299755,-54.359468582299755,0.00233238011959725,0.00233238011959725 -1.3058823529411765,-13.16802585390826,-13.16802585390826,0.000785410891831008,0.000785410891831008,-55.09933624916916,-55.09933624916916,0.0025634286803361906,0.0025634286803361906 -1.308235294117647,-15.387733885039736,-15.387733885039736,0.00014653970745438669,0.00014653970745438669,-55.8341144406852,-55.8341144406852,0.002472909236542431,0.002472909236542431 -1.3105882352941176,-14.525205237426281,-14.525205237426281,0.0002063286227196402,0.0002063286227196402,-56.4469367869459,-56.4469367869459,0.0022848497378602315,0.0022848497378602315 -1.3129411764705883,-11.655029361042564,-11.655029361042564,0.0009800810732670728,0.0009800810732670728,-56.98730593901633,-56.98730593901633,0.002345550212327045,0.002345550212327045 -1.3152941176470587,-11.982923142656341,-11.982923142656341,0.00027837951291857327,0.00027837951291857327,-57.61083940868761,-57.61083940868761,0.002599311907996689,0.002599311907996689 -1.3176470588235294,-9.775329067245641,-9.775329067245641,0.0003148348235632969,0.0003148348235632969,-58.30716157850395,-58.30716157850395,0.0027266137968495275,0.0027266137968495275 -1.32,-9.359204279104254,-9.359204279104254,0.0007425480519227887,0.0007425480519227887,-58.9770689978733,-58.9770689978733,0.002643246701764941,0.002643246701764941 -1.3223529411764705,-10.472915679753475,-10.472915679753475,0.000319545910335552,0.000319545910335552,-59.5662295509355,-59.5662295509355,0.002554303945202501,0.002554303945202501 -1.3247058823529412,-9.803040577434711,-9.803040577434711,0.00059467351111209,0.00059467351111209,-60.13192295164722,-60.13192295164722,0.0026558034412477154,0.0026558034412477154 -1.3270588235294118,-12.840948080600526,-12.840948080600526,0.0006958551591585692,0.0006958551591585692,-60.753667909438,-60.753667909438,0.002855027663195028,0.002855027663195028 -1.3294117647058823,-13.137585882700405,-13.137585882700405,0.00043819215525330257,0.00043819215525330257,-61.41393500167482,-61.41393500167482,0.002942391790336641,0.002942391790336641 -1.331764705882353,-14.286866571635134,-14.286866571635134,0.00031213287012549825,0.00031213287012549825,-62.048166538894556,-62.048166538894556,0.002890553829035672,0.002890553829035672 -1.3341176470588234,-15.343631969804278,-15.343631969804278,0.00044711649731892704,0.00044711649731892704,-62.62961663977565,-62.62961663977565,0.002867236704021706,0.002867236704021706 -1.336470588235294,-12.45090706819293,-12.45090706819293,0.0009635366862800894,0.0009635366862800894,-63.20472821717238,-63.20472821717238,0.002985984593947177,0.002985984593947177 -1.3388235294117647,-12.62323610016091,-12.62323610016091,0.0010033496606365164,0.0010033496606365164,-63.81982077392826,-63.81982077392826,0.0031632092287617376,0.0031632092287617376 -1.3411764705882352,-14.630668860801945,-14.630668860801945,0.00042193542311729003,0.00042193542311729003,-64.4554678291397,-64.4554678291397,0.003248513103962181,0.003248513103962181 -1.3435294117647059,-15.328789128228614,-15.328789128228614,0.0003753668359596522,0.0003753668359596522,-65.0716741591917,-65.0716741591917,0.0032459204633443987,0.0032459204633443987 -1.3458823529411765,-18.4690667492117,-18.4690667492117,0.00028742229637720854,0.00028742229637720854,-65.65501644794561,-65.65501644794561,0.0032733372996463853,0.0032733372996463853 -1.348235294117647,-17.41168912976697,-17.41168912976697,0.0005217216847363531,0.0005217216847363531,-66.23722788311916,-66.23722788311916,0.0034084564741078275,0.0034084564741078275 -1.3505882352941176,-20.123897778668727,-20.123897778668727,0.00023698795738694557,0.00023698795738694557,-66.84616196720279,-66.84616196720279,0.0035863410829485008,0.0035863410829485008 -1.3529411764705883,-19.7388168555671,-19.7388168555671,0.00019383737153898085,0.00019383737153898085,-67.47011642877446,-67.47011642877446,0.003705385185856203,0.003705385185856203 -1.3552941176470588,-22.350866520359087,-22.350866520359087,0.00020208073499835888,0.00020208073499835888,-68.08393877038196,-68.08393877038196,0.0037629992990824293,0.0037629992990824293 -1.3576470588235294,-22.12807744935879,-22.12807744935879,0.00019257837320670645,0.00019257837320670645,-68.67970661033198,-68.67970661033198,0.0038368575713474983,0.0038368575713474983 -1.3599999999999999,-23.813519417829443,-23.813519417829443,0.0006853071608742836,0.0006853071608742836,-69.2752458756465,-69.2752458756465,0.003990631268369437,0.003990631268369437 -1.3623529411764705,-25.424159340883755,-25.424159340883755,0.0004272738340544119,0.0004272738340544119,-69.8908178082035,-69.8908178082035,0.004184830417106966,0.004184830417106966 -1.3647058823529412,-26.029138858930384,-26.029138858930384,0.00016758534598468512,0.00016758534598468512,-70.52262585632859,-70.52262585632859,0.0043390700512784324,0.0043390700512784324 -1.3670588235294117,-26.816238253683572,-26.816238253683572,0.0003617234005653016,0.0003617234005653016,-71.15499504772357,-71.15499504772357,0.004430879526547042,0.004430879526547042 -1.3694117647058823,-28.03780702440184,-28.03780702440184,0.00011039423090482343,0.00011039423090482343,-71.7807574957541,-71.7807574957541,0.004503724013655617,0.004503724013655617 -1.371764705882353,-28.216939479468603,-28.216939479468603,0.0003560133530143916,0.0003560133530143916,-72.40669907592843,-72.40669907592843,0.004602311822154213,0.004602311822154213 -1.3741176470588234,-30.775249572429658,-30.775249572429658,0.00018887919174227248,0.00018887919174227248,-73.04502692148597,-73.04502692148597,0.004710563047451354,0.004710563047451354 -1.3764705882352941,-32.33988526606904,-32.33988526606904,0.00014338631262996514,0.00014338631262996514,-73.69831195814304,-73.69831195814304,0.004770273695873392,0.004770273695873392 -1.3788235294117648,-32.47529670169595,-32.47529670169595,0.00035828338795461037,0.00035828338795461037,-74.35789134022023,-74.35789134022023,0.004739061044394093,0.004739061044394093 -1.3811764705882352,-33.751901040727326,-33.751901040727326,9.545815330325196e-05,9.545815330325196e-05,-75.0128551621282,-75.0128551621282,0.00463111425955672,0.00463111425955672 -1.383529411764706,-31.151493253171715,-31.151493253171715,7.00762312666551e-05,7.00762312666551e-05,-75.66093338591834,-75.66093338591834,0.0044882881899221275,0.0044882881899221275 -1.3858823529411763,-31.328219083645404,-31.328219083645404,0.00027137241460329135,0.00027137241460329135,-76.30799489621134,-76.30799489621134,0.004337417149313429,0.004337417149313429 -1.388235294117647,-32.16929900746404,-32.16929900746404,0.0002830425265430033,0.0002830425265430033,-76.96057892495448,-76.96057892495448,0.00416335478594106,0.00416335478594106 -1.3905882352941177,-31.57820004175414,-31.57820004175414,0.0003476658372340788,0.0003476658372340788,-77.61881757840051,-77.61881757840051,0.003936208118275473,0.003936208118275473 -1.3929411764705881,-32.22213258333683,-32.22213258333683,0.00014599472444436505,0.00014599472444436505,-78.27418350377832,-78.27418350377832,0.00365000762388934,0.00365000762388934 -1.3952941176470588,-33.29358132471942,-33.29358132471942,0.0006383016163897696,0.0006383016163897696,-78.91894941561293,-78.91894941561293,0.0033360107763795613,0.0033360107763795613 -1.3976470588235295,-35.37104216640105,-35.37104216640105,0.00017339042280142814,0.00017339042280142814,-79.55207965829315,-79.55207965829315,0.003031980373219326,0.003031980373219326 -1.4,-37.006856594503695,-37.006856594503695,0.0003659635639540183,0.0003659635639540183,-80.18207429117481,-80.18207429117481,0.002757731729846026,0.002757731729846026 -1.4023529411764706,-37.52702894089414,-37.52702894089414,6.0034720748572554e-05,6.0034720748572554e-05,-80.81924523541667,-80.81924523541667,0.002499864966990902,0.002499864966990902 -1.4047058823529412,-39.03111330379261,-39.03111330379261,0.0003740278185125805,0.0003740278185125805,-81.4632912426387,-81.4632912426387,0.002235520154868801,0.002235520154868801 -1.4070588235294117,-40.52073283839685,-40.52073283839685,0.0005115960595141647,0.0005115960595141647,-82.10675719430229,-82.10675719430229,0.001965316109630457,0.001965316109630457 -1.4094117647058824,-41.27233445372099,-41.27233445372099,0.0003540404238888449,0.0003540404238888449,-82.74156900405778,-82.74156900405778,0.0017122342846215193,0.0017122342846215193 -1.4117647058823528,-40.24388938329558,-40.24388938329558,0.0003275419885370395,0.0003275419885370395,-83.37106854374153,-83.37106854374153,0.001502545968296104,0.001502545968296104 -1.4141176470588235,-42.195300945023426,-42.195300945023426,0.0005273087150299507,0.0005273087150299507,-84.01493960829768,-84.01493960829768,0.0013437344392503603,0.0013437344392503603 -1.4164705882352941,-42.33989927781748,-42.33989927781748,0.0007028844761346584,0.0007028844761346584,-84.69092392832107,-84.69092392832107,0.0012201420318842379,0.0012201420318842379 -1.4188235294117646,-44.89691770621898,-44.89691770621898,0.0008369901072978331,0.0008369901072978331,-85.40203062242384,-85.40203062242384,0.0011157289632045505,0.0011157289632045505 -1.4211764705882353,-45.489408478144405,-45.489408478144405,0.001565790010793732,0.001565790010793732,-86.13620101786222,-86.13620101786222,0.0010312740793339055,0.0010312740793339055 -1.423529411764706,-46.83517032964916,-46.83517032964916,0.0008181640100938877,0.0008181640100938877,-86.87534107848309,-86.87534107848309,0.0009801599072592696,0.0009801599072592696 -1.4258823529411764,-47.64701168535648,-47.64701168535648,0.00016389044816922296,0.00016389044816922296,-87.60336613070648,-87.60336613070648,0.0009780601864486007,0.0009780601864486007 -1.428235294117647,-44.761973303548224,-44.761973303548224,0.00025220960270659967,0.00025220960270659967,-88.32035429038335,-88.32035429038335,0.001032975347169048,0.001032975347169048 -1.4305882352941177,-43.03725521097356,-43.03725521097356,0.001309059037789914,0.001309059037789914,-89.02828692415974,-89.02828692415974,0.0011362570276333235,0.0011362570276333235 -1.4329411764705882,-44.40151984376783,-44.40151984376783,0.0010742951218378001,0.0010742951218378001,-89.72524353220126,-89.72524353220126,0.001266793629440536,0.001266793629440536 -1.4352941176470588,-46.247915459889775,-46.247915459889775,0.00032194728719910705,0.00032194728719910705,-90.40370061072514,-90.40370061072514,0.0014105922205625131,0.0014105922205625131 -1.4376470588235293,-46.24218191331199,-46.24218191331199,0.0008833936494274002,0.0008833936494274002,-91.05500203871124,-91.05500203871124,0.0015547372924108122,0.0015547372924108122 -1.44,-46.97383794770371,-46.97383794770371,0.0005616749264243944,0.0005616749264243944,-91.68037934129785,-91.68037934129785,0.0017123230790047866,0.0017123230790047866 -1.4423529411764706,-48.15124578570784,-48.15124578570784,0.00046683870662159925,0.00046683870662159925,-92.28853069842641,-92.28853069842641,0.0018894809309726271,0.0018894809309726271 -1.444705882352941,-50.11486380083537,-50.11486380083537,0.0004013520679872295,0.0004013520679872295,-92.89017623533586,-92.89017623533586,0.00208819726355598,0.00208819726355598 -1.4470588235294117,-52.37964600464927,-52.37964600464927,0.00014853188475177312,0.00014853188475177312,-93.48975769443626,-93.48975769443626,0.002296393922605341,0.002296393922605341 -1.4494117647058824,-52.25937516640124,-52.25937516640124,0.000478700400507587,0.000478700400507587,-94.08759868630654,-94.08759868630654,0.0024986840996771603,0.0024986840996771603 -1.4517647058823528,-52.31975709416887,-52.31975709416887,0.0004642946633447916,0.0004642946633447916,-94.67866427495453,-94.67866427495453,0.0026884076046182594,0.0026884076046182594 -1.4541176470588235,-52.41374567571658,-52.41374567571658,0.0005038623532478409,0.0005038623532478409,-95.26042253924219,-95.26042253924219,0.0028726537661759614,0.0028726537661759614 -1.4564705882352942,-52.053046846243774,-52.053046846243774,0.00019497449368268424,0.00019497449368268424,-95.83515200830394,-95.83515200830394,0.003065759251573925,0.003065759251573925 -1.4588235294117646,-52.71305405331087,-52.71305405331087,3.175354103438879e-05,3.175354103438879e-05,-96.40679065335613,-96.40679065335613,0.00327036760585159,0.00327036760585159 -1.4611764705882353,-49.705735133459825,-49.705735133459825,0.0001557335207395647,0.0001557335207395647,-96.97898627120402,-96.97898627120402,0.003484271429748024,0.003484271429748024 -1.4635294117647057,-52.44892337492822,-52.44892337492822,0.000236692153800733,0.000236692153800733,-97.55263526411525,-97.55263526411525,0.003694791943807107,0.003694791943807107 -1.4658823529411764,-51.77438429754936,-51.77438429754936,0.00029453760949553834,0.00029453760949553834,-98.12484296529124,-98.12484296529124,0.003899322717101039,0.003899322717101039 -1.468235294117647,-52.15856982841036,-52.15856982841036,0.0004712664464122978,0.0004712664464122978,-98.69408948802125,-98.69408948802125,0.0040990815705111315,0.0040990815705111315 -1.4705882352941178,-52.35648327664914,-52.35648327664914,9.831272443624483e-05,9.831272443624483e-05,-99.26047291936088,-99.26047291936088,0.004304162116339738,0.004304162116339738 -1.4729411764705882,-54.92707305877418,-54.92707305877418,8.458005605027924e-05,8.458005605027924e-05,-99.82599918773003,-99.82599918773003,0.004520928300042281,0.004520928300042281 -1.4752941176470589,-57.836737751961465,-57.836737751961465,0.00019574356685118,0.00019574356685118,-100.3922602673881,-100.3922602673881,0.004747635545448954,0.004747635545448954 -1.4776470588235295,-59.82651833738232,-59.82651833738232,4.0248854478144916e-05,4.0248854478144916e-05,-100.95927704894137,-100.95927704894137,0.004974269581283305,0.004974269581283305 -1.48,-59.176934597509664,-59.176934597509664,0.00014517059521771563,0.00014517059521771563,-101.52522167768399,-101.52522167768399,0.00519366704628004,0.00519366704628004 -1.4823529411764707,-59.73824633690319,-59.73824633690319,6.551725855968528e-05,6.551725855968528e-05,-102.086786815035,-102.086786815035,0.005409975647930973,0.005409975647930973 -1.484705882352941,-59.751894261429044,-59.751894261429044,0.00018482728075843566,0.00018482728075843566,-102.64237149240395,-102.64237149240395,0.005638647549404701,0.005638647549404701 -1.4870588235294118,-59.913001751284014,-59.913001751284014,0.00013649255255158366,0.00013649255255158366,-103.19205722240972,-103.19205722240972,0.005897250287937089,0.005897250287937089 -1.4894117647058822,-59.022588452250325,-59.022588452250325,8.27796430385717e-05,8.27796430385717e-05,-103.73739345373507,-103.73739345373507,0.006203077436160565,0.006203077436160565 -1.4917647058823529,-59.88356236883645,-59.88356236883645,7.916043876693142e-05,7.916043876693142e-05,-104.2804700350598,-104.2804700350598,0.006568026706018152,0.006568026706018152 -1.4941176470588236,-59.52820849003905,-59.52820849003905,0.00016287702990097492,0.00016287702990097492,-104.82246455727052,-104.82246455727052,0.006992411482571355,0.006992411482571355 -1.4964705882352942,-59.33348063330673,-59.33348063330673,0.0001549079265021722,0.0001549079265021722,-105.36347671297156,-105.36347671297156,0.00747494249979962,0.00747494249979962 -1.4988235294117647,-58.97517557562851,-58.97517557562851,0.00024526573889257445,0.00024526573889257445,-105.90243553927716,-105.90243553927716,0.008016264909714252,0.008016264909714252 -1.5011764705882353,-59.640186119514404,-59.640186119514404,0.00014216656533767098,0.00014216656533767098,-106.43835460904538,-106.43835460904538,0.008621118305587368,0.008621118305587368 -1.5035294117647058,-59.72063831911483,-59.72063831911483,0.00016717177397879338,0.00016717177397879338,-106.96898820457358,-106.96898820457358,0.009299219386631391,0.009299219386631391 -1.5058823529411764,-60.26291046732171,-60.26291046732171,9.701538019679853e-05,9.701538019679853e-05,-107.49286930810457,-107.49286930810457,0.01007770929051788,0.01007770929051788 -1.5082352941176471,-59.26922872737403,-59.26922872737403,0.00011845772148809101,0.00011845772148809101,-108.00925766609008,-108.00925766609008,0.010995816169033818,0.010995816169033818 -1.5105882352941176,-59.19901470318512,-59.19901470318512,0.00015739147290678773,0.00015739147290678773,-108.51959764835782,-108.51959764835782,0.01212157713403508,0.01212157713403508 -1.5129411764705882,-59.18203650351972,-59.18203650351972,6.606099695127352e-05,6.606099695127352e-05,-109.0271923102247,-109.0271923102247,0.013526482361350133,0.013526482361350133 -1.5152941176470587,-59.631628134211226,-59.631628134211226,0.00011862636400276518,0.00011862636400276518,-109.5368625537848,-109.5368625537848,0.015276394318519933,0.015276394318519933 -1.5176470588235293,-59.865022441203564,-59.865022441203564,0.00010637692677228297,0.00010637692677228297,-110.05236377162772,-110.05236377162772,0.017409587828782602,0.017409587828782602 -1.52,-59.9149442761115,-59.9149442761115,9.081055932312623e-05,9.081055932312623e-05,-110.57555414941572,-110.57555414941572,0.01993542994424565,0.01993542994424565 -1.5223529411764707,-59.83297603292842,-59.83297603292842,7.635836752956278e-05,7.635836752956278e-05,-111.10614667312265,-111.10614667312265,0.022844936963274685,0.022844936963274685 -1.5247058823529411,-59.873149472870466,-59.873149472870466,0.00010328424049818934,0.00010328424049818934,-111.64239020225189,-111.64239020225189,0.026121615022950236,0.026121615022950236 -1.5270588235294118,-59.75571087262884,-59.75571087262884,0.00010436441922246378,0.00010436441922246378,-112.18233756936678,-112.18233756936678,0.02976169684273065,0.02976169684273065 -1.5294117647058822,-59.75694833519875,-59.75694833519875,0.0001119976720997289,0.0001119976720997289,-112.72440180703923,-112.72440180703923,0.03377161136627975,0.03377161136627975 -1.531764705882353,-59.90605297327899,-59.90605297327899,0.00011624180770488099,0.00011624180770488099,-113.26751940049105,-113.26751940049105,0.038166558189243756,0.038166558189243756 -1.5341176470588236,-60.118489809587956,-60.118489809587956,0.00010766048094374897,0.00010766048094374897,-113.81104219260033,-113.81104219260033,0.04295405011030443,0.04295405011030443 -1.536470588235294,-60.061266029831806,-60.061266029831806,0.00010709005879644711,0.00010709005879644711,-114.35448609488247,-114.35448609488247,0.04813518672291673,0.04813518672291673 -1.5388235294117647,-60.185020760697675,-60.185020760697675,9.68147568799148e-05,9.68147568799148e-05,-114.89709494158238,-114.89709494158238,0.05370485800600119,0.05370485800600119 -1.5411764705882351,-60.07464683440608,-60.07464683440608,0.00010399991334538292,0.00010399991334538292,-115.4382585685666,-115.4382585685666,0.05966495919586623,0.05966495919586623 -1.5435294117647058,-60.07603075930009,-60.07603075930009,0.000109359124895879,0.000109359124895879,-115.97723529533953,-115.97723529533953,0.06603841364059489,0.06603841364059489 -1.5458823529411767,-60.10865701760464,-60.10865701760464,0.0001104640013001826,0.0001104640013001826,-116.5138226786672,-116.5138226786672,0.07287877553727362,0.07287877553727362 -1.5482352941176472,-60.20860465031338,-60.20860465031338,0.00010814054731150717,0.00010814054731150717,-117.048180704678,-117.048180704678,0.08025913583863425,0.08025913583863425 -1.5505882352941176,-60.24384474720881,-60.24384474720881,0.00011230480511781392,0.00011230480511781392,-117.58098200462055,-117.58098200462055,0.08825263294493907,0.08825263294493907 -1.5529411764705883,-60.33086052194413,-60.33086052194413,0.00010558694667703414,0.00010558694667703414,-118.1130977344086,-118.1130977344086,0.09690766279542522,0.09690766279542522 -1.5552941176470587,-60.318298753148994,-60.318298753148994,9.518748602396697e-05,9.518748602396697e-05,-118.64537153602157,-118.64537153602157,0.10621982916636624,0.10621982916636624 -1.5576470588235294,-60.39810191870725,-60.39810191870725,0.00010113865376972552,0.00010113865376972552,-119.1781903692444,-119.1781903692444,0.11613519330495073,0.11613519330495073 -1.5599999999999998,-60.319811347320126,-60.319811347320126,9.024263750529796e-05,9.024263750529796e-05,-119.71158735793203,-119.71158735793203,0.12654775918792857,0.12654775918792857 -1.5623529411764705,-60.31020251624555,-60.31020251624555,9.814516296729015e-05,9.814516296729015e-05,-120.2451525250189,-120.2451525250189,0.1373389179421966,0.1373389179421966 -1.5647058823529412,-60.42093039311163,-60.42093039311163,9.762438349411769e-05,9.762438349411769e-05,-120.77826155837639,-120.77826155837639,0.14839371021693987,0.14839371021693987 -1.5670588235294118,-60.49299327841559,-60.49299327841559,0.00010249500354773033,0.00010249500354773033,-121.31022800032315,-121.31022800032315,0.15962277469533778,0.15962277469533778 -1.5694117647058823,-60.542491699304044,-60.542491699304044,0.00010294886545163541,0.00010294886545163541,-121.84052357574612,-121.84052357574612,0.17097172466508917,0.17097172466508917 -1.571764705882353,-60.62016593019128,-60.62016593019128,9.856200113081656e-05,9.856200113081656e-05,-122.36874595211394,-122.36874595211394,0.18241508018126468,0.18241508018126468 -1.5741176470588236,-60.64759317100733,-60.64759317100733,9.91883468678163e-05,9.91883468678163e-05,-122.89478362706399,-122.89478362706399,0.19394534395229543,0.19394534395229543 -1.576470588235294,-60.65163986847976,-60.65163986847976,9.545656529093509e-05,9.545656529093509e-05,-123.41858413818747,-123.41858413818747,0.20555364445266974,0.20555364445266974 -1.5788235294117647,-60.66466676615719,-60.66466676615719,9.281852360015861e-05,9.281852360015861e-05,-123.94021133249485,-123.94021133249485,0.21722138206395858,0.21722138206395858 -1.5811764705882352,-60.710679721975325,-60.710679721975325,9.484416420079985e-05,9.484416420079985e-05,-124.45981949593805,-124.45981949593805,0.2289115038733124,0.2289115038733124 -1.5835294117647059,-60.75282483962664,-60.75282483962664,9.98492164695881e-05,9.98492164695881e-05,-124.977397080972,-124.977397080972,0.24057389013791178,0.24057389013791178 -1.5858823529411765,-60.87404089187283,-60.87404089187283,0.00010383214620634876,0.00010383214620634876,-125.49297128315723,-125.49297128315723,0.2521488012916,0.2521488012916 -1.5882352941176474,-60.88587896864645,-60.88587896864645,9.919907765876203e-05,9.919907765876203e-05,-126.00653252607408,-126.00653252607408,0.26357330509531035,0.26357330509531035 -1.5905882352941176,-60.91229866814172,-60.91229866814172,9.381613525392778e-05,9.381613525392778e-05,-126.51795607791406,-126.51795607791406,0.2747937663303688,0.2747937663303688 -1.592941176470588,-60.92788220916287,-60.92788220916287,9.338521716146148e-05,9.338521716146148e-05,-127.0271821379329,-127.0271821379329,0.2857669430188492,0.2857669430188492 -1.5952941176470588,-60.95328347070711,-60.95328347070711,9.369966588765666e-05,9.369966588765666e-05,-127.53412052727523,-127.53412052727523,0.296467614883809,0.296467614883809 -1.5976470588235294,-60.965623988673414,-60.965623988673414,9.629881804819337e-05,9.629881804819337e-05,-128.0387477447654,-128.0387477447654,0.30688534580350757,0.30688534580350757 -1.6,-61.006793197058094,-61.006793197058094,9.51893726641964e-05,9.51893726641964e-05,-128.5410162716616,-128.5410162716616,0.31702167082899996,0.31702167082899996 -1.6023529411764705,-61.052778649477055,-61.052778649477055,9.669091135245368e-05,9.669091135245368e-05,-129.04097204780308,-129.04097204780308,0.32688606672619896,0.32688606672619896 -1.6047058823529412,-61.07695396331303,-61.07695396331303,9.748875719584018e-05,9.748875719584018e-05,-129.53878177513818,-129.53878177513818,0.33648576763969557,0.33648576763969557 -1.6070588235294117,-61.146680308588714,-61.146680308588714,9.660415067211541e-05,9.660415067211541e-05,-130.03451039252863,-130.03451039252863,0.34581101995848224,0.34581101995848224 -1.6094117647058825,-61.16792362632882,-61.16792362632882,9.37902725569874e-05,9.37902725569874e-05,-130.52836437762295,-130.52836437762295,0.3548373970542729,0.3548373970542729 -1.611764705882353,-61.20462703345755,-61.20462703345755,8.964956190782617e-05,8.964956190782617e-05,-131.02044892665393,-131.02044892665393,0.3635159308182173,0.3635159308182173 -1.6141176470588237,-61.22332439922784,-61.22332439922784,8.786731434592564e-05,8.786731434592564e-05,-131.51078772506662,-131.51078772506662,0.37178429919024775,0.37178429919024775 -1.616470588235294,-61.24622304853068,-61.24622304853068,8.77030674802287e-05,8.77030674802287e-05,-131.99941043643605,-131.99941043643605,0.3795744377815563,0.3795744377815563 -1.6188235294117648,-61.27707865306913,-61.27707865306913,8.741584403737562e-05,8.741584403737562e-05,-132.4862925097403,-132.4862925097403,0.38682602518236325,0.38682602518236325 -1.6211764705882352,-61.345291441740045,-61.345291441740045,8.477726278400402e-05,8.477726278400402e-05,-132.97127262298113,-132.97127262298113,0.3934957423276764,0.3934957423276764 -1.6235294117647059,-61.39524047782828,-61.39524047782828,8.53472852907527e-05,8.53472852907527e-05,-133.45434842465323,-133.45434842465323,0.39956167998749353,0.39956167998749353 -1.6258823529411766,-61.440034503737586,-61.440034503737586,8.242309799979766e-05,8.242309799979766e-05,-133.93537089934358,-133.93537089934358,0.40501858524560885,0.40501858524560885 -1.6282352941176468,-61.49588631553948,-61.49588631553948,7.975857848161311e-05,7.975857848161311e-05,-134.41430647726858,-134.41430647726858,0.409874523087172,0.409874523087172 -1.630588235294118,-61.532374704463464,-61.532374704463464,8.197730495629952e-05,8.197730495629952e-05,-134.89112209272062,-134.89112209272062,0.4141463511802841,0.4141463511802841 -1.6329411764705881,-61.57322428611338,-61.57322428611338,7.886776466683569e-05,7.886776466683569e-05,-135.36581569775134,-135.36581569775134,0.41785176673692354,0.41785176673692354 -1.6352941176470588,-61.60915692712646,-61.60915692712646,7.940251114826221e-05,7.940251114826221e-05,-135.83833853873017,-135.83833853873017,0.4210135297125116,0.4210135297125116 -1.6376470588235295,-61.64516482279036,-61.64516482279036,8.202879921727496e-05,8.202879921727496e-05,-136.30868307793943,-136.30868307793943,0.4236615898614198,0.4236615898614198 -1.6400000000000001,-61.698569067362484,-61.698569067362484,7.97337809898682e-05,7.97337809898682e-05,-136.77692017138205,-136.77692017138205,0.42583210247214426,0.42583210247214426 -1.6423529411764706,-61.75896393314624,-61.75896393314624,8.114694803455365e-05,8.114694803455365e-05,-137.243041652427,-137.243041652427,0.42756600423570007,0.42756600423570007 -1.6447058823529415,-61.82269400279834,-61.82269400279834,8.274062381642585e-05,8.274062381642585e-05,-137.70714288967216,-137.70714288967216,0.428903167445669,0.428903167445669 -1.6470588235294117,-61.88582605882122,-61.88582605882122,8.105716738697129e-05,8.105716738697129e-05,-138.16925001421038,-138.16925001421038,0.4298733155481344,0.4298733155481344 -1.6494117647058824,-61.94301828136863,-61.94301828136863,7.868096876995362e-05,7.868096876995362e-05,-138.6295626316764,-138.6295626316764,0.4304892909260775,0.4304892909260775 -1.651764705882353,-61.94688827921436,-61.94688827921436,7.975333837408626e-05,7.975333837408626e-05,-139.08810232254842,-139.08810232254842,0.430748388760238,0.430748388760238 -1.6541176470588237,-61.96002961442727,-61.96002961442727,8.055827471851987e-05,8.055827471851987e-05,-139.54499745737414,-139.54499745737414,0.43063695969688925,0.43063695969688925 -1.6564705882352944,-62.00776452255677,-62.00776452255677,8.008077378128143e-05,8.008077378128143e-05,-140.00024767970575,-140.00024767970575,0.4301371237412259,0.4301371237412259 -1.6588235294117644,-62.00580801487257,-62.00580801487257,8.118415265107178e-05,8.118415265107178e-05,-140.4538555700233,-140.4538555700233,0.42924006163923756,0.42924006163923756 -1.6611764705882353,-62.08157181148508,-62.08157181148508,8.283265789064578e-05,8.283265789064578e-05,-140.90583789466663,-140.90583789466663,0.42793845360375427,0.42793845360375427 -1.663529411764706,-62.1064755485068,-62.1064755485068,8.325224995128528e-05,8.325224995128528e-05,-141.3562041662175,-141.3562041662175,0.4262330869364368,0.4262330869364368 -1.6658823529411766,-62.13870852044559,-62.13870852044559,8.589260823768863e-05,8.589260823768863e-05,-141.80492543533714,-141.80492543533714,0.42412198266506024,0.42412198266506024 -1.668235294117647,-62.2002926301168,-62.2002926301168,8.031142451855883e-05,8.031142451855883e-05,-142.2520548406963,-142.2520548406963,0.42158886236485565,0.42158886236485565 -1.670588235294118,-62.22937319415198,-62.22937319415198,7.930052023828099e-05,7.930052023828099e-05,-142.69754719090488,-142.69754719090488,0.4186143338336026,0.4186143338336026 -1.672941176470588,-62.24608634486127,-62.24608634486127,7.82863352204188e-05,7.82863352204188e-05,-143.14127251187762,-143.14127251187762,0.41518155072150975,0.41518155072150975 -1.6752941176470588,-62.2864208067891,-62.2864208067891,7.389099966827418e-05,7.389099966827418e-05,-143.5830674152242,-143.5830674152242,0.411289929857862,0.411289929857862 -1.6776470588235295,-62.311874918745566,-62.311874918745566,7.456480858366236e-05,7.456480858366236e-05,-144.02279437931162,-144.02279437931162,0.40696701709844924,0.40696701709844924 -1.68,-62.34374396093843,-62.34374396093843,7.66321471512981e-05,7.66321471512981e-05,-144.46022469090786,-144.46022469090786,0.4022787722832204,0.4022787722832204 -1.6823529411764706,-62.38278696015402,-62.38278696015402,7.813769751040977e-05,7.813769751040977e-05,-144.89519895347053,-144.89519895347053,0.397313707753113,0.397313707753113 -1.684705882352941,-62.441887081398114,-62.441887081398114,7.468940042940861e-05,7.468940042940861e-05,-145.32761044359347,-145.32761044359347,0.39217061482672544,0.39217061482672544 -1.6870588235294117,-62.49889641611382,-62.49889641611382,7.467295292003259e-05,7.467295292003259e-05,-145.7574371577872,-145.7574371577872,0.3869434683634394,0.3869434683634394 -1.6894117647058824,-62.554939910193724,-62.554939910193724,7.273577004715221e-05,7.273577004715221e-05,-146.18460810143182,-146.18460810143182,0.3817118204432319,0.3817118204432319 -1.6917647058823528,-62.63825596782845,-62.63825596782845,7.039807188430062e-05,7.039807188430062e-05,-146.60899207532742,-146.60899207532742,0.3765637734721684,0.3765637734721684 -1.6941176470588235,-62.645575567648855,-62.645575567648855,6.938927240529507e-05,6.938927240529507e-05,-147.03040493894073,-147.03040493894073,0.3716222993636428,0.3716222993636428 -1.6964705882352942,-62.71097546783252,-62.71097546783252,6.869766835195581e-05,6.869766835195581e-05,-147.44866140827452,-147.44866140827452,0.3670890316025491,0.3670890316025491 -1.6988235294117644,-62.736178801223055,-62.736178801223055,6.815341398647947e-05,6.815341398647947e-05,-147.86376778670524,-147.86376778670524,0.3632530097513125,0.3632530097513125 -1.7011764705882353,-62.76272869531523,-62.76272869531523,7.067205951326686e-05,7.067205951326686e-05,-148.27606390738106,-148.27606390738106,0.3604760031286815,0.3604760031286815 -1.7035294117647062,-62.84912752426877,-62.84912752426877,7.626096385611789e-05,7.626096385611789e-05,-148.68649651669372,-148.68649651669372,0.359112640671543,0.359112640671543 -1.7058823529411766,-62.937690425652725,-62.937690425652725,7.37524037682989e-05,7.37524037682989e-05,-149.09658456319622,-149.09658456319622,0.3594104381556084,0.3594104381556084 -1.7082352941176469,-62.9737714632447,-62.9737714632447,7.37939582298442e-05,7.37939582298442e-05,-149.50827514763336,-149.50827514763336,0.36138458088439585,0.36138458088439585 -1.7105882352941175,-62.99762185078021,-62.99762185078021,7.099770448619879e-05,7.099770448619879e-05,-149.923416899109,-149.923416899109,0.36476976021184204,0.36476976021184204 -1.7129411764705882,-63.08921360116899,-63.08921360116899,7.270590629650287e-05,7.270590629650287e-05,-150.34351190461854,-150.34351190461854,0.3690122829618829,0.3690122829618829 -1.7152941176470589,-63.07725513916863,-63.07725513916863,7.270516450186192e-05,7.270516450186192e-05,-150.76925143183132,-150.76925143183132,0.37337360776584855,0.37337360776584855 -1.7176470588235295,-63.12166852750811,-63.12166852750811,7.232138590817495e-05,7.232138590817495e-05,-151.20045230238307,-151.20045230238307,0.3770716560353958,0.3770716560353958 -1.72,-63.06572601299348,-63.06572601299348,7.16264440101387e-05,7.16264440101387e-05,-151.63615206530216,-151.63615206530216,0.37942052600045245,0.37942052600045245 -1.7223529411764709,-63.1839912633577,-63.1839912633577,8.448582592622372e-05,8.448582592622372e-05,-152.07501398073646,-152.07501398073646,0.3799424976090456,0.3799424976090456 -1.7247058823529409,-63.17080597299308,-63.17080597299308,7.931360849632336e-05,7.931360849632336e-05,-152.51540114793505,-152.51540114793505,0.37843424269686027,0.37843424269686027 -1.7270588235294118,-63.24161856991837,-63.24161856991837,8.202298928250198e-05,8.202298928250198e-05,-152.95580185441412,-152.95580185441412,0.3749624792393218,0.3749624792393218 -1.7294117647058824,-63.27489355769372,-63.27489355769372,8.160717614665051e-05,8.160717614665051e-05,-153.39503204021028,-153.39503204021028,0.3698060985177598,0.3698060985177598 -1.731764705882353,-63.285597212525445,-63.285597212525445,8.161470199820874e-05,8.161470199820874e-05,-153.8323104966842,-153.8323104966842,0.36337831186271313,0.36337831186271313 -1.7341176470588235,-63.320852570566544,-63.320852570566544,7.844439566212722e-05,7.844439566212722e-05,-154.26749000390393,-154.26749000390393,0.3561097490567299,0.3561097490567299 -1.7364705882352938,-63.43237130349468,-63.43237130349468,8.283231289813749e-05,8.283231289813749e-05,-154.70075607174485,-154.70075607174485,0.3483535366875488,0.3483535366875488 -1.7388235294117647,-63.35700250925497,-63.35700250925497,6.815922989956896e-05,6.815922989956896e-05,-155.1327458221271,-155.1327458221271,0.34031542955309163,0.34031542955309163 -1.7411764705882353,-63.33067585701165,-63.33067585701165,7.653635416254371e-05,7.653635416254371e-05,-155.56410009572267,-155.56410009572267,0.33203974536311404,0.33203974536311404 -1.743529411764706,-63.399189143122996,-63.399189143122996,7.607817686279885e-05,7.607817686279885e-05,-155.99536978593932,-155.99536978593932,0.3234530187464468,0.3234530187464468 -1.7458823529411764,-63.39834812097339,-63.39834812097339,7.812191414827424e-05,7.812191414827424e-05,-156.426721370255,-156.426721370255,0.31440593551594026,0.31440593551594026 -1.748235294117647,-63.40391689240142,-63.40391689240142,7.724892944129093e-05,7.724892944129093e-05,-156.85809097297812,-156.85809097297812,0.30476602694120364,0.30476602694120364 -1.7505882352941176,-63.54906616580711,-63.54906616580711,8.840906510527298e-05,8.840906510527298e-05,-157.28894081339928,-157.28894081339928,0.29446958364654563,0.29446958364654563 -1.7529411764705882,-63.59763494344786,-63.59763494344786,8.15033448809623e-05,8.15033448809623e-05,-157.71868220745654,-157.71868220745654,0.28355159097024274,0.28355159097024274 -1.7552941176470591,-63.61620334285215,-63.61620334285215,7.723017813161051e-05,7.723017813161051e-05,-158.14668758633792,-158.14668758633792,0.2721344411648939,0.2721344411648939 -1.7576470588235293,-63.6590964718623,-63.6590964718623,7.154913752151698e-05,7.154913752151698e-05,-158.57240429006683,-158.57240429006683,0.2604158965386764,0.2604158965386764 -1.76,-63.727224989667974,-63.727224989667974,7.229479692224129e-05,7.229479692224129e-05,-158.99553360135863,-158.99553360135863,0.24860475966382786,0.24860475966382786 -1.7623529411764705,-63.73855784160645,-63.73855784160645,7.077841170833876e-05,7.077841170833876e-05,-159.41610235423735,-159.41610235423735,0.23689118575552007,0.23689118575552007 -1.7647058823529411,-63.66204569911684,-63.66204569911684,7.602737549778797e-05,7.602737549778797e-05,-159.83424238428478,-159.83424238428478,0.22541333039953645,0.22541333039953645 -1.7670588235294116,-63.45616232461626,-63.45616232461626,8.383389176487085e-05,8.383389176487085e-05,-160.25026126946693,-160.25026126946693,0.2142416707418398,0.2142416707418398 -1.7694117647058827,-63.82233831543042,-63.82233831543042,7.706545235110919e-05,7.706545235110919e-05,-160.66446736971585,-160.66446736971585,0.20340090316223347,0.20340090316223347 -1.7717647058823531,-63.792005003508876,-63.792005003508876,8.022895298671164e-05,8.022895298671164e-05,-161.0770215244243,-161.0770215244243,0.1928839004396342,0.1928839004396342 -1.7741176470588236,-63.88570079171696,-63.88570079171696,8.636412367485064e-05,8.636412367485064e-05,-161.48796160379473,-161.48796160379473,0.18267729567520113,0.18267729567520113 -1.776470588235294,-64.1054043346301,-64.1054043346301,0.00010449093138568883,0.00010449093138568883,-161.89715293002928,-161.89715293002928,0.17277709401758384,0.17277709401758384 -1.7788235294117647,-64.18619229245532,-64.18619229245532,8.688561800168476e-05,8.688561800168476e-05,-162.30452728619002,-162.30452728619002,0.16320450949240778,0.16320450949240778 -1.7811764705882354,-64.19208521557532,-64.19208521557532,7.536878256616427e-05,7.536878256616427e-05,-162.7098856554338,-162.7098856554338,0.1539924646413923,0.1539924646413923 -1.7835294117647063,-64.26120600432864,-64.26120600432864,7.745450603498356e-05,7.745450603498356e-05,-163.11323090486613,-163.11323090486613,0.1451825650419019,0.1451825650419019 -1.7858823529411765,-64.20124530680269,-64.20124530680269,9.601767476218586e-05,9.601767476218586e-05,-163.51463149378773,-163.51463149378773,0.13679233414907604,0.13679233414907604 -1.7882352941176471,-63.99753934796257,-63.99753934796257,6.887600532215231e-05,6.887600532215231e-05,-163.91428764050212,-163.91428764050212,0.1288456489710462,0.1288456489710462 -1.7905882352941174,-63.808156626913565,-63.808156626913565,8.544828156638651e-05,8.544828156638651e-05,-164.31241818960123,-164.31241818960123,0.12132415830710415,0.12132415830710415 -1.7929411764705883,-64.05288789993774,-64.05288789993774,9.545372060849824e-05,9.545372060849824e-05,-164.70912653958013,-164.70912653958013,0.11421648408151144,0.11421648408151144 -1.795294117647059,-63.98359883717833,-63.98359883717833,0.00010429080801711774,0.00010429080801711774,-165.10451344565124,-165.10451344565124,0.10749781450607396,0.10749781450607396 -1.7976470588235294,-64.13000244960793,-64.13000244960793,0.00011211234047180398,0.00011211234047180398,-165.4985803416758,-165.4985803416758,0.10115605011604,0.10115605011604 -1.8,-64.39498624946339,-64.39498624946339,0.00010083867621620772,0.00010083867621620772,-165.89130428101353,-165.89130428101353,0.09519048088348168,0.09519048088348168 diff --git a/sparameters/rotate_f258530e_8c630bfa.yml b/sparameters/rotate_f258530e_8c630bfa.yml deleted file mode 100644 index a703b997..00000000 --- a/sparameters/rotate_f258530e_8c630bfa.yml +++ /dev/null @@ -1,27 +0,0 @@ -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -is_3d: false -fiber_angle_deg: 30 -fiber_xoffset: 23 -compute_time_seconds: 103.61069798469543 -compute_time_minutes: 1.7268449664115906 diff --git a/sparameters/rotate_f258530e_8d0ba197.csv b/sparameters/rotate_f258530e_8d0ba197.csv deleted file mode 100644 index d4c9d597..00000000 --- a/sparameters/rotate_f258530e_8d0ba197.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,2.0229524286528013,2.0229524286528013,0.6006210572475239,0.6006210572475239,-2.7550431398414412,-2.7550431398414412,0.002828928780959997,0.002828928780959997 -1.2023529411764706,2.8013978086258735,2.8013978086258735,0.48186531971006413,0.48186531971006413,-3.5919273169201804,-3.5919273169201804,0.0035451528321734636,0.0035451528321734636 -1.204705882352941,3.4852782201232344,3.4852782201232344,0.4841049659476657,0.4841049659476657,-4.337910469134373,-4.337910469134373,0.0034427258017210804,0.0034427258017210804 -1.2070588235294117,4.215104106993309,4.215104106993309,0.6203009363744654,0.6203009363744654,-5.105458717938773,-5.105458717938773,0.002570353507827219,0.002570353507827219 -1.2094117647058824,5.240314882521504,5.240314882521504,1.1636978230460766,1.1636978230460766,-6.13983071832042,-6.13983071832042,0.0013247752831617144,0.0013247752831617144 -1.2117647058823529,7.25766586275741,7.25766586275741,1.432831178765047,1.432831178765047,-8.162664270518574,-8.162664270518574,0.0010709541169803645,0.0010709541169803645 -1.2141176470588235,8.401619474613135,8.401619474613135,0.7587589103303019,0.7587589103303019,-9.333693412489815,-9.333693412489815,0.002044964844139092,0.002044964844139092 -1.216470588235294,9.099440032445473,9.099440032445473,0.5835029351339542,0.5835029351339542,-10.081256294510462,-10.081256294510462,0.0026602680552075854,0.0026602680552075854 -1.2188235294117646,9.713219562509348,9.713219562509348,0.5806302779036366,0.5806302779036366,-10.746992874721666,-10.746992874721666,0.0026108168421403117,0.0026108168421403117 -1.2211764705882353,10.342371218836194,10.342371218836194,0.7513422604486989,0.7513422604486989,-11.409814326226954,-11.409814326226954,0.0019430365601425235,0.0019430365601425235 -1.2235294117647058,11.139471629219425,11.139471629219425,1.5840664300961078,1.5840664300961078,-12.21826279960025,-12.21826279960025,0.0008938225403722512,0.0008938225403722512 -1.2258823529411764,13.71805451904933,13.71805451904933,2.824417066717045,2.824417066717045,-14.803711040220282,-14.803711040220282,0.0004971051489038882,0.0004971051489038882 -1.228235294117647,14.773596857325082,14.773596857325082,1.0113521320239043,1.0113521320239043,-15.882733265485355,-15.882733265485355,0.0013951724006405833,0.0013951724006405833 -1.2305882352941175,15.374573117487284,15.374573117487284,0.7251874453182922,0.7251874453182922,-16.52440943171907,-16.52440943171907,0.0019428934072380016,0.0019428934072380016 -1.2329411764705882,15.909268739448676,15.909268739448676,0.7015907913658045,0.7015907913658045,-17.103657985908946,-17.103657985908946,0.001967701225745572,0.001967701225745572 -1.2352941176470589,16.428813490226457,16.428813490226457,0.8882841799829216,0.8882841799829216,-17.65469442911282,-17.65469442911282,0.0015031356451312232,0.0015031356451312232 -1.2376470588235293,16.925029149307825,16.925029149307825,1.8363961334224839,1.8363961334224839,-18.16404578237504,-18.16404578237504,0.0007058699451399721,0.0007058699451399721 -1.24,14.617260790630322,14.617260790630322,6.217064324539045,6.217064324539045,-15.862646726867425,-15.862646726867425,0.00020574876818840496,0.00020574876818840496 -1.2423529411764704,14.94022647641078,14.94022647641078,1.309422983324664,1.309422983324664,-16.202295298555104,-16.202295298555104,0.000976940118064746,0.000976940118064746 -1.244705882352941,15.406495478370374,15.406495478370374,0.8861727838834442,0.8861727838834442,-16.70031598681934,-16.70031598681934,0.0014402411520361242,0.0014402411520361242 -1.2470588235294118,15.861966380726841,15.861966380726841,0.8364991143553022,0.8364991143553022,-17.193286471056442,-17.193286471056442,0.0015013565290828426,0.0015013565290828426 -1.2494117647058822,16.291968148380516,16.291968148380516,1.0359643525257647,1.0359643525257647,-17.65234613836361,-17.65234613836361,0.0011779278736209367,0.0011779278736209367 -1.251764705882353,16.58615865913601,16.58615865913601,1.992373565869473,1.992373565869473,-17.9604738527397,-17.9604738527397,0.0005947266556567352,0.0005947266556567352 -1.2541176470588236,15.278539689965081,15.278539689965081,4.225544310267554,4.225544310267554,-16.657436064044404,-16.657436064044404,0.0002754844896955677,0.0002754844896955677 -1.256470588235294,15.088721457581064,15.088721457581064,1.4125883660112368,1.4125883660112368,-16.476322687538744,-16.476322687538744,0.0008202645077305314,0.0008202645077305314 -1.2588235294117647,15.459511215828945,15.459511215828945,0.9620802553408178,0.9620802553408178,-16.86812346847846,-16.86812346847846,0.0012021510768573072,0.0012021510768573072 -1.2611764705882353,15.876129698540996,15.876129698540996,0.9025154478118893,0.9025154478118893,-17.313423598206846,-17.313423598206846,0.0012679158475830347,0.0012679158475830347 -1.2635294117647058,16.285025118127187,16.285025118127187,1.1079021654727386,1.1079021654727386,-17.748054372496934,-17.748054372496934,0.0010104118477202407,0.0010104118477202407 -1.2658823529411765,16.58185819205169,16.58185819205169,2.121889255112631,2.121889255112631,-18.05853423944441,-18.05853423944441,0.0005136797389556814,0.0005136797389556814 -1.268235294117647,15.140501294324766,15.140501294324766,4.749834898550958,4.749834898550958,-16.619665343890617,-16.619665343890617,0.00022491341308373538,0.00022491341308373538 -1.2705882352941176,14.982597623701132,14.982597623701132,1.4119038759047997,1.4119038759047997,-16.463095422864452,-16.463095422864452,0.0007505999262067221,0.0007505999262067221 -1.2729411764705882,15.375284050257592,15.375284050257592,0.9245417462070109,0.9245417462070109,-16.86502580419587,-16.86502580419587,0.0011455199162757538,0.0011455199162757538 -1.2752941176470587,15.8169487587551,15.8169487587551,0.833134085074,0.833134085074,-17.324717553870677,-17.324717553870677,0.0012663124930490024,0.0012663124930490024 -1.2776470588235294,16.274095762371598,16.274095762371598,0.962088490176797,0.962088490176797,-17.801540323085042,-17.801540323085042,0.0010826993245167673,0.0010826993245167673 -1.28,16.746002810142542,16.746002810142542,1.5999009945291527,1.5999009945291527,-18.28577926568287,-18.28577926568287,0.0006385948638670595,0.0006385948638670595 -1.2823529411764705,17.27857677614911,17.27857677614911,26.3464366390991,26.3464366390991,-18.819837695843386,-18.819837695843386,3.8114970753174075e-05,3.8114970753174075e-05 -1.2847058823529411,14.575831139245444,14.575831139245444,1.7149593830298664,1.7149593830298664,-16.11280960288408,-16.11280960288408,0.0005811210483285722,0.0005811210483285722 -1.2870588235294118,15.069111694717236,15.069111694717236,0.9264316868420536,0.9264316868420536,-16.605182709647522,-16.605182709647522,0.0010780824634220101,0.0010780824634220101 -1.2894117647058823,15.557374886125869,15.557374886125869,0.7486331486034538,0.7486331486034538,-17.100937509655623,-17.100937509655623,0.0013410769597076767,0.0013410769597076767 -1.291764705882353,16.049187227437024,16.049187227437024,0.7661767815149083,0.7661767815149083,-17.60556901192222,-17.60556901192222,0.0013110189444689741,0.0013110189444689741 -1.2941176470588236,16.569448663705053,16.569448663705053,1.004376939044246,1.004376939044246,-18.136930320950643,-18.136930320950643,0.0009941074887878161,0.0009941074887878161 -1.296470588235294,17.236378716783484,17.236378716783484,2.1260554196069523,2.1260554196069523,-18.80756008627449,-18.80756008627449,0.0004660496827275293,0.0004660496827275293 -1.2988235294117647,19.90174953335638,19.90174953335638,3.788876028924417,3.788876028924417,-21.469763515415604,-21.469763515415604,0.0002609125018955743,0.0002609125018955743 -1.3011764705882352,20.842822201211618,20.842822201211618,1.1744868028130901,1.1744868028130901,-22.406660615595897,-22.406660615595897,0.0008475746147502862,0.0008475746147502862 -1.3035294117647058,21.39807623510101,21.39807623510101,0.7720102864996975,0.7720102864996975,-22.9632817233335,-22.9632817233335,0.0013074949878430276,0.0013074949878430276 -1.3058823529411765,21.906164007775445,21.906164007775445,0.6758260110549145,0.6758260110549145,-23.480125595821356,-23.480125595821356,0.0015155237724571485,0.0015155237724571485 -1.308235294117647,22.408525596019995,22.408525596019995,0.7268347886987002,0.7268347886987002,-23.995014302460532,-23.995014302460532,0.0014238829326246837,0.0014238829326246837 -1.3105882352941176,22.942630628325336,22.942630628325336,0.992731710726802,0.992731710726802,-24.53990954856807,-24.53990954856807,0.0010491945322539942,0.0010491945322539942 -1.3129411764705883,23.673790690047692,23.673790690047692,2.1845029914542957,2.1845029914542957,-25.27708205211534,-25.27708205211534,0.0004799701440078427,0.0004799701440078427 -1.3152941176470587,26.16724082010602,26.16724082010602,3.097802991328429,3.097802991328429,-27.77331172843138,-27.77331172843138,0.00034250029806817326,0.00034250029806817326 -1.3176470588235294,27.085128097651243,27.085128097651243,1.1244091344990237,1.1244091344990237,-28.695680851455023,-28.695680851455023,0.0009612895495243637,0.0009612895495243637 -1.32,27.630333415599626,27.630333415599626,0.7561617184078346,0.7561617184078346,-29.25115893118399,-29.25115893118399,0.0014622309266510934,0.0014622309266510934 -1.3223529411764705,28.119120557694842,28.119120557694842,0.6607153110573978,0.6607153110573978,-29.756502102649055,-29.756502102649055,0.001710968259469047,0.001710968259469047 -1.3247058823529412,28.593499079063587,28.593499079063587,0.696675798581028,0.696675798581028,-30.25080658441178,-30.25080658441178,0.001652987800764119,0.001652987800764119 -1.3270588235294118,29.078527368071015,29.078527368071015,0.9036305579552529,0.9036305579552529,-30.755267273410006,-30.755267273410006,0.0012940475057884742,0.0012940475057884742 -1.3294117647058823,29.64180821059431,29.64180821059431,1.6962083334508344,1.6962083334508344,-31.33559695886804,-31.33559695886804,0.0006997299849581951,0.0006997299849581951 -1.331764705882353,31.77422082535433,31.77422082535433,6.71351991086908,6.71351991086908,-33.48358139189636,-33.48358139189636,0.00017993718097058354,0.00017993718097058354 -1.3341176470588234,33.224885732755915,33.224885732755915,1.4843280108903725,1.4843280108903725,-34.951538847650475,-34.951538847650475,0.0008315849907299162,0.0008315849907299162 -1.336470588235294,33.74843830211294,33.74843830211294,0.8696139906715594,0.8696139906715594,-35.496751441016684,-35.496751441016684,0.001453554905395258,0.001453554905395258 -1.3388235294117647,34.204218818750896,34.204218818750896,0.6994945825273513,0.6994945825273513,-35.97909385692926,-35.97909385692926,0.0018489702058374863,0.0018489702058374863 -1.3411764705882352,34.639488007977526,34.639488007977526,0.6788491523082244,0.6788491523082244,-36.44410142028398,-36.44410142028398,0.0019433548503852828,0.0019433548503852828 -1.3435294117647059,35.06872900754148,35.06872900754148,0.7812652336156772,0.7812652336156772,-36.90357282575276,-36.90357282575276,0.0017165425207868073,0.0017165425207868073 -1.3458823529411765,35.50407917348593,35.50407917348593,1.1315192728249481,1.1315192728249481,-37.36775486641839,-37.36775486641839,0.0012026218983211268,0.0012026218983211268 -1.348235294117647,35.99880938439033,35.99880938439033,2.8494680898342497,2.8494680898342497,-37.89002742780728,-37.89002742780728,0.00048488142473906043,0.00048488142473906043 -1.3505882352941176,32.946708363156645,32.946708363156645,4.175508677540878,4.175508677540878,-34.86580928554916,-34.86580928554916,0.0003365659810867064,0.0003365659810867064 -1.3529411764705883,33.485974530797414,33.485974530797414,1.295484627689985,1.295484627689985,-35.435447191104664,-35.435447191104664,0.0011049436066122827,0.0011049436066122827 -1.3552941176470588,33.90687680603333,33.90687680603333,0.8492746075065413,0.8492746075065413,-35.89016340015531,-35.89016340015531,0.0017159249959073292,0.0017159249959073292 -1.3576470588235294,34.308473868256385,34.308473868256385,0.7150701295137536,0.7150701295137536,-36.32832320860063,-36.32832320860063,0.0020699861656495407,0.0020699861656495407 -1.3599999999999999,34.70126081333325,34.70126081333325,0.7098202507355788,0.7098202507355788,-36.7586875039999,-36.7586875039999,0.0021111525796239533,0.0021111525796239533 -1.3623529411764705,35.088306570032536,35.088306570032536,0.825599589384628,0.825599589384628,-37.182456567079576,-37.182456567079576,0.0018326279864776108,0.0018326279864776108 -1.3647058823529412,35.466845757436026,35.466845757436026,1.1951749215760379,1.1951749215760379,-37.596246948364744,-37.596246948364744,0.0012766927842611919,0.0012766927842611919 -1.3670588235294117,35.80490691892682,35.80490691892682,2.9164093214628117,2.9164093214628117,-37.96845675649864,-37.96845675649864,0.0005278955077190858,0.0005278955077190858 -1.3694117647058823,33.27644990755095,33.27644990755095,5.03491254886776,5.03491254886776,-35.474583143564445,-35.474583143564445,0.000308816607066271,0.000308816607066271 -1.371764705882353,33.55255980291239,33.55255980291239,1.4315837012474568,1.4315837012474568,-35.78694599482073,-35.78694599482073,0.0010972687062406874,0.0010972687062406874 -1.3741176470588234,33.91232143316473,33.91232143316473,0.9153823327717282,0.9153823327717282,-36.1850893527277,-36.1850893527277,0.0017317643509956915,0.0017317643509956915 -1.3764705882352941,34.27697600896524,34.27697600896524,0.7528113073886332,0.7528113073886332,-36.58944661753213,-36.58944661753213,0.002120154822874102,0.002120154822874102 -1.3788235294117648,34.64015727089833,34.64015727089833,0.725593399781164,0.725593399781164,-36.99228663990555,-36.99228663990555,0.002208745853051465,0.002208745853051465 -1.3811764705882352,34.99885380212177,34.99885380212177,0.8078458121033931,0.8078458121033931,-37.38937807494906,-37.38937807494906,0.0019881047990113403,0.0019881047990113403 -1.383529411764706,35.3452888083049,35.3452888083049,1.0771053178550363,1.0771053178550363,-37.77256300827603,-37.77256300827603,0.001493103858287295,0.001493103858287295 -1.3858823529411763,35.6409029563181,35.6409029563181,2.0173730847764553,2.0173730847764553,-38.103800012378585,-38.103800012378585,0.0007986097195967739,0.0007986097195967739 -1.388235294117647,34.48224193966163,34.48224193966163,13.22868681122107,13.22868681122107,-36.98080480062155,-36.98080480062155,0.0001220973020486311,0.0001220973020486311 -1.3905882352941177,33.52807534355934,33.52807534355934,1.9845727203400552,1.9845727203400552,-36.06341373365587,-36.06341373365587,0.000816096434512112,0.000816096434512112 -1.3929411764705881,33.81743471992446,33.81743471992446,1.0886748162636146,1.0886748162636146,-36.39084763413546,-36.39084763413546,0.001490313408090915,0.001490313408090915 -1.3952941176470588,34.15006584614874,34.15006584614874,0.8267422142937947,0.8267422142937947,-36.76225766025666,-36.76225766025666,0.0019623227110993425,0.0019623227110993425 -1.3976470588235295,34.49072442349696,34.49072442349696,0.7457333654704104,0.7457333654704104,-37.141310696375804,-37.141310696375804,0.002170556337105402,0.002170556337105402 -1.4,34.83095596094251,34.83095596094251,0.770632720212313,0.770632720212313,-37.51854680260375,-37.51854680260375,0.0020923309606165506,0.0020923309606165506 -1.4023529411764706,35.16319590901638,35.16319590901638,0.9203695712193912,0.9203695712193912,-37.886018976951405,-37.886018976951405,0.001744357596013863,0.001744357596013863 -1.4047058823529412,35.466932901924665,35.466932901924665,1.3556162079636602,1.3556162079636602,-38.22376020949298,-38.22376020949298,0.0011797837681318726,0.0011797837681318726 -1.4070588235294117,35.60752134514699,35.60752134514699,3.262604479272998,3.262604479272998,-38.3980751925387,-38.3980751925387,0.0004887888191403799,0.0004887888191403799 -1.4094117647058824,33.68593707227065,33.68593707227065,4.663932869307724,4.663932869307724,-36.51093471358784,-36.51093471358784,0.0003410939818940399,0.0003410939818940399 -1.4117647058823528,33.678699376552636,33.678699376552636,1.5653939374916985,1.5653939374916985,-36.53925762763245,-36.53925762763245,0.0010133079047020715,0.0010133079047020715 -1.4141176470588235,33.9582655589595,33.9582655589595,1.0049808907576974,1.0049808907576974,-36.855077117825104,-36.855077117825104,0.0015716104030534073,0.0015716104030534073 -1.4164705882352941,34.272512677939964,34.272512677939964,0.8148211595868754,0.8148211595868754,-37.20532693465363,-37.20532693465363,0.0019265360814138322,0.0019265360814138322 -1.4188235294117646,34.5945963139175,34.5945963139175,0.7646701772897372,0.7646701772897372,-37.56228034976823,-37.56228034976823,0.002037425459589061,0.002037425459589061 -1.4211764705882353,34.914690237924695,34.914690237924695,0.8144290323962619,0.8144290323962619,-37.915538180193664,-37.915538180193664,0.001897386387171751,0.001897386387171751 -1.423529411764706,35.221210915130534,35.221210915130534,1.0007073491461196,1.0007073491461196,-38.253821194083656,-38.253821194083656,0.0015322336565732695,0.0015322336565732695 -1.4258823529411764,35.48093201943097,35.48093201943097,1.5267800825750713,1.5267800825750713,-38.54471493461359,-38.54471493461359,0.0009974719054762686,0.0009974719054762686 -1.428235294117647,35.45638259015996,35.45638259015996,3.8699827584722817,3.8699827584722817,-38.55172284561127,-38.55172284561127,0.0003911608711290274,0.0003911608711290274 -1.4305882352941177,33.77827627699989,33.77827627699989,3.7644890536552227,3.7644890536552227,-36.906170782065686,-36.906170782065686,0.0003997103345041325,0.0003997103345041325 -1.4329411764705882,33.76669066800776,33.76669066800776,1.5396801363207628,1.5396801363207628,-36.92798258901719,-36.92798258901719,0.0009705345205530789,0.0009705345205530789 -1.4352941176470588,34.01669239514549,34.01669239514549,1.0279979031971813,1.0279979031971813,-37.211506412185926,-37.211506412185926,0.0014413297720279805,0.0014413297720279805 -1.4376470588235293,34.3080126109616,34.3080126109616,0.8452391042687047,0.8452391042687047,-37.535569107165124,-37.535569107165124,0.001735470194978903,0.001735470194978903 -1.44,34.609366252506355,34.609366252506355,0.7963962221243975,0.7963962221243975,-37.86820590371221,-37.86820590371221,0.001822015565987909,0.001822015565987909 -1.4423529411764706,34.908038788555736,34.908038788555736,0.845179142848612,0.845179142848612,-38.19653277028236,-38.19653277028236,0.0016983699010388444,0.0016983699010388444 -1.444705882352941,35.18946274236172,35.18946274236172,1.0235547593473262,1.0235547593473262,-38.50667022134033,-38.50667022134033,0.001388433192514618,0.001388433192514618 -1.4470588235294117,35.4161713551705,35.4161713551705,1.4973295533007107,1.4973295533007107,-38.76201736689713,-38.76201736689713,0.0009406625179041716,0.0009406625179041716 -1.4494117647058824,35.3856311675251,35.3856311675251,3.160756964343275,3.160756964343275,-38.76088989579429,-38.76088989579429,0.00044188316491678586,0.00044188316491678586 -1.4517647058823528,34.07718145925689,34.07718145925689,4.1560701041258765,4.1560701041258765,-37.48287209477247,-37.48287209477247,0.0003331273043568915,0.0003331273043568915 -1.4541176470588235,33.83609812732691,33.83609812732691,1.765967225286908,1.765967225286908,-37.272891831504275,-37.272891831504275,0.0007761761108083946,0.0007761761108083946 -1.4564705882352942,34.02189854007877,34.02189854007877,1.1468030084402216,1.1468030084402216,-37.489578322545356,-37.489578322545356,0.0011813673487988707,0.0011813673487988707 -1.4588235294117646,34.27826105887584,34.27826105887584,0.9204772573567748,0.9204772573567748,-37.77575289046626,-37.77575289046626,0.0014528016925457181,0.0014528016925457181 -1.4611764705882353,34.55324156124452,34.55324156124452,0.845710079596772,0.845710079596772,-38.07890750944721,-38.07890750944721,0.0015599516303809054,0.0015599516303809054 -1.4635294117647057,34.828387713951855,34.828387713951855,0.8693355131311457,0.8693355131311457,-38.38078599018114,-38.38078599018114,0.001497636886921423,0.001497636886921423 -1.4658823529411764,35.08754615881884,35.08754615881884,1.003303392812316,1.003303392812316,-38.66582410291614,-38.66582410291614,0.001281853033364006,0.001281853033364006 -1.468235294117647,35.29914379944426,35.29914379944426,1.3404994285122354,1.3404994285122354,-38.903497225836254,-38.903497225836254,0.0009486853731051048,0.0009486853731051048 -1.4705882352941178,35.35028605201088,35.35028605201088,2.2451564947192995,2.2451564947192995,-38.98162515462293,-38.98162515462293,0.0005602692778711958,0.0005602692778711958 -1.4729411764705882,34.68738089841531,34.68738089841531,4.086906015526615,4.086906015526615,-38.346742855079576,-38.346742855079576,0.0003042605714345902,0.0003042605714345902 -1.4752941176470589,33.98934228236415,33.98934228236415,2.340469611479635,2.340469611479635,-37.6772069942126,-37.6772069942126,0.0005244724274483189,0.0005244724274483189 -1.4776470588235295,34.02147547271547,34.02147547271547,1.412999419065943,1.412999419065943,-37.73740709642951,-37.73740709642951,0.0008560506373515107,0.0008560506373515107 -1.48,34.215445673311585,34.215445673311585,1.0692749642128216,1.0692749642128216,-37.95810500583305,-37.95810500583305,0.001113251495342316,0.001113251495342316 -1.4823529411764707,34.45325881267843,34.45325881267843,0.9339173928168769,0.9339173928168769,-38.220785045537966,-38.220785045537966,0.0012537083544248593,0.0012537083544248593 -1.484705882352941,34.7016410877202,34.7016410877202,0.9107811730585468,0.9107811730585468,-38.49244859402411,-38.49244859402411,0.0012650355444870313,0.0012650355444870313 -1.4870588235294118,34.941515235686204,34.941515235686204,0.9842120897746655,0.9842120897746655,-38.75474504686647,-38.75474504686647,0.0011532645874348486,0.0011532645874348486 -1.4894117647058822,35.14869623038566,35.14869623038566,1.1906320885213368,1.1906320885213368,-38.984518851953716,-38.984518851953716,0.0009402100737103856,0.0009402100737103856 -1.4917647058823529,35.26722480568378,35.26722480568378,1.6623177148786554,1.6623177148786554,-39.12657511601059,-39.12657511601059,0.0006643723569067021,0.0006643723569067021 -1.4941176470588236,35.10614260493249,35.10614260493249,2.7142557693711162,2.7142557693711162,-38.990067315406876,-38.990067315406876,0.00040116757141018064,0.00040116757141018064 -1.4964705882352942,34.41622592390645,34.41622592390645,3.081926864271108,3.081926864271108,-38.325186176931524,-38.325186176931524,0.00034776687397232117,0.00034776687397232117 -1.4988235294117647,34.105559833904664,34.105559833904664,1.9280747825008453,1.9280747825008453,-38.03906535323453,-38.03906535323453,0.0005461175998320836,0.0005461175998320836 -1.5011764705882353,34.16875573061232,34.16875573061232,1.3459136390057842,1.3459136390057842,-38.125159387235755,-38.125159387235755,0.0007673075934560244,0.0007673075934560244 -1.5035294117647058,34.345332105969106,34.345332105969106,1.0932494087588247,1.0932494087588247,-38.32242445913034,-38.32242445913034,0.0009259337013486053,0.0009259337013486053 -1.5058823529411764,34.559049497831744,34.559049497831744,0.9961196243517156,0.9961196243517156,-38.55467433756146,-38.55467433756146,0.0009965303462256025,0.0009965303462256025 -1.5082352941176471,34.78005762239817,34.78005762239817,1.0006324066929788,1.0006324066929788,-38.79290043695007,-38.79290043695007,0.000974032631181008,0.000974032631181008 -1.5105882352941176,34.98679287638154,34.98679287638154,1.1056583990248248,1.1056583990248248,-39.01657085883348,-39.01657085883348,0.0008667501275982087,0.0008667501275982087 -1.5129411764705882,35.149009516902886,35.149009516902886,1.357645719861716,1.357645719861716,-39.19651379655406,-39.19651379655406,0.0006945956095423937,0.0006945956095423937 -1.5152941176470587,35.196763150504175,35.196763150504175,1.8863098838335823,1.8863098838335823,-39.26304518061454,-39.26304518061454,0.0004917484689848997,0.0004917484689848997 -1.5176470588235293,34.943410793510786,34.943410793510786,2.7808717697841074,2.7808717697841074,-39.02901000156952,-39.02901000156952,0.00032759493180940856,0.00032759493180940856 -1.52,34.39343504815186,34.39343504815186,2.7056207400735177,2.7056207400735177,-38.49790668333308,-38.49790668333308,0.00033001081673472206,0.00033001081673472206 -1.5223529411764707,34.18522644634178,34.18522644634178,1.8492133284893848,1.8492133284893848,-38.30668090734559,-38.30668090734559,0.0004723058344814008,0.0004723058344814008 -1.5247058823529411,34.247884271935476,34.247884271935476,1.370175515387921,1.370175515387921,-38.3834935473098,-38.3834935473098,0.0006228920646423264,0.0006228920646423264 -1.5270588235294118,34.41071432891951,34.41071432891951,1.1457147918738246,1.1457147918738246,-38.557483995557604,-38.557483995557604,0.0007282977308313469,0.0007282977308313469 -1.5294117647058822,34.61082627899972,34.61082627899972,1.060689544424915,1.060689544424915,-38.76639737336705,-38.76639737336705,0.00077035877002819,0.00077035877002819 -1.531764705882353,34.81996931887447,34.81996931887447,1.0759954899515747,1.0759954899515747,-38.98329685739778,-38.98329685739778,0.0007452817470281517,0.0007452817470281517 -1.5341176470588236,35.01692107895086,35.01692107895086,1.1971275472917324,1.1971275472917324,-39.18822638343753,-39.18822638343753,0.0006586363956908086,0.0006586363956908086 -1.536470588235294,35.17202199807352,35.17202199807352,1.480395288319771,1.480395288319771,-39.35242406705463,-39.35242406705463,0.0005240424247462765,0.0005240424247462765 -1.5388235294117647,35.21364015418023,35.21364015418023,2.0865932734938046,2.0865932734938046,-39.40403420916007,-39.40403420916007,0.000365542327074792,0.000365542327074792 -1.5411764705882351,34.930155677664644,34.930155677664644,3.174962202506278,3.174962202506278,-39.130532935002805,-39.130532935002805,0.00023576431649257774,0.00023576431649257774 -1.5435294117647058,34.31256397101471,34.31256397101471,2.994904195917495,2.994904195917495,-38.52122137486366,-38.52122137486366,0.00024481351558649155,0.00024481351558649155 -1.5458823529411767,34.10597062232217,34.10597062232217,1.9449958991943914,1.9449958991943914,-38.31979285647074,-38.31979285647074,0.0003687820588111521,0.0003687820588111521 -1.5482352941176472,34.18280241186948,34.18280241186948,1.4061364472719133,1.4061364472719133,-38.397982909922334,-38.397982909922334,0.0004992046397475508,0.0004992046397475508 -1.5505882352941176,34.35987925436388,34.35987925436388,1.1565039895456752,1.1565039895456752,-38.57297258323875,-38.57297258323875,0.0005953847878068348,0.0005953847878068348 -1.5529411764705883,34.57708798888564,34.57708798888564,1.055868017141445,1.055868017141445,-38.78597553737826,-38.78597553737826,0.0006418384889592609,0.0006418384889592609 -1.5552941176470587,34.80972522949476,34.80972522949476,1.05799278627398,1.05799278627398,-39.014221762654785,-39.014221762654785,0.0006328012236332598,0.0006328012236332598 -1.5576470588235294,35.04326403719885,35.04326403719885,1.1660172291525204,1.1660172291525204,-39.24457177131184,-39.24457177131184,0.0005687157723787451,0.0005687157723787451 -1.5599999999999998,35.26212902059514,35.26212902059514,1.4436706594091755,1.4436706594091755,-39.46201254189326,-39.46201254189326,0.0004553998626131033,0.0004553998626131033 -1.5623529411764705,35.42793483312719,35.42793483312719,2.141565393110861,2.141565393110861,-39.62770043825924,-39.62770043825924,0.00030421230056430976,0.00030421230056430976 -1.5647058823529412,35.31399403679288,35.31399403679288,4.649478325051928,4.649478325051928,-39.51324749044846,-39.51324749044846,0.00013866193160965888,0.00013866193160965888 -1.5670588235294118,33.89499000175972,33.89499000175972,5.242637446011104,5.242637446011104,-38.09178481653293,-38.09178481653293,0.0001215796502468719,0.0001215796502468719 -1.5694117647058823,33.690839673091936,33.690839673091936,2.17369551223686,2.17369551223686,-37.882021152225455,-37.882021152225455,0.0002900389363469785,0.0002900389363469785 -1.571764705882353,33.86441963235071,33.86441963235071,1.372336161373443,1.372336161373443,-38.046903020308385,-38.046903020308385,0.00045551787477109243,0.00045551787477109243 -1.5741176470588236,34.109676820941914,34.109676820941914,1.0574159174403825,1.0574159174403825,-38.28128584570564,-38.28128584570564,0.0005884900726468377,0.0005884900726468377 -1.576470588235294,34.38125589705274,34.38125589705274,0.9228754181226487,0.9228754181226487,-38.542157983748545,-38.542157983748545,0.0006744709843034435,0.0006744709843034435 -1.5788235294117647,34.6657495605664,34.6657495605664,0.8880782009881297,0.8880782009881297,-38.81805296851574,-38.81805296851574,0.0007039222131600656,0.0007039222131600656 -1.5811764705882352,34.959388015904274,34.959388015904274,0.9363445148519235,0.9363445148519235,-39.1064514352817,-39.1064514352817,0.0006721614094742492,0.0006721614094742492 -1.5835294117647059,35.26492175687247,35.26492175687247,1.0938301100471073,1.0938301100471073,-39.4101624895156,-39.4101624895156,0.0005794667969964345,0.0005794667969964345 -1.5858823529411765,35.59715054589209,35.59715054589209,1.4778137243264726,1.4778137243264726,-39.74273222653319,-39.74273222653319,0.00043140169841790287,0.00043140169841790287 -1.5882352941176474,36.02568335223631,36.02568335223631,2.6608574368287075,2.6608574368287075,-40.17202418620625,-40.17202418620625,0.00024058473870737065,0.00024058473870737065 -1.5905882352941176,37.56336709736017,37.56336709736017,8.843967695256532,8.843967695256532,-41.70933261012766,-41.70933261012766,7.261378863178472e-05,7.261378863178472e-05 -1.592941176470588,39.16337385915801,39.16337385915801,2.562583311590703,2.562583311590703,-43.306884530044506,-43.306884530044506,0.00025148103708773145,0.00025148103708773145 -1.5952941176470588,39.61195090538452,39.61195090538452,1.3404485667914612,1.3404485667914612,-43.751176303833454,-43.751176303833454,0.0004835716915222825,0.0004835716915222825 -1.5976470588235294,39.969240958863175,39.969240958863175,0.9426421436153827,0.9426421436153827,-44.10377030960256,-44.10377030960256,0.0006941187968149559,0.0006941187968149559 -1.6,40.305751905040395,40.305751905040395,0.7693479303860997,0.7693479303860997,-44.436942545148305,-44.436942545148305,0.0008617892959403139,0.0008617892959403139 -1.6023529411764705,40.63603590576986,40.63603590576986,0.6946504497300238,0.6946504497300238,-44.76714455969969,-44.76714455969969,0.000969924454106557,0.000969924454106557 -1.6047058823529412,40.96752529248254,40.96752529248254,0.6809336785077432,0.6809336785077432,-45.10266393704449,-45.10266393704449,0.0010065647369645369,0.0010065647369645369 -1.6070588235294117,41.30862839998254,41.30862839998254,0.7213288440058558,0.7213288440058558,-45.45155955199802,-45.45155955199802,0.000965880137044609,0.000965880137044609 -1.6094117647058825,41.67458913090774,41.67458913090774,0.8321891614899516,0.8321891614899516,-45.827964574323246,-45.827964574323246,0.0008491726844660105,0.0008491726844660105 -1.611764705882353,42.10097958064473,42.10097958064473,1.0701619505519908,1.0701619505519908,-46.26571295066271,-46.26571295066271,0.0006679382718683939,0.0006679382718683939 -1.6141176470588237,42.69666181010387,42.69666181010387,1.586046630413221,1.586046630413221,-46.87200970528424,-46.87200970528424,0.0004549050411809094,0.0004549050411809094 -1.616470588235294,43.759214107938945,43.759214107938945,2.251868305124504,2.251868305124504,-47.943514507743174,-47.943514507743174,0.0003230962985301966,0.0003230962985301966 -1.6188235294117648,44.89377777764294,44.89377777764294,1.6052159039015599,1.6052159039015599,-49.08512897857366,-49.08512897857366,0.000457389909089191,0.000457389909089191 -1.6211764705882352,45.540538257473415,45.540538257473415,1.0142290942807441,1.0142290942807441,-49.738090833898845,-49.738090833898845,0.0007320744770053701,0.0007320744770053701 -1.6235294117647059,45.99775716123113,45.99775716123113,0.7408162666005765,0.7408162666005765,-50.20186878779293,-50.20186878779293,0.0010162665700847319,0.0010162665700847319 -1.6258823529411766,46.390078835055434,46.390078835055434,0.6068423523902327,0.6068423523902327,-50.60307720925708,-50.60307720925708,0.001260793927276191,0.001260793927276191 -1.6282352941176468,46.75691236342434,46.75691236342434,0.5413414540447928,0.5413414540447928,-50.9818978115295,-50.9818978115295,0.0014379508810615353,0.0014379508810615353 -1.630588235294118,47.11570099017607,47.11570099017607,0.5176026117302762,0.5176026117302762,-51.356063436429324,-51.356063436429324,0.0015291829868261985,0.0015291829868261985 -1.6329411764705881,47.47942006651547,47.47942006651547,0.5267973307563301,0.5267973307563301,-51.73789469979686,-51.73789469979686,0.0015246105637038438,0.0015246105637038438 -1.6352941176470588,47.863188099318755,47.863188099318755,0.5705744415363989,0.5705744415363989,-52.14115747938865,-52.14115747938865,0.001424477817687405,0.001424477817687405 -1.6376470588235295,48.291740027151654,48.291740027151654,0.6603186279757508,0.6603186279757508,-52.58899111689565,-52.58899111689565,0.001241997586842927,0.001241997586842927 -1.6400000000000001,48.81253473972386,48.81253473972386,0.8160890316312183,0.8160890316312183,-53.12769253223448,-53.12769253223448,0.0010118320152360594,0.0010118320152360594 -1.6423529411764706,49.509917606619034,49.509917606619034,1.022316865668407,1.022316865668407,-53.84076927731656,-53.84076927731656,0.0008126306198922873,0.0008126306198922873 -1.6447058823529415,50.3907408832421,50.3907408832421,1.0663711344206497,1.0663711344206497,-54.73533770829675,-54.73533770829675,0.0007843531337502324,0.0007843531337502324 -1.6470588235294117,51.18720369821843,51.18720369821843,0.8536538106999578,0.8536538106999578,-55.54426480564379,-55.54426480564379,0.0009883614202462043,0.0009883614202462043 -1.6494117647058824,51.782340699878866,51.782340699878866,0.6491422762085646,0.6491422762085646,-56.152377977525035,-56.152377977525035,0.0013141995903849092,0.0013141995903849092 -1.651764705882353,52.2570931871456,52.2570931871456,0.5223067869692047,0.5223067869692047,-56.641688014123865,-56.641688014123865,0.0016546886364109848,0.0016546886364109848 -1.6541176470588237,52.673203232027355,52.673203232027355,0.4496404484798465,0.4496404484798465,-57.0751497147575,-57.0751497147575,0.0019487345819897656,0.0019487345819897656 -1.6564705882352944,53.06199495999243,53.06199495999243,0.4110480932462825,0.4110480932462825,-57.48421595884069,-57.48421595884069,0.002159807281407153,0.002159807281407153 -1.6588235294117644,53.44189727154214,53.44189727154214,0.3961684731380098,0.3961684731380098,-57.886635298363444,-57.886635298363444,0.002266062568086173,0.002266062568086173 -1.6611764705882353,53.82727025336894,53.82727025336894,0.4008493792742863,0.4008493792742863,-58.29573519593786,-58.29573519593786,0.00225832068653938,0.00225832068653938 -1.663529411764706,54.23391586705631,54.23391586705631,0.4250011034720491,0.4250011034720491,-58.725623710480036,-58.725623710480036,0.002141472622531086,0.002141472622531086 -1.6658823529411766,54.68261761665906,54.68261761665906,0.4711334769356081,0.4711334769356081,-59.19597749097389,-59.19597749097389,0.001938054662318979,0.001938054662318979 -1.668235294117647,55.20350294415683,55.20350294415683,0.5395645587501535,0.5395645587501535,-59.7361895362709,-59.7361895362709,0.0016960174082033628,0.0016960174082033628 -1.670588235294118,55.8291530697063,55.8291530697063,0.6116919846256036,0.6116919846256036,-60.37868426296559,-60.37868426296559,0.0015000377700051604,0.0015000377700051604 -1.672941176470588,56.54426023722359,56.54426023722359,0.6301781970112191,0.6301781970112191,-61.108937079346966,-61.108937079346966,0.0014623693656698367,0.0014623693656698367 -1.6752941176470588,57.24193537252403,57.24193537252403,0.5658353942341554,0.5658353942341554,-61.82129277125702,-61.82129277125702,0.0016397844758659127,0.0016397844758659127 -1.6776470588235295,57.83872116040396,57.83872116040396,0.4748715625776705,0.4748715625776705,-62.43391678114607,-62.43391678114607,0.0019714852088719976,0.0019714852088719976 -1.68,58.34206034797628,58.34206034797628,0.4016180956262232,0.4016180956262232,-62.95546301875637,-62.95546301875637,0.0023556864896842793,0.0023556864896842793 -1.6823529411764706,58.78589666532835,58.78589666532835,0.35225235558366447,0.35225235558366447,-63.42011606644162,-63.42011606644162,0.002713897095051472,0.002713897095051472 -1.684705882352941,59.196568076272186,59.196568076272186,0.322167136052169,0.322167136052169,-63.85439124400514,-63.85439124400514,0.0029940816229668153,0.0029940816229668153 -1.6870588235294117,59.59299145187121,59.59299145187121,0.30677102753543156,0.30677102753543156,-64.2758904045646,-64.2758904045646,0.0031649856842852486,0.0031649856842852486 -1.6894117647058824,59.989506960739256,59.989506960739256,0.3034039577387141,0.3034039577387141,-64.69774379347535,-64.69774379347535,0.003211722144728695,0.003211722144728695 -1.6917647058823528,60.3997104907765,60.3997104907765,0.31094428287725545,0.31094428287725545,-65.13205228550184,-65.13205228550184,0.003136085749658123,0.003136085749658123 -1.6941176470588235,60.838353364096776,60.838353364096776,0.32923677887519254,0.32923677887519254,-65.59248772173943,-65.59248772173943,0.0029590357134017206,0.0029590357134017206 -1.6964705882352942,61.322499165980936,61.322499165980936,0.3571101325990488,0.3571101325990488,-66.09561892424067,-66.09561892424067,0.0027243041686173014,0.0027243041686173014 -1.6988235294117644,61.86795888815838,61.86795888815838,0.38859597555542674,0.38859597555542674,-66.65761615097418,-66.65761615097418,0.002503105675425813,0.002503105675425813 -1.7011764705882353,62.474767766694654,62.474767766694654,0.4081114531231682,0.4081114531231682,-67.27927117952667,-67.27927117952667,0.0023882560757306714,0.0023882560757306714 -1.7035294117647062,63.10550276870144,63.10550276870144,0.3987143924972251,0.3987143924972251,-67.92486353101748,-67.92486353101748,0.002456545807707176,0.002456545807707176 -1.7058823529411766,63.70302491175969,63.70302491175969,0.36375966631794265,0.36375966631794265,-68.53863995778453,-68.53863995778453,0.0027122621681145145,0.0027122621681145145 -1.7082352941176469,64.237580889408,64.237580889408,0.32225735755844376,0.32225735755844376,-69.0921661632015,-69.0921661632015,0.003087834533793177,0.003087834533793177 -1.7105882352941175,64.71446384664804,64.71446384664804,0.2869594980445715,0.2869594980445715,-69.59088324472475,-69.59088324472475,0.003496676211773467,0.003496676211773467 -1.7129411764705882,65.15087774726022,65.15087774726022,0.26130355851389425,0.26130355851389425,-70.05195945533177,-70.05195945533177,0.0038667675051158785,0.0038667675051158785 -1.7152941176470589,65.56401605080313,65.56401605080313,0.24451529487581145,0.24451529487581145,-70.49107055080577,-70.49107055080577,0.004147861208056162,0.004147861208056162 -1.7176470588235295,65.96785350780095,65.96785350780095,0.23549301696993039,0.23549301696993039,-70.92112956877152,-70.92112956877152,0.0043101751195115095,0.0043101751195115095 -1.72,66.37472776455874,66.37472776455874,0.23324579154174083,0.23324579154174083,-71.35274391648682,-71.35274391648682,0.004342259172020395,0.004342259172020395 -1.7223529411764709,66.79623762996549,66.79623762996549,0.23725541617493234,0.23725541617493234,-71.79610367859291,-71.79610367859291,0.0042521657511826955,0.0042521657511826955 -1.7247058823529409,67.24309663398722,67.24309663398722,0.24687363921079927,0.24687363921079927,-72.2618998838512,-72.2618998838512,0.004068375206728611,0.004068375206728611 -1.7270588235294118,67.72605614561314,67.72605614561314,0.26062705836318867,0.26062705836318867,-72.76063043408361,-72.76063043408361,0.003841823961217042,0.003841823961217042 -1.7294117647058824,68.2506919767992,68.2506919767992,0.27454498561769486,0.27454498561769486,-73.29932985845868,-73.29932985845868,0.0036450340669378217,0.0036450340669378217 -1.731764705882353,68.8107904028077,68.8107904028077,0.281990164488593,0.281990164488593,-73.87306457133559,-73.87306457133559,0.003558637371152724,0.003558637371152724 -1.7341176470588235,69.38222637812369,69.38222637812369,0.27710643800949497,0.27710643800949497,-74.45937389142112,-74.45937389142112,0.0036418366503245423,0.0036418366503245423 -1.7364705882352938,69.93228896695923,69.93228896695923,0.2609345750277387,0.2609345750277387,-75.02752384185655,-75.02752384185655,0.0038972061737706084,0.0038972061737706084 -1.7388235294117647,70.44239469369603,70.44239469369603,0.23983713891083044,0.23983713891083044,-75.5589506909735,-75.5589506909735,0.0042729385776913344,0.0042729385776913344 -1.7411764705882353,70.9112388214216,70.9112388214216,0.21973196117143035,0.21973196117143035,-76.05219002044426,-76.05219002044426,0.004693564599439518,0.004693564599439518 -1.743529411764706,71.34780059085126,71.34780059085126,0.2033880507533068,0.2033880507533068,-76.51545997079057,-76.51545997079057,0.005088330273452781,0.005088330273452781 -1.7458823529411764,71.764341257414,71.764341257414,0.19149225406403794,0.19149225406403794,-76.95913274968844,-76.95913274968844,0.005403782209156723,0.005403782209156723 -1.748235294117647,72.17212570056836,72.17212570056836,0.183933519957365,0.183933519957365,-77.39312734497183,-77.39312734497183,0.005605230449676512,0.005605230449676512 -1.7505882352941176,72.58160979356845,72.58160979356845,0.18044736161588062,0.18044736161588062,-77.82606744190653,-77.82606744190653,0.005678305419670771,0.005678305419670771 -1.7529411764705882,73.00186823982347,73.00186823982347,0.18071871026593636,0.18071871026593636,-78.26613991186743,-78.26613991186743,0.005627525906069853,0.005627525906069853 -1.7552941176470591,73.44084367700991,73.44084367700991,0.18441601303014932,0.18441601303014932,-78.72129740336209,-78.72129740336209,0.005478275403049806,0.005478275403049806 -1.7576470588235293,73.90503356405621,73.90503356405621,0.19067010147952373,0.19067010147952373,-79.19862715853805,-79.19862715853805,0.005275717336969539,0.005275717336969539 -1.76,74.39750842161446,74.39750842161446,0.19778036507191854,0.19778036507191854,-79.70264675535344,-79.70264675535344,0.005083125287622919,0.005083125287622919 -1.7623529411764705,74.91424583968593,74.91424583968593,0.20287516260694763,0.20287516260694763,-80.2317364516946,-80.2317364516946,0.004971813355378355,0.004971813355378355 -1.7647058823529411,75.44241037883224,75.44241037883224,0.20306249138807525,0.20306249138807525,-80.77486026508133,-80.77486026508133,0.005000171025402031,0.005000171025402031 -1.7670588235294116,75.96306420555254,75.96306420555254,0.1971632482412864,0.1971632482412864,-81.31428563971612,-81.31428563971612,0.005190807192951209,0.005190807192951209 -1.7694117647058827,76.460600024822,76.460600024822,0.18687818676278442,0.18687818676278442,-81.83447863434435,-81.83447863434435,0.005518833945332434,0.005518833945332434 -1.7717647058823531,76.92786991580155,76.92786991580155,0.17494099364920537,0.17494099364920537,-82.32813140020728,-82.32813140020728,0.005927130801964372,0.005927130801964372 -1.7741176470588236,77.36823491665596,77.36823491665596,0.16358227915063395,0.16358227915063395,-82.79666459271535,-82.79666459271535,0.006348973109340613,0.006348973109340613 -1.776470588235294,77.78862819971486,77.78862819971486,0.1540064953112135,0.1540064953112135,-83.24567350544146,-83.24567350544146,0.006724480635419444,0.006724480635419444 -1.7788235294117647,78.19840987753406,78.19840987753406,0.14675720376561774,0.14675720376561774,-83.68231660811931,-83.68231660811931,0.00700926539496558,0.00700926539496558 -1.7811764705882354,78.6060111461839,78.6060111461839,0.14192867049619945,0.14192867049619945,-84.11346854878431,-84.11346854878431,0.007177525591833768,0.007177525591833768 -1.7835294117647063,79.01936849875351,79.01936849875351,0.13955274943314208,0.13955274943314208,-84.54572242276092,-84.54572242276092,0.007222281059028812,0.007222281059028812 -1.7858823529411765,79.44449179962105,79.44449179962105,0.13949100291768096,0.13949100291768096,-84.98531105474892,-84.98531105474892,0.0071553375831354335,0.0071553375831354335 -1.7882352941176471,79.88618463003705,79.88618463003705,0.14150288334863187,0.14150288334863187,-85.4377847991896,-85.4377847991896,0.007008156973177829,0.007008156973177829 -1.7905882352941174,80.34663048341159,80.34663048341159,0.14494302415818866,0.14494302415818866,-85.90742899173412,-85.90742899173412,0.006828830628788082,0.006828830628788082 -1.7929411764705883,80.8248880580395,80.8248880580395,0.14869853603209693,0.14869853603209693,-86.39566737667795,-86.39566737667795,0.006677669938310054,0.006677669938310054 -1.795294117647059,81.31556945458946,81.31556945458946,0.15120364724560478,0.15120364724560478,-86.89942537647727,-86.89942537647727,0.006614550492838531,0.006614550492838531 -1.7976470588235294,81.808555752315,81.808555752315,0.15095918423085436,0.15095918423085436,-87.41031291141485,-87.41031291141485,0.006684505932452882,0.006684505932452882 -1.8,82.292616413728,82.292616413728,0.1475611653457068,0.1475611653457068,-87.91712114534884,-87.91712114534884,0.00689900954186092,0.00689900954186092 diff --git a/sparameters/rotate_f258530e_8d0ba197.yml b/sparameters/rotate_f258530e_8d0ba197.yml deleted file mode 100644 index 3214cd7c..00000000 --- a/sparameters/rotate_f258530e_8d0ba197.yml +++ /dev/null @@ -1,27 +0,0 @@ -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: -6 -compute_time_seconds: 77.51380109786987 -compute_time_minutes: 1.291896684964498 diff --git a/sparameters/rotate_f258530e_8ec78c6d.csv b/sparameters/rotate_f258530e_8ec78c6d.csv deleted file mode 100644 index 9a9b2381..00000000 --- a/sparameters/rotate_f258530e_8ec78c6d.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,2.0284535069579146,2.0284535069579146,0.00040527887530782196,0.00040527887530782196,-0.7494693295148268,-0.7494693295148268,0.020868031194640136,0.020868031194640136 -1.2023529411764706,3.6414762957393516,3.6414762957393516,0.0003237958313602789,0.0003237958313602789,-2.0446018667747152,-2.0446018667747152,0.021941714965153913,0.021941714965153913 -1.204705882352941,3.921113417135363,3.921113417135363,0.00046972828981316456,0.00046972828981316456,-3.375662735330461,-3.375662735330461,0.022973462998976114,0.022973462998976114 -1.2070588235294117,4.229478020836522,4.229478020836522,0.0004240959556846037,0.0004240959556846037,-4.717633828152708,-4.717633828152708,0.023002609460619067,0.023002609460619067 -1.2094117647058824,5.574591089692292,5.574591089692292,0.0003658124383454353,0.0003658124383454353,-6.027976771089257,-6.027976771089257,0.02185728738700659,0.02185728738700659 -1.2117647058823529,5.944164541284474,5.944164541284474,0.00038350426666684465,0.00038350426666684465,-7.270784920383856,-7.270784920383856,0.020293356590684895,0.020293356590684895 -1.2141176470588235,6.510091419242786,6.510091419242786,0.00045080035281565186,0.00045080035281565186,-8.45329701138127,-8.45329701138127,0.01951785021395738,0.01951785021395738 -1.216470588235294,6.01435350833344,6.01435350833344,0.0005004014000725566,0.0005004014000725566,-9.63898877991295,-9.63898877991295,0.019930598697749484,0.019930598697749484 -1.2188235294117646,7.858876861771175,7.858876861771175,0.00023343194667106086,0.00023343194667106086,-10.876237383098408,-10.876237383098408,0.02063588448514121,0.02063588448514121 -1.2211764705882353,8.869969293889275,8.869969293889275,0.00036114507833991496,0.00036114507833991496,-12.152137834951084,-12.152137834951084,0.020555392205884135,0.020555392205884135 -1.2235294117647058,9.075487151641639,9.075487151641639,0.00047476481808359953,0.00047476481808359953,-13.424674732947484,-13.424674732947484,0.019370096957450483,0.019370096957450483 -1.2258823529411764,9.942716923206966,9.942716923206966,0.0004012789949067036,0.0004012789949067036,-14.653771546103593,-14.653771546103593,0.01769741173268884,0.01769741173268884 -1.228235294117647,10.680009026842292,10.680009026842292,0.0004152113884362316,0.0004152113884362316,-15.834547363212664,-15.834547363212664,0.016555089007935713,0.016555089007935713 -1.2305882352941175,11.383731121504105,11.383731121504105,0.0003996810234092175,0.0003996810234092175,-17.020121283791187,-17.020121283791187,0.016518395284154535,0.016518395284154535 -1.2329411764705882,11.56155522385514,11.56155522385514,0.000318627873990554,0.000318627873990554,-18.264561837604635,-18.264561837604635,0.017062918014902496,0.017062918014902496 -1.2352941176470589,12.839262978662356,12.839262978662356,0.0004306832282575586,0.0004306832282575586,-19.564708073122492,-19.564708073122492,0.01734607988212291,0.01734607988212291 -1.2376470588235293,14.071581637528144,14.071581637528144,0.0004357250567078795,0.0004357250567078795,-20.87898337218157,-20.87898337218157,0.01696550752592367,0.01696550752592367 -1.24,14.474070631351083,14.474070631351083,0.00044464537700324126,0.00044464537700324126,-22.161583441042573,-22.161583441042573,0.016216907495637825,0.016216907495637825 -1.2423529411764704,15.025333900363414,15.025333900363414,0.000442255877356092,0.000442255877356092,-23.390395944358147,-23.390395944358147,0.015936911898226856,0.015936911898226856 -1.244705882352941,15.87624979111603,15.87624979111603,0.00042705371798795006,0.00042705371798795006,-24.605885073381145,-24.605885073381145,0.016946918625881737,0.016946918625881737 -1.2470588235294118,16.41512533998389,16.41512533998389,0.00035917045264778033,0.00035917045264778033,-25.878434313319776,-25.878434313319776,0.01919812050959394,0.01919812050959394 -1.2494117647058822,16.605444437932093,16.605444437932093,0.00027064289384913964,0.00027064289384913964,-27.233600728658352,-27.233600728658352,0.02177185262381554,0.02177185262381554 -1.251764705882353,16.34198949406954,16.34198949406954,3.063086808890943e-05,3.063086808890943e-05,-28.65496579397404,-28.65496579397404,0.023607773122288737,0.023607773122288737 -1.2541176470588236,14.731992736331472,14.731992736331472,0.00011425344118240058,0.00011425344118240058,-30.12134462923946,-30.12134462923946,0.02397751210169627,0.02397751210169627 -1.256470588235294,14.536642971757228,14.536642971757228,0.0002546194540639979,0.0002546194540639979,-31.61994353779372,-31.61994353779372,0.02259078107986179,0.02259078107986179 -1.2588235294117647,15.054178316691207,15.054178316691207,0.00040912242476449315,0.00040912242476449315,-33.14688435692024,-33.14688435692024,0.01961615741909761,0.01961615741909761 -1.2611764705882353,15.567351644721686,15.567351644721686,0.00029660336893777724,0.00029660336893777724,-34.70692075933308,-34.70692075933308,0.015580346758890768,0.015580346758890768 -1.2635294117647058,17.22318179567138,17.22318179567138,0.0003020121996384819,0.0003020121996384819,-36.317419008337865,-36.317419008337865,0.011245772331222393,0.011245772331222393 -1.2658823529411765,18.58128656197843,18.58128656197843,0.0006159243852625676,0.0006159243852625676,-38.01302505907709,-38.01302505907709,0.0073864858816635555,0.0073864858816635555 -1.268235294117647,19.576094829789366,19.576094829789366,0.0008818418677816192,0.0008818418677816192,-39.84175801528401,-39.84175801528401,0.004582381274852048,0.004582381274852048 -1.2705882352941176,21.09041931030384,21.09041931030384,0.0008372773517288163,0.0008372773517288163,-41.7962686491634,-41.7962686491634,0.002937869111863999,0.002937869111863999 -1.2729411764705882,22.776554736156182,22.776554736156182,0.0019387375147759153,0.0019387375147759153,-43.76723935561143,-43.76723935561143,0.001939982541362379,0.001939982541362379 -1.2752941176470587,24.330387519155625,24.330387519155625,0.004018386178046288,0.004018386178046288,-45.81840107546677,-45.81840107546677,0.001088350195073534,0.001088350195073534 -1.2776470588235294,26.057254600525265,26.057254600525265,0.005130791254284189,0.005130791254284189,-48.520661550362334,-48.520661550362334,0.0006928960627765651,0.0006928960627765651 -1.28,28.042231437986874,28.042231437986874,0.0016006367169884947,0.0016006367169884947,-50.8397096210472,-50.8397096210472,0.001101163368228656,0.001101163368228656 -1.2823529411764705,29.575499160863245,29.575499160863245,0.0016910769017956585,0.0016910769017956585,-52.56408049538956,-52.56408049538956,0.0013640007263006069,0.0013640007263006069 -1.2847058823529411,30.444299888552052,30.444299888552052,0.002391106672063614,0.002391106672063614,-54.137982821870175,-54.137982821870175,0.0011962972942744258,0.0011962972942744258 -1.2870588235294118,31.65803054630008,31.65803054630008,0.002936329961988987,0.002936329961988987,-55.67897869699597,-55.67897869699597,0.000676524547324343,0.000676524547324343 -1.2894117647058823,33.80363024552209,33.80363024552209,0.03043687673729636,0.03043687673729636,-58.62492802514988,-58.62492802514988,6.458463012380245e-05,6.458463012380245e-05 -1.291764705882353,36.701243974116586,36.701243974116586,0.006062108522969262,0.006062108522969262,-61.51179293922276,-61.51179293922276,0.000596351023226695,0.000596351023226695 -1.2941176470588236,37.93332313630857,37.93332313630857,0.0038122974605467935,0.0038122974605467935,-62.96327156664579,-62.96327156664579,0.0009277116721794132,0.0009277116721794132 -1.296470588235294,38.458338111077666,38.458338111077666,0.0033044638632069726,0.0033044638632069726,-64.3514481227823,-64.3514481227823,0.0009196959872372096,0.0009196959872372096 -1.2988235294117647,39.335295482434844,39.335295482434844,0.0038685707770288896,0.0038685707770288896,-65.66306518732819,-65.66306518732819,0.000617501737722847,0.000617501737722847 -1.3011764705882352,39.901341671352164,39.901341671352164,0.014164901204489499,0.014164901204489499,-66.46025778596716,-66.46025778596716,0.00017816029693589903,0.00017816029693589903 -1.3035294117647058,38.60666017700722,38.60666017700722,0.007708040437151294,0.007708040437151294,-65.7795713209404,-65.7795713209404,0.0003691838668410691,0.0003691838668410691 -1.3058823529411765,39.099613974114945,39.099613974114945,0.004156160904822156,0.004156160904822156,-66.93756497177945,-66.93756497177945,0.0006784523204272945,0.0006784523204272945 -1.308235294117647,39.76772610514701,39.76772610514701,0.0018960701224207974,0.0018960701224207974,-68.19235775476659,-68.19235775476659,0.000753200949633288,0.000753200949633288 -1.3105882352941176,41.00204089303192,41.00204089303192,0.0034233137720091223,0.0034233137720091223,-69.40407087684392,-69.40407087684392,0.0005890086568419212,0.0005890086568419212 -1.3129411764705883,41.44236021904481,41.44236021904481,0.004394829408976106,0.004394829408976106,-70.32878613771992,-70.32878613771992,0.000286462872513692,0.000286462872513692 -1.3152941176470587,40.60532643057849,40.60532643057849,0.00832714380073097,0.00832714380073097,-69.99521952538743,-69.99521952538743,0.00023688166900579153,0.00023688166900579153 -1.3176470588235294,40.880521141359566,40.880521141359566,0.0036364769613017657,0.0036364769613017657,-70.77777733953506,-70.77777733953506,0.0004849946099213753,0.0004849946099213753 -1.32,42.00053574135387,42.00053574135387,0.0028389878563260416,0.0028389878563260416,-71.92161539824025,-71.92161539824025,0.0006016636933703261,0.0006016636933703261 -1.3223529411764705,42.88599491644533,42.88599491644533,0.006304574478890248,0.006304574478890248,-73.08055983040852,-73.08055983040852,0.0005347484623244096,0.0005347484623244096 -1.3247058823529412,43.11976583649361,43.11976583649361,0.007673977932381315,0.007673977932381315,-74.09240007314898,-74.09240007314898,0.00033015922845795157,0.00033015922845795157 -1.3270588235294118,42.43984804998298,42.43984804998298,0.015879350915977707,0.015879350915977707,-74.23274149076063,-74.23274149076063,0.00017484367451822854,0.00017484367451822854 -1.3294117647058823,42.54907907485648,42.54907907485648,0.0051575262142570235,0.0051575262142570235,-74.52686610809523,-74.52686610809523,0.00033042106891814475,0.00033042106891814475 -1.331764705882353,43.088089885614934,43.088089885614934,0.0033258180146243147,0.0033258180146243147,-75.53994591834915,-75.53994591834915,0.00047209516853884956,0.00047209516853884956 -1.3341176470588234,43.80599234922777,43.80599234922777,0.0037544556300659862,0.0037544556300659862,-76.65086300666813,-76.65086300666813,0.0004818673376272201,0.0004818673376272201 -1.336470588235294,43.842088485697325,43.842088485697325,0.003228674196552313,0.003228674196552313,-77.69258884154182,-77.69258884154182,0.0003649698861437103,0.0003649698861437103 -1.3388235294117647,44.47045032583171,44.47045032583171,0.0038917141950932563,0.0038917141950932563,-78.32153078230179,-78.32153078230179,0.00020652613537871823,0.00020652613537871823 -1.3411764705882352,44.665605161469415,44.665605161469415,0.005884836584006502,0.005884836584006502,-78.36529340446594,-78.36529340446594,0.00023251941227341475,0.00023251941227341475 -1.3435294117647059,44.918177371195945,44.918177371195945,0.006965469197933077,0.006965469197933077,-79.13651832337526,-79.13651832337526,0.0003775086756633576,0.0003775086756633576 -1.3458823529411765,44.79273780702254,44.79273780702254,0.0025512264218167644,0.0025512264218167644,-80.16289621080234,-80.16289621080234,0.00044908402699758867,0.00044908402699758867 -1.348235294117647,45.641479308998015,45.641479308998015,0.002475231014327231,0.002475231014327231,-81.1997349788033,-81.1997349788033,0.0004113167230288993,0.0004113167230288993 -1.3505882352941176,46.46522337410876,46.46522337410876,0.003937468587353692,0.003937468587353692,-82.08095559616164,-82.08095559616164,0.00029439496631604797,0.00029439496631604797 -1.3529411764705883,46.2227143188585,46.2227143188585,0.006198252419585079,0.006198252419585079,-82.47524168138546,-82.47524168138546,0.00020748006759406483,0.00020748006759406483 -1.3552941176470588,45.81587548883831,45.81587548883831,0.0069839371229150895,0.0069839371229150895,-82.85794838937397,-82.85794838937397,0.00028001562565233576,0.00028001562565233576 -1.3576470588235294,46.24670096302097,46.24670096302097,0.002861878270130672,0.002861878270130672,-83.71540470642545,-83.71540470642545,0.00037894199880157074,0.00037894199880157074 -1.3599999999999999,47.64623960214369,47.64623960214369,0.0030321075786767437,0.0030321075786767437,-84.72587101220543,-84.72587101220543,0.00040536670965438316,0.00040536670965438316 -1.3623529411764705,48.06235392349109,48.06235392349109,0.0019302373051614397,0.0019302373051614397,-85.73541597809115,-85.73541597809115,0.00034250935742376665,0.00034250935742376665 -1.3647058823529412,48.17615146495222,48.17615146495222,0.004745061855732806,0.004745061855732806,-86.60439040006848,-86.60439040006848,0.0002268626200275377,0.0002268626200275377 -1.3670588235294117,47.8307124659185,47.8307124659185,0.007743416898914056,0.007743416898914056,-86.96532426084924,-86.96532426084924,0.00014048451275541066,0.00014048451275541066 -1.3694117647058823,48.30438148663106,48.30438148663106,0.00406767804249701,0.00406767804249701,-87.26598600873506,-87.26598600873506,0.0001735818554617504,0.0001735818554617504 -1.371764705882353,49.200532882470334,49.200532882470334,0.0028735716573018467,0.0028735716573018467,-88.10499916529218,-88.10499916529218,0.00020918017737055843,0.00020918017737055843 -1.3741176470588234,49.41786207990282,49.41786207990282,0.0058050529547955775,0.0058050529547955775,-89.13826934882394,-89.13826934882394,0.00017204685863253036,0.00017204685863253036 -1.3764705882352941,50.00452011922088,50.00452011922088,0.017414698154618654,0.017414698154618654,-90.34666737139165,-90.34666737139165,5.929349178163022e-05,5.929349178163022e-05 -1.3788235294117648,53.0759748307392,53.0759748307392,0.006397154784182181,0.006397154784182181,-87.94059171944342,-87.94059171944342,0.00010686504029099241,0.00010686504029099241 -1.3811764705882352,55.32251534236198,55.32251534236198,0.0013327876589321053,0.0013327876589321053,-89.05593846463749,-89.05593846463749,0.00028033306849572327,0.00028033306849572327 -1.383529411764706,55.050368134190194,55.050368134190194,0.001873909640281897,0.001873909640281897,-90.06868861976771,-90.06868861976771,0.00042843796276333313,0.00042843796276333313 -1.3858823529411763,55.290619893107994,55.290619893107994,0.002081435627514335,0.002081435627514335,-91.00022728242615,-91.00022728242615,0.0005324405446092687,0.0005324405446092687 -1.388235294117647,55.829601389192526,55.829601389192526,0.001717216423522496,0.001717216423522496,-91.83647561521062,-91.83647561521062,0.0006108205612227448,0.0006108205612227448 -1.3905882352941177,55.75822584428923,55.75822584428923,0.0012436332704669293,0.0012436332704669293,-92.60225613953509,-92.60225613953509,0.0007108545231215279,0.0007108545231215279 -1.3929411764705881,57.109076734674936,57.109076734674936,0.001112575034761877,0.001112575034761877,-93.37464209074506,-93.37464209074506,0.0008694917368897581,0.0008694917368897581 -1.3952941176470588,57.47984522370201,57.47984522370201,0.0014497880306924699,0.0014497880306924699,-94.20245533127614,-94.20245533127614,0.0010747963445409826,0.0010747963445409826 -1.3976470588235295,57.47453247795234,57.47453247795234,0.0007985326197606799,0.0007985326197606799,-95.07788596540809,-95.07788596540809,0.0012821122991242152,0.0012821122991242152 -1.4,58.097260560169836,58.097260560169836,0.0005515852016289987,0.0005515852016289987,-95.9701570247062,-95.9701570247062,0.0014517365975487602,0.0014517365975487602 -1.4023529411764706,59.07779036267342,59.07779036267342,0.00031764441290881224,0.00031764441290881224,-96.85153650925683,-96.85153650925683,0.001569243607839076,0.001569243607839076 -1.4047058823529412,59.62101783904619,59.62101783904619,0.0004263146083512774,0.0004263146083512774,-97.70537995913455,-97.70537995913455,0.0016505210440451953,0.0016505210440451953 -1.4070588235294117,60.05676741677721,60.05676741677721,0.0005558755318536574,0.0005558755318536574,-98.52909560813708,-98.52909560813708,0.0017320289854233113,0.0017320289854233113 -1.4094117647058824,60.19452138454254,60.19452138454254,0.0005527918121591415,0.0005527918121591415,-99.33992396471056,-99.33992396471056,0.0018477552536837005,0.0018477552536837005 -1.4117647058823528,60.293288247514994,60.293288247514994,0.00041358366856832876,0.00041358366856832876,-100.15961424795222,-100.15961424795222,0.0020014171541724757,0.0020014171541724757 -1.4141176470588235,61.569374396274526,61.569374396274526,0.0002477066323395782,0.0002477066323395782,-100.99856307635787,-100.99856307635787,0.002166475558863987,0.002166475558863987 -1.4164705882352941,62.07905922215068,62.07905922215068,0.000586933639992517,0.000586933639992517,-101.85097251751233,-101.85097251751233,0.002310433872523726,0.002310433872523726 -1.4188235294117646,61.985144793554966,61.985144793554966,0.0005756702269460872,0.0005756702269460872,-102.70356867387298,-102.70356867387298,0.002413837904019746,0.002413837904019746 -1.4211764705882353,62.194278661534476,62.194278661534476,0.0005140522980926275,0.0005140522980926275,-103.54314746891069,-103.54314746891069,0.002483628486533605,0.002483628486533605 -1.423529411764706,62.698581408568316,62.698581408568316,0.00015295704565739204,0.00015295704565739204,-104.3638754496282,-104.3638754496282,0.0025507275975285588,0.0025507275975285588 -1.4258823529411764,63.17252500460348,63.17252500460348,0.00011859186395573037,0.00011859186395573037,-105.17003624708099,-105.17003624708099,0.0026481703388621814,0.0026481703388621814 -1.428235294117647,63.81728200720238,63.81728200720238,0.00021586390455285794,0.00021586390455285794,-105.97399724769643,-105.97399724769643,0.0027938170764264174,0.0027938170764264174 -1.4305882352941177,64.4242855336935,64.4242855336935,0.00021166466312616105,0.00021166466312616105,-106.78679147017048,-106.78679147017048,0.0029774299927584854,0.0029774299927584854 -1.4329411764705882,64.59370999212244,64.59370999212244,0.00014331986561396797,0.00014331986561396797,-107.60906281535243,-107.60906281535243,0.0031714887833259693,0.0031714887833259693 -1.4352941176470588,65.35672417482354,65.35672417482354,7.175579940628496e-05,7.175579940628496e-05,-108.43558021879385,-108.43558021879385,0.0033510252205192484,0.0033510252205192484 -1.4376470588235293,66.29450181160804,66.29450181160804,0.00027338953394607943,0.00027338953394607943,-109.25674610857479,-109.25674610857479,0.003509118666000942,0.003509118666000942 -1.44,66.87622323673284,66.87622323673284,0.00031662931559307497,0.00031662931559307497,-110.0659434510534,-110.0659434510534,0.003663558240663643,0.003663558240663643 -1.4423529411764706,66.52809568871756,66.52809568871756,0.0003732608388616446,0.0003732608388616446,-110.86242850414202,-110.86242850414202,0.0038457646386921224,0.0038457646386921224 -1.444705882352941,67.1299165167476,67.1299165167476,0.0002539872128345575,0.0002539872128345575,-111.65185122553606,-111.65185122553606,0.004083907979654288,0.004083907979654288 -1.4470588235294117,67.16671655171679,67.16671655171679,0.00020632290484176726,0.00020632290484176726,-112.44188769896233,-112.44188769896233,0.004386535356080473,0.004386535356080473 -1.4494117647058824,67.59168545283717,67.59168545283717,0.0001263308587266043,0.0001263308587266043,-113.23718181183425,-113.23718181183425,0.004739572534323358,0.004739572534323358 -1.4517647058823528,68.10183737445975,68.10183737445975,0.00025040251483857324,0.00025040251483857324,-114.0369690602712,-114.0369690602712,0.005116991439033162,0.005116991439033162 -1.4541176470588235,68.09214683626362,68.09214683626362,0.00019901320538368296,0.00019901320538368296,-114.8360247168834,-114.8360247168834,0.0055022867487157295,0.0055022867487157295 -1.4564705882352942,67.8972800929605,67.8972800929605,0.0001350183463982562,0.0001350183463982562,-115.62936727003836,-115.62936727003836,0.005898611411119301,0.005898611411119301 -1.4588235294117646,67.23307233464719,67.23307233464719,7.65775657500492e-05,7.65775657500492e-05,-116.41393868185762,-116.41393868185762,0.006331872216042852,0.006331872216042852 -1.4611764705882353,66.13275836917829,66.13275836917829,6.494397460716538e-05,6.494397460716538e-05,-117.19122220046789,-117.19122220046789,0.00683921964839211,0.00683921964839211 -1.4635294117647057,65.6984445521255,65.6984445521255,0.00013548108789414567,0.00013548108789414567,-117.96551968036854,-117.96551968036854,0.007452095429890269,0.007452095429890269 -1.4658823529411764,65.42831595679938,65.42831595679938,0.00012526335091659813,0.00012526335091659813,-118.74163927414772,-118.74163927414772,0.00818156026652313,0.00818156026652313 -1.468235294117647,66.01677512269629,66.01677512269629,0.0001384642254711643,0.0001384642254711643,-119.522146904295,-119.522146904295,0.009017089399193013,0.009017089399193013 -1.4705882352941178,66.21570032444781,66.21570032444781,0.00012155089980209962,0.00012155089980209962,-120.30665295731866,-120.30665295731866,0.009939685911269576,0.009939685911269576 -1.4729411764705882,66.3777774627388,66.3777774627388,0.00014760396597668506,0.00014760396597668506,-121.09305404937719,-121.09305404937719,0.010935781359475772,0.010935781359475772 -1.4752941176470589,66.60835891034097,66.60835891034097,0.00018696874185625872,0.00018696874185625872,-121.87885252499031,-121.87885252499031,0.012011359744093474,0.012011359744093474 -1.4776470588235295,66.65284933765062,66.65284933765062,0.00019107121793157338,0.00019107121793157338,-122.66309674798627,-122.66309674798627,0.013191851236551358,0.013191851236551358 -1.48,66.61683680754851,66.61683680754851,0.00018226334083528656,0.00018226334083528656,-123.44630714406455,-123.44630714406455,0.014512460438928735,0.014512460438928735 -1.4823529411764707,66.54100979341153,66.54100979341153,0.00015760798212467215,0.00015760798212467215,-124.2303303991406,-124.2303303991406,0.016006034276668805,0.016006034276668805 -1.484705882352941,66.67838377137284,66.67838377137284,0.00012812773727942058,0.00012812773727942058,-125.01722373333209,-125.01722373333209,0.017686009521723545,0.017686009521723545 -1.4870588235294118,66.45540339097647,66.45540339097647,0.0001012328567834498,0.0001012328567834498,-125.80819902405754,-125.80819902405754,0.019544216082311664,0.019544216082311664 -1.4894117647058822,66.5287961940331,66.5287961940331,8.484216473335558e-05,8.484216473335558e-05,-126.60322985573393,-126.60322985573393,0.021554832198915432,0.021554832198915432 -1.4917647058823529,66.31354088059886,66.31354088059886,9.052839583944808e-05,9.052839583944808e-05,-127.40139001407732,-127.40139001407732,0.023688654692939636,0.023688654692939636 -1.4941176470588236,66.31688684431487,66.31688684431487,9.675379890626086e-05,9.675379890626086e-05,-128.20139859175148,-128.20139859175148,0.02592012017426252,0.02592012017426252 -1.4964705882352942,66.23379129048375,66.23379129048375,0.00010376881081783674,0.00010376881081783674,-129.00196297470188,-129.00196297470188,0.028238849996627968,0.028238849996627968 -1.4988235294117647,66.07552492931752,66.07552492931752,0.00013505722157755137,0.00013505722157755137,-129.80239695177207,-129.80239695177207,0.03064280820772186,0.03064280820772186 -1.5011764705882353,66.04776353122239,66.04776353122239,0.00014595733334090655,0.00014595733334090655,-130.6025248425208,-130.6025248425208,0.03313421698035732,0.03313421698035732 -1.5035294117647058,66.02782947993892,66.02782947993892,0.00015211678036619746,0.00015211678036619746,-131.40250942494714,-131.40250942494714,0.03570831999647984,0.03570831999647984 -1.5058823529411764,66.04104486217524,66.04104486217524,0.00014031791897239036,0.00014031791897239036,-132.20263757460842,-132.20263757460842,0.03834346071819605,0.03834346071819605 -1.5082352941176471,66.05279867662958,66.05279867662958,0.00012893919705608278,0.00012893919705608278,-133.0029780801079,-133.0029780801079,0.04099906980072625,0.04099906980072625 -1.5105882352941176,66.0620363830862,66.0620363830862,0.00012353383336835983,0.00012353383336835983,-133.803252600848,-133.803252600848,0.043619337517415424,0.043619337517415424 -1.5129411764705882,66.13444045035251,66.13444045035251,0.00011602407060508478,0.00011602407060508478,-134.6027865880671,-134.6027865880671,0.04614434639164299,0.04614434639164299 -1.5152941176470587,66.14373955536033,66.14373955536033,0.00011279168779206264,0.00011279168779206264,-135.4006188481292,-135.4006188481292,0.048519152633555815,0.048519152633555815 -1.5176470588235293,66.0654303500296,66.0654303500296,0.00011164441716920866,0.00011164441716920866,-136.19566557489475,-136.19566557489475,0.05070538982500704,0.05070538982500704 -1.52,65.96357310433726,65.96357310433726,0.00011357868421720275,0.00011357868421720275,-136.9869521200948,-136.9869521200948,0.052685520104029826,0.052685520104029826 -1.5223529411764707,65.81595188590279,65.81595188590279,0.00011427020977780353,0.00011427020977780353,-137.77380612548254,-137.77380612548254,0.054461523400164316,0.054461523400164316 -1.5247058823529411,65.77440976818576,65.77440976818576,0.00011545325882979287,0.00011545325882979287,-138.55582331613746,-138.55582331613746,0.05604761284691934,0.05604761284691934 -1.5270588235294118,65.6947789537006,65.6947789537006,0.00011811605567673818,0.00011811605567673818,-139.33293035510553,-139.33293035510553,0.057462195967060974,0.057462195967060974 -1.5294117647058822,65.6379439914958,65.6379439914958,0.00011895690568608938,0.00011895690568608938,-140.1052741834811,-140.1052741834811,0.05871671758283171,0.05871671758283171 -1.531764705882353,65.60979956354997,65.60979956354997,0.00012129446069764145,0.00012129446069764145,-140.87312095548072,-140.87312095548072,0.0598104844423116,0.0598104844423116 -1.5341176470588236,65.65192348482492,65.65192348482492,0.00011958824092071882,0.00011958824092071882,-141.63657519871506,-141.63657519871506,0.06073155150386609,0.06073155150386609 -1.536470588235294,65.61771167133269,65.61771167133269,0.00012167416048434703,0.00012167416048434703,-142.3956706277642,-142.3956706277642,0.061463088327343485,0.061463088327343485 -1.5388235294117647,65.70950777840915,65.70950777840915,0.0001236715962659471,0.0001236715962659471,-143.15002000465074,-143.15002000465074,0.06199072636055458,0.06199072636055458 -1.5411764705882351,65.70215970861332,65.70215970861332,0.00012156532419010951,0.00012156532419010951,-143.89934150543215,-143.89934150543215,0.06231138803784687,0.06231138803784687 -1.5435294117647058,65.6453119862548,65.6453119862548,0.00012038450878491492,0.00012038450878491492,-144.64310186532444,-144.64310186532444,0.06243851392524215,0.06243851392524215 -1.5458823529411767,65.61140403800881,65.61140403800881,0.0001188525734930938,0.0001188525734930938,-145.38104950535558,-145.38104950535558,0.06240176204269973,0.06240176204269973 -1.5482352941176472,65.61599931508455,65.61599931508455,0.00011514961287328499,0.00011514961287328499,-146.11302091977032,-146.11302091977032,0.0622395671152565,0.0622395671152565 -1.5505882352941176,65.44405284093874,65.44405284093874,0.00010526488302042332,0.00010526488302042332,-146.83921076407148,-146.83921076407148,0.061990757027463275,0.061990757027463275 -1.5529411764705883,65.369825839963,65.369825839963,0.00010133545786558044,0.00010133545786558044,-147.55996344542072,-147.55996344542072,0.061683637561905896,0.061683637561905896 -1.5552941176470587,65.29387328248899,65.29387328248899,0.00010135036078151318,0.00010135036078151318,-148.27582123149554,-148.27582123149554,0.061331307544262324,0.061331307544262324 -1.5576470588235294,65.28114308090812,65.28114308090812,9.969609920209072e-05,9.969609920209072e-05,-148.98720062772406,-148.98720062772406,0.06093060458163904,0.06093060458163904 -1.5599999999999998,65.24841594866596,65.24841594866596,9.81566361581936e-05,9.81566361581936e-05,-149.69438559304442,-149.69438559304442,0.06046661926628915,0.06046661926628915 -1.5623529411764705,65.26828751672267,65.26828751672267,9.88857488431707e-05,9.88857488431707e-05,-150.39738590046036,-150.39738590046036,0.05992246748801053,0.05992246748801053 -1.5647058823529412,65.2749670738841,65.2749670738841,0.00010978485384363354,0.00010978485384363354,-151.09598861183025,-151.09598861183025,0.05928698948704918,0.05928698948704918 -1.5670588235294118,65.18922100499401,65.18922100499401,0.00011746509240780211,0.00011746509240780211,-151.78986255323252,-151.78986255323252,0.05856115434565558,0.05856115434565558 -1.5694117647058823,65.13489160307464,65.13489160307464,0.00012080508961981976,0.00012080508961981976,-152.47872599237644,-152.47872599237644,0.057759514742525456,0.057759514742525456 -1.571764705882353,65.11495089721524,65.11495089721524,0.00011738676786018385,0.00011738676786018385,-153.16231528223085,-153.16231528223085,0.05690657800416903,0.05690657800416903 -1.5741176470588236,65.07943519396053,65.07943519396053,0.00011129237255847179,0.00011129237255847179,-153.84071728984318,-153.84071728984318,0.05602828441994279,0.05602828441994279 -1.576470588235294,65.00341818200388,65.00341818200388,0.0001027796711973453,0.0001027796711973453,-154.5140532938108,-154.5140532938108,0.05514730146105377,0.05514730146105377 -1.5788235294117647,65.01897210715185,65.01897210715185,9.183138026833792e-05,9.183138026833792e-05,-155.18265982129407,-155.18265982129407,0.05427854736730853,0.05427854736730853 -1.5811764705882352,64.94622230491538,64.94622230491538,9.434431871519725e-05,9.434431871519725e-05,-155.84692736338542,-155.84692736338542,0.0534240714324999,0.0534240714324999 -1.5835294117647059,65.08051924296923,65.08051924296923,8.148668427261421e-05,8.148668427261421e-05,-156.50702780064634,-156.50702780064634,0.05257935542438777,0.05257935542438777 -1.5858823529411765,65.00420646883207,65.00420646883207,8.773549695505092e-05,8.773549695505092e-05,-157.1631716889765,-157.1631716889765,0.05173679278908778,0.05173679278908778 -1.5882352941176474,64.85928496053855,64.85928496053855,9.166736966008435e-05,9.166736966008435e-05,-157.81536531527846,-157.81536531527846,0.0508880068679287,0.0508880068679287 -1.5905882352941176,64.8029637750684,64.8029637750684,9.464575663076289e-05,9.464575663076289e-05,-158.4634814408661,-158.4634814408661,0.0500298912854499,0.0500298912854499 -1.592941176470588,64.7242688098192,64.7242688098192,9.909161586192824e-05,9.909161586192824e-05,-159.10740828810412,-159.10740828810412,0.049162629531836234,0.049162629531836234 -1.5952941176470588,64.5681461482299,64.5681461482299,0.00010241578163141343,0.00010241578163141343,-159.7470317125449,-159.7470317125449,0.04829260834478668,0.04829260834478668 -1.5976470588235294,64.50169266637157,64.50169266637157,9.76015783114613e-05,9.76015783114613e-05,-160.3823021969648,-160.3823021969648,0.04742571753822118,0.04742571753822118 -1.6,64.47033505522751,64.47033505522751,9.709571821452448e-05,9.709571821452448e-05,-161.01314230629777,-161.01314230629777,0.046570068295565044,0.046570068295565044 -1.6023529411764705,64.59390671359571,64.59390671359571,8.927720760577714e-05,8.927720760577714e-05,-161.63953457272385,-161.63953457272385,0.04573137286485463,0.04573137286485463 -1.6047058823529412,64.59267604980333,64.59267604980333,9.25903869248317e-05,9.25903869248317e-05,-162.26154143829302,-162.26154143829302,0.0449162843406633,0.0449162843406633 -1.6070588235294117,64.59241851488825,64.59241851488825,9.08054125105179e-05,9.08054125105179e-05,-162.87909528823744,-162.87909528823744,0.04413135427723455,0.04413135427723455 -1.6094117647058825,64.64635749129829,64.64635749129829,0.00010670761481118701,0.00010670761481118701,-163.49231708169845,-163.49231708169845,0.0433831657781312,0.0433831657781312 -1.611764705882353,64.64192633518854,64.64192633518854,0.0001075018700561018,0.0001075018700561018,-164.10129262987806,-164.10129262987806,0.04267846433855078,0.04267846433855078 -1.6141176470588237,64.59645644000919,64.59645644000919,9.870053139259974e-05,9.870053139259974e-05,-164.7061165205733,-164.7061165205733,0.042021758309848535,0.042021758309848535 -1.616470588235294,64.52858341758184,64.52858341758184,0.00011151569097910871,0.00011151569097910871,-165.30699482465113,-165.30699482465113,0.04141397718865426,0.04141397718865426 -1.6188235294117648,64.40807508221978,64.40807508221978,9.653429784014513e-05,9.653429784014513e-05,-165.90409328765801,-165.90409328765801,0.04085359526029788,0.04085359526029788 -1.6211764705882352,64.3068583421467,64.3068583421467,8.1839210653582e-05,8.1839210653582e-05,-166.49737028306353,-166.49737028306353,0.040337070076778225,0.040337070076778225 -1.6235294117647059,64.14248204196922,64.14248204196922,5.891312679774095e-05,5.891312679774095e-05,-167.08688352184686,-167.08688352184686,0.03986222388604725,0.03986222388604725 -1.6258823529411766,64.3831810105743,64.3831810105743,5.517675764516506e-05,5.517675764516506e-05,-167.67240248015457,-167.67240248015457,0.03943224838114241,0.03943224838114241 -1.6282352941176468,64.53244759257065,64.53244759257065,4.734115356776166e-05,4.734115356776166e-05,-168.25383521599062,-168.25383521599062,0.039054975386344545,0.039054975386344545 -1.630588235294118,64.34515748417715,64.34515748417715,6.250610746706369e-05,6.250610746706369e-05,-168.83112439849532,-168.83112439849532,0.03874277844385695,0.03874277844385695 -1.6329411764705881,64.15869647143303,64.15869647143303,6.15768270984651e-05,6.15768270984651e-05,-169.4044410795888,-169.4044410795888,0.0385127047049123,0.0385127047049123 -1.6352941176470588,64.03672735909163,64.03672735909163,8.91026219405301e-05,8.91026219405301e-05,-169.9740889310285,-169.9740889310285,0.03837678128012421,0.03837678128012421 -1.6376470588235295,63.92869712448234,63.92869712448234,8.817437343871134e-05,8.817437343871134e-05,-170.54050510072764,-170.54050510072764,0.03834274137625775,0.03834274137625775 -1.6400000000000001,63.755813356220585,63.755813356220585,9.075401686089679e-05,9.075401686089679e-05,-171.10419317550446,-171.10419317550446,0.038410754206575366,0.038410754206575366 -1.6423529411764706,63.57182060618247,63.57182060618247,9.443035628439863e-05,9.443035628439863e-05,-171.66539707695145,-171.66539707695145,0.038575891943673196,0.038575891943673196 -1.6447058823529415,63.553502211493274,63.553502211493274,9.140783257629109e-05,9.140783257629109e-05,-172.22428595670507,-172.22428595670507,0.0388347187664575,0.0388347187664575 -1.6470588235294117,63.65693025680635,63.65693025680635,8.310632864654531e-05,8.310632864654531e-05,-172.78072474846263,-172.78072474846263,0.03918863688328775,0.03918863688328775 -1.6494117647058824,63.71539073351241,63.71539073351241,7.292627707021147e-05,7.292627707021147e-05,-173.33479969159754,-173.33479969159754,0.03964798262706541,0.03964798262706541 -1.651764705882353,63.64427854115391,63.64427854115391,6.955909085940446e-05,6.955909085940446e-05,-173.8865106548069,-173.8865106548069,0.04023160235551898,0.04023160235551898 -1.6541176470588237,63.80785652922375,63.80785652922375,8.25553377873214e-05,8.25553377873214e-05,-174.43628873954427,-174.43628873954427,0.04096338490322376,0.04096338490322376 -1.6564705882352944,63.74587520276203,63.74587520276203,8.417303155856983e-05,8.417303155856983e-05,-174.9847429462445,-174.9847429462445,0.04186289114596611,0.04186289114596611 -1.6588235294117644,63.677807205241194,63.677807205241194,7.367163297096317e-05,7.367163297096317e-05,-175.5325264319368,-175.5325264319368,0.04294133106569444,0.04294133106569444 -1.6611764705882353,63.60405337203637,63.60405337203637,0.00010020823981865353,0.00010020823981865353,-176.08047527356678,-176.08047527356678,0.044198811019023405,0.044198811019023405 -1.663529411764706,63.522490725894166,63.522490725894166,8.69469124311425e-05,8.69469124311425e-05,-176.62890776165537,-176.62890776165537,0.04562956399389204,0.04562956399389204 -1.6658823529411766,63.418071025502314,63.418071025502314,7.22350336256663e-05,7.22350336256663e-05,-177.17796342680208,-177.17796342680208,0.047225677229133095,0.047225677229133095 -1.668235294117647,63.35332023737163,63.35332023737163,6.370145245837665e-05,6.370145245837665e-05,-177.72766843814367,-177.72766843814367,0.048986332766651375,0.048986332766651375 -1.670588235294118,63.16986858673434,63.16986858673434,4.7062708060105974e-05,4.7062708060105974e-05,-178.27792863965803,-178.27792863965803,0.050928522247710516,0.050928522247710516 -1.672941176470588,63.417994093828646,63.417994093828646,5.3867116691713954e-05,5.3867116691713954e-05,-178.8287937519937,-178.8287937519937,0.05308001843313284,0.05308001843313284 -1.6752941176470588,63.442913717441606,63.442913717441606,4.792026809993699e-05,4.792026809993699e-05,-179.38072838750253,-179.38072838750253,0.05548158450318854,0.05548158450318854 -1.6776470588235295,63.5089929748587,63.5089929748587,5.5735724815688806e-05,5.5735724815688806e-05,-179.93458372661567,-179.93458372661567,0.058169099945112296,0.058169099945112296 -1.68,63.24063514945735,63.24063514945735,5.696986956614249e-05,5.696986956614249e-05,-180.4913676598573,-180.4913676598573,0.061158056099064426,0.061158056099064426 -1.6823529411764706,63.20283181248106,63.20283181248106,6.966757930502474e-05,6.966757930502474e-05,-181.05208517110177,-181.05208517110177,0.0644413622977372,0.0644413622977372 -1.684705882352941,63.11082508272841,63.11082508272841,7.809035747697022e-05,7.809035747697022e-05,-181.61749841770487,-181.61749841770487,0.06797327857743439,0.06797327857743439 -1.6870588235294117,63.007938879408094,63.007938879408094,7.228323324889418e-05,7.228323324889418e-05,-182.18800457176258,-182.18800457176258,0.07168226497146528,0.07168226497146528 -1.6894117647058824,62.96779166456025,62.96779166456025,7.966803516474566e-05,7.966803516474566e-05,-182.76347827302726,-182.76347827302726,0.07547506388996801,0.07547506388996801 -1.6917647058823528,62.74926605604376,62.74926605604376,7.434732262186616e-05,7.434732262186616e-05,-183.34343146009226,-183.34343146009226,0.07924971706555649,0.07924971706555649 -1.6941176470588235,62.75457427714349,62.75457427714349,6.316570246317484e-05,6.316570246317484e-05,-183.9271061604558,-183.9271061604558,0.08290795023718246,0.08290795023718246 -1.6964705882352942,62.762916073158046,62.762916073158046,5.820289856734623e-05,5.820289856734623e-05,-184.5136027995196,-184.5136027995196,0.0863671761979753,0.0863671761979753 -1.6988235294117644,62.87870352751839,62.87870352751839,5.608259878156704e-05,5.608259878156704e-05,-185.1021173078151,-185.1021173078151,0.08956092700370963,0.08956092700370963 -1.7011764705882353,62.96218148183683,62.96218148183683,5.915351634502578e-05,5.915351634502578e-05,-185.69178862023048,-185.69178862023048,0.09244378322893967,0.09244378322893967 -1.7035294117647062,62.92988130855345,62.92988130855345,6.709780787173531e-05,6.709780787173531e-05,-186.28206614973337,-186.28206614973337,0.09498331351452248,0.09498331351452248 -1.7058823529411766,62.90135478522525,62.90135478522525,6.525183516259231e-05,6.525183516259231e-05,-186.87244037578674,-186.87244037578674,0.09716089715286534,0.09716089715286534 -1.7082352941176469,62.84648332328447,62.84648332328447,6.92187803275326e-05,6.92187803275326e-05,-187.46260958378457,-187.46260958378457,0.09895936304819618,0.09895936304819618 -1.7105882352941175,62.786034523900106,62.786034523900106,7.143522464229729e-05,7.143522464229729e-05,-188.0522124620591,-188.0522124620591,0.10036144241776485,0.10036144241776485 -1.7129411764705882,62.61006887549135,62.61006887549135,7.630706793745824e-05,7.630706793745824e-05,-188.64105133185626,-188.64105133185626,0.10134885031900923,0.10134885031900923 -1.7152941176470589,62.49952453663307,62.49952453663307,7.570727105672066e-05,7.570727105672066e-05,-189.2288596567478,-189.2288596567478,0.10190059103410384,0.10190059103410384 -1.7176470588235295,62.35356506489409,62.35356506489409,7.262869016043708e-05,7.262869016043708e-05,-189.81522315582717,-189.81522315582717,0.1020020987332087,0.1020020987332087 -1.72,62.25122557943365,62.25122557943365,6.988424100643051e-05,6.988424100643051e-05,-190.39962317900188,-190.39962317900188,0.10164598430730022,0.10164598430730022 -1.7223529411764709,62.022136126999776,62.022136126999776,8.171109065956287e-05,8.171109065956287e-05,-190.9815782875685,-190.9815782875685,0.1008411762112976,0.1008411762112976 -1.7247058823529409,62.246583493951334,62.246583493951334,7.206502039686881e-05,7.206502039686881e-05,-191.5603945061006,-191.5603945061006,0.09962209011634966,0.09962209011634966 -1.7270588235294118,62.25572131968304,62.25572131968304,6.418188405383094e-05,6.418188405383094e-05,-192.13551619345975,-192.13551619345975,0.0980367875808926,0.0980367875808926 -1.7294117647058824,62.38131592110371,62.38131592110371,7.844660997440538e-05,7.844660997440538e-05,-192.70645155849382,-192.70645155849382,0.09616305932074895,0.09616305932074895 -1.731764705882353,62.42230573633703,62.42230573633703,7.285617282090045e-05,7.285617282090045e-05,-193.27282529428234,-193.27282529428234,0.09408532794398128,0.09408532794398128 -1.7341176470588235,62.35020607030296,62.35020607030296,7.939589026350356e-05,7.939589026350356e-05,-193.8346635093991,-193.8346635093991,0.09189247473264386,0.09189247473264386 -1.7364705882352938,62.34872045376894,62.34872045376894,8.397022459556751e-05,8.397022459556751e-05,-194.3920973441069,-194.3920973441069,0.08966547621801987,0.08966547621801987 -1.7388235294117647,62.22530087841762,62.22530087841762,9.956144945851094e-05,9.956144945851094e-05,-194.94566730058622,-194.94566730058622,0.08746405733237275,0.08746405733237275 -1.7411764705882353,62.194709634983354,62.194709634983354,0.00010410019392915741,0.00010410019392915741,-195.49596154521709,-195.49596154521709,0.08531843983853665,0.08531843983853665 -1.743529411764706,62.11124614867081,62.11124614867081,9.61076673474759e-05,9.61076673474759e-05,-196.04376732193802,-196.04376732193802,0.08322958423085278,0.08322958423085278 -1.7458823529411764,62.082623777079,62.082623777079,8.627473453139698e-05,8.627473453139698e-05,-196.5895271153512,-196.5895271153512,0.08117255806791666,0.08117255806791666 -1.748235294117647,61.89469242630531,61.89469242630531,7.781527313475754e-05,7.781527313475754e-05,-197.13372868247663,-197.13372868247663,0.07910730375869952,0.07910730375869952 -1.7505882352941176,61.77521573433318,61.77521573433318,5.761487354339903e-05,5.761487354339903e-05,-197.6762779909198,-197.6762779909198,0.07699140945701023,0.07699140945701023 -1.7529411764705882,62.04788939256105,62.04788939256105,4.776013491738659e-05,4.776013491738659e-05,-198.21690610620976,-198.21690610620976,0.07479018915791438,0.07479018915791438 -1.7552941176470591,62.045023428534634,62.045023428534634,5.505463945365656e-05,5.505463945365656e-05,-198.75510891327474,-198.75510891327474,0.07248784235328953,0.07248784235328953 -1.7576470588235293,62.4456767425705,62.4456767425705,5.474275458969795e-05,5.474275458969795e-05,-199.290108478179,-199.290108478179,0.0700941869675724,0.0700941869675724 -1.76,62.10536999018031,62.10536999018031,6.152007428288387e-05,6.152007428288387e-05,-199.82121125120304,-199.82121125120304,0.06764181194800296,0.06764181194800296 -1.7623529411764705,62.18474702137729,62.18474702137729,5.527853253587638e-05,5.527853253587638e-05,-200.34789584611033,-200.34789584611033,0.06517287398292353,0.06517287398292353 -1.7647058823529411,62.0062870916173,62.0062870916173,7.15502261618621e-05,7.15502261618621e-05,-200.86980866160624,-200.86980866160624,0.06274683409345758,0.06274683409345758 -1.7670588235294116,62.00606870480635,62.00606870480635,0.00011822288177826105,0.00011822288177826105,-201.3869878815509,-201.3869878815509,0.06041047686295368,0.06041047686295368 -1.7694117647058827,61.78562361181968,61.78562361181968,0.00011552174403311963,0.00011552174403311963,-201.89977852986848,-201.89977852986848,0.058205347496130384,0.058205347496130384 -1.7717647058823531,61.46924624458551,61.46924624458551,9.068201504749927e-05,9.068201504749927e-05,-202.4086480617346,-202.4086480617346,0.05614355681695047,0.05614355681695047 -1.7741176470588236,61.37263276341874,61.37263276341874,8.868388175269682e-05,8.868388175269682e-05,-202.91422452236114,-202.91422452236114,0.05422408153811713,0.05422408153811713 -1.776470588235294,61.25296977142058,61.25296977142058,9.758289661047277e-05,9.758289661047277e-05,-203.4169840605171,-203.4169840605171,0.05242864115121436,0.05242864115121436 -1.7788235294117647,61.35325411673058,61.35325411673058,8.94490515964115e-05,8.94490515964115e-05,-203.91719831381477,-203.91719831381477,0.05072929096308812,0.05072929096308812 -1.7811764705882354,61.04148151080252,61.04148151080252,6.848220949052874e-05,6.848220949052874e-05,-204.41462484806993,-204.41462484806993,0.04910480425941597,0.04910480425941597 -1.7835294117647063,61.45386621798376,61.45386621798376,7.119415916562137e-05,7.119415916562137e-05,-204.9089169257887,-204.9089169257887,0.04754098113857684,0.04754098113857684 -1.7858823529411765,61.971680051964654,61.971680051964654,6.060675772410549e-05,6.060675772410549e-05,-205.39956142266556,-205.39956142266556,0.04604091583562506,0.04604091583562506 -1.7882352941176471,61.94463199823833,61.94463199823833,9.55905128948584e-05,9.55905128948584e-05,-205.8860416018857,-205.8860416018857,0.04462152645785576,0.04462152645785576 -1.7905882352941174,61.75837351108718,61.75837351108718,0.00010166877318288222,0.00010166877318288222,-206.36810834062112,-206.36810834062112,0.043309898025288666,0.043309898025288666 -1.7929411764705883,61.94029083871515,61.94029083871515,0.00015386209994014546,0.00015386209994014546,-206.845819007954,-206.845819007954,0.042139582001896006,0.042139582001896006 -1.795294117647059,61.7564363321653,61.7564363321653,0.0001520789551853143,0.0001520789551853143,-207.31973675065225,-207.31973675065225,0.04113086843716738,0.04113086843716738 -1.7976470588235294,61.64609149169567,61.64609149169567,0.00016355816741906454,0.00016355816741906454,-207.79041982641525,-207.79041982641525,0.04029633404108027,0.04029633404108027 -1.8,60.942514616392174,60.942514616392174,0.00015123475418692565,0.00015123475418692565,-208.2589384036061,-208.2589384036061,0.039631404735661346,0.039631404735661346 diff --git a/sparameters/rotate_f258530e_8ec78c6d.yml b/sparameters/rotate_f258530e_8ec78c6d.yml deleted file mode 100644 index 7e093a6f..00000000 --- a/sparameters/rotate_f258530e_8ec78c6d.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 30 -fiber_xoffset: 33 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 295.37618684768677 -compute_time_minutes: 4.9229364474614465 diff --git a/sparameters/rotate_f258530e_8f66116d.csv b/sparameters/rotate_f258530e_8f66116d.csv deleted file mode 100644 index 525ab378..00000000 --- a/sparameters/rotate_f258530e_8f66116d.csv +++ /dev/null @@ -1,51 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.5,-3.0054434361009585,-3.0054434361009585,0.00012936820682727795,0.00012936820682727795,0.8451785677884164,0.8451785677884164,0.0722031549121204,0.0722031549121204 -1.5020408163265306,-3.0690852580463894,-3.0690852580463894,0.00012469438995211588,0.00012469438995211588,0.3981542107598769,0.3981542107598769,0.07697770376383284,0.07697770376383284 -1.5040816326530613,-3.0969954982269434,-3.0969954982269434,0.00011563660004793269,0.00011563660004793269,-0.046089430784492805,-0.046089430784492805,0.08132655653821749,0.08132655653821749 -1.506122448979592,-3.0546458205041853,-3.0546458205041853,0.0001140364069387807,0.0001140364069387807,-0.4846466379491918,-0.4846466379491918,0.08524534744482934,0.08524534744482934 -1.5081632653061225,-3.0070214239416257,-3.0070214239416257,0.00011784698866689364,0.00011784698866689364,-0.9153483046727725,-0.9153483046727725,0.08891877447132006,0.08891877447132006 -1.510204081632653,-2.9824265753269423,-2.9824265753269423,0.0001216829235728126,0.0001216829235728126,-1.3379972445622583,-1.3379972445622583,0.09266890587741985,0.09266890587741985 -1.5122448979591836,-3.105074636649559,-3.105074636649559,0.00012623318114372023,0.00012623318114372023,-1.7548265944715404,-1.7548265944715404,0.09684788568532457,0.09684788568532457 -1.5142857142857142,-3.221739380130125,-3.221739380130125,0.00012976832387617373,0.00012976832387617373,-2.1699170123542766,-2.1699170123542766,0.10166723679981964,0.10166723679981964 -1.5163265306122449,-3.14083101701431,-3.14083101701431,0.00011077594396618133,0.00011077594396618133,-2.587429430360785,-2.587429430360785,0.1070796323838248,0.1070796323838248 -1.5183673469387755,-3.2520264834560315,-3.2520264834560315,0.00011564934239807337,0.00011564934239807337,-3.0098619601341867,-3.0098619601341867,0.11277235832645138,0.11277235832645138 -1.5204081632653061,-3.284459677107637,-3.284459677107637,0.00010554994783552361,0.00010554994783552361,-3.437182367454194,-3.437182367454194,0.1182770477283086,0.1182770477283086 -1.5224489795918368,-3.1789847322599827,-3.1789847322599827,0.00011590209658683409,0.00011590209658683409,-3.866909802600725,-3.866909802600725,0.12314915226497411,0.12314915226497411 -1.5244897959183674,-3.223287884036211,-3.223287884036211,0.00011489275691602672,0.00011489275691602672,-4.295404378094106,-4.295404378094106,0.12713220566913308,0.12713220566913308 -1.5265306122448983,-3.3423349008199152,-3.3423349008199152,0.00011927955673263712,0.00011927955673263712,-4.718829307105912,-4.718829307105912,0.13026120901297328,0.13026120901297328 -1.5285714285714287,-3.419715774234742,-3.419715774234742,0.0001200239767044909,0.0001200239767044909,-5.134367679343468,-5.134367679343468,0.13285597348669695,0.13285597348669695 -1.530612244897959,-3.4492944382187427,-3.4492944382187427,0.0001184623113177866,0.0001184623113177866,-5.541343549911432,-5.541343549911432,0.13544108317940529,0.13544108317940529 -1.5326530612244897,-3.4520981126205483,-3.4520981126205483,0.00011555611356617239,0.00011555611356617239,-5.9414374385610795,-5.9414374385610795,0.1385465591684304,0.1385465591684304 -1.5346938775510204,-3.4660146984769264,-3.4660146984769264,0.00011421029081268362,0.00011421029081268362,-6.338303785115955,-6.338303785115955,0.14251363263934447,0.14251363263934447 -1.536734693877551,-3.480681036687511,-3.480681036687511,0.00011230990235966076,0.00011230990235966076,-6.735960577456538,-6.735960577456538,0.147357191893938,0.147357191893938 -1.5387755102040817,-3.491901952343228,-3.491901952343228,0.0001180110451498107,0.0001180110451498107,-7.137288639076889,-7.137288639076889,0.1527713856310425,0.1527713856310425 -1.5408163265306123,-3.5192059840299343,-3.5192059840299343,0.00011778233767321164,0.00011778233767321164,-7.543040402745857,-7.543040402745857,0.1582699922967055,0.1582699922967055 -1.542857142857143,-3.578548331135099,-3.578548331135099,0.0001172228012911419,0.0001172228012911419,-7.952066269511019,-7.952066269511019,0.16336816933035211,0.16336816933035211 -1.5448979591836736,-3.623521154813763,-3.623521154813763,0.00012011487222419555,0.00012011487222419555,-8.361986429550072,-8.361986429550072,0.16773193538173575,0.16773193538173575 -1.546938775510204,-3.6650578961376796,-3.6650578961376796,0.00011582183918144055,0.00011582183918144055,-8.770207753898031,-8.770207753898031,0.17126330481111476,0.17126330481111476 -1.5489795918367348,-3.6503822705830475,-3.6503822705830475,0.000108609916294867,0.000108609916294867,-9.174417691949674,-9.174417691949674,0.17410717724177793,0.17410717724177793 -1.5510204081632653,-3.585293797378768,-3.585293797378768,0.00010397534604196916,0.00010397534604196916,-9.573359531551986,-9.573359531551986,0.17657771581958648,0.17657771581958648 -1.5530612244897959,-3.651477216241365,-3.651477216241365,0.00011016262530012134,0.00011016262530012134,-9.9669291922601,-9.9669291922601,0.17906677541153676,0.17906677541153676 -1.5551020408163265,-3.6377676928256033,-3.6377676928256033,0.00011130990976027174,0.00011130990976027174,-10.356122735757971,-10.356122735757971,0.18192052833785027,0.18192052833785027 -1.5571428571428572,-3.7031599160563067,-3.7031599160563067,0.00011359187603180147,0.00011359187603180147,-10.742687385298328,-10.742687385298328,0.18535328843369062,0.18535328843369062 -1.5591836734693876,-3.7655226586893953,-3.7655226586893953,0.00011214415193492157,0.00011214415193492157,-11.128473199278112,-11.128473199278112,0.18940331191615814,0.18940331191615814 -1.5612244897959184,-3.8319039724143447,-3.8319039724143447,0.00010776914278301197,0.00010776914278301197,-11.514988701771383,-11.514988701771383,0.193944358082444,0.193944358082444 -1.563265306122449,-3.8838917391495418,-3.8838917391495418,0.00010757939786398988,0.00010757939786398988,-11.90300487653704,-11.90300487653704,0.19874494322767788,0.19874494322767788 -1.5653061224489797,-3.86187717159508,-3.86187717159508,0.0001035245950384955,0.0001035245950384955,-12.292507112876763,-12.292507112876763,0.20353861123865033,0.20353861123865033 -1.5673469387755101,-3.893033128434565,-3.893033128434565,9.866944236834645e-05,9.866944236834645e-05,-12.682902431549726,-12.682902431549726,0.2080962607121258,0.2080962607121258 -1.569387755102041,-3.9356635686311305,-3.9356635686311305,9.99646762114785e-05,9.99646762114785e-05,-13.073260013236109,-13.073260013236109,0.2122716803576168,0.2122716803576168 -1.5714285714285714,-3.9496673517034657,-3.9496673517034657,0.00010214038361523083,0.00010214038361523083,-13.462511647541724,-13.462511647541724,0.21602957477239826,0.21602957477239826 -1.573469387755102,-4.028602092978293,-4.028602092978293,0.00010171161454548849,0.00010171161454548849,-13.849776717288746,-13.849776717288746,0.2194367675001524,0.2194367675001524 -1.5755102040816327,-4.03536163156272,-4.03536163156272,9.734811612829783e-05,9.734811612829783e-05,-14.234584149785764,-14.234584149785764,0.22264229931989576,0.22264229931989576 -1.577551020408163,-4.1685096672557975,-4.1685096672557975,0.00010296631557738882,0.00010296631557738882,-14.616762948871493,-14.616762948871493,0.2258328624208505,0.2258328624208505 -1.579591836734694,-4.183495292196813,-4.183495292196813,9.716360131847498e-05,9.716360131847498e-05,-14.99664321910452,-14.99664321910452,0.2291858792527749,0.2291858792527749 -1.5816326530612246,-4.182004165780972,-4.182004165780972,9.889831513938831e-05,9.889831513938831e-05,-15.374858503036487,-15.374858503036487,0.23282499147496555,0.23282499147496555 -1.5836734693877552,-4.200467811206822,-4.200467811206822,9.800882686758837e-05,9.800882686758837e-05,-15.752076046725008,-15.752076046725008,0.23680334404853579,0.23680334404853579 -1.5857142857142859,-4.213763033649425,-4.213763033649425,9.613412371247783e-05,9.613412371247783e-05,-16.128992713345443,-16.128992713345443,0.24109171671238142,0.24109171671238142 -1.5877551020408165,-4.239833260930259,-4.239833260930259,0.0001014863598695447,0.0001014863598695447,-16.50600716792692,-16.50600716792692,0.2456084331611418,0.2456084331611418 -1.5897959183673471,-4.28250647616437,-4.28250647616437,0.00010397693480605153,0.00010397693480605153,-16.883349182586546,-16.883349182586546,0.25024184367031205,0.25024184367031205 -1.5918367346938775,-4.35268579713029,-4.35268579713029,0.00010424061692266361,0.00010424061692266361,-17.260989943492884,-17.260989943492884,0.2548789746281406,0.2548789746281406 -1.593877551020408,-4.372462703860235,-4.372462703860235,9.723339891805935e-05,9.723339891805935e-05,-17.638744594396297,-17.638744594396297,0.2594305138509045,0.2594305138509045 -1.5959183673469388,-4.390505075517005,-4.390505075517005,9.697703796768633e-05,9.697703796768633e-05,-18.01638485279426,-18.01638485279426,0.2638332450068677,0.2638332450068677 -1.5979591836734695,-4.392106509462185,-4.392106509462185,0.00010014970253496647,0.00010014970253496647,-18.393570402579645,-18.393570402579645,0.2680586896088363,0.2680586896088363 -1.6,-4.425021373477585,-4.425021373477585,9.915648288421681e-05,9.915648288421681e-05,-18.770144975448158,-18.770144975448158,0.2721067550441644,0.2721067550441644 diff --git a/sparameters/rotate_f258530e_8f66116d.yml b/sparameters/rotate_f258530e_8f66116d.yml deleted file mode 100644 index 527c4ace..00000000 --- a/sparameters/rotate_f258530e_8f66116d.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: 15 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 257.26808071136475 -compute_time_minutes: 4.287801345189412 diff --git a/sparameters/rotate_f258530e_9404750c.csv b/sparameters/rotate_f258530e_9404750c.csv deleted file mode 100644 index 501e2a7d..00000000 --- a/sparameters/rotate_f258530e_9404750c.csv +++ /dev/null @@ -1,51 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.5,-2.9891660666735986,-2.9891660666735986,0.00012212477235945483,0.00012212477235945483,1.7574296014457604,1.7574296014457604,0.03204120126522414,0.03204120126522414 -1.5020408163265306,-3.0054500527214887,-3.0054500527214887,0.00014528291349254365,0.00014528291349254365,1.0630154552361495,1.0630154552361495,0.034250454636442974,0.034250454636442974 -1.5040816326530613,-3.004820853555321,-3.004820853555321,0.00014277615979517205,0.00014277615979517205,0.36887081144337336,0.36887081144337336,0.036509884415954215,0.036509884415954215 -1.506122448979592,-3.0410570830218107,-3.0410570830218107,0.0001571437986101814,0.0001571437986101814,-0.3252329494673781,-0.3252329494673781,0.03880657683883341,0.03880657683883341 -1.5081632653061225,-3.0725691712604637,-3.0725691712604637,0.0001438029552626068,0.0001438029552626068,-1.0191854040903126,-1.0191854040903126,0.04111730052745748,0.04111730052745748 -1.510204081632653,-3.1217034573280724,-3.1217034573280724,0.00013695934207420707,0.00013695934207420707,-1.7129772204894549,-1.7129772204894549,0.04341072843450165,0.04341072843450165 -1.5122448979591836,-3.151547962486047,-3.151547962486047,0.00012814474939288137,0.00012814474939288137,-2.4062914057941374,-2.4062914057941374,0.04565067970880028,0.04565067970880028 -1.5142857142857142,-3.1159709531184108,-3.1159709531184108,0.00011669768269021732,0.00011669768269021732,-3.098630517751336,-3.098630517751336,0.047797907100153914,0.047797907100153914 -1.5163265306122449,-3.1360991447638,-3.1360991447638,9.802663426613552e-05,9.802663426613552e-05,-3.7893729782744177,-3.7893729782744177,0.049820968092465806,0.049820968092465806 -1.5183673469387755,-3.1318111910671442,-3.1318111910671442,0.00010774272463967114,0.00010774272463967114,-4.4778875902027835,-4.4778875902027835,0.05169585212563313,0.05169585212563313 -1.5204081632653061,-3.1584421218053462,-3.1584421218053462,0.00010539037554144106,0.00010539037554144106,-5.163572367119391,-5.163572367119391,0.05341178507932726,0.05341178507932726 -1.5224489795918368,-3.2159643964616706,-3.2159643964616706,0.00011013253213638789,0.00011013253213638789,-5.845898001304185,-5.845898001304185,0.054967628961044346,0.054967628961044346 -1.5244897959183674,-3.302184354632041,-3.302184354632041,0.00011136302721265922,0.00011136302721265922,-6.524579068005851,-6.524579068005851,0.05637161875396532,0.05637161875396532 -1.5265306122448983,-3.373273716778708,-3.373273716778708,0.00012014095962029149,0.00012014095962029149,-7.199533719090937,-7.199533719090937,0.057635953766446285,0.057635953766446285 -1.5285714285714287,-3.49265654954383,-3.49265654954383,0.00012759940729248286,0.00012759940729248286,-7.870662132748052,-7.870662132748052,0.058773652655472,0.058773652655472 -1.530612244897959,-3.444886777663959,-3.444886777663959,0.00012637555388741084,0.00012637555388741084,-8.538198946955054,-8.538198946955054,0.05979184202774826,0.05979184202774826 -1.5326530612244897,-3.544234405031018,-3.544234405031018,0.00012585228603196035,0.00012585228603196035,-9.202236117805906,-9.202236117805906,0.060691204374974106,0.060691204374974106 -1.5346938775510204,-3.579384941203463,-3.579384941203463,0.00012481308588371327,0.00012481308588371327,-9.862967698081583,-9.862967698081583,0.061465145163764424,0.061465145163764424 -1.536734693877551,-3.547892935125914,-3.547892935125914,0.00012114711805922942,0.00012114711805922942,-10.520325012701921,-10.520325012701921,0.0621025946608897,0.0621025946608897 -1.5387755102040817,-3.435602835115236,-3.435602835115236,0.00011890123134391107,0.00011890123134391107,-11.174318654375801,-11.174318654375801,0.06259291833994936,0.06259291833994936 -1.5408163265306123,-3.4321411019073818,-3.4321411019073818,0.00012179138775225091,0.00012179138775225091,-11.82463202316124,-11.82463202316124,0.06292733166116532,0.06292733166116532 -1.542857142857143,-3.456860878228584,-3.456860878228584,0.00011811320822014825,0.00011811320822014825,-12.471018119562158,-12.471018119562158,0.0631101106442253,0.0631101106442253 -1.5448979591836736,-3.434258503042188,-3.434258503042188,0.00011975683900890097,0.00011975683900890097,-13.11312650729262,-13.11312650729262,0.06315088260267049,0.06315088260267049 -1.546938775510204,-3.482354503428896,-3.482354503428896,0.0001193186643586415,0.0001193186643586415,-13.75084975053181,-13.75084975053181,0.06307239996804839,0.06307239996804839 -1.5489795918367348,-3.596970645432108,-3.596970645432108,0.00011361656853222239,0.00011361656853222239,-14.383983344318615,-14.383983344318615,0.06290141827854508,0.06290141827854508 -1.5510204081632653,-3.679445877712728,-3.679445877712728,0.00010514798320379566,0.00010514798320379566,-15.012671737122838,-15.012671737122838,0.06266679938623036,0.06266679938623036 -1.5530612244897959,-3.764493926282967,-3.764493926282967,0.00010877648375334965,0.00010877648375334965,-15.637151072025569,-15.637151072025569,0.06239198853563511,0.06239198853563511 -1.5551020408163265,-3.7995027253457345,-3.7995027253457345,9.978372284491954e-05,9.978372284491954e-05,-16.257784728278963,-16.257784728278963,0.06209077637169402,0.06209077637169402 -1.5571428571428572,-3.887465511596793,-3.887465511596793,0.00010052989066300881,0.00010052989066300881,-16.874987309390214,-16.874987309390214,0.061765306148168816,0.061765306148168816 -1.5591836734693876,-3.9429880501291135,-3.9429880501291135,0.00010442653516484154,0.00010442653516484154,-17.48903786441136,-17.48903786441136,0.06140625281442806,0.06140625281442806 -1.5612244897959184,-3.881527189039508,-3.881527189039508,0.00010653511796849541,0.00010653511796849541,-18.10011747254621,-18.10011747254621,0.06099840722618689,0.06099840722618689 -1.563265306122449,-3.8774560711080124,-3.8774560711080124,0.00010076815891255837,0.00010076815891255837,-18.708219484748486,-18.708219484748486,0.06052498447759876,0.06052498447759876 -1.5653061224489797,-3.8592460673511053,-3.8592460673511053,0.00011370363938593574,0.00011370363938593574,-19.313124219801164,-19.313124219801164,0.05997390640056343,0.05997390640056343 -1.5673469387755101,-3.898121352734424,-3.898121352734424,0.00011884087198693086,0.00011884087198693086,-19.91450927379902,-19.91450927379902,0.05934247357018478,0.05934247357018478 -1.569387755102041,-3.909656416582588,-3.909656416582588,0.0001238622885040142,0.0001238622885040142,-20.512105557028182,-20.512105557028182,0.05864125735534184,0.05864125735534184 -1.5714285714285714,-3.969749455717807,-3.969749455717807,0.00012692844495467104,0.00012692844495467104,-21.10557699296629,-21.10557699296629,0.05788758635325807,0.05788758635325807 -1.573469387755102,-4.030875534765325,-4.030875534765325,0.00012138571235969576,0.00012138571235969576,-21.694840267754266,-21.694840267754266,0.057107724393327036,0.057107724393327036 -1.5755102040816327,-3.963003565936521,-3.963003565936521,0.00010262052599189875,0.00010262052599189875,-22.280047183154743,-22.280047183154743,0.05632604359833263,0.05632604359833263 -1.577551020408163,-4.02233572217384,-4.02233572217384,0.00010667248517793813,0.00010667248517793813,-22.861369222193844,-22.861369222193844,0.055561157726357155,0.055561157726357155 -1.579591836734694,-4.073542746183412,-4.073542746183412,8.739160640729331e-05,8.739160640729331e-05,-23.439222606111155,-23.439222606111155,0.0548227841923157,0.0548227841923157 -1.5816326530612246,-4.016930370256022,-4.016930370256022,8.965158550945518e-05,8.965158550945518e-05,-24.01403477388939,-24.01403477388939,0.054107178263839144,0.054107178263839144 -1.5836734693877552,-4.08317809583121,-4.08317809583121,8.090873631461439e-05,8.090873631461439e-05,-24.586035811354286,-24.586035811354286,0.05340495318901357,0.05340495318901357 -1.5857142857142859,-4.078327894067593,-4.078327894067593,8.735172825626349e-05,8.735172825626349e-05,-25.155381237111666,-25.155381237111666,0.05269928303682227,0.05269928303682227 -1.5877551020408165,-4.1306465534504415,-4.1306465534504415,9.501407455270218e-05,9.501407455270218e-05,-25.72193375202546,-25.72193375202546,0.0519765852282995,0.0519765852282995 -1.5897959183673471,-4.257112578801872,-4.257112578801872,9.562542871953178e-05,9.562542871953178e-05,-26.285535170886742,-26.285535170886742,0.05123022745242103,0.05123022745242103 -1.5918367346938775,-4.3153140107139984,-4.3153140107139984,0.00010838747045613956,0.00010838747045613956,-26.845891716928197,-26.845891716928197,0.050459222442695684,0.050459222442695684 -1.593877551020408,-4.396424891821262,-4.396424891821262,0.00010804688643401289,0.00010804688643401289,-27.402754203901182,-27.402754203901182,0.049674360458462415,0.049674360458462415 -1.5959183673469388,-4.533951590713188,-4.533951590713188,9.950194586681781e-05,9.950194586681781e-05,-27.95602310554449,-27.95602310554449,0.04888877801955995,0.04888877801955995 -1.5979591836734695,-4.653732013846644,-4.653732013846644,0.00010069488262334245,0.00010069488262334245,-28.50561387931061,-28.50561387931061,0.04811837320855202,0.04811837320855202 -1.6,-4.6271526623820005,-4.6271526623820005,9.515641251246954e-05,9.515641251246954e-05,-29.051803965368173,-29.051803965368173,0.04737344281414456,0.04737344281414456 diff --git a/sparameters/rotate_f258530e_9404750c.yml b/sparameters/rotate_f258530e_9404750c.yml deleted file mode 100644 index 1fce4ba1..00000000 --- a/sparameters/rotate_f258530e_9404750c.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: 33 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 244.44445848464966 -compute_time_minutes: 4.074074308077495 diff --git a/sparameters/rotate_f258530e_a2a7ee32.csv b/sparameters/rotate_f258530e_a2a7ee32.csv deleted file mode 100644 index 9e3dbb9e..00000000 --- a/sparameters/rotate_f258530e_a2a7ee32.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,3.122918808632881,3.122918808632881,0.647073771618294,0.647073771618294,2.7468632341890395,2.7468632341890395,0.0006731721270497021,0.0006731721270497021 -1.2023529411764706,3.682583163492455,3.682583163492455,0.7772066601184948,0.7772066601184948,2.1291005307461415,2.1291005307461415,0.0005396364395787175,0.0005396364395787175 -1.204705882352941,4.301683402937457,4.301683402937457,1.4704997068086,1.4704997068086,1.4881442091679138,1.4881442091679138,0.0002723189563275677,0.0002723189563275677 -1.2070588235294117,7.410575338740736,7.410575338740736,6.771797485474083,6.771797485474083,-1.616487963089397,-1.616487963089397,5.8064640905318134e-05,5.8064640905318134e-05 -1.2094117647058824,8.39409246773384,8.39409246773384,1.1852471678193484,1.1852471678193484,-2.609791914163138,-2.609791914163138,0.00033688668772669417,0.00033688668772669417 -1.2117647058823529,8.939632218346283,8.939632218346283,0.7938428894756467,0.7938428894756467,-3.198295387375009,-3.198295387375009,0.0005120126758906672,0.0005120126758906672 -1.2141176470588235,9.432843391121056,9.432843391121056,0.747104129812602,0.747104129812602,-3.7517587003120725,-3.7517587003120725,0.0005399659398612802,0.0005399659398612802 -1.216470588235294,9.908771974612378,9.908771974612378,0.9185572455236126,0.9185572455236126,-4.274676114659286,-4.274676114659286,0.0004244106373950599,0.0004244106373950599 -1.2188235294117646,10.319793446193316,10.319793446193316,1.8058165513548237,1.8058165513548237,-4.704380098065771,-4.704380098065771,0.00020771370887258479,0.00020771370887258479 -1.2211764705882353,8.610861236396447,8.610861236396447,5.283663212509839,5.283663212509839,-2.9959736538845267,-2.9959736538845267,6.995769568170363e-05,6.995769568170363e-05 -1.2235294117647058,8.590453705932367,8.590453705932367,1.3192334002637707,1.3192334002637707,-2.9883963804555433,-2.9883963804555433,0.00028302916746426356,0.00028302916746426356 -1.2258823529411764,9.006618734034559,9.006618734034559,0.9002239190315013,0.9002239190315013,-3.4425788852463133,-3.4425788852463133,0.0004195351130687436,0.0004195351130687436 -1.228235294117647,9.427450923929868,9.427450923929868,0.8506798061900955,0.8506798061900955,-3.915038567196916,-3.915038567196916,0.0004401558440732615,0.0004401558440732615 -1.2305882352941175,9.821090095305813,9.821090095305813,1.0421168977389292,1.0421168977389292,-4.350777017675389,-4.350777017675389,0.0003487845982379013,0.0003487845982379013 -1.2329411764705882,10.05370986080231,10.05370986080231,1.9181186084734232,1.9181186084734232,-4.602094685755526,-4.602094685755526,0.0001833160804478025,0.0001833160804478025 -1.2352941176470589,8.977398004144401,8.977398004144401,3.4880052266627213,3.4880052266627213,-3.529733302343591,-3.529733302343591,9.917942226756981e-05,9.917942226756981e-05 -1.2376470588235293,8.7323815285409,8.7323815285409,1.4078104915589482,1.4078104915589482,-3.29599119782994,-3.29599119782994,0.00024689120770437606,0.00024689120770437606 -1.24,9.050534121735936,9.050534121735936,0.9835781312567462,0.9835781312567462,-3.6454947057474416,-3.6454947057474416,0.0003562451880126574,0.0003562451880126574 -1.2423529411764704,9.417718912112807,9.417718912112807,0.9272719378721577,0.9272719378721577,-4.056549020335336,-4.056549020335336,0.0003754136001604937,0.0003754136001604937 -1.244705882352941,9.759567287757093,9.759567287757093,1.1189396026325167,1.1189396026325167,-4.437383231157645,-4.437383231157645,0.0003036254843575939,0.0003036254843575939 -1.2470588235294118,9.923472355954512,9.923472355954512,1.9140479440604041,1.9140479440604041,-4.621570859217453,-4.621570859217453,0.00017215276125165583,0.00017215276125165583 -1.2494117647058822,9.076186111419856,9.076186111419856,3.0917179884029937,3.0917179884029937,-3.7799109198884797,-3.7799109198884797,0.00010460552481304687,0.00010460552481304687 -1.251764705882353,8.766496198480818,8.766496198480818,1.4681649212820154,1.4681649212820154,-3.4782019723614943,-3.4782019723614943,0.00022012708720517556,0.00022012708720517556 -1.2541176470588236,9.036962208284795,9.036962208284795,1.0192518637753607,1.0192518637753607,-3.771893025678126,-3.771893025678126,0.00031905908984470986,0.00031905908984470986 -1.256470588235294,9.384642017127558,9.384642017127558,0.9398338514390825,0.9398338514390825,-4.155614708816522,-4.155614708816522,0.0003450175649713788,0.0003450175649713788 -1.2588235294117647,9.72367708797978,9.72367708797978,1.094226254623113,1.094226254623113,-4.530409531274065,-4.530409531274065,0.00029096075249977754,0.00029096075249977754 -1.2611764705882353,9.941511043737991,9.941511043737991,1.754259715667352,1.754259715667352,-4.770712193863652,-4.770712193863652,0.00017672381841544373,0.00017672381841544373 -1.2635294117647058,9.271251986229254,9.271251986229254,3.584652794911335,3.584652794911335,-4.108379987515491,-4.108379987515491,8.468617860172676e-05,8.468617860172676e-05 -1.2658823529411765,8.678716147351956,8.678716147351956,1.6720058880639137,1.6720058880639137,-3.5200605885259018,-3.5200605885259018,0.00018042455227061183,0.00018042455227061183 -1.268235294117647,8.91766471345533,8.91766471345533,1.0529024018695896,1.0529024018695896,-3.772954879139946,-3.772954879139946,0.0002877454713878631,0.0002877454713878631 -1.2705882352941176,9.268991854784199,9.268991854784199,0.9056014573499535,0.9056014573499535,-4.151352786575044,-4.151352786575044,0.0003350179104616785,0.0003350179104616785 -1.2729411764705882,9.632572888053488,9.632572888053488,0.9750152997094151,0.9750152997094151,-4.546291239889661,-4.546291239889661,0.0003080659537641531,0.0003080659537641531 -1.2752941176470587,9.954033561133368,9.954033561133368,1.3708039575884068,1.3708039575884068,-4.891835112532911,-4.891835112532911,0.00021466972829654494,0.00021466972829654494 -1.2776470588235294,9.906918863052809,9.906918863052809,3.260638995342834,3.260638995342834,-4.855569424734562,-4.855569424734562,8.836537141453452e-05,8.836537141453452e-05 -1.28,8.571520793125789,8.571520793125789,2.5611516431668897,2.5611516431668897,-3.522695873083508,-3.522695873083508,0.00011136498979213901,0.00011136498979213901 -1.2823529411764705,8.687839810541996,8.687839810541996,1.212649473110859,1.212649473110859,-3.645137526952709,-3.645137526952709,0.00023563957714337267,0.00023563957714337267 -1.2847058823529411,9.037059907665768,9.037059907665768,0.9047578771153161,0.9047578771153161,-4.011327527476601,-4.011327527476601,0.0003175988439107237,0.0003175988439107237 -1.2870588235294118,9.417613385781564,9.417613385781564,0.8621774859098662,0.8621774859098662,-4.416814767156813,-4.416814767156813,0.00033299014471035716,0.00033299014471035716 -1.2894117647058823,9.794172735957414,9.794172735957414,1.0198958544326369,1.0198958544326369,-4.8175794718801805,-4.8175794718801805,0.0002784002678043987,0.0002784002678043987 -1.291764705882353,10.109229199872935,10.109229199872935,1.6718568241090586,1.6718568241090586,-5.147357070223191,-5.147357070223191,0.00016716882206144762,0.00016716882206144762 -1.2941176470588236,9.539892342511394,9.539892342511394,5.9784425278164655,5.9784425278164655,-4.582854128282634,-4.582854128282634,4.621507653181545e-05,4.621507653181545e-05 -1.296470588235294,8.423855731546563,8.423855731546563,1.9159757260375752,1.9159757260375752,-3.4685600596668933,-3.4685600596668933,0.0001441260274294772,0.0001441260274294772 -1.2988235294117647,8.710066916674688,8.710066916674688,1.0566544684894736,1.0566544684894736,-3.7630564413131804,-3.7630564413131804,0.00026343689948314175,0.00026343689948314175 -1.3011764705882352,9.086101043461971,9.086101043461971,0.8446286252229258,0.8446286252229258,-4.156726993026519,-4.156726993026519,0.00033223018046917306,0.00033223018046917306 -1.3035294117647058,9.472999069228855,9.472999069228855,0.8384467686235949,0.8384467686235949,-4.566088500811944,-4.566088500811944,0.00033510067668276246,0.00033510067668276246 -1.3058823529411765,9.850300303770513,9.850300303770513,1.0272473323833378,1.0272473323833378,-4.9628786763040535,-4.9628786763040535,0.0002718607951250017,0.0002718607951250017 -1.308235294117647,10.159943296550344,10.159943296550344,1.7700401502655667,1.7700401502655667,-5.283815906300179,-5.283815906300179,0.00015657570337788653,0.00015657570337788653 -1.3105882352941176,9.36570580763575,9.36570580763575,6.932726574046151,6.932726574046151,-4.494258559717264,-4.494258559717264,3.9907880676970595e-05,3.9907880676970595e-05 -1.3129411764705883,8.394565985213859,8.394565985213859,1.8479987289482047,1.8479987289482047,-3.5279791556632647,-3.5279791556632647,0.00015084721827138365,0.00015084721827138365 -1.3152941176470587,8.689454816088654,8.689454816088654,1.044565329532349,1.044565329532349,-3.8345061826323525,-3.8345061826323525,0.00027047531699774354,0.00027047531699774354 -1.3176470588235294,9.05545029072181,9.05545029072181,0.8369719073619707,0.8369719073619707,-4.220100233676982,-4.220100233676982,0.00034164124430568495,0.00034164124430568495 -1.32,9.428847963434993,9.428847963434993,0.8220603943705564,0.8220603943705564,-4.616548158401052,-4.616548158401052,0.00035001207335409,0.00035001207335409 -1.3223529411764705,9.790262293685933,9.790262293685933,0.9780432427536104,0.9780432427536104,-4.998265900860895,-4.998265900860895,0.00029442387786102474,0.00029442387786102474 -1.3247058823529412,10.089994083391225,10.089994083391225,1.5419467882029931,1.5419467882029931,-5.312294174150814,-5.312294174150814,0.0001867805418765637,0.0001867805418765637 -1.3270588235294118,9.820104739496985,9.820104739496985,4.66698925581189,4.66698925581189,-5.0525259700745275,-5.0525259700745275,6.202697994097512e-05,6.202697994097512e-05 -1.3294117647058823,8.445036026007912,8.445036026007912,2.3311435439441675,2.3311435439441675,-3.6886120435643757,-3.6886120435643757,0.00012570209257455032,0.00012570209257455032 -1.331764705882353,8.625917830556062,8.625917830556062,1.1825024077700124,1.1825024077700124,-3.8866865139036584,-3.8866865139036584,0.00025187559451328673,0.00025187559451328673 -1.3341176470588234,8.949699791360217,8.949699791360217,0.8901532372282593,0.8901532372282593,-4.234276052633282,-4.234276052633282,0.00033961323011053913,0.00033961323011053913 -1.336470588235294,9.293624510383076,9.293624510383076,0.8238969537239256,0.8238969537239256,-4.605340741754337,-4.605340741754337,0.00037063273562689124,0.00037063273562689124 -1.3388235294117647,9.630905730802102,9.630905730802102,0.9033347734350747,0.9033347734350747,-4.968327160715138,-4.968327160715138,0.0003398205654079709,0.0003398205654079709 -1.3411764705882352,9.927413204735394,9.927413204735394,1.2129130469012388,1.2129130469012388,-5.28637904988047,-5.28637904988047,0.00025405502464439155,0.00025405502464439155 -1.3435294117647059,10.02583332891058,10.02583332891058,2.303594192950608,2.303594192950608,-5.403018817907435,-5.403018817907435,0.00013467413438841104,0.00013467413438841104 -1.3458823529411765,8.941386062700456,8.941386062700456,3.8710838279926523,3.8710838279926523,-4.337106791644583,-4.337106791644583,8.107917533146898e-05,8.107917533146898e-05 -1.348235294117647,8.58380995147804,8.58380995147804,1.6414322863674677,1.6414322863674677,-4.0023392733924705,-4.0023392733924705,0.00019410196993444558,0.00019410196993444558 -1.3505882352941176,8.797300862024363,8.797300862024363,1.0638723859953325,1.0638723859953325,-4.244175510135882,-4.244175510135882,0.0003038139433204733,0.0003038139433204733 -1.3529411764705883,9.091798493714604,9.091798493714604,0.882543604458603,0.882543604458603,-4.570560229779579,-4.570560229779579,0.000370096103999912,0.000370096103999912 -1.3552941176470588,9.400017925608,9.400017925608,0.8632354148724188,0.8632354148724188,-4.910705358984696,-4.910705358984696,0.00038057524218331704,0.00038057524218331704 -1.3576470588235294,9.693248341235781,9.693248341235781,0.9849444636821895,0.9849444636821895,-5.233007161972552,-5.233007161972552,0.0003345749950631313,0.0003345749950631313 -1.3599999999999999,9.919760199162493,9.919760199162493,1.3632074871677236,1.3632074871677236,-5.485163525008598,-5.485163525008598,0.0002426131706536983,0.0002426131706536983 -1.3623529411764705,9.858467627228688,9.858467627228688,2.5050434419923424,2.5050434419923424,-5.448297515552624,-5.448297515552624,0.000132907709414813,0.000132907709414813 -1.3647058823529412,8.947709231144353,8.947709231144353,3.0016108016256027,3.0016108016256027,-4.563824635070167,-4.563824635070167,0.00011200162318824274,0.00011200162318824274 -1.3670588235294117,8.700093248159092,8.700093248159092,1.5855605116599358,1.5855605116599358,-4.346498198887644,-4.346498198887644,0.0002142727836149009,0.0002142727836149009 -1.3694117647058823,8.869383297550009,8.869383297550009,1.0950388336221615,1.0950388336221615,-4.5497674047816785,-4.5497674047816785,0.00031281708760675373,0.00031281708760675373 -1.371764705882353,9.124916131869316,9.124916131869316,0.9245924797549144,0.9245924797549144,-4.840581432219737,-4.840581432219737,0.000372065795004085,0.000372065795004085 -1.3741176470588234,9.39879927329402,9.39879927329402,0.9034072935069548,0.9034072935069548,-5.148347146936592,-5.148347146936592,0.00038098965235351656,0.00038098965235351656 -1.3764705882352941,9.6585642006221,9.6585642006221,1.0127714940805717,1.0127714940805717,-5.43888700033657,-5.43888700033657,0.0003395269181295304,0.0003395269181295304 -1.3788235294117648,9.85386955824906,9.85386955824906,1.3345777084560844,1.3345777084560844,-5.6622946960624745,-5.6622946960624745,0.00025771885438156033,0.00025771885438156033 -1.3811764705882352,9.823114281524226,9.823114281524226,2.1492428736667146,2.1492428736667146,-5.659024461242822,-5.659024461242822,0.00016048875502797604,0.00016048875502797604 -1.383529411764706,9.189835983350228,9.189835983350228,2.855936737521315,2.855936737521315,-5.055245025893705,-5.055245025893705,0.0001213646731339273,0.0001213646731339273 -1.3858823529411763,8.803283888092984,8.803283888092984,1.7930200103910745,1.7930200103910745,-4.701371720703181,-4.701371720703181,0.00019423224962609103,0.00019423224962609103 -1.388235294117647,8.878379258892764,8.878379258892764,1.2286310805213134,1.2286310805213134,-4.811552058053806,-4.811552058053806,0.0002840899867223838,0.0002840899867223838 -1.3905882352941177,9.082406533568173,9.082406533568173,1.0070765432520266,1.0070765432520266,-5.050978436394086,-5.050978436394086,0.000346136404360201,0.000346136404360201 -1.3929411764705881,9.32165085087451,9.32165085087451,0.9464576697087734,0.9464576697087734,-5.323700736060248,-5.323700736060248,0.0003667432496064676,0.0003667432496064676 -1.3952941176470588,9.558127793911066,9.558127793911066,1.0048422882795522,1.0048422882795522,-5.590539826459228,-5.590539826459228,0.00034366558563620413,0.00034366558563620413 -1.3976470588235295,9.752125199838668,9.752125199838668,1.2144389904059343,1.2144389904059343,-5.81240145199374,-5.81240145199374,0.0002832811743846795,0.0002832811743846795 -1.4,9.816231144258962,9.816231144258962,1.6998895759146615,1.6998895759146615,-5.903902445163788,-5.903902445163788,0.00020213052419650805,0.00020213052419650805 -1.4023529411764706,9.52934580791097,9.52934580791097,2.480691504782138,2.480691504782138,-5.646142047426552,-5.646142047426552,0.00013858825330799197,0.00013858825330799197 -1.4047058823529412,9.014339817145212,9.014339817145212,2.204645213833848,2.204645213833848,-5.162857646446717,-5.162857646446717,0.00015601156382163124,0.00015601156382163124 -1.4070588235294117,8.89628336876985,8.89628336876985,1.5146981106745228,1.5146981106745228,-5.078635352044239,-5.078635352044239,0.00022668207645485484,0.00022668207645485484 -1.4094117647058824,9.008498917485262,9.008498917485262,1.171526932045921,1.171526932045921,-5.224813626334055,-5.224813626334055,0.00029165658188944635,0.00029165658188944635 -1.4117647058823528,9.197330090152972,9.197330090152972,1.0314899539790485,1.0314899539790485,-5.445786272001142,-5.445786272001142,0.00032878834080822143,0.00032878834080822143 -1.4141176470588235,9.405717355338318,9.405717355338318,1.0152638102961673,1.0152638102961673,-5.683298570081448,-5.683298570081448,0.00033126130406021414,0.00033126130406021414 -1.4164705882352941,9.598238200478091,9.598238200478091,1.1113263660018016,1.1113263660018016,-5.902439218748778,-5.902439218748778,0.0003004900602519557,0.0003004900602519557 -1.4188235294117646,9.729278327525327,9.729278327525327,1.3568644573936457,1.3568644573936457,-6.059354519062386,-6.059354519062386,0.0002449584746756273,0.0002449584746756273 -1.4211764705882353,9.708843618942176,9.708843618942176,1.8187819416869837,1.8187819416869837,-6.065954601381953,-6.065954601381953,0.00018226212003028466,0.00018226212003028466 -1.423529411764706,9.417073439895837,9.417073439895837,2.266937140310038,2.266937140310038,-5.803718784537813,-5.803718784537813,0.00014588649675825713,0.00014588649675825713 -1.4258823529411764,9.07654301870501,9.07654301870501,1.9809224020406757,1.9809224020406757,-5.494799526160023,-5.494799526160023,0.000166288740779251,0.000166288740779251 -1.428235294117647,8.994858795716063,8.994858795716063,1.5068461483069793,1.5068461483069793,-5.445305062651266,-5.445305062651266,0.00021712381010405448,0.00021712381010405448 -1.4305882352941177,9.079380670835397,9.079380670835397,1.2316747855466694,1.2316747855466694,-5.560562385338532,-5.560562385338532,0.00026312961423278076,0.00026312961423278076 -1.4329411764705882,9.230749371524528,9.230749371524528,1.1102279766842882,1.1102279766842882,-5.739877657545607,-5.739877657545607,0.00028879695931400846,0.00028879695931400846 -1.4352941176470588,9.399554863488113,9.399554863488113,1.0969322621167026,1.0969322621167026,-5.933921182373155,-5.933921182373155,0.00028940619091358597,0.00028940619091358597 -1.4376470588235293,9.551903727185461,9.551903727185461,1.1816552599035428,1.1816552599035428,-6.110068630824276,-6.110068630824276,0.0002665943879968794,0.0002665943879968794 -1.44,9.649232265242748,9.649232265242748,1.3792496330206767,1.3792496330206767,-6.231868780026965,-6.231868780026965,0.0002271850627898818,0.0002271850627898818 -1.4423529411764706,9.63537358095203,9.63537358095203,1.6985132033715626,1.6985132033715626,-6.2445611210007215,-6.2445611210007215,0.00018370651744491385,0.00018370651744491385 -1.444705882352941,9.460437534453263,9.460437534453263,1.997938458451678,1.997938458451678,-6.098556750145848,-6.098556750145848,0.00015538256244140855,0.00015538256244140855 -1.4470588235294117,9.219583596153168,9.219583596153168,1.939739293314963,1.939739293314963,-5.88797697258178,-5.88797697258178,0.0001588432471143075,0.0001588432471143075 -1.4494117647058824,9.09993754529625,9.09993754529625,1.6345129396150462,1.6345129396150462,-5.797957967195529,-5.797957967195529,0.00018655923534261585,0.00018655923534261585 -1.4517647058823528,9.116342780468731,9.116342780468731,1.3806690398990944,1.3806690398990944,-5.841779983827723,-5.841779983827723,0.00021812812105996004,0.00021812812105996004 -1.4541176470588235,9.208529044770629,9.208529044770629,1.2373607984488926,1.2373607984488926,-5.958316049282172,-5.958316049282172,0.00024035392020005492,0.00024035392020005492 -1.4564705882352942,9.330935128249832,9.330935128249832,1.1874490016271049,1.1874490016271049,-6.102804126607701,-6.102804126607701,0.0002477299877853976,0.0002477299877853976 -1.4588235294117646,9.452618094674895,9.452618094674895,1.2171450449891492,1.2171450449891492,-6.246024576648075,-6.246024576648075,0.00023966447400369946,0.00023966447400369946 -1.4611764705882353,9.546997382710712,9.546997382710712,1.323518105703987,1.323518105703987,-6.3632799131844235,-6.3632799131844235,0.00021901458093480331,0.00021901458093480331 -1.4635294117647057,9.5855874543227,9.5855874543227,1.5054711319529996,1.5054711319529996,-6.427267486378358,-6.427267486378358,0.00019140147819865416,0.00019140147819865416 -1.4658823529411764,9.539414205341773,9.539414205341773,1.7307375387371338,1.7307375387371338,-6.408648160199831,-6.408648160199831,0.00016524750567387345,0.00016524750567387345 -1.468235294117647,9.405932873645034,9.405932873645034,1.8817258803275576,1.8817258803275576,-6.303370370197619,-6.303370370197619,0.00015043191164664958,0.00015043191164664958 -1.4705882352941178,9.252163649547303,9.252163649547303,1.8282749434126715,1.8282749434126715,-6.176512038532797,-6.176512038532797,0.00015281167177727656,0.00015281167177727656 -1.4729411764705882,9.165128401461827,9.165128401461827,1.6341413263946067,1.6341413263946067,-6.1136520698572125,-6.1136520698572125,0.00016848325660005547,0.00016848325660005547 -1.4752941176470589,9.164413683717926,9.164413683717926,1.4428828042646085,1.4428828042646085,-6.133956028369904,-6.133956028369904,0.00018810328705980338,0.00018810328705980338 -1.4776470588235295,9.225155647393876,9.225155647393876,1.3143958707035923,1.3143958707035923,-6.2136494463526954,-6.2136494463526954,0.00020400561651873444,0.00020400561651873444 -1.48,9.318424104890868,9.318424104890868,1.2549460592752322,1.2549460592752322,-6.325736023670633,-6.325736023670633,0.00021166756987163972,0.00021166756987163972 -1.4823529411764707,9.421079141317186,9.421079141317186,1.260238794859841,1.260238794859841,-6.4490082873411465,-6.4490082873411465,0.0002092280179509737,0.0002092280179509737 -1.484705882352941,9.51331053565155,9.51331053565155,1.33043673943502,1.33043673943502,-6.56443376076682,-6.56443376076682,0.00019673034680733724,0.00019673034680733724 -1.4870588235294118,9.573624292737325,9.573624292737325,1.471401036583094,1.471401036583094,-6.650089875109093,-6.650089875109093,0.00017624588438884236,0.00017624588438884236 -1.4894117647058822,9.573423709317996,9.573423709317996,1.6837995370774763,1.6837995370774763,-6.675624584430311,-6.675624584430311,0.00015212184462880178,0.00015212184462880178 -1.4917647058823529,9.481196984046962,9.481196984046962,1.914598474978224,1.914598474978224,-6.607446785558309,-6.607446785558309,0.0001317534687903732,0.0001317534687903732 -1.4941176470588236,9.30814503883411,9.30814503883411,1.9933315785327714,1.9933315785327714,-6.455317412562645,-6.455317412562645,0.00012444342512960257,0.00012444342512960257 -1.4964705882352942,9.154264157631953,9.154264157631953,1.8184961048888242,1.8184961048888242,-6.318864435108547,-6.318864435108547,0.00013420915028472072,0.00013420915028472072 -1.4988235294117647,9.103337294491679,9.103337294491679,1.556570561514876,1.556570561514876,-6.2830324721917075,-6.2830324721917075,0.00015466433609725465,0.00015466433609725465 -1.5011764705882353,9.147820654350937,9.147820654350937,1.3538958868698954,1.3538958868698954,-6.3424206072005065,-6.3424206072005065,0.00017594159335163135,0.00017594159335163135 -1.5035294117647058,9.250434027795004,9.250434027795004,1.2387193707573276,1.2387193707573276,-6.461791938394889,-6.461791938394889,0.00019069774118512945,0.00019069774118512945 -1.5058823529411764,9.3808221369771,9.3808221369771,1.2040566241456925,1.2040566241456925,-6.611725858180162,-6.611725858180162,0.0001946124503285376,0.0001946124503285376 -1.5082352941176471,9.516307569338078,9.516307569338078,1.248041074367376,1.248041074367376,-6.76910769215309,-6.76910769215309,0.00018588484154309198,0.00018588484154309198 -1.5105882352941176,9.634097708561002,9.634097708561002,1.3869376425341389,1.3869376425341389,-6.909384050722787,-6.909384050722787,0.00016507946912943644,0.00016507946912943644 -1.5129411764705882,9.69747696838416,9.69747696838416,1.663032965817152,1.663032965817152,-6.993529230697312,-6.993529230697312,0.00013542029375927716,0.00013542029375927716 -1.5152941176470587,9.632740272939575,9.632740272939575,2.1183737135852776,2.1183737135852776,-6.946063919231518,-6.946063919231518,0.00010436936880872423,0.00010436936880872423 -1.5176470588235293,9.353548436925823,9.353548436925823,2.4966988776322867,2.4966988776322867,-6.680114138889337,-6.680114138889337,8.69839784909578e-05,8.69839784909578e-05 -1.52,9.035746340588943,9.035746340588943,2.1893011365125905,2.1893011365125905,-6.372395644789236,-6.372395644789236,9.769593039583165e-05,9.769593039583165e-05 -1.5223529411764707,8.937570275759464,8.937570275759464,1.6685013848992485,1.6685013848992485,-6.283482067684391,-6.283482067684391,0.0001267271323836156,0.0001267271323836156 -1.5247058823529411,9.004493747495236,9.004493747495236,1.3363333571760199,1.3363333571760199,-6.361244521433042,-6.361244521433042,0.00015692566850188133,0.00015692566850188133 -1.5270588235294118,9.148683616304918,9.148683616304918,1.1651455533251125,1.1651455533251125,-6.519393419494377,-6.519393419494377,0.00017870164595123965,0.00017870164595123965 -1.5294117647058822,9.32613460443935,9.32613460443935,1.1019475123052027,1.1019475123052027,-6.713762964498641,-6.713762964498641,0.00018737048197512075,0.00018737048197512075 -1.531764705882353,9.514271379459894,9.514271379459894,1.1275566408905908,1.1275566408905908,-6.920125150742033,-6.920125150742033,0.00018099765829997965,0.00018099765829997965 -1.5341176470588236,9.69532540635804,9.69532540635804,1.2567163243985533,1.2567163243985533,-7.11834590371171,-7.11834590371171,0.0001599203157168787,0.0001599203157168787 -1.536470588235294,9.840439712972227,9.840439712972227,1.5588544866839964,1.5588544866839964,-7.277200566176145,-7.277200566176145,0.00012663432164393822,0.00012663432164393822 -1.5388235294117647,9.868289515259201,9.868289515259201,2.2349509491634323,2.2349509491634323,-7.314082660132178,-7.314082660132178,8.674174116477312e-05,8.674174116477312e-05 -1.5411764705882351,9.515109536129655,9.515109536129655,3.4558357407781917,3.4558357407781917,-6.965738964089905,-6.965738964089905,5.521941766019841e-05,5.521941766019841e-05 -1.5435294117647058,8.863141240099726,8.863141240099726,2.928659950062333,2.928659950062333,-6.316453287143555,-6.316453287143555,6.443551715989115e-05,6.443551715989115e-05 -1.5458823529411767,8.714639490076605,8.714639490076605,1.844115992474489,1.844115992474489,-6.171533062211379,-6.171533062211379,0.00010164934267470219,0.00010164934267470219 -1.5482352941176472,8.817404697696382,8.817404697696382,1.3456290173414724,1.3456290173414724,-6.280915033474176,-6.280915033474176,0.00013877211114234905,0.00013877211114234905 -1.5505882352941176,8.999008677937933,8.999008677937933,1.1189299173906733,1.1189299173906733,-6.472958664627227,-6.472958664627227,0.00016627899423752085,0.00016627899423752085 -1.5529411764705883,9.208466436930873,9.208466436930873,1.0265666711886205,1.0265666711886205,-6.69584556745145,-6.69584556745145,0.00018012556262377672,0.00018012556262377672 -1.5552941176470587,9.42736591317558,9.42736591317558,1.0242375750766293,1.0242375750766293,-6.92846085331655,-6.92846085331655,0.00017875453437010593,0.00017875453437010593 -1.5576470588235294,9.643932861593068,9.643932861593068,1.112498725708587,1.112498725708587,-7.156253582747911,-7.156253582747911,0.00016238076200443747,0.00016238076200443747 -1.5599999999999998,9.841531540374906,9.841531540374906,1.3386981743665374,1.3386981743665374,-7.360646139524028,-7.360646139524028,0.00013295871468796373,0.00013295871468796373 -1.5623529411764705,9.97576596266552,9.97576596266552,1.8628073175025084,1.8628073175025084,-7.496662522430814,-7.496662522430814,9.428311481141277e-05,9.428311481141277e-05 -1.5647058823529412,9.869781469215777,9.869781469215777,3.2129542071520896,3.2129542071520896,-7.388897355612963,-7.388897355612963,5.417783292252302e-05,5.417783292252302e-05 -1.5670588235294118,9.047618868257194,9.047618868257194,4.255420883086425,4.255420883086425,-6.564399969667597,-6.564399969667597,4.077315883968091e-05,4.077315883968091e-05 -1.5694117647058823,8.619848939443035,8.619848939443035,2.400237949023247,2.400237949023247,-6.137025358654171,-6.137025358654171,7.239611270532607e-05,7.239611270532607e-05 -1.571764705882353,8.666218897367386,8.666218897367386,1.5788884791868698,1.5788884791868698,-6.1884146294195315,-6.1884146294195315,0.0001104918475843238,0.0001104918475843238 -1.5741176470588236,8.825732837471731,8.825732837471731,1.2358174489451985,1.2358174489451985,-6.3575946594430945,-6.3575946594430945,0.0001415900670763845,0.0001415900670763845 -1.576470588235294,9.017348409596881,9.017348409596881,1.082017268801952,1.082017268801952,-6.561785557746614,-6.561785557746614,0.00016164915769863522,0.00016164915769863522 -1.5788235294117647,9.216951161897665,9.216951161897665,1.0297770054537723,1.0297770054537723,-6.773873250098867,-6.773873250098867,0.0001690631871886273,0.0001690631871886273 -1.5811764705882352,9.412478773092253,9.412478773092253,1.0540207604467047,1.0540207604467047,-6.979034881861763,-6.979034881861763,0.0001638639377971621,0.0001638639377971621 -1.5835294117647059,9.591296724613954,9.591296724613954,1.1606654632982567,1.1606654632982567,-7.162628096652965,-7.162628096652965,0.0001474874105779008,0.0001474874105779008 -1.5858823529411765,9.73095672718331,9.73095672718331,1.3853490059496523,1.3853490059496523,-7.302274914831147,-7.302274914831147,0.00012276102291552122,0.00012276102291552122 -1.5882352941176474,9.783857368754784,9.783857368754784,1.8031109614009975,1.8031109614009975,-7.352308432490413,-7.352308432490413,9.41824574829887e-05,9.41824574829887e-05 -1.5905882352941176,9.65327499050817,9.65327499050817,2.4627292253072985,2.4627292253072985,-7.21955880452528,-7.21955880452528,6.927308088740192e-05,6.927308088740192e-05 -1.592941176470588,9.284564295806598,9.284564295806598,2.856822193354228,2.856822193354228,-6.852285955837868,-6.852285955837868,6.0285293667149087e-05,6.0285293667149087e-05 -1.5952941176470588,8.96786867370741,8.96786867370741,2.4149822813023993,2.4149822813023993,-6.542755543777801,-6.542755543777801,7.212814381689355e-05,7.212814381689355e-05 -1.5976470588235294,8.868257940226213,8.868257940226213,1.894097093777607,1.894097093777607,-6.455522373305683,-6.455522373305683,9.287335179015723e-05,9.287335179015723e-05 -1.6,8.88745677550068,8.88745677550068,1.567088129959564,1.567088129959564,-6.490672175779675,-6.490672175779675,0.00011291229009840037,0.00011291229009840037 -1.6023529411764705,8.955133373192428,8.955133373192428,1.3749426352006726,1.3749426352006726,-6.574509501924261,-6.574509501924261,0.00012883520709236986,0.00012883520709236986 -1.6047058823529412,9.041337638198334,9.041337638198334,1.2613227769235875,1.2613227769235875,-6.674412499615742,-6.674412499615742,0.00014000699100493477,0.00014000699100493477 -1.6070588235294117,9.135123559787186,9.135123559787186,1.196038392546248,1.196038392546248,-6.777410232429938,-6.777410232429938,0.00014697850646858154,0.00014697850646858154 -1.6094117647058825,9.233728423671018,9.233728423671018,1.1642802835085209,1.1642802835085209,-6.880324793468248,-6.880324793468248,0.0001505288978655872,0.0001505288978655872 -1.611764705882353,9.3375979297251,9.3375979297251,1.1618925545570842,1.1618925545570842,-6.985321947079347,-6.985321947079347,0.00015106990180642157,0.00015106990180642157 -1.6141176470588237,9.446658823106793,9.446658823106793,1.193377055395673,1.193377055395673,-7.095435501603434,-7.095435501603434,0.00014816062378655165,0.00014816062378655165 -1.616470588235294,9.558190480120397,9.558190480120397,1.2723619416417646,1.2723619416417646,-7.211455179407484,-7.211455179407484,0.00014065973304798856,0.00014065973304798856 -1.6188235294117648,9.663483111057273,9.663483111057273,1.4272703697845395,1.4272703697845395,-7.3266221912032305,-7.3266221912032305,0.00012723333905466884,0.00012723333905466884 -1.6211764705882352,9.742633096592337,9.742633096592337,1.719349391423232,1.719349391423232,-7.421479039780286,-7.421479039780286,0.00010706520117066435,0.00010706520117066435 -1.6235294117647059,9.740922517243918,9.740922517243918,2.2928008687545316,2.2928008687545316,-7.439779970485061,-7.439779970485061,8.109822045315535e-05,8.109822045315535e-05 -1.6258823529411766,9.489549275193472,9.489549275193472,3.3507713066792455,3.3507713066792455,-7.210030574237258,-7.210030574237258,5.576295889440029e-05,5.576295889440029e-05 -1.6282352941176468,8.840621657817103,8.840621657817103,3.471993510726538,3.471993510726538,-6.581267738974356,-6.581267738974356,5.3807738312976445e-05,5.3807738312976445e-05 -1.630588235294118,8.500790885549588,8.500790885549588,2.165760253482098,2.165760253482098,-6.257623308245515,-6.257623308245515,8.595062730347666e-05,8.595062730347666e-05 -1.6329411764705881,8.514689616617547,8.514689616617547,1.4229673650389234,1.4229673650389234,-6.282687728014247,-6.282687728014247,0.0001303096883430804,0.0001303096883430804 -1.6352941176470588,8.664757607801542,8.664757607801542,1.0596977022369432,1.0596977022369432,-6.439288089363848,-6.439288089363848,0.00017478275334458727,0.00017478275334458727 -1.6376470588235295,8.874899100631268,8.874899100631268,0.8724195017341448,0.8724195017341448,-6.653840280949166,-6.653840280949166,0.0002131330072140166,0.0002131330072140166 -1.6400000000000001,9.116655141543275,9.116655141543275,0.7799604075086692,0.7799604075086692,-6.901113736050804,-6.901113736050804,0.00024068790065034652,0.00024068790065034652 -1.6423529411764706,9.377257333218205,9.377257333218205,0.7497604009621327,0.7497604009621327,-7.171437201903444,-7.171437201903444,0.00025381848561123834,0.00025381848561123834 -1.6447058823529415,9.65268038536688,9.65268038536688,0.7725628865672235,0.7725628865672235,-7.462448307964079,-7.462448307964079,0.0002500020765223559,0.0002500020765223559 -1.6470588235294117,9.94683208378198,9.94683208378198,0.8578205096386061,0.8578205096386061,-7.777527006140008,-7.777527006140008,0.00022809023285115602,0.00022809023285115602 -1.6494117647058824,10.275433047496751,10.275433047496751,1.0456402769826476,1.0456402769826476,-8.130956768034435,-8.130956768034435,0.00018872059843634081,0.00018872059843634081 -1.651764705882353,10.689287761755029,10.689287761755029,1.4648426992932917,1.4648426992932917,-8.57043690806106,-8.57043690806106,0.00013510242596376373,0.00013510242596376373 -1.6541176470588237,11.402408475179286,11.402408475179286,2.51854428793337,2.51854428793337,-9.307083160671871,-9.307083160671871,7.839811170409896e-05,7.839811170409896e-05 -1.6564705882352944,12.84398429401429,12.84398429401429,2.785711049281813,2.785711049281813,-10.767751863997066,-10.767751863997066,7.04835825613462e-05,7.04835825613462e-05 -1.6588235294117644,13.736236107910297,13.736236107910297,1.4527043403728892,1.4527043403728892,-11.673421276032887,-11.673421276032887,0.00013435167167894757,0.00013435167167894757 -1.6611764705882353,14.226696201900118,14.226696201900118,0.9167631355376052,0.9167631355376052,-12.172453593609106,-12.172453593609106,0.00021222543071579292,0.00021222543071579292 -1.663529411764706,14.620938653977024,14.620938653977024,0.6827127635484638,0.6827127635484638,-12.572733976780553,-12.572733976780553,0.0002855999983227076,0.0002855999983227076 -1.6658823529411766,14.98441116187045,14.98441116187045,0.5674694518801858,0.5674694518801858,-12.943019086642012,-12.943019086642012,0.0003463956641207077,0.0003463956641207077 -1.668235294117647,15.336256613813774,15.336256613813774,0.5117526397015151,0.5117526397015151,-13.305903050074493,-13.305903050074493,0.00038898522674975504,0.00038898522674975504 -1.670588235294118,15.686627708578172,15.686627708578172,0.49302912149735395,0.49302912149735395,-13.673190538198584,-13.673190538198584,0.0004095827299198912,0.0004095827299198912 -1.672941176470588,16.046027600905457,16.046027600905457,0.5033397142876881,0.5033397142876881,-14.055306243313423,-14.055306243313423,0.0004063123949700905,0.0004063123949700905 -1.6752941176470588,16.429667378452187,16.429667378452187,0.542762190542661,0.542762190542661,-14.465938993824231,-14.465938993824231,0.0003799610841790028,0.0003799610841790028 -1.6776470588235295,16.86412032840679,16.86412032840679,0.6171616167637153,0.6171616167637153,-14.928961632004995,-14.928961632004995,0.00033493662939394834,0.00033493662939394834 -1.68,17.395277590136573,17.395277590136573,0.7308305491744249,0.7308305491744249,-15.487185457256027,-15.487185457256027,0.0002818411572949064,0.0002818411572949064 -1.6823529411764706,18.081946787298392,18.081946787298392,0.8443583969717534,0.8443583969717534,-16.19638795771654,-16.19638795771654,0.00024207690033457792,0.00024207690033457792 -1.684705882352941,18.886325743197602,18.886325743197602,0.8227909247318389,0.8227909247318389,-17.01755115592515,-17.01755115592515,0.00024606996199907964,0.00024606996199907964 -1.6870588235294117,19.617283002182596,19.617283002182596,0.6656841813550355,0.6656841813550355,-17.758913861400366,-17.758913861400366,0.0003019112290325341,0.0003019112290325341 -1.6894117647058824,20.203273860518397,20.203273860518397,0.5187247905609789,0.5187247905609789,-18.351302974549874,-18.351302974549874,0.00038647399860624975,0.00038647399860624975 -1.6917647058823528,20.69358571751376,20.69358571751376,0.42268495006472845,0.42268495006472845,-18.847154637459287,-18.847154637459287,0.000476254128646756,0.000476254128646756 -1.6941176470588235,21.13224995771869,21.13224995771869,0.36549689643288863,0.36549689643288863,-19.29426352796472,-19.29426352796472,0.0005563450557950542,0.0005563450557950542 -1.6964705882352942,21.544051740192394,21.544051740192394,0.33391334008502904,0.33391334008502904,-19.720291756332603,-19.720291756332603,0.0006174361650270137,0.0006174361650270137 -1.6988235294117644,21.945256313855758,21.945256313855758,0.319634094407249,0.319634094407249,-20.1423609140953,-20.1423609140953,0.0006540217868509858,0.0006540217868509858 -1.7011764705882353,22.34983629369532,22.34983629369532,0.3180890831286219,0.3180890831286219,-20.573590418783215,-20.573590418783215,0.0006641618993054885,0.0006641618993054885 -1.7035294117647062,22.77303796040608,22.77303796040608,0.3266605836703718,0.3266605836703718,-21.027256417329212,-21.027256417329212,0.0006499213303969921,0.0006499213303969921 -1.7058823529411766,23.233456081284864,23.233456081284864,0.342856263967584,0.342856263967584,-21.51832335781983,-21.51832335781983,0.0006181793552563279,0.0006181793552563279 -1.7082352941176469,23.749684440143422,23.749684440143422,0.36115572543555824,0.36115572543555824,-22.06233541302955,-22.06233541302955,0.0005821245478711526,0.0005821245478711526 -1.7105882352941175,24.330338173366695,24.330338173366695,0.37026455997039415,0.37026455997039415,-22.664972554638695,-22.664972554638695,0.0005609335502697172,0.0005609335502697172 -1.7129411764705882,24.953612289539485,24.953612289539485,0.35697491616539523,0.35697491616539523,-23.303464181054352,-23.303464181054352,0.0005744796615454915,0.0005744796615454915 -1.7152941176470589,25.571201097778065,25.571201097778065,0.3216067043328386,0.3216067043328386,-23.929107972764058,-23.929107972764058,0.0006313888038048472,0.0006313888038048472 -1.7176470588235295,26.143564780364613,26.143564780364613,0.27980904783325666,0.27980904783325666,-24.505508134967695,-24.505508134967695,0.0007231535080074327,0.0007231535080074327 -1.72,26.66361953887504,26.66361953887504,0.24401518726062046,0.24401518726062046,-25.029153414694694,-25.029153414694694,0.0008326701854432863,0.0008326701854432863 -1.7223529411764709,27.140580958364264,27.140580958364264,0.21787107887822824,0.21787107887822824,-25.5136476098731,-25.5136476098731,0.0009429865961736937,0.0009429865961736937 -1.7247058823529409,27.58706327996408,27.58706327996408,0.2003385814526772,0.2003385814526772,-25.974461180276503,-25.974461180276503,0.001041097395413171,0.001041097395413171 -1.7270588235294118,28.015138494952904,28.015138494952904,0.18927789692023378,0.18927789692023378,-26.424546090373344,-26.424546090373344,0.0011183187086451422,0.0011183187086451422 -1.7294117647058824,28.436203633122727,28.436203633122727,0.1828145076331836,0.1828145076331836,-26.87451496727284,-26.87451496727284,0.0011704345127194838,0.0011704345127194838 -1.731764705882353,28.862015430788738,28.862015430788738,0.17943780487865327,0.17943780487865327,-27.333171866993986,-27.333171866993986,0.001197854305432548,0.001197854305432548 -1.7341176470588235,29.303764649360218,29.303764649360218,0.17761507397577844,0.17761507397577844,-27.808223203264372,-27.808223203264372,0.001205911177474182,0.001205911177474182 -1.7364705882352938,29.770482353913874,29.770482353913874,0.17583978307225717,0.17583978307225717,-28.30539501564867,-28.30539501564867,0.0012050826603133295,0.0012050826603133295 -1.7388235294117647,30.267442740840902,30.267442740840902,0.17240798307034141,0.17240798307034141,-28.82634748992543,-28.82634748992543,0.0012097661707245132,0.0012097661707245132 -1.7411764705882353,30.7912320130862,30.7912320130862,0.16591636580294253,0.16591636580294253,-29.365775455243657,-29.365775455243657,0.0012356033661788273,0.0012356033661788273 -1.743529411764706,31.329435928486863,31.329435928486863,0.15606562815464245,0.15606562815464245,-29.911345489671238,-29.911345489671238,0.00129448466007456,0.00129448466007456 -1.7458823529411764,31.865089499415205,31.865089499415205,0.14423857780133678,0.14423857780133678,-30.44817554645771,-30.44817554645771,0.0013897000196665301,0.0013897000196665301 -1.748235294117647,32.383193028479184,32.383193028479184,0.13247066446194072,0.13247066446194072,-30.965923791232967,-30.965923791232967,0.0015153552849045575,0.0015153552849045575 -1.7505882352941176,32.875887983287,32.875887983287,0.12227052124291328,0.12227052124291328,-31.461586400225716,-31.461586400225716,0.001659332461841154,0.001659332461841154 -1.7529411764705882,33.34183408110785,33.34183408110785,0.11407058326053199,0.11407058326053199,-31.937776965572397,-31.937776965572397,0.0018078865565528542,0.0018078865565528542 -1.7552941176470591,33.78427090274286,33.78427090274286,0.1077286416001276,0.1077286416001276,-32.399994785195446,-32.399994785195446,0.001948608483436756,0.001948608483436756 -1.7576470588235293,34.20999792228615,34.20999792228615,0.10279040791241797,0.10279040791241797,-32.85414205630825,-32.85414205630825,0.0020723808086014644,0.0020723808086014644 -1.76,34.62724012249595,34.62724012249595,0.09877241216881372,0.09877241216881372,-33.305905260709146,-33.305905260709146,0.0021742756411777344,0.0021742756411777344 -1.7623529411764705,35.044331037528075,35.044331037528075,0.09521402929451661,0.09521402929451661,-33.760290804335106,-33.760290804335106,0.002253801949502794,0.002253801949502794 -1.7647058823529411,35.469542223975324,35.469542223975324,0.0917768248349471,0.0917768248349471,-34.22122349119994,-34.22122349119994,0.0023152521376977233,0.0023152521376977233 -1.7670588235294116,35.90924483645498,35.90924483645498,0.08816091740943387,0.08816091740943387,-34.69129095270533,-34.69129095270533,0.002367141207944859,0.002367141207944859 -1.7694117647058827,36.367747485463084,36.367747485463084,0.08429315929345386,0.08429315929345386,-35.17108459100129,-35.17108459100129,0.002421023704250114,0.002421023704250114 -1.7717647058823531,36.84464415519503,36.84464415519503,0.08015609201224613,0.08015609201224613,-35.65889477737977,-35.65889477737977,0.002489431807611751,0.002489431807611751 -1.7741176470588236,37.33577509121708,37.33577509121708,0.07595280815322221,0.07595280815322221,-36.15077430485848,-36.15077430485848,0.0025827959905584913,0.0025827959905584913 -1.776470588235294,37.83175958231391,37.83175958231391,0.07194763183033517,0.07194763183033517,-36.641508587618176,-36.641508587618176,0.0027070980339093465,0.0027070980339093465 -1.7788235294117647,38.32180359669754,38.32180359669754,0.06836568789499047,0.06836568789499047,-37.12624977233023,-37.12624977233023,0.0028619309933377336,0.0028619309933377336 -1.7811764705882354,38.796664166824165,38.796664166824165,0.06532167081882001,0.06532167081882001,-37.60180969739016,-37.60180969739016,0.003041023802496538,0.003041023802496538 -1.7835294117647063,39.25106129276788,39.25106129276788,0.06273854244530563,0.06273854244530563,-38.06720566183071,-38.06720566183071,0.003234491992749755,0.003234491992749755 -1.7858823529411765,39.684656965961736,39.684656965961736,0.06043171113607271,0.06043171113607271,-38.52332363561873,-38.52332363561873,0.0034310828453443364,0.0034310828453443364 -1.7882352941176471,40.10099721841424,40.10099721841424,0.058239733438453636,0.058239733438453636,-38.97221166611475,-38.97221166611475,0.00362042059325447,0.00362042059325447 -1.7905882352941174,40.505467172257546,40.505467172257546,0.05601644673393371,0.05601644673393371,-39.416546048431364,-39.416546048431364,0.0037947053962205397,0.0037947053962205397 -1.7929411764705883,40.90542679839268,40.90542679839268,0.05367005303871863,0.05367005303871863,-39.85900996043663,-39.85900996043663,0.003949620705504949,0.003949620705504949 -1.795294117647059,41.30814740535264,41.30814740535264,0.05118045229854078,0.05118045229854078,-40.302092873587206,-40.302092873587206,0.004085146840755829,0.004085146840755829 -1.7976470588235294,41.72028278035743,41.72028278035743,0.04854860608830749,0.04854860608830749,-40.74773745437453,-40.74773745437453,0.004204980170562052,0.004204980170562052 -1.8,42.14745190493145,42.14745190493145,0.045923418386512906,0.045923418386512906,-41.19712298830159,-41.19712298830159,0.004316481241718355,0.004316481241718355 diff --git a/sparameters/rotate_f258530e_a2a7ee32.yml b/sparameters/rotate_f258530e_a2a7ee32.yml deleted file mode 100644 index 00068fc3..00000000 --- a/sparameters/rotate_f258530e_a2a7ee32.yml +++ /dev/null @@ -1,27 +0,0 @@ -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: 2 -compute_time_seconds: 78.05954360961914 -compute_time_minutes: 1.3009923934936523 diff --git a/sparameters/rotate_f258530e_b1a4d58f.csv b/sparameters/rotate_f258530e_b1a4d58f.csv deleted file mode 100644 index 38dbe955..00000000 --- a/sparameters/rotate_f258530e_b1a4d58f.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,2.0569017523217745,2.0569017523217745,0.001978699071178615,0.001978699071178615,-1.3097099490798636,-1.3097099490798636,0.009639832495050375,0.009639832495050375 -1.2023529411764706,4.563183683771459,4.563183683771459,0.000671222176054723,0.000671222176054723,-2.498633065749043,-2.498633065749043,0.010435074047398393,0.010435074047398393 -1.204705882352941,4.510344740950602,4.510344740950602,0.0012042118520972024,0.0012042118520972024,-3.7824666470665225,-3.7824666470665225,0.011835171134657475,0.011835171134657475 -1.2070588235294117,4.601238502767011,4.601238502767011,0.0009007159400166001,0.0009007159400166001,-5.1464964085452785,-5.1464964085452785,0.012395563249807727,0.012395563249807727 -1.2094117647058824,6.463913143633237,6.463913143633237,0.0012055833047889912,0.0012055833047889912,-6.511436647300197,-6.511436647300197,0.011332395856417852,0.011332395856417852 -1.2117647058823529,6.714839991963132,6.714839991963132,0.0010208700972591735,0.0010208700972591735,-7.771089876374994,-7.771089876374994,0.008955292710269968,0.008955292710269968 -1.2141176470588235,7.144313228267073,7.144313228267073,0.0015031708944641376,0.0015031708944641376,-8.782020973197199,-8.782020973197199,0.006876242725409674,0.006876242725409674 -1.216470588235294,6.176202399906212,6.176202399906212,0.003731320357224704,0.003731320357224704,-9.65440240924395,-9.65440240924395,0.0069286017503356915,0.0069286017503356915 -1.2188235294117646,6.892243021370055,6.892243021370055,0.0007438158130454555,0.0007438158130454555,-10.735281590240842,-10.735281590240842,0.008022145397242827,0.008022145397242827 -1.2211764705882353,9.12570596558206,9.12570596558206,0.0006332459830911146,0.0006332459830911146,-11.937671728329757,-11.937671728329757,0.008215439960707869,0.008215439960707869 -1.2235294117647058,8.842202863211769,8.842202863211769,0.001597078871881697,0.001597078871881697,-13.061090017917902,-13.061090017917902,0.007285467138897298,0.007285467138897298 -1.2258823529411764,10.498168013243058,10.498168013243058,0.0006970252924241218,0.0006970252924241218,-13.9636728244641,-13.9636728244641,0.0069108067734943825,0.0069108067734943825 -1.228235294117647,10.45919195255399,10.45919195255399,0.0007144788429214062,0.0007144788429214062,-14.90568244358372,-14.90568244358372,0.008811743339571562,0.008811743339571562 -1.2305882352941175,10.86589227847055,10.86589227847055,0.0009268188900197703,0.0009268188900197703,-16.109580603974845,-16.109580603974845,0.011818047130220829,0.011818047130220829 -1.2329411764705882,10.925551176496713,10.925551176496713,0.0008352555282471266,0.0008352555282471266,-17.451052263238456,-17.451052263238456,0.01426009585426268,0.01426009585426268 -1.2352941176470589,11.321528579430748,11.321528579430748,0.0008166998492998263,0.0008166998492998263,-18.82652217008303,-18.82652217008303,0.015473979105135954,0.015473979105135954 -1.2376470588235293,13.032378669355573,13.032378669355573,0.00040276031584849856,0.00040276031584849856,-20.172398519442673,-20.172398519442673,0.015702614172721917,0.015702614172721917 -1.24,13.683924199694491,13.683924199694491,0.00043852000094254907,0.00043852000094254907,-21.457911694633182,-21.457911694633182,0.015900468939979897,0.015900468939979897 -1.2423529411764704,13.893206947693798,13.893206947693798,0.0003623262369428942,0.0003623262369428942,-22.713039546475926,-22.713039546475926,0.017273114858716545,0.017273114858716545 -1.244705882352941,15.618459346914278,15.618459346914278,0.00024953011267986314,0.00024953011267986314,-24.016633403840054,-24.016633403840054,0.020237813729493,0.020237813729493 -1.2470588235294118,16.26020552212783,16.26020552212783,0.00023135732142902138,0.00023135732142902138,-25.404877434820314,-25.404877434820314,0.024105187716141185,0.024105187716141185 -1.2494117647058822,16.420531176022386,16.420531176022386,0.00022740453360543065,0.00022740453360543065,-26.863191182851804,-26.863191182851804,0.027735677354866865,0.027735677354866865 -1.251764705882353,15.692272743564558,15.692272743564558,6.914978688831153e-05,6.914978688831153e-05,-28.36636987240859,-28.36636987240859,0.03012727886795238,0.03012727886795238 -1.2541176470588236,15.088736835589593,15.088736835589593,0.0002479497679730145,0.0002479497679730145,-29.897100882252342,-29.897100882252342,0.030629969018167395,0.030629969018167395 -1.256470588235294,14.673159990430573,14.673159990430573,0.00022795353382391135,0.00022795353382391135,-31.447082444891286,-31.447082444891286,0.028993290908615733,0.028993290908615733 -1.2588235294117647,15.087639484783244,15.087639484783244,0.00033967693091351014,0.00033967693091351014,-33.01488698330649,-33.01488698330649,0.025421381187408474,0.025421381187408474 -1.2611764705882353,15.475720879340635,15.475720879340635,0.0003285010284512547,0.0003285010284512547,-34.60592744070386,-34.60592744070386,0.020491866018527514,0.020491866018527514 -1.2635294117647058,17.273407960578673,17.273407960578673,0.00016664831578916013,0.00016664831578916013,-36.23536461627877,-36.23536461627877,0.01507468889516487,0.01507468889516487 -1.2658823529411765,18.610331617502695,18.610331617502695,0.0004238121258487491,0.0004238121258487491,-37.933728819958674,-37.933728819958674,0.010064845119778293,0.010064845119778293 -1.268235294117647,19.403348149258317,19.403348149258317,0.0007342990119577251,0.0007342990119577251,-39.75236227035966,-39.75236227035966,0.006205745859336357,0.006205745859336357 -1.2705882352941176,20.525420287550432,20.525420287550432,0.00018911406760107886,0.00018911406760107886,-41.73187861820703,-41.73187861820703,0.003819096908291559,0.003819096908291559 -1.2729411764705882,22.581105363617116,22.581105363617116,0.001141820034730906,0.001141820034730906,-43.8030722382706,-43.8030722382706,0.002547641982940966,0.002547641982940966 -1.2752941176470587,24.671140989237596,24.671140989237596,0.0020686779706570856,0.0020686779706570856,-45.91861561064292,-45.91861561064292,0.0017036699859253768,0.0017036699859253768 -1.2776470588235294,25.764489602221115,25.764489602221115,0.003710759986879588,0.003710759986879588,-48.276777287159064,-48.276777287159064,0.001214202055543128,0.001214202055543128 -1.28,26.422937775082467,26.422937775082467,0.0006520747377170728,0.0006520747377170728,-50.6034416637145,-50.6034416637145,0.0013621186253430996,0.0013621186253430996 -1.2823529411764705,23.55466717784004,23.55466717784004,0.000633481077006412,0.000633481077006412,-52.509196400355826,-52.509196400355826,0.0015951382772668539,0.0015951382772668539 -1.2847058823529411,24.814405536139457,24.814405536139457,0.0004149699364199444,0.0004149699364199444,-54.22710507027535,-54.22710507027535,0.0014532962736062487,0.0014532962736062487 -1.2870588235294118,26.236038228215286,26.236038228215286,0.00121859007011201,0.00121859007011201,-55.95108040383972,-55.95108040383972,0.0009394600740653279,0.0009394600740653279 -1.2894117647058823,26.642674015232746,26.642674015232746,0.005395824588326718,0.005395824588326718,-58.33188308251337,-58.33188308251337,0.00037197117210526496,0.00037197117210526496 -1.291764705882353,23.88282849245913,23.88282849245913,0.004581458793932076,0.004581458793932076,-61.187216972443856,-61.187216972443856,0.000670554940738179,0.000670554940738179 -1.2941176470588236,25.794215847691554,25.794215847691554,0.00377285889619497,0.00377285889619497,-62.88631028933075,-62.88631028933075,0.001053627025079759,0.001053627025079759 -1.296470588235294,26.23317156721297,26.23317156721297,0.003091490272192154,0.003091490272192154,-64.39833075354915,-64.39833075354915,0.0010729738944954892,0.0010729738944954892 -1.2988235294117647,27.000779795146524,27.000779795146524,0.002631451867089271,0.002631451867089271,-65.85513908685034,-65.85513908685034,0.0007381443631789222,0.0007381443631789222 -1.3011764705882352,28.441682075287517,28.441682075287517,0.01007093720951011,0.01007093720951011,-67.3527473054569,-67.3527473054569,0.00018017633584496945,0.00018017633584496945 -1.3035294117647058,26.039570613031565,26.039570613031565,0.006904312657526603,0.006904312657526603,-65.45219795335642,-65.45219795335642,0.0004001778119313221,0.0004001778119313221 -1.3058823529411765,26.48985664307977,26.48985664307977,0.004519210209655773,0.004519210209655773,-66.8411635811614,-66.8411635811614,0.000804517381742317,0.000804517381742317 -1.308235294117647,26.43863299657641,26.43863299657641,0.0016883867203936773,0.0016883867203936773,-68.18305008676954,-68.18305008676954,0.0009166316782483938,0.0009166316782483938 -1.3105882352941176,28.32054347132912,28.32054347132912,0.0013427010602778773,0.0013427010602778773,-69.46517817080066,-69.46517817080066,0.0007220039055054093,0.0007220039055054093 -1.3129411764705883,30.865381676065667,30.865381676065667,0.002908875320216727,0.002908875320216727,-70.49496914718637,-70.49496914718637,0.00032516022960347334,0.00032516022960347334 -1.3152941176470587,28.012331059751105,28.012331059751105,0.009640312739081901,0.009640312739081901,-69.84229079490672,-69.84229079490672,0.00026377263809145094,0.00026377263809145094 -1.3176470588235294,28.8454921904259,28.8454921904259,0.003191412616973355,0.003191412616973355,-70.73038273949705,-70.73038273949705,0.0006257647465273549,0.0006257647465273549 -1.32,30.019857132916492,30.019857132916492,0.0030508994979273774,0.0030508994979273774,-71.9218832669605,-71.9218832669605,0.0008004404805130233,0.0008004404805130233 -1.3223529411764705,30.287045779449787,30.287045779449787,0.0073101982615904875,0.0073101982615904875,-73.10860416523383,-73.10860416523383,0.0007288167667769101,0.0007288167667769101 -1.3247058823529412,30.97770269202449,30.97770269202449,0.007110677902223296,0.007110677902223296,-74.14635386600555,-74.14635386600555,0.00046322664915592233,0.00046322664915592233 -1.3270588235294118,30.147518678399926,30.147518678399926,0.015373601189144895,0.015373601189144895,-74.3439053907179,-74.3439053907179,0.00024428082203265173,0.00024428082203265173 -1.3294117647058823,30.142905830538485,30.142905830538485,0.005996615323188047,0.005996615323188047,-74.60616678436543,-74.60616678436543,0.00045874909184253374,0.00045874909184253374 -1.331764705882353,30.782811699663863,30.782811699663863,0.0021628991972837924,0.0021628991972837924,-75.61296952370621,-75.61296952370621,0.0006747355267782063,0.0006747355267782063 -1.3341176470588234,31.508932152728793,31.508932152728793,0.0031936814598911875,0.0031936814598911875,-76.72108704482035,-76.72108704482035,0.000711116347134397,0.000711116347134397 -1.336470588235294,30.906057035093152,30.906057035093152,0.0020693704215367604,0.0020693704215367604,-77.76618975858158,-77.76618975858158,0.0005663547960643446,0.0005663547960643446 -1.3388235294117647,32.24894354025652,32.24894354025652,0.0014766423903638476,0.0014766423903638476,-78.4590651600359,-78.4590651600359,0.0003469610291029033,0.0003469610291029033 -1.3411764705882352,32.75399179384144,32.75399179384144,0.003873345820848916,0.003873345820848916,-78.59143995635212,-78.59143995635212,0.00035300227026157787,0.00035300227026157787 -1.3435294117647059,32.966100707298224,32.966100707298224,0.006678934961785413,0.006678934961785413,-79.29509304781469,-79.29509304781469,0.0005594909736181148,0.0005594909736181148 -1.3458823529411765,32.266900053517055,32.266900053517055,0.002893171070390055,0.002893171070390055,-80.29170019672804,-80.29170019672804,0.0006825372148423987,0.0006825372148423987 -1.348235294117647,32.90017958802588,32.90017958802588,0.001223067526643135,0.001223067526643135,-81.31082260044175,-81.31082260044175,0.0006495669589477266,0.0006495669589477266 -1.3505882352941176,33.83376390205113,33.83376390205113,0.002273698288661608,0.002273698288661608,-82.19691026705728,-82.19691026705728,0.0004944036022521067,0.0004944036022521067 -1.3529411764705883,34.021534666827755,34.021534666827755,0.002868213883888678,0.002868213883888678,-82.68555893709068,-82.68555893709068,0.00036211631298973987,0.00036211631298973987 -1.3552941176470588,33.47449830371478,33.47449830371478,0.006745409897895214,0.006745409897895214,-83.0802246131135,-83.0802246131135,0.000444032760731938,0.000444032760731938 -1.3576470588235294,33.62983636293718,33.62983636293718,0.003083487185960232,0.003083487185960232,-83.87302379011282,-83.87302379011282,0.0005964883158684904,0.0005964883158684904 -1.3599999999999999,34.90590552669723,34.90590552669723,0.0025547710895986544,0.0025547710895986544,-84.83322437978137,-84.83322437978137,0.0006538049559929838,0.0006538049559929838 -1.3623529411764705,35.148637445371904,35.148637445371904,0.0010464370448253807,0.0010464370448253807,-85.78470760905918,-85.78470760905918,0.0005785014604131455,0.0005785014604131455 -1.3647058823529412,35.87347526024428,35.87347526024428,0.004013035067592669,0.004013035067592669,-86.5744418405516,-86.5744418405516,0.00042371951595091966,0.00042371951595091966 -1.3670588235294117,35.32058363735459,35.32058363735459,0.004989220539685776,0.004989220539685776,-86.96917727620796,-86.96917727620796,0.00032806671360917437,0.00032806671360917437 -1.3694117647058823,35.73224079345593,35.73224079345593,0.002062233451591722,0.002062233451591722,-87.40013576037383,-87.40013576037383,0.0004093580517102941,0.0004093580517102941 -1.371764705882353,36.56120374904706,36.56120374904706,0.0016208990263160265,0.0016208990263160265,-88.1757349316158,-88.1757349316158,0.0005109587474369777,0.0005109587474369777 -1.3741176470588234,36.67848131287896,36.67848131287896,0.0021798426270045737,0.0021798426270045737,-89.05186437765656,-89.05186437765656,0.000517504821061084,0.000517504821061084 -1.3764705882352941,36.87171059170601,36.87171059170601,0.004186356553373098,0.004186356553373098,-89.83065305201472,-89.83065305201472,0.0004251362717663627,0.0004251362717663627 -1.3788235294117648,36.50118498480858,36.50118498480858,0.003929358348727504,0.003929358348727504,-90.24859377476872,-90.24859377476872,0.0003388872672720437,0.0003388872672720437 -1.3811764705882352,38.20927195056471,38.20927195056471,0.0008683388367028587,0.0008683388367028587,-90.56031764893292,-90.56031764893292,0.00043883230650879583,0.00043883230650879583 -1.383529411764706,37.10576362836744,37.10576362836744,0.0012344885332770798,0.0012344885332770798,-91.24668818992073,-91.24668818992073,0.0006450477935213752,0.0006450477935213752 -1.3858823529411763,37.61506980521999,37.61506980521999,0.0021590501062984948,0.0021590501062984948,-92.09659484035494,-92.09659484035494,0.0008165949182903867,0.0008165949182903867 -1.388235294117647,38.06633508154063,38.06633508154063,0.0015457148858461197,0.0015457148858461197,-92.95506298302669,-92.95506298302669,0.000906600964144887,0.000906600964144887 -1.3905882352941177,37.54906757649253,37.54906757649253,0.0014917796526199146,0.0014917796526199146,-93.75246770929259,-93.75246770929259,0.0009370133634099125,0.0009370133634099125 -1.3929411764705881,39.303980282191056,39.303980282191056,0.001162290994951094,0.001162290994951094,-94.47544172634537,-94.47544172634537,0.0009820897791297017,0.0009820897791297017 -1.3952941176470588,39.91717747860321,39.91717747860321,0.0016225663566072782,0.0016225663566072782,-95.18780219035963,-95.18780219035963,0.0011044403377992254,0.0011044403377992254 -1.3976470588235295,39.675748955334015,39.675748955334015,0.0010660562001858216,0.0010660562001858216,-95.96193553080093,-95.96193553080093,0.0012882936663555422,0.0012882936663555422 -1.4,39.91673924110189,39.91673924110189,0.0009762115686454666,0.0009762115686454666,-96.79832760802879,-96.79832760802879,0.0014636205704954882,0.0014636205704954882 -1.4023529411764706,40.61367576034096,40.61367576034096,0.0005135402882224242,0.0005135402882224242,-97.66004209812193,-97.66004209812193,0.0015733109625588578,0.0015733109625588578 -1.4047058823529412,41.25235438390054,41.25235438390054,0.0004504344636391178,0.0004504344636391178,-98.50980724702767,-98.50980724702767,0.0016049787786017375,0.0016049787786017375 -1.4070588235294117,41.85460702257441,41.85460702257441,0.0007217738873241902,0.0007217738873241902,-99.3187100009838,-99.3187100009838,0.0015899244781195714,0.0015899244781195714 -1.4094117647058824,41.71911792579884,41.71911792579884,0.0009289722367638122,0.0009289722367638122,-100.08492564874014,-100.08492564874014,0.0015925112633468368,0.0015925112633468368 -1.4117647058823528,41.524312534475605,41.524312534475605,0.0009328943437387482,0.0009328943437387482,-100.83862987405656,-100.83862987405656,0.001656919469698118,0.001656919469698118 -1.4141176470588235,41.953108395360275,41.953108395360275,0.0006182797625714225,0.0006182797625714225,-101.61749671065556,-101.61749671065556,0.001771585847061216,0.001771585847061216 -1.4164705882352941,43.702180431026356,43.702180431026356,0.0006533647900003999,0.0006533647900003999,-102.4303481883209,-102.4303481883209,0.001887115694703529,0.001887115694703529 -1.4188235294117646,43.55670689573828,43.55670689573828,0.0007746108648150393,0.0007746108648150393,-103.26086323752753,-103.26086323752753,0.0019555206667581453,0.0019555206667581453 -1.4211764705882353,43.87535899522811,43.87535899522811,0.0009787163236750728,0.0009787163236750728,-104.08331273154701,-104.08331273154701,0.0019650223295891982,0.0019650223295891982 -1.423529411764706,43.90490573954544,43.90490573954544,0.0002079157358608744,0.0002079157358608744,-104.87688386946573,-104.87688386946573,0.001948833189038917,0.001948833189038917 -1.4258823529411764,44.22718583500265,44.22718583500265,0.0002874601259607177,0.0002874601259607177,-105.63836413554854,-105.63836413554854,0.0019567473043862593,0.0019567473043862593 -1.428235294117647,44.78393779121116,44.78393779121116,0.00022154580163256322,0.00022154580163256322,-106.38835962749538,-106.38835962749538,0.0020313298263038137,0.0020313298263038137 -1.4305882352941177,45.08667833684024,45.08667833684024,0.00016572999034657478,0.00016572999034657478,-107.15522215107723,-107.15522215107723,0.002171732979545808,0.002171732979545808 -1.4329411764705882,45.58830096903278,45.58830096903278,0.000525651260679232,0.000525651260679232,-107.947774983036,-107.947774983036,0.0023322544798673635,0.0023322544798673635 -1.4352941176470588,45.42517579255303,45.42517579255303,0.00030956700147364435,0.00030956700147364435,-108.7577491227156,-108.7577491227156,0.00247323975849065,0.00247323975849065 -1.4376470588235293,47.86320993847672,47.86320993847672,0.00027085876361344636,0.00027085876361344636,-109.56609732622391,-109.56609732622391,0.0025747074144041138,0.0025747074144041138 -1.44,48.448215622726764,48.448215622726764,0.00034179733528778736,0.00034179733528778736,-110.35805636749971,-110.35805636749971,0.0026567746489057184,0.0026567746489057184 -1.4423529411764706,47.66715145068073,47.66715145068073,0.0006280774219059642,0.0006280774219059642,-111.12978573340304,-111.12978573340304,0.002761898556979945,0.002761898556979945 -1.444705882352941,48.106376322145515,48.106376322145515,0.0003853075767929222,0.0003853075767929222,-111.89146183542522,-111.89146183542522,0.0029339940335165703,0.0029339940335165703 -1.4470588235294117,48.09866711084298,48.09866711084298,0.0002458207647091536,0.0002458207647091536,-112.65978526710045,-112.65978526710045,0.003186776343098384,0.003186776343098384 -1.4494117647058824,48.11034051877869,48.11034051877869,3.9018600779264544e-05,3.9018600779264544e-05,-113.4443801488476,-113.4443801488476,0.003497413654257424,0.003497413654257424 -1.4517647058823528,49.32939536588122,49.32939536588122,0.00021966647875189718,0.00021966647875189718,-114.24276810576775,-114.24276810576775,0.00382662483941109,0.00382662483941109 -1.4541176470588235,49.46676862270651,49.46676862270651,0.00034175693203451177,0.00034175693203451177,-115.04504982372359,-115.04504982372359,0.004147935294405087,0.004147935294405087 -1.4564705882352942,49.36090087641531,49.36090087641531,0.0002170614269790615,0.0002170614269790615,-115.84165971595723,-115.84165971595723,0.004465206702308245,0.004465206702308245 -1.4588235294117646,48.62548707382068,48.62548707382068,0.00018167481406504389,0.00018167481406504389,-116.62695296569197,-116.62695296569197,0.004811221482505492,0.004811221482505492 -1.4611764705882353,48.49499125712474,48.49499125712474,2.343711962366416e-05,2.343711962366416e-05,-117.40335720631542,-117.40335720631542,0.005233037166067485,0.005233037166067485 -1.4635294117647057,47.061934984747005,47.061934984747005,0.00017880285163300968,0.00017880285163300968,-118.17841749149787,-118.17841749149787,0.005769762920076671,0.005769762920076671 -1.4658823529411764,46.40565552189545,46.40565552189545,0.00019127980944441512,0.00019127980944441512,-118.96002517150202,-118.96002517150202,0.006432948696834188,0.006432948696834188 -1.468235294117647,47.14075369481823,47.14075369481823,0.0001261935876703223,0.0001261935876703223,-119.75131271992322,-119.75131271992322,0.007203974744547086,0.007203974744547086 -1.4705882352941178,47.04422830031756,47.04422830031756,9.949843019722066e-05,9.949843019722066e-05,-120.55051009889522,-120.55051009889522,0.008057195182832443,0.008057195182832443 -1.4729411764705882,47.33169548961115,47.33169548961115,0.00011980987289782887,0.00011980987289782887,-121.35348207849019,-121.35348207849019,0.008974890131259855,0.008974890131259855 -1.4752941176470589,47.93038716575959,47.93038716575959,0.0001685240886105406,0.0001685240886105406,-122.15594717429668,-122.15594717429668,0.009968091669620255,0.009968091669620255 -1.4776470588235295,47.92396995259704,47.92396995259704,0.00017922494500260307,0.00017922494500260307,-122.95638710852421,-122.95638710852421,0.01107266123784866,0.01107266123784866 -1.48,47.8407955298769,47.8407955298769,0.00019322992925114427,0.00019322992925114427,-123.7556004399652,-123.7556004399652,0.012336913463792403,0.012336913463792403 -1.4823529411764707,47.69643232474272,47.69643232474272,0.0001827651216747611,0.0001827651216747611,-124.5562870356457,-124.5562870356457,0.013808402279137792,0.013808402279137792 -1.484705882352941,47.86174703650281,47.86174703650281,0.00011567119140512466,0.00011567119140512466,-125.3612875375562,-125.3612875375562,0.015510024939854613,0.015510024939854613 -1.4870588235294118,47.50150390069027,47.50150390069027,0.00012048095177949955,0.00012048095177949955,-126.17200549860246,-126.17200549860246,0.01744037656297616,0.01744037656297616 -1.4894117647058822,47.75934334626277,47.75934334626277,7.815653034901206e-05,7.815653034901206e-05,-126.98812901851099,-126.98812901851099,0.019578480245762083,0.019578480245762083 -1.4917647058823529,47.36768758799868,47.36768758799868,9.523195844710534e-05,9.523195844710534e-05,-127.80796665481576,-127.80796665481576,0.021902829814442398,0.021902829814442398 -1.4941176470588236,47.58692685039013,47.58692685039013,9.059134132008968e-05,9.059134132008968e-05,-128.62967161288674,-128.62967161288674,0.0243972571023661,0.0243972571023661 -1.4964705882352942,47.44910424801852,47.44910424801852,9.438244836756152e-05,9.438244836756152e-05,-129.45137415426825,-129.45137415426825,0.027068135655435602,0.027068135655435602 -1.4988235294117647,47.32235253743102,47.32235253743102,0.00012712279643333068,0.00012712279643333068,-130.2721940885191,-130.2721940885191,0.029933423910228702,0.029933423910228702 -1.5011764705882353,47.360531510465606,47.360531510465606,0.00014199475084999345,0.00014199475084999345,-131.09197370834875,-131.09197370834875,0.03301920460348454,0.03301920460348454 -1.5035294117647058,47.27791832865097,47.27791832865097,0.00016123903350884458,0.00016123903350884458,-131.91096145188504,-131.91096145188504,0.03634186048467633,0.03634186048467633 -1.5058823529411764,47.20728428730644,47.20728428730644,0.0001483886145106335,0.0001483886145106335,-132.72959582811617,-132.72959582811617,0.03989631759808027,0.03989631759808027 -1.5082352941176471,47.19478664169002,47.19478664169002,0.00013357933610631307,0.00013357933610631307,-133.54800547567967,-133.54800547567967,0.04364841883202008,0.04364841883202008 -1.5105882352941176,47.15467620009088,47.15467620009088,0.00011922025387369687,0.00011922025387369687,-134.36584816770406,-134.36584816770406,0.04754237907669069,0.04754237907669069 -1.5129411764705882,47.29531858999643,47.29531858999643,0.00011426743788423107,0.00011426743788423107,-135.18231438253346,-135.18231438253346,0.051508996807062474,0.051508996807062474 -1.5152941176470587,47.264542988919125,47.264542988919125,0.00010568058814693489,0.00010568058814693489,-135.99626996419423,-135.99626996419423,0.05547878328849007,0.05547878328849007 -1.5176470588235293,47.21616952868446,47.21616952868446,0.00010286272075139487,0.00010286272075139487,-136.80645691972063,-136.80645691972063,0.05939860639190773,0.05939860639190773 -1.52,47.115719304605456,47.115719304605456,0.00010864135435198267,0.00010864135435198267,-137.6117843462649,-137.6117843462649,0.06323863892474632,0.06323863892474632 -1.5223529411764707,46.98106285134798,46.98106285134798,0.00011136393989858218,0.00011136393989858218,-138.41155426925218,-138.41155426925218,0.0669920559851936,0.0669920559851936 -1.5247058823529411,46.98351894622274,46.98351894622274,0.00011332562593831121,0.00011332562593831121,-139.20540282777844,-139.20540282777844,0.07066644883598741,0.07066644883598741 -1.5270588235294118,46.92647597514391,46.92647597514391,0.00011821469296378538,0.00011821469296378538,-139.99333941554931,-139.99333941554931,0.07427329600039867,0.07427329600039867 -1.5294117647058822,46.85984967410804,46.85984967410804,0.00012119798338737191,0.00012119798338737191,-140.7756346239586,-140.7756346239586,0.07781216948214559,0.07781216948214559 -1.531764705882353,46.80852834186911,46.80852834186911,0.00012479478908242832,0.00012479478908242832,-141.55265474905173,-141.55265474905173,0.08126388481401502,0.08126388481401502 -1.5341176470588236,46.79573609216257,46.79573609216257,0.00011577589079753968,0.00011577589079753968,-142.32457561739906,-142.32457561739906,0.0845838030379121,0.0845838030379121 -1.536470588235294,46.76190894321775,46.76190894321775,0.00011667056039581086,0.00011667056039581086,-143.09141506294756,-143.09141506294756,0.08772314704225517,0.08772314704225517 -1.5388235294117647,46.84232085421969,46.84232085421969,0.0001093895478013874,0.0001093895478013874,-143.8527689382571,-143.8527689382571,0.09063081467714065,0.09063081467714065 -1.5411764705882351,46.81611989042393,46.81611989042393,0.00010881119388836535,0.00010881119388836535,-144.6083193959407,-144.6083193959407,0.09327460654819422,0.09327460654819422 -1.5435294117647058,46.74872628440853,46.74872628440853,0.00011543644944939245,0.00011543644944939245,-145.35749970531768,-145.35749970531768,0.09565200901547982,0.09565200901547982 -1.5458823529411767,46.75410351883471,46.75410351883471,0.00011061057714973466,0.00011061057714973466,-146.1000594012669,-146.1000594012669,0.09778808593306931,0.09778808593306931 -1.5482352941176472,46.74193763072628,46.74193763072628,0.0001042647659158833,0.0001042647659158833,-146.83587766855018,-146.83587766855018,0.0997288644964811,0.0997288644964811 -1.5505882352941176,46.56915860343059,46.56915860343059,0.00010798393163310947,0.00010798393163310947,-147.5652240687829,-147.5652240687829,0.10152417987025417,0.10152417987025417 -1.5529411764705883,46.51243736683606,46.51243736683606,0.00010902193151411889,0.00010902193151411889,-148.28854228690753,-148.28854228690753,0.1032084577914873,0.1032084577914873 -1.5552941176470587,46.491680719790466,46.491680719790466,0.00010911154603521431,0.00010911154603521431,-149.0064643878778,-149.0064643878778,0.10478968379708942,0.10478968379708942 -1.5576470588235294,46.4629786684253,46.4629786684253,0.00010273597820114076,0.00010273597820114076,-149.71944900227237,-149.71944900227237,0.10624669829318861,0.10624669829318861 -1.5599999999999998,46.34797811238926,46.34797811238926,0.00010563870327973087,0.00010563870327973087,-150.427808132363,-150.427808132363,0.10753671756355326,0.10753671756355326 -1.5623529411764705,46.38429856661542,46.38429856661542,9.847191154063597e-05,9.847191154063597e-05,-151.1315091397205,-151.1315091397205,0.10861492491295846,0.10861492491295846 -1.5647058823529412,46.392535329722286,46.392535329722286,9.87731762394171e-05,9.87731762394171e-05,-151.83032026237717,-151.83032026237717,0.10944625600145298,0.10944625600145298 -1.5670588235294118,46.372664546364895,46.372664546364895,0.00010844531516180957,0.00010844531516180957,-152.52387237783506,-152.52387237783506,0.1100246847224863,0.1100246847224863 -1.5694117647058823,46.35889913191197,46.35889913191197,0.0001121516485823518,0.0001121516485823518,-153.21187291646345,-153.21187291646345,0.1103726102986899,0.1103726102986899 -1.571764705882353,46.310744469176974,46.310744469176974,0.00011001444504980222,0.00011001444504980222,-153.89409166942923,-153.89409166942923,0.11053424261519389,0.11053424261519389 -1.5741176470588236,46.27094185831623,46.27094185831623,0.00010707134388045752,0.00010707134388045752,-154.5706803301804,-154.5706803301804,0.11056086641110982,0.11056086641110982 -1.576470588235294,46.17033468240692,46.17033468240692,0.00010730588423987104,0.00010730588423987104,-155.2418606811813,-155.2418606811813,0.11049384451747334,0.11049384451747334 -1.5788235294117647,46.133716129094054,46.133716129094054,9.791559426633106e-05,9.791559426633106e-05,-155.9080245970456,-155.9080245970456,0.11035947939668307,0.11035947939668307 -1.5811764705882352,46.04057357052065,46.04057357052065,0.00010872064761137245,0.00010872064761137245,-156.5696050436048,-156.5696050436048,0.11015588260235742,0.11015588260235742 -1.5835294117647059,46.04213321303501,46.04213321303501,8.861177287300225e-05,8.861177287300225e-05,-157.22680819187698,-157.22680819187698,0.10986353746360909,0.10986353746360909 -1.5858823529411765,45.99471861894868,45.99471861894868,9.098032752397617e-05,9.098032752397617e-05,-157.87975737331547,-157.87975737331547,0.10946460546419284,0.10946460546419284 -1.5882352941176474,45.98427297293463,45.98427297293463,9.564756884127145e-05,9.564756884127145e-05,-158.52841252216243,-158.52841252216243,0.10894071428239337,0.10894071428239337 -1.5905882352941176,45.944864337163565,45.944864337163565,9.099251430587813e-05,9.099251430587813e-05,-159.17258981795928,-159.17258981795928,0.10828939726861109,0.10828939726861109 -1.592941176470588,45.92839564883707,45.92839564883707,9.78521725041334e-05,9.78521725041334e-05,-159.8121569235885,-159.8121569235885,0.10752103044434112,0.10752103044434112 -1.5952941176470588,45.85372848188042,45.85372848188042,0.00010534209391391733,0.00010534209391391733,-160.44702659287353,-160.44702659287353,0.1066579563806538,0.1066579563806538 -1.5976470588235294,45.7716067616544,45.7716067616544,0.00010345317632866379,0.00010345317632866379,-161.0772370340635,-161.0772370340635,0.1057208464256156,0.1057208464256156 -1.6,45.72835725148611,45.72835725148611,0.00010160612704539633,0.00010160612704539633,-161.70279341613906,-161.70279341613906,0.10473029638943936,0.10473029638943936 -1.6023529411764705,45.68707249264451,45.68707249264451,9.740699690857717e-05,9.740699690857717e-05,-162.32377439514204,-162.32377439514204,0.10369654087122732,0.10369654087122732 -1.6047058823529412,45.66566401562583,45.66566401562583,9.632999572786475e-05,9.632999572786475e-05,-162.94027590780377,-162.94027590780377,0.1026277805442789,0.1026277805442789 -1.6070588235294117,45.645438418173214,45.645438418173214,9.433571162845847e-05,9.433571162845847e-05,-163.552193710652,-163.552193710652,0.10153457415077555,0.10153457415077555 -1.6094117647058825,45.71960209009112,45.71960209009112,9.61941815776847e-05,9.61941815776847e-05,-164.15956983608618,-164.15956983608618,0.10043116802670905,0.10043116802670905 -1.611764705882353,45.73153103853453,45.73153103853453,9.30454561806644e-05,9.30454561806644e-05,-164.7623950961785,-164.7623950961785,0.09933944970760997,0.09933944970760997 -1.6141176470588237,45.69886500263127,45.69886500263127,9.264762580769609e-05,9.264762580769609e-05,-165.36068593233546,-165.36068593233546,0.09828188870206339,0.09828188870206339 -1.616470588235294,45.690638357838814,45.690638357838814,0.00010196666861203381,0.00010196666861203381,-165.95463876178079,-165.95463876178079,0.09727707337326472,0.09727707337326472 -1.6188235294117648,45.61108936530319,45.61108936530319,0.0001015189142836051,0.0001015189142836051,-166.5444823440412,-166.5444823440412,0.09633471161497807,0.09633471161497807 -1.6211764705882352,45.45776174776847,45.45776174776847,9.609354165238184e-05,9.609354165238184e-05,-167.1302998036884,-167.1302998036884,0.09545434069233495,0.09545434069233495 -1.6235294117647059,45.329201224582,45.329201224582,8.294232140021426e-05,8.294232140021426e-05,-167.71225601473617,-167.71225601473617,0.09463136726426212,0.09463136726426212 -1.6258823529411766,45.35402250449684,45.35402250449684,7.177255417049434e-05,7.177255417049434e-05,-168.29020217403152,-168.29020217403152,0.0938634160403961,0.0938634160403961 -1.6282352941176468,45.277455295265,45.277455295265,6.555450889253367e-05,6.555450889253367e-05,-168.86402053000066,-168.86402053000066,0.09316123283868843,0.09316123283868843 -1.630588235294118,45.336490580747956,45.336490580747956,7.193956290763906e-05,7.193956290763906e-05,-169.4335892551142,-169.4335892551142,0.09255018793109858,0.09255018793109858 -1.6329411764705881,45.25508107479311,45.25508107479311,7.420531512549487e-05,7.420531512549487e-05,-169.9989110237358,-169.9989110237358,0.09207004387212504,0.09207004387212504 -1.6352941176470588,45.32153984891829,45.32153984891829,8.633073465398871e-05,8.633073465398871e-05,-170.56017489216708,-170.56017489216708,0.09176267168765045,0.09176267168765045 -1.6376470588235295,45.18877791110659,45.18877791110659,8.533898386973152e-05,8.533898386973152e-05,-171.11778832218982,-171.11778832218982,0.09165978514754304,0.09165978514754304 -1.6400000000000001,45.103031817450486,45.103031817450486,8.635343152088881e-05,8.635343152088881e-05,-171.67230810128405,-171.67230810128405,0.09177706008226864,0.09177706008226864 -1.6423529411764706,44.97380170692404,44.97380170692404,9.592668906738275e-05,9.592668906738275e-05,-172.2241438942274,-172.2241438942274,0.09211063125890717,0.09211063125890717 -1.6447058823529415,44.896081661579764,44.896081661579764,9.274012649976902e-05,9.274012649976902e-05,-172.77359558217165,-172.77359558217165,0.09265028789077859,0.09265028789077859 -1.6470588235294117,44.884302589445454,44.884302589445454,8.90971212898773e-05,8.90971212898773e-05,-173.3206677118007,-173.3206677118007,0.09338685573491326,0.09338685573491326 -1.6494117647058824,44.834759339138685,44.834759339138685,7.954418370786337e-05,7.954418370786337e-05,-173.86542929192464,-173.86542929192464,0.09433083373785076,0.09433083373785076 -1.651764705882353,44.774561400705366,44.774561400705366,8.219003691235307e-05,8.219003691235307e-05,-174.40780408328627,-174.40780408328627,0.0955141778990255,0.0955141778990255 -1.6541176470588237,44.81734077763434,44.81734077763434,7.971879055545339e-05,7.971879055545339e-05,-174.94806266697282,-174.94806266697282,0.09698587892895681,0.09698587892895681 -1.6564705882352944,44.80583056027415,44.80583056027415,7.2341272295825e-05,7.2341272295825e-05,-175.48665404544826,-175.48665404544826,0.09879784982688598,0.09879784982688598 -1.6588235294117644,44.79145304000593,44.79145304000593,6.959171648032482e-05,6.959171648032482e-05,-176.02424390299882,-176.02424390299882,0.10098536968193253,0.10098536968193253 -1.6611764705882353,44.78741934685848,44.78741934685848,9.697469346196236e-05,9.697469346196236e-05,-176.5616455787034,-176.5616455787034,0.10356132968239573,0.10356132968239573 -1.663529411764706,44.731761346372664,44.731761346372664,9.250911328277123e-05,9.250911328277123e-05,-177.0993859329479,-177.0993859329479,0.10651278780293745,0.10651278780293745 -1.6658823529411766,44.638180844352554,44.638180844352554,8.708619837890403e-05,8.708619837890403e-05,-177.63773065373186,-177.63773065373186,0.10981762049133523,0.10981762049133523 -1.668235294117647,44.523328865676575,44.523328865676575,8.362447948722184e-05,8.362447948722184e-05,-178.17682760563008,-178.17682760563008,0.11345904722463687,0.11345904722463687 -1.670588235294118,44.45845208716536,44.45845208716536,7.967642170697259e-05,7.967642170697259e-05,-178.71660282190723,-178.71660282190723,0.11745341471742832,0.11745341471742832 -1.672941176470588,44.52880419083899,44.52880419083899,7.657963463777842e-05,7.657963463777842e-05,-179.25707806319474,-179.25707806319474,0.12184351589236002,0.12184351589236002 -1.6752941176470588,44.4760986983225,44.4760986983225,6.497629622969455e-05,6.497629622969455e-05,-179.79857513088766,-179.79857513088766,0.12670377018742435,0.12670377018742435 -1.6776470588235295,44.52178865526825,44.52178865526825,6.376861041749875e-05,6.376861041749875e-05,-180.34185491281139,-180.34185491281139,0.13210409953601185,0.13210409953601185 -1.68,44.45552201945005,44.45552201945005,6.554673718585674e-05,6.554673718585674e-05,-180.88787275390627,-180.88787275390627,0.13807960885460388,0.13807960885460388 -1.6823529411764706,44.408595970428145,44.408595970428145,7.239342295248812e-05,7.239342295248812e-05,-181.43763657136745,-181.43763657136745,0.14460753665692277,0.14460753665692277 -1.684705882352941,44.36812648924964,44.36812648924964,7.933437748516438e-05,7.933437748516438e-05,-181.99199760625396,-181.99199760625396,0.15158327156214474,0.15158327156214474 -1.6870588235294117,44.273106126037156,44.273106126037156,7.597214460016731e-05,7.597214460016731e-05,-182.55143620038757,-182.55143620038757,0.15883728443710562,0.15883728443710562 -1.6894117647058824,44.232864533438125,44.232864533438125,7.8747256928435e-05,7.8747256928435e-05,-183.1159058017603,-183.1159058017603,0.16614403284085738,0.16614403284085738 -1.6917647058823528,44.09518735519974,44.09518735519974,7.527891346705657e-05,7.527891346705657e-05,-183.68495018136943,-183.68495018136943,0.17326366644151278,0.17326366644151278 -1.6941176470588235,43.96316225275829,43.96316225275829,7.052565118855346e-05,7.052565118855346e-05,-184.25780341733653,-184.25780341733653,0.17996296020546046,0.17996296020546046 -1.6964705882352942,43.92290916241459,43.92290916241459,6.982297708708417e-05,6.982297708708417e-05,-184.83349976899513,-184.83349976899513,0.18605263382478338,0.18605263382478338 -1.6988235294117644,43.96858540613288,43.96858540613288,6.690873063795926e-05,6.690873063795926e-05,-185.41115417478196,-185.41115417478196,0.1913925408851283,0.1913925408851283 -1.7011764705882353,43.910162990024325,43.910162990024325,6.773706958651269e-05,6.773706958651269e-05,-185.9898245603403,-185.9898245603403,0.19589481782383336,0.19589481782383336 -1.7035294117647062,44.006454876268364,44.006454876268364,6.928042237628774e-05,6.928042237628774e-05,-186.5688927781422,-186.5688927781422,0.1995195970491188,0.1995195970491188 -1.7058823529411766,43.98114535360719,43.98114535360719,6.959422261635357e-05,6.959422261635357e-05,-187.1478088499588,-187.1478088499588,0.20225970852765485,0.20225970852765485 -1.7082352941176469,43.95747717238561,43.95747717238561,7.343232508486185e-05,7.343232508486185e-05,-187.72627284282768,-187.72627284282768,0.20411806451055844,0.20411806451055844 -1.7105882352941175,43.96065468303523,43.96065468303523,7.352009403611954e-05,7.352009403611954e-05,-188.30395845580463,-188.30395845580463,0.20509703039150354,0.20509703039150354 -1.7129411764705882,43.872383044975805,43.872383044975805,7.90725840378128e-05,7.90725840378128e-05,-188.88074411806693,-188.88074411806693,0.20519402865190273,0.20519402865190273 -1.7152941176470589,43.74785741705137,43.74785741705137,7.75529362816692e-05,7.75529362816692e-05,-189.45642797455648,-189.45642797455648,0.2043967200672656,0.2043967200672656 -1.7176470588235295,43.66243347135007,43.66243347135007,7.764756508827124e-05,7.764756508827124e-05,-190.0306610126861,-190.0306610126861,0.20269460793052615,0.20269460793052615 -1.72,43.57091233334848,43.57091233334848,7.511973094203403e-05,7.511973094203403e-05,-190.60296394501506,-190.60296394501506,0.20009191232518603,0.20009191232518603 -1.7223529411764709,43.34024914488613,43.34024914488613,9.24475022898043e-05,9.24475022898043e-05,-191.17285123714464,-191.17285123714464,0.19662549804647117,0.19662549804647117 -1.7247058823529409,43.55526486820821,43.55526486820821,7.72646654049865e-05,7.72646654049865e-05,-191.73962274657762,-191.73962274657762,0.19237377616831022,0.19237377616831022 -1.7270588235294118,43.458535927473406,43.458535927473406,7.008049218373021e-05,7.008049218373021e-05,-192.30267352943972,-192.30267352943972,0.18746156360749688,0.18746156360749688 -1.7294117647058824,43.532674980679644,43.532674980679644,7.941696133905476e-05,7.941696133905476e-05,-192.86144642153397,-192.86144642153397,0.18205602228989645,0.18205602228989645 -1.731764705882353,43.58655030604047,43.58655030604047,6.903867945434137e-05,6.903867945434137e-05,-193.41553720639143,-193.41553720639143,0.17634535839212834,0.17634535839212834 -1.7341176470588235,43.53543705758993,43.53543705758993,7.031800011214955e-05,7.031800011214955e-05,-193.96495542873376,-193.96495542873376,0.17052259951457227,0.17052259951457227 -1.7364705882352938,43.48923702862211,43.48923702862211,7.394254174010897e-05,7.394254174010897e-05,-194.5098811962551,-194.5098811962551,0.1647553557546292,0.1647553557546292 -1.7388235294117647,43.40522516897663,43.40522516897663,8.66052041333171e-05,8.66052041333171e-05,-195.0509436719052,-195.0509436719052,0.15916452237257925,0.15916452237257925 -1.7411764705882353,43.37507940662541,43.37507940662541,0.00010235653553152412,0.00010235653553152412,-195.58884628603323,-195.58884628603323,0.15380258008076686,0.15380258008076686 -1.743529411764706,43.32557858943508,43.32557858943508,9.580315610289373e-05,9.580315610289373e-05,-196.1244921283943,-196.1244921283943,0.14866017884350008,0.14866017884350008 -1.7458823529411764,43.3627659332934,43.3627659332934,8.956228767522404e-05,8.956228767522404e-05,-196.65842936114245,-196.65842936114245,0.14367593425172068,0.14367593425172068 -1.748235294117647,43.13369143872521,43.13369143872521,8.562988407091122e-05,8.562988407091122e-05,-197.19114885406827,-197.19114885406827,0.13875923200148527,0.13875923200148527 -1.7505882352941176,43.065648990129866,43.065648990129866,7.643838715587897e-05,7.643838715587897e-05,-197.72254849728768,-197.72254849728768,0.1338238873344203,0.1338238873344203 -1.7529411764705882,43.21527099248328,43.21527099248328,6.210158129518741e-05,6.210158129518741e-05,-198.25229647752874,-198.25229647752874,0.12880375658067963,0.12880375658067963 -1.7552941176470591,43.30835189604462,43.30835189604462,6.626659294645788e-05,6.626659294645788e-05,-198.77978320572493,-198.77978320572493,0.12368046667830254,0.12368046667830254 -1.7576470588235293,43.34711314284992,43.34711314284992,7.081403932894944e-05,7.081403932894944e-05,-199.3041495672834,-199.3041495672834,0.1184809904482714,0.1184809904482714 -1.76,43.21542266817264,43.21542266817264,6.239335811939771e-05,6.239335811939771e-05,-199.82467890575876,-199.82467890575876,0.11327525049330081,0.11327525049330081 -1.7623529411764705,43.27444190097261,43.27444190097261,5.960013328808296e-05,5.960013328808296e-05,-200.34082611768414,-200.34082611768414,0.10815109882515743,0.10815109882515743 -1.7647058823529411,43.15438087524994,43.15438087524994,8.781585358658366e-05,8.781585358658366e-05,-200.85239486963178,-200.85239486963178,0.10321208275763043,0.10321208275763043 -1.7670588235294116,43.384212238963144,43.384212238963144,0.00011330122675357713,0.00011330122675357713,-201.35952479352875,-201.35952479352875,0.09853575338167139,0.09853575338167139 -1.7694117647058827,43.172280962784825,43.172280962784825,0.00010938151914557416,0.00010938151914557416,-201.862765283499,-201.862765283499,0.09417420803856529,0.09417420803856529 -1.7717647058823531,42.85713214782639,42.85713214782639,7.850695131625002e-05,7.850695131625002e-05,-202.36270361768993,-202.36270361768993,0.09012756801576777,0.09012756801576777 -1.7741176470588236,42.56091747723895,42.56091747723895,8.328677463355353e-05,8.328677463355353e-05,-202.8600222975543,-202.8600222975543,0.0863722193163963,0.0863722193163963 -1.776470588235294,42.562143244708125,42.562143244708125,0.00010509473992783457,0.00010509473992783457,-203.35511369224577,-203.35511369224577,0.08285812979599874,0.08285812979599874 -1.7788235294117647,42.58947750913208,42.58947750913208,9.33005557821456e-05,9.33005557821456e-05,-203.8481486355703,-203.8481486355703,0.07952764839389623,0.07952764839389623 -1.7811764705882354,42.4764571238744,42.4764571238744,6.122625520483453e-05,6.122625520483453e-05,-204.33868243858183,-204.33868243858183,0.07634796790059065,0.07634796790059065 -1.7835294117647063,42.48627780786118,42.48627780786118,7.656873360405481e-05,7.656873360405481e-05,-204.82621975609626,-204.82621975609626,0.07330302718340574,0.07330302718340574 -1.7858823529411765,43.34101574960703,43.34101574960703,6.603619670938476e-05,6.603619670938476e-05,-205.3101577662857,-205.3101577662857,0.07041206236345428,0.07041206236345428 -1.7882352941176471,43.08852532053969,43.08852532053969,9.614791190847533e-05,9.614791190847533e-05,-205.79004606652023,-205.79004606652023,0.0677075310611221,0.0677075310611221 -1.7905882352941174,42.79401625600174,42.79401625600174,7.694363289660046e-05,7.694363289660046e-05,-206.2657817600269,-206.2657817600269,0.06523900659086124,0.06523900659086124 -1.7929411764705883,43.111418397924794,43.111418397924794,0.00013870606072335784,0.00013870606072335784,-206.73764846245035,-206.73764846245035,0.06305191329146934,0.06305191329146934 -1.795294117647059,43.16400361729619,43.16400361729619,0.00013106050290264285,0.00013106050290264285,-207.20653365041179,-207.20653365041179,0.061166255228660864,0.061166255228660864 -1.7976470588235294,42.8552996981896,42.8552996981896,0.00014362832346897047,0.00014362832346897047,-207.67317876503762,-207.67317876503762,0.059577859310145316,0.059577859310145316 -1.8,42.192444278360725,42.192444278360725,0.00015314374610388251,0.00015314374610388251,-208.1386718481542,-208.1386718481542,0.05825864795987703,0.05825864795987703 diff --git a/sparameters/rotate_f258530e_b1a4d58f.yml b/sparameters/rotate_f258530e_b1a4d58f.yml deleted file mode 100644 index 25644066..00000000 --- a/sparameters/rotate_f258530e_b1a4d58f.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 30 -fiber_xoffset: 31 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 267.9288637638092 -compute_time_minutes: 4.465481062730153 diff --git a/sparameters/rotate_f258530e_b5fb72a1.csv b/sparameters/rotate_f258530e_b5fb72a1.csv deleted file mode 100644 index a1858c10..00000000 --- a/sparameters/rotate_f258530e_b5fb72a1.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,2.2687864787434755,2.2687864787434755,0.46781057462979103,0.46781057462979103,-2.9991490087850696,-2.9991490087850696,0.0032510363139712,0.0032510363139712 -1.2023529411764706,3.007850440597665,3.007850440597665,0.42354614523337414,0.42354614523337414,-3.833367646201028,-3.833367646201028,0.0036306700184913538,0.0036306700184913538 -1.204705882352941,3.7152445236017684,3.7152445236017684,0.45546213764266924,0.45546213764266924,-4.625012031170837,-4.625012031170837,0.003209691724709145,0.003209691724709145 -1.2070588235294117,4.5777177029179175,4.5777177029179175,0.622745245883374,0.622745245883374,-5.512523357334464,-5.512523357334464,0.0021744620325607296,0.0021744620325607296 -1.2094117647058824,6.013359254110389,6.013359254110389,1.0757682873843444,1.0757682873843444,-6.920585375801923,-6.920585375801923,0.0012143279817404518,0.0012143279817404518 -1.2117647058823529,7.71697965286463,7.71697965286463,0.817240298209682,0.817240298209682,-8.611518384473069,-8.611518384473069,0.0016428264504430993,0.0016428264504430993 -1.2141176470588235,8.637641425333616,8.637641425333616,0.5652997357242787,0.5652997357242787,-9.57591075514423,-9.57591075514423,0.0024710974348201597,0.0024710974348201597 -1.216470588235294,9.312038388307219,9.312038388307219,0.5026770770286153,0.5026770770286153,-10.328547084038833,-10.328547084038833,0.0027857515292729817,0.0027857515292729817 -1.2188235294117646,9.958471142593593,9.958471142593593,0.5481830650407672,0.5481830650407672,-11.042313118835898,-11.042313118835898,0.0024425900476773457,0.0024425900476773457 -1.2211764705882353,10.72003300012285,10.72003300012285,0.7960249907783533,0.7960249907783533,-11.826082139638537,-11.826082139638537,0.0015824074113551373,0.0015824074113551373 -1.2235294117647058,12.11763042079014,12.11763042079014,1.8293034963941184,1.8293034963941184,-13.207442747987612,-13.207442747987612,0.0006678948390241238,0.0006678948390241238 -1.2258823529411764,14.113296389667427,14.113296389667427,1.1499525685970204,1.1499525685970204,-15.196761676847744,-15.196761676847744,0.0010800728576917155,0.0010800728576917155 -1.228235294117647,14.948355106343806,14.948355106343806,0.6987445106436204,0.6987445106436204,-16.06804335059127,-16.06804335059127,0.00182799464260402,0.00182799464260402 -1.2305882352941175,15.558421824206482,15.558421824206482,0.5988014979841827,0.5988014979841827,-16.742019673702384,-16.742019673702384,0.0021354948415128073,0.0021354948415128073 -1.2329411764705882,16.13374043575528,16.13374043575528,0.6456423720249704,0.6456423720249704,-17.37517406612744,-17.37517406612744,0.0019104457313071184,0.0019104457313071184 -1.2352941176470589,16.763642174020585,16.763642174020585,0.9410824046987966,0.9410824046987966,-18.02937181513283,-18.02937181513283,0.0012446982598198393,0.0012446982598198393 -1.2376470588235293,17.799478657973143,17.799478657973143,3.018421592406467,3.018421592406467,-19.05762502594985,-19.05762502594985,0.0003761696583928544,0.0003761696583928544 -1.24,20.53464867922681,20.53464867922681,1.7312661758185857,1.7312661758185857,-21.78719990747992,-21.78719990747992,0.0006593487428826626,0.0006593487428826626 -1.2423529411764704,21.24767132368759,21.24767132368759,0.870754992143444,0.870754992143444,-22.525343798356925,-22.525343798356925,0.0013376701135980596,0.0013376701135980596 -1.244705882352941,21.789222843315773,21.789222843315773,0.7072943503183403,0.7072943503183403,-23.1178883017816,-23.1178883017816,0.0016516676701610808,0.0016516676701610808 -1.2470588235294118,22.29745724003565,22.29745724003565,0.7397657771027433,0.7397657771027433,-23.6773036100404,-23.6773036100404,0.0015379556640560232,0.0015379556640560232 -1.2494117647058822,22.81392238525803,22.81392238525803,1.034238688216798,1.034238688216798,-24.221081257751024,-24.221081257751024,0.001052700781189366,0.001052700781189366 -1.251764705882353,23.341404035423007,23.341404035423007,3.0949416651226094,3.0949416651226094,-24.7478528102288,-24.7478528102288,0.00034010725626502095,0.00034010725626502095 -1.2541176470588236,20.760472116783138,20.760472116783138,2.548114839053614,2.548114839053614,-22.15999597833232,-22.15999597833232,0.0004109491238533532,0.0004109491238533532 -1.256470588235294,21.263066359837364,21.263066359837364,1.0456899017703907,1.0456899017703907,-22.67534853744285,-22.67534853744285,0.0010148216583915565,0.0010148216583915565 -1.2588235294117647,21.740184518363975,21.740184518363975,0.8011303277497434,0.8011303277497434,-23.189501993183548,-23.189501993183548,0.0013333448786112686,0.0013333448786112686 -1.2611764705882353,22.201585930592085,22.201585930592085,0.8048469395256286,0.8048469395256286,-23.694725910031163,-23.694725910031163,0.0013060913851362988,0.0013060913851362988 -1.2635294117647058,22.657144180545817,22.657144180545817,1.0585617998751253,1.0585617998751253,-24.18030166416487,-24.18030166416487,0.0009592524113018819,0.0009592524113018819 -1.2658823529411765,23.038054151512842,23.038054151512842,2.4784611723415333,2.4784611723415333,-24.566824160029537,-24.566824160029537,0.00039579685538732067,0.00039579685538732067 -1.268235294117647,20.91408795840318,20.91408795840318,3.6373376823776917,3.6373376823776917,-22.4349956327382,-22.4349956327382,0.0002657735844373483,0.0002657735844373483 -1.2705882352941176,21.20569256154102,21.20569256154102,1.1938496123000741,1.1938496123000741,-22.727799489872567,-22.727799489872567,0.0008149100092685715,0.0008149100092685715 -1.2729411764705882,21.64852423871155,21.64852423871155,0.8482936215629341,0.8482936215629341,-23.192016275402423,-23.192016275402423,0.0011582315519046034,0.0011582315519046034 -1.2752941176470587,22.094680824254482,22.094680824254482,0.8047357974726034,0.8047357974726034,-23.67219212857435,-23.67219212857435,0.0012153198834287291,0.0012153198834287291 -1.2776470588235294,22.542824732761915,22.542824732761915,0.9740769108371202,0.9740769108371202,-24.14993657795949,-24.14993657795949,0.0009815633242012446,0.0009815633242012446 -1.28,22.978867961048756,22.978867961048756,1.785011843290106,1.785011843290106,-24.597634001192404,-24.597634001192404,0.0005198481134153834,0.0005198481134153834 -1.2823529411764705,21.056551173182427,21.056551173182427,12.066754014313894,12.066754014313894,-22.669619167293177,-22.669619167293177,7.540897802104171e-05,7.540897802104171e-05 -1.2847058823529411,20.984894806644864,20.984894806644864,1.4637185086785816,1.4637185086785816,-22.59042983059331,-22.59042983059331,0.0006216707626976269,0.0006216707626976269 -1.2870588235294118,21.434853238933307,21.434853238933307,0.8898204180108448,0.8898204180108448,-23.046485014302473,-23.046485014302473,0.001034580299749707,0.001034580299749707 -1.2894117647058823,21.88963243039817,21.88963243039817,0.7656531214630087,0.7656531214630087,-23.522943954277462,-23.522943954277462,0.0012114424505394255,0.0012114424505394255 -1.291764705882353,22.345480203491814,22.345480203491814,0.8259411986521041,0.8259411986521041,-24.004845060586057,-24.004845060586057,0.001115675734285217,0.001115675734285217 -1.2941176470588236,22.81657243406084,22.81657243406084,1.1733287741009708,1.1733287741009708,-24.49278090044842,-24.49278090044842,0.0007711703465208083,0.0007711703465208083 -1.296470588235294,23.345452212509826,23.345452212509826,3.4776920427793145,3.4776920427793145,-25.02274973337096,-25.02274973337096,0.00025570727475323637,0.00025570727475323637 -1.2988235294117647,20.5531634116265,20.5531634116265,2.762843751826513,2.762843751826513,-22.222226437791395,-22.222226437791395,0.0003205680189394021,0.0003205680189394021 -1.3011764705882352,21.071380414816467,21.071380414816467,1.0775342624868536,1.0775342624868536,-22.73650061607102,-22.73650061607102,0.0008311871199978734,0.0008311871199978734 -1.3035294117647058,21.54556933242465,21.54556933242465,0.7780967103491626,0.7780967103491626,-23.21997717321845,-23.21997717321845,0.0011706236644879933,0.0011706236644879933 -1.3058823529411765,22.004557514331225,22.004557514331225,0.7259869013095868,0.7259869013095868,-23.698958469945616,-23.698958469945616,0.0012681108218160397,0.0012681108218160397 -1.308235294117647,22.46420878719555,22.46420878719555,0.8339563001077196,0.8339563001077196,-24.179310388739882,-24.179310388739882,0.001103578304700176,0.001103578304700176 -1.3105882352941176,22.946243080000595,22.946243080000595,1.2862895049615157,1.2862895049615157,-24.673329943009165,-24.673329943009165,0.000710822821942248,0.000710822821942248 -1.3129411764705883,23.621548290396213,23.621548290396213,5.282949334336442,5.282949334336442,-25.349832150977186,-25.349832150977186,0.00017259953185570822,0.00017259953185570822 -1.3152941176470587,20.56162251808287,20.56162251808287,2.1819974731171676,2.1819974731171676,-22.287233728584333,-22.287233728584333,0.0004216914288215966,0.0004216914288215966 -1.3176470588235294,21.082314042386304,21.082314042386304,1.0062658060616552,1.0062658060616552,-22.81148041858586,-22.81148041858586,0.0009325444590743061,0.0009325444590743061 -1.32,21.54290140626333,21.54290140626333,0.7543783004183254,0.7543783004183254,-23.286771350155956,-23.286771350155956,0.0012716879613511034,0.0012716879613511034 -1.3223529411764705,21.984679007994945,21.984679007994945,0.7106410696224218,0.7106410696224218,-23.751128153298765,-23.751128153298765,0.001372281192428744,0.001372281192428744 -1.3247058823529412,22.421470830904454,22.421470830904454,0.8099957495917569,0.8099957495917569,-24.210902154458257,-24.210902154458257,0.0012137982832811393,0.0012137982832811393 -1.3270588235294118,22.863271713297458,22.863271713297458,1.197008584326852,1.197008584326852,-24.66972760534988,-24.66972760534988,0.0008246435906892788,0.0008246435906892788 -1.3294117647058823,23.331187699493256,23.331187699493256,3.6052297467172707,3.6052297467172707,-25.147866606049075,-25.147866606049075,0.00027571816632580094,0.00027571816632580094 -1.331764705882353,20.554439099886533,20.554439099886533,3.0203075206481396,3.0203075206481396,-22.379553724610105,-22.379553724610105,0.0003340778079918606,0.0003340778079918606 -1.3341176470588234,21.006640669343078,21.006640669343078,1.1539477452150224,1.1539477452150224,-22.845382758828094,-22.845382758828094,0.0008939174351317116,0.0008939174351317116 -1.336470588235294,21.42967526674916,21.42967526674916,0.8096635579807991,0.8096635579807991,-23.290520112952272,-23.290520112952272,0.0013042932100048308,0.0013042932100048308 -1.3388235294117647,21.839224561718712,21.839224561718712,0.7213348829451071,0.7213348829451071,-23.72874334619989,-23.72874334619989,0.001492341963284849,0.001492341963284849 -1.3411764705882352,22.24009672105107,22.24009672105107,0.7653292445138837,0.7653292445138837,-24.159722915411553,-24.159722915411553,0.0014244224750689662,0.0014244224750689662 -1.3435294117647059,22.631659819937045,22.631659819937045,0.9886751110897112,0.9886751110897112,-24.57800893573203,-24.57800893573203,0.0011118319195501385,0.0011118319195501385 -1.3458823529411765,22.985998157050027,22.985998157050027,1.8229887547418635,1.8229887547418635,-24.954314694440782,-24.954314694440782,0.000608209201931806,0.000608209201931806 -1.348235294117647,21.81433770121026,21.81433770121026,15.225762158345303,15.225762158345303,-23.80256437908845,-23.80256437908845,7.378782989403406e-05,7.378782989403406e-05 -1.3505882352941176,20.891894976543895,20.891894976543895,1.8069059394730813,1.8069059394730813,-22.902615500849645,-22.902615500849645,0.0006330272370996277,0.0006330272370996277 -1.3529411764705883,21.232162105838103,21.232162105838103,1.0103399069072436,1.0103399069072436,-23.27116710332284,-23.27116710332284,0.001154652580994016,0.001154652580994016 -1.3552941176470588,21.59889874945537,21.59889874945537,0.7925869661516305,0.7925869661516305,-23.671783628349967,-23.671783628349967,0.001497247029658406,0.001497247029658406 -1.3576470588235294,21.96548014824277,21.96548014824277,0.7480614679221258,0.7480614679221258,-24.074681193446402,-24.074681193446402,0.00160542686817403,0.00160542686817403 -1.3599999999999999,22.324988100806777,22.324988100806777,0.8266784623139926,0.8266784623139926,-24.4691555471417,-24.4691555471417,0.001463149527520271,0.001463149527520271 -1.3623529411764705,22.662399524981705,22.662399524981705,1.109863739459919,1.109863739459919,-24.837906492975304,-24.837906492975304,0.0010954211039506012,0.0010954211039506012 -1.3647058823529412,22.895020987981326,22.895020987981326,2.153034530015162,2.153034530015162,-25.098844875558328,-25.098844875558328,0.0005684128862751773,0.0005684128862751773 -1.3670588235294117,21.557001689826397,21.557001689826397,6.584711122326188,6.584711122326188,-23.788837192045754,-23.788837192045754,0.00018770828675992434,0.00018770828675992434 -1.3694117647058823,21.04549980208477,21.04549980208477,1.752617591155407,1.752617591155407,-23.30824339158282,-23.30824339158282,0.0007139843995655849,0.0007139843995655849 -1.371764705882353,21.309087101867142,21.309087101867142,1.0429808122322448,1.0429808122322448,-23.606920462337538,-23.606920462337538,0.0012141524163736283,0.0012141524163736283 -1.3741176470588234,21.631474692195862,21.631474692195862,0.8284881523997777,0.8284881523997777,-23.967584375449196,-23.967584375449196,0.0015418200896231814,0.0015418200896231814 -1.3764705882352941,21.963804255173248,21.963804255173248,0.7790565925632859,0.7790565925632859,-24.338695788517448,-24.338695788517448,0.001646658751448509,0.001646658751448509 -1.3788235294117648,22.291383777068898,22.291383777068898,0.8467931329948157,0.8467931329948157,-24.70286709401618,-24.70286709401618,0.0015161848631973385,0.0015161848631973385 -1.3811764705882352,22.593710472866988,22.593710472866988,1.0923767601135383,1.0923767601135383,-25.03845468093355,-25.03845468093355,0.001175180809868746,0.001175180809868746 -1.383529411764706,22.791710863067404,22.791710863067404,1.871687196882321,1.871687196882321,-25.267357234975467,-25.267357234975467,0.0006868105541537736,0.0006868105541537736 -1.3858823529411763,22.129201556913078,22.129201556913078,5.100256542425667,5.100256542425667,-24.635695094734352,-24.635695094734352,0.0002530377403722413,0.0002530377403722413 -1.388235294117647,21.151306554277852,21.151306554277852,2.1556387611790697,2.1556387611790697,-23.690937909925097,-23.690937909925097,0.0006019620578310678,0.0006019620578310678 -1.3905882352941177,21.297645867622165,21.297645867622165,1.1983851717524983,1.1983851717524983,-23.873467781320034,-23.873467781320034,0.0010879046838841867,0.0010879046838841867 -1.3929411764705881,21.572387763804752,21.572387763804752,0.9075143595634189,0.9075143595634189,-24.186329422589782,-24.186329422589782,0.0014392156304076054,0.0014392156304076054 -1.3952941176470588,21.874040910800254,21.874040910800254,0.8162970443354471,0.8162970443354471,-24.525930193665218,-24.525930193665218,0.001597177459824168,0.001597177459824168 -1.3976470588235295,22.1779444113078,22.1779444113078,0.8412555930220152,0.8412555930220152,-24.865523039610757,-24.865523039610757,0.0015428655484554913,0.0015428655484554913 -1.4,22.46421430238351,22.46421430238351,1.0006441953178962,1.0006441953178962,-25.184375885140543,-25.184375885140543,0.0012905752785157339,0.0012905752785157339 -1.4023529411764706,22.68437531540538,22.68437531540538,1.4504905126558088,1.4504905126558088,-25.4348647927026,-25.4348647927026,0.000887183309320686,0.000887183309320686 -1.4047058823529412,22.59047279595411,22.59047279595411,2.946968618368885,2.946968618368885,-25.371065361224588,-25.371065361224588,0.00043612849212659873,0.00043612849212659873 -1.4070588235294117,21.464963950947958,21.464963950947958,3.277633768002831,3.277633768002831,-24.277321147863603,-24.277321147863603,0.00039224480930344125,0.00039224480930344125 -1.4094117647058824,21.276779969884835,21.276779969884835,1.5829401132351284,1.5829401132351284,-24.123429193283318,-24.123429193283318,0.0008120853364401421,0.0008120853364401421 -1.4117647058823528,21.465405680001563,21.465405680001563,1.076838555008597,1.076838555008597,-24.34810063251094,-24.34810063251094,0.0011909534499132822,0.0011909534499132822 -1.4141176470588235,21.725886142181825,21.725886142181825,0.8946403026375567,0.8946403026375567,-24.644563854206584,-24.644563854206584,0.0014257102614871953,0.0014257102614871953 -1.4164705882352941,22.004111197257302,22.004111197257302,0.8533358553949606,0.8533358553949606,-24.956777143388717,-24.956777143388717,0.001482972482912791,0.001482972482912791 -1.4188235294117646,22.277023173538907,22.277023173538907,0.9219003878122224,0.9219003878122224,-25.260921713130564,-25.260921713130564,0.0013609188025178575,0.0013609188025178575 -1.4211764705882353,22.5157783551075,22.5157783551075,1.1472457069625168,1.1472457069625168,-25.528492503803694,-25.528492503803694,0.0010855086938972181,0.0010855086938972181 -1.423529411764706,22.63980194291357,22.63980194291357,1.7366444971381254,1.7366444971381254,-25.680596958869916,-25.680596958869916,0.000713327890539764,0.000713327890539764 -1.4258823529411764,22.29327300076275,22.29327300076275,3.191658962364441,3.191658962364441,-25.36329740255931,-25.36329740255931,0.00038679072241409635,0.00038679072241409635 -1.428235294117647,21.47463992337476,21.47463992337476,2.527739568129736,2.527739568129736,-24.576069023301354,-24.576069023301354,0.0004868106483959177,0.0004868106483959177 -1.4305882352941177,21.39477217874107,21.39477217874107,1.4775200080206654,1.4775200080206654,-24.529492217083437,-24.529492217083437,0.0008288559528700031,0.0008288559528700031 -1.4329411764705882,21.564120149727596,21.564120149727596,1.0861361838972432,1.0861361838972432,-24.732596833739034,-24.732596833739034,0.0011191785649362152,0.0011191785649362152 -1.4352941176470588,21.797045340641137,21.797045340641137,0.9362472145171611,0.9362472145171611,-24.997968242033622,-24.997968242033622,0.0012855126875718698,0.0012855126875718698 -1.4376470588235293,22.045597464196952,22.045597464196952,0.9115509601076077,0.9115509601076077,-25.276448203643476,-25.276448203643476,0.0013056556053554556,0.0013056556053554556 -1.44,22.283797187324744,22.283797187324744,0.9946155109997815,0.9946155109997815,-25.541971133889557,-25.541971133889557,0.0011839458442545374,0.0011839458442545374 -1.4423529411764706,22.476656868951263,22.476656868951263,1.231870011500229,1.231870011500229,-25.760735576911987,-25.760735576911987,0.0009476447221870551,0.0009476447221870551 -1.444705882352941,22.536955715969743,22.536955715969743,1.7787169158528717,1.7787169158528717,-25.847323541633813,-25.847323541633813,0.0006519756260297423,0.0006519756260297423 -1.4470588235294117,22.211599014802978,22.211599014802978,2.7216202116199515,2.7216202116199515,-25.550029906576366,-25.550029906576366,0.0004237415593989698,0.0004237415593989698 -1.4494117647058824,21.627256299665877,21.627256299665877,2.3471575109071674,2.3471575109071674,-24.995907053417746,-24.995907053417746,0.0004883188196470592,0.0004883188196470592 -1.4517647058823528,21.50600093695696,21.50600093695696,1.5514566010427278,1.5514566010427278,-24.90610435462054,-24.90610435462054,0.0007326571880996387,0.0007326571880996387 -1.4541176470588235,21.621172523034563,21.621172523034563,1.1780432609509077,1.1780432609509077,-25.052379263140843,-25.052379263140843,0.0009543347174022895,0.0009543347174022895 -1.4564705882352942,21.81129915042219,21.81129915042219,1.0213651325433843,1.0213651325433843,-25.27166861297027,-25.27166861297027,0.0010864984962351474,0.0010864984962351474 -1.4588235294117646,22.022130981872476,22.022130981872476,0.9871479510426543,0.9871479510426543,-25.509004698552463,-25.509004698552463,0.0011090819016207883,0.0011090819016207883 -1.4611764705882353,22.223638128626988,22.223638128626988,1.0547536862514455,1.0547536862514455,-25.734706871792202,-25.734706871792202,0.001025307239867775,0.001025307239867775 -1.4635294117647057,22.381182019422432,22.381182019422432,1.248932320241266,1.248932320241266,-25.91571375790827,-25.91571375790827,0.0008571562258319027,0.0008571562258319027 -1.4658823529411764,22.429420182528307,22.429420182528307,1.6391656965468109,1.6391656965468109,-25.98826698027301,-25.98826698027301,0.0006477138657080971,0.0006477138657080971 -1.468235294117647,22.242111492786655,22.242111492786655,2.2044523436997427,2.2044523436997427,-25.827260676979986,-25.827260676979986,0.0004779059166078427,0.0004779059166078427 -1.4705882352941178,21.848761211192752,21.848761211192752,2.2395657941878486,2.2395657941878486,-25.462201408581457,-25.462201408581457,0.00046625050048517585,0.00046625050048517585 -1.4729411764705882,21.65184316954665,21.65184316954665,1.719335878441108,1.719335878441108,-25.29444747133156,-25.29444747133156,0.0006005392638457786,0.0006005392638457786 -1.4752941176470589,21.678667210315645,21.678667210315645,1.3469047306290203,1.3469047306290203,-25.349582609538906,-25.349582609538906,0.0007559845590443093,0.0007559845590443093 -1.4776470588235295,21.80506448161158,21.80506448161158,1.159851790986215,1.159851790986215,-25.501988974758138,-25.501988974758138,0.0008642296472585767,0.0008642296472585767 -1.48,21.966798966180065,21.966798966180065,1.0948535581554442,1.0948535581554442,-25.68692214631696,-25.68692214631696,0.0009011543402423016,0.0009011543402423016 -1.4823529411764707,22.12846449875252,22.12846449875252,1.1247257870634526,1.1247257870634526,-25.869540129958292,-25.869540129958292,0.000864720712159383,0.000864720712159383 -1.484705882352941,22.25884380270209,22.25884380270209,1.250991489508519,1.250991489508519,-26.020220153721606,-26.020220153721606,0.000768074176073746,0.000768074176073746 -1.4870588235294118,22.316864530818183,22.316864530818183,1.4895155462015672,1.4895155462015672,-26.09966624738491,-26.09966624738491,0.0006385531083832646,0.0006385531083832646 -1.4894117647058822,22.24778589827879,22.24778589827879,1.813291013813521,1.813291013813521,-26.05408368483302,-26.05408368483302,0.0005194414569678935,0.0005194414569678935 -1.4917647058823529,22.04300381777234,22.04300381777234,1.9990130165608357,1.9990130165608357,-25.874748557561592,-25.874748557561592,0.00046597940813553307,0.00046597940813553307 -1.4941176470588236,21.84708030042505,21.84708030042505,1.8349449522302592,1.8349449522302592,-25.705057949762043,-25.705057949762043,0.0005007711803297972,0.0005007711803297972 -1.4964705882352942,21.7823853196033,21.7823853196033,1.5555013734109606,1.5555013734109606,-25.665575677308325,-25.665575677308325,0.0005810478852561226,0.0005810478852561226 -1.4988235294117647,21.82479914331484,21.82479914331484,1.3539185116912094,1.3539185116912094,-25.730632041392692,-25.730632041392692,0.0006553658404367093,0.0006553658404367093 -1.5011764705882353,21.921814795500243,21.921814795500243,1.251218158743969,1.251218158743969,-25.847111385848635,-25.847111385848635,0.0006960737264217737,0.0006960737264217737 -1.5035294117647058,22.035656900475654,22.035656900475654,1.232824947903307,1.232824947903307,-25.977721421833365,-25.977721421833365,0.000694481631401552,0.000694481631401552 -1.5058823529411764,22.137821892959806,22.137821892959806,1.2893663036974483,1.2893663036974483,-26.095640840901453,-26.095640840901453,0.0006544378125779337,0.0006544378125779337 -1.5082352941176471,22.201939351690804,22.201939351690804,1.415575919726821,1.415575919726821,-26.17635041819044,-26.17635041819044,0.0005887995640848866,0.0005887995640848866 -1.5105882352941176,22.202893027198737,22.202893027198737,1.5922295316797537,1.5922295316797537,-26.19595538210637,-26.19595538210637,0.0005175597325725394,0.0005175597325725394 -1.5129411764705882,22.13012047895196,22.13012047895196,1.7540762202321056,1.7540762202321056,-26.144034867869575,-26.144034867869575,0.0004639587508193411,0.0004639587508193411 -1.5152941176470587,22.014617728413803,22.014617728413803,1.7994712208700168,1.7994712208700168,-26.050366386484068,-26.050366386484068,0.0004455010475550864,0.0004455010475550864 -1.5176470588235293,21.920771565948826,21.920771565948826,1.708397777970389,1.708397777970389,-25.977419100506992,-25.977419100506992,0.00046076782418913074,0.00046076782418913074 -1.52,21.886919774750364,21.886919774750364,1.5670422229890346,1.5670422229890346,-25.961796058447966,-25.961796058447966,0.0004921326385504889,0.0004921326385504889 -1.5223529411764707,21.90826781081805,21.90826781081805,1.4500065791436538,1.4500065791436538,-25.99752158269549,-25.99752158269549,0.0005207386082272373,0.0005207386082272373 -1.5247058823529411,21.963623528625668,21.963623528625668,1.383323484485553,1.383323484485553,-26.063758517538954,-26.063758517538954,0.0005352150870497395,0.0005352150870497395 -1.5270588235294118,22.031866315129403,22.031866315129403,1.3699148511573667,1.3699148511573667,-26.1408462609798,-26.1408462609798,0.0005315385969984803,0.0005315385969984803 -1.5294117647058822,22.095056208520397,22.095056208520397,1.4063339137839752,1.4063339137839752,-26.213109728532213,-26.213109728532213,0.0005108578470930139,0.0005108578470930139 -1.531764705882353,22.138287594453985,22.138287594453985,1.4868187416166871,1.4868187416166871,-26.26733718160229,-26.26733718160229,0.0004776772125625742,0.0004776772125625742 -1.5341176470588236,22.149171997773223,22.149171997773223,1.6005213561947809,1.6005213561947809,-26.291667291364345,-26.291667291364345,0.0004386103051116299,0.0004386103051116299 -1.536470588235294,22.11932230171159,22.11932230171159,1.7235507048649306,1.7235507048649306,-26.27700913328978,-26.27700913328978,0.00040176726919263333,0.00040176726919263333 -1.5388235294117647,22.049860136761872,22.049860136761872,1.811987574445107,1.811987574445107,-26.222402101152955,-26.222402101152955,0.000375749414842437,0.000375749414842437 -1.5411764705882351,21.960419404033754,21.960419404033754,1.815561265498654,1.815561265498654,-26.14545906122472,-26.14545906122472,0.00036767663316246847,0.00036767663316246847 -1.5435294117647058,21.886167652181893,21.886167652181893,1.724568606084839,1.724568606084839,-26.079538335879114,-26.079538335879114,0.0003790622465090434,0.0003790622465090434 -1.5458823529411767,21.8566386235847,21.8566386235847,1.5861834386253733,1.5861834386253733,-26.053879186964014,-26.053879186964014,0.0004040870988529294,0.0004040870988529294 -1.5482352941176472,21.879495854094245,21.879495854094245,1.4577699090621472,1.4577699090621472,-26.077243984819393,-26.077243984819393,0.00043249582873994567,0.00043249582873994567 -1.5505882352941176,21.945333954078343,21.945333954078343,1.3736484952648307,1.3736484952648307,-26.14258145705175,-26.14258145705175,0.00045355419898154197,0.00045355419898154197 -1.5529411764705883,22.037917982587246,22.037917982587246,1.3486373426656666,1.3486373426656666,-26.236189479991133,-26.236189479991133,0.0004581816862799475,0.0004581816862799475 -1.5552941176470587,22.138839517081735,22.138839517081735,1.3936477166040795,1.3936477166040795,-26.34116761342827,-26.34116761342827,0.0004405447958735835,0.0004405447958735835 -1.5576470588235294,22.22599489531482,22.22599489531482,1.5279801739399232,1.5279801739399232,-26.43518035474441,-26.43518035474441,0.0003989638466228086,0.0003989638466228086 -1.5599999999999998,22.264520236847886,22.264520236847886,1.7871713351848482,1.7871713351848482,-26.48176621288042,-26.48176621288042,0.00033779690764808903,0.00033779690764808903 -1.5623529411764705,22.189898409794704,22.189898409794704,2.1911046490262787,2.1911046490262787,-26.414145447367886,-26.414145447367886,0.00027204907534919933,0.00027204907534919933 -1.5647058823529412,21.933347230001225,21.933347230001225,2.4997364197278693,2.4997364197278693,-26.16114662390626,-26.16114662390626,0.00023500965041327814,0.00023500965041327814 -1.5670588235294118,21.636758131244243,21.636758131244243,2.2053115560839047,2.2053115560839047,-25.863730003147925,-25.863730003147925,0.0002626557540068868,0.0002626557540068868 -1.5694117647058823,21.53345609777758,21.53345609777758,1.683294533848165,1.683294533848165,-25.75534794123011,-25.75534794123011,0.0003403645655744752,0.0003403645655744752 -1.571764705882353,21.598410935593684,21.598410935593684,1.3299581125434567,1.3299581125434567,-25.81328297150706,-25.81328297150706,0.00042825954257096863,0.00042825954257096863 -1.5741176470588236,21.751630997183163,21.751630997183163,1.140339253392398,1.140339253392398,-25.96046164861334,-25.96046164861334,0.000499170925792466,0.000499170925792466 -1.576470588235294,21.948147033823624,21.948147033823624,1.064193736472919,1.064193736472919,-26.154342665506245,-26.154342665506245,0.0005365944575329283,0.0005365944575329283 -1.5788235294117647,22.164826306512197,22.164826306512197,1.0809653275107518,1.0809653275107518,-26.372625615332925,-26.372625615332925,0.0005305267070615513,0.0005305267070615513 -1.5811764705882352,22.387940150064477,22.387940150064477,1.2068971812571825,1.2068971812571825,-26.600991188704025,-26.600991188704025,0.00047656005994817376,0.00047656005994817376 -1.5835294117647059,22.601953109233026,22.601953109233026,1.5310788243931739,1.5310788243931739,-26.821610382204543,-26.821610382204543,0.000375656433217521,0.000375656433217521 -1.5858823529411765,22.75981087002227,22.75981087002227,2.441122677375229,2.441122677375229,-26.985015985718608,-26.985015985718608,0.00023486889643002258,0.00023486889643002258 -1.5882352941176474,22.401291486027205,22.401291486027205,7.0001510061305305,7.0001510061305305,-26.628910616827564,-26.628910616827564,8.153681565979342e-05,8.153681565979342e-05 -1.5905882352941176,20.87887412209735,20.87887412209735,3.6145070092008176,3.6145070092008176,-25.104967035689914,-25.104967035689914,0.00015736830761660145,0.00015736830761660145 -1.592941176470588,20.94011915626446,20.94011915626446,1.6531531036119216,1.6531531036119216,-25.161703006704585,-25.161703006704585,0.0003441149933255015,0.0003441149933255015 -1.5952941176470588,21.176880540533205,21.176880540533205,1.1004578385731387,1.1004578385731387,-25.393340988778526,-25.393340988778526,0.0005196575935972699,0.0005196575935972699 -1.5976470588235294,21.453857066993088,21.453857066993088,0.8724044262313713,0.8724044262313713,-25.66738018048224,-25.66738018048224,0.000662208644170067,0.000662208644170067 -1.6,21.74690802838145,21.74690802838145,0.7743919299862253,0.7743919299862253,-25.961899435240284,-25.961899435240284,0.0007559534308405158,0.0007559534308405158 -1.6023529411764705,22.050230956267978,22.050230956267978,0.7518026818248288,0.7518026818248288,-26.27181027041819,-26.27181027041819,0.0007893124170069737,0.0007893124170069737 -1.6047058823529412,22.366529049215366,22.366529049215366,0.7941466391404044,0.7941466391404044,-26.598660901096295,-26.598660901096295,0.0007558853379484264,0.0007558853379484264 -1.6070588235294117,22.706969551056975,22.706969551056975,0.9229402434673688,0.9229402434673688,-26.951682998455183,-26.951682998455183,0.0006555675617220894,0.0006555675617220894 -1.6094117647058825,23.103511117235612,23.103511117235612,1.2249181124252846,1.2249181124252846,-27.360407437086806,-27.360407437086806,0.0004960981750668796,0.0004960981750668796 -1.611764705882353,23.68105435827092,23.68105435827092,2.0259940500338933,2.0259940500338933,-27.94749894896185,-27.94749894896185,0.00030054231760582694,0.00030054231760582694 -1.6141176470588237,25.02492729554969,25.02492729554969,3.37772244282577,3.37772244282577,-29.297395632178418,-29.297395632178418,0.00018063468857707794,0.00018063468857707794 -1.616470588235294,26.266061600972147,26.266061600972147,1.7735236717754352,1.7735236717754352,-30.54181233499585,-30.54181233499585,0.0003455114104671928,0.0003455114104671928 -1.6188235294117648,26.830068000052982,26.830068000052982,1.0375707470303561,1.0375707470303561,-31.107920610273787,-31.107920610273787,0.0005954923008851665,0.0005954923008851665 -1.6211764705882352,27.2463827037499,27.2463827037499,0.7512035146387714,0.7512035146387714,-31.528009661512936,-31.528009661512936,0.000832878329077522,0.000832878329077522 -1.6235294117647059,27.61880147006644,27.61880147006644,0.6189344250744926,0.6189344250744926,-31.907709271340256,-31.907709271340256,0.0010266482773532222,0.0010266482773532222 -1.6258823529411766,27.975130940446846,27.975130940446846,0.5584704497669445,0.5584704497669445,-32.27610059691921,-32.27610059691921,0.0011562774231714183,0.0011562774231714183 -1.6282352941176468,28.32950356431502,28.32950356431502,0.542152698131281,0.542152698131281,-32.64672594895779,-32.64672594895779,0.001208452292695457,0.001208452292695457 -1.630588235294118,28.694813194761334,28.694813194761334,0.5627528380184188,0.5627528380184188,-33.03101685631776,-33.03101685631776,0.0011771044545637753,0.0011771044545637753 -1.6329411764705881,29.089604107389626,29.089604107389626,0.6259813033244853,0.6259813033244853,-33.44530557043693,-33.44530557043693,0.0010656079514797811,0.0010656079514797811 -1.6352941176470588,29.547877762738153,29.547877762738153,0.7520445752195251,0.7520445752195251,-33.921400887137885,-33.921400887137885,0.000890151646356784,0.000890151646356784 -1.6376470588235295,30.14249958105139,30.14249958105139,0.9698298049596192,0.9698298049596192,-34.53076696018468,-34.53076696018468,0.0006914936344445008,0.0006914936344445008 -1.6400000000000001,30.9846393595875,30.9846393595875,1.1891592355510328,1.1891592355510328,-35.38410510087224,-35.38410510087224,0.0005652580250450588,0.0005652580250450588 -1.6423529411764706,31.929425368084914,31.929425368084914,1.0552705631877823,1.0552705631877823,-36.33757668004399,-36.33757668004399,0.0006400288313573337,0.0006400288313573337 -1.6447058823529415,32.64543096388953,32.64543096388953,0.7732739405211858,0.7732739405211858,-37.06176092838142,-37.06176092838142,0.0008808863255484199,0.0008808863255484199 -1.6470588235294117,33.174673194285596,33.174673194285596,0.58976080924002,0.58976080924002,-37.600856743054464,-37.600856743054464,0.0011690644881775093,0.0011690644881775093 -1.6494117647058824,33.61593646263404,33.61593646263404,0.4873007476305571,0.4873007476305571,-38.05559372107086,-38.05559372107086,0.0014351709953508394,0.0014351709953508394 -1.651764705882353,34.016971727005235,34.016971727005235,0.4322491975397279,0.4322491975397279,-38.47419116816816,-38.47419116816816,0.0016412354554821917,0.0016412354554821917 -1.6541176470588237,34.40178318800999,34.40178318800999,0.407012453483448,0.407012453483448,-38.88034310586921,-38.88034310586921,0.0017642746861618183,0.0017642746861618183 -1.6564705882352944,34.787047831178285,34.787047831178285,0.4040638739231906,0.4040638739231906,-39.28913281958816,-39.28913281958816,0.001792570139659458,0.001792570139659458 -1.6588235294117644,35.18903814279707,35.18903814279707,0.42162536883175317,0.42162536883175317,-39.71470549135538,-39.71470549135538,0.0017258153777604517,0.0017258153777604517 -1.6611764705882353,35.62829148691575,35.62829148691575,0.46169943021001275,0.46169943021001275,-40.17580299423137,-40.17580299423137,0.0015777557549459288,0.0015777557549459288 -1.663529411764706,36.13517466008653,36.13517466008653,0.526755291313823,0.526755291313823,-40.70108004242898,-40.70108004242898,0.0013816620238702698,0.0013816620238702698 -1.6658823529411766,36.74812013134211,36.74812013134211,0.6058381402842723,0.6058381402842723,-41.328681562154415,-41.328681562154415,0.0012007629232805505,0.0012007629232805505 -1.668235294117647,37.47316287004007,37.47316287004007,0.6444436084044104,0.6444436084044104,-42.06559320764232,-42.06559320764232,0.0011307820916035961,0.0011307820916035961 -1.670588235294118,38.20986472031799,38.20986472031799,0.5901290612669731,0.5901290612669731,-42.81296953288011,-42.81296953288011,0.0012415627944665757,0.0012415627944665757 -1.672941176470588,38.845237922856256,38.845237922856256,0.4932830378692589,0.4932830378692589,-43.46015279013049,-43.46015279013049,0.0014988224194024482,0.0014988224194024482 -1.6752941176470588,39.3738997824403,39.3738997824403,0.4123054588667487,0.4123054588667487,-44.003569758593294,-44.003569758593294,0.001814187288242654,0.001814187288242654 -1.6776470588235295,39.833038907233814,39.833038907233814,0.357843790580859,0.357843790580859,-44.48155864506403,-44.48155864506403,0.0021157484318701544,0.0021157484318701544 -1.68,40.25353857597151,40.25353857597151,0.3247010645245425,0.3247010645245425,-44.92483447094121,-44.92483447094121,0.00235675437760402,0.00235675437760402 -1.6823529411764706,40.656796672963615,40.656796672963615,0.30732994707038414,0.30732994707038414,-45.35321136159053,-45.35321136159053,0.0025087667570155756,0.0025087667570155756 -1.684705882352941,41.05854712486335,41.05854712486335,0.3024319139700048,0.3024319139700048,-45.7811901516438,-45.7811901516438,0.0025577708767662343,0.0025577708767662343 -1.6870588235294117,41.47430701598342,41.47430701598342,0.3087073564351775,0.3087073564351775,-46.221584632312926,-46.221584632312926,0.002504632367602111,0.002504632367602111 -1.6894117647058824,41.91992371043517,41.91992371043517,0.32574613428756977,0.32574613428756977,-46.68886149512724,-46.68886149512724,0.0023661496905754242,0.0023661496905754242 -1.6917647058823528,42.4138136959925,42.4138136959925,0.35230806418887267,0.35230806418887267,-47.20039171189707,-47.20039171189707,0.0021788857220671736,0.0021788857220671736 -1.6941176470588235,42.972602900636886,42.972602900636886,0.38217496084913466,0.38217496084913466,-47.77303362655514,-47.77303362655514,0.002003420545464486,0.002003420545464486 -1.6964705882352942,43.59462694719472,43.59462694719472,0.3993453934988725,0.3993453934988725,-48.406548231275664,-48.406548231275664,0.0019185593914333723,0.0019185593914333723 -1.6988235294117644,44.238588083180474,44.238588083180474,0.38739637298299123,0.38739637298299123,-49.06177221748723,-49.06177221748723,0.0019871911649907703,0.0019871911649907703 -1.7011764705882353,44.844659819087504,44.844659819087504,0.35138019829912187,0.35138019829912187,-49.68086221616543,-49.68086221616543,0.002209213572298866,0.002209213572298866 -1.7035294117647062,45.38441913190962,45.38441913190962,0.31068549428217307,0.31068549428217307,-50.2374094574505,-50.2374094574505,0.002525091565731572,0.002525091565731572 -1.7058823529411766,45.8652938417637,45.8652938417637,0.2769475525003998,0.2769475525003998,-50.73925961622069,-50.73925961622069,0.002862457141148766,0.002862457141148766 -1.7082352941176469,46.305751030540726,46.305751030540726,0.2527448438793515,0.2527448438793515,-51.20447933391212,-51.20447933391212,0.0031625284756643026,0.0031625284756643026 -1.7105882352941175,46.72360600180703,46.72360600180703,0.23718738432806727,0.23718738432806727,-51.6492335134472,-51.6492335134472,0.003385266575339391,0.003385266575339391 -1.7129411764705882,47.13378639939954,47.13378639939954,0.22899834728474328,0.22899834728474328,-52.08670718444028,-52.08670718444028,0.003507770134887632,0.003507770134887632 -1.7152941176470589,47.54968719380014,47.54968719380014,0.22711261401310423,0.22711261401310423,-52.52787601992171,-52.52787601992171,0.0035227885898000562,0.0035227885898000562 -1.7176470588235295,47.98342364753392,47.98342364753392,0.23104887332393753,0.23104887332393753,-52.983381134950434,-52.983381134950434,0.0034409463782626745,0.0034409463782626745 -1.72,48.44684599052106,48.44684599052106,0.23996612119370808,0.23996612119370808,-53.46412748950098,-53.46412748950098,0.0032900959165102117,0.0032900959165102117 -1.7223529411764709,48.94990387601232,48.94990387601232,0.2520029372426105,0.2520029372426105,-53.980232674961584,-53.980232674961584,0.003117654590263187,0.003117654590263187 -1.7247058823529409,49.49517959160288,49.49517959160288,0.26257298420788727,0.26257298420788727,-54.53603421443529,-54.53603421443529,0.0029878398462924237,0.0029878398462924237 -1.7270588235294118,50.07037367012733,50.07037367012733,0.2654163626620849,0.2654163626620849,-55.121267090321865,-55.121267090321865,0.002965520678952077,0.002965520678952077 -1.7294117647058824,50.64592367574541,50.64592367574541,0.2567801482957753,0.2567801482957753,-55.70926382452646,-55.70926382452646,0.003087814366539636,0.003087814366539636 -1.731764705882353,51.19230992060731,51.19230992060731,0.23961221458146045,0.23961221458146045,-56.27192169723604,-56.27192169723604,0.003342008833290716,0.003342008833290716 -1.7341176470588235,51.696033965201075,51.696033965201075,0.2199816188941651,0.2199816188941651,-56.79640445538928,-56.79640445538928,0.0036767796914025414,0.0036767796914025414 -1.7364705882352938,52.159428572700875,52.159428572700875,0.2023634256769551,0.2023634256769551,-57.28527409464243,-57.28527409464243,0.00402866690641879,0.00402866690641879 -1.7388235294117647,52.59421661463902,52.59421661463902,0.18843197966342137,0.18843197966342137,-57.748066101839136,-57.748066101839136,0.004343692421114723,0.004343692421114723 -1.7411764705882353,53.012788639883965,53.012788639883965,0.17848013023725223,0.17848013023725223,-58.19514513016738,-58.19514513016738,0.004582336974971221,0.004582336974971221 -1.743529411764706,53.42667262018829,53.42667262018829,0.1722793926867155,0.1722793926867155,-58.63607895051277,-58.63607895051277,0.004721683792859392,0.004721683792859392 -1.7458823529411764,53.84671389397074,53.84671389397074,0.16953862215352683,0.16953862215352683,-59.07938808754704,-59.07938808754704,0.0047557613165244315,0.0047557613165244315 -1.748235294117647,54.28210169674823,54.28210169674823,0.16996294574336732,0.16996294574336732,-59.53324222926387,-59.53324222926387,0.004695878107331331,0.004695878107331331 -1.7505882352941176,54.74047797524551,54.74047797524551,0.1731041624231321,0.1731041624231321,-60.00495351358011,-60.00495351358011,0.00457077454181427,0.00457077454181427 -1.7529411764705882,55.22656074695135,55.22656074695135,0.1778558486944454,0.1778558486944454,-60.50042046633462,-60.50042046633462,0.004425464574719336,0.004425464574719336 -1.7552941176470591,55.73916849835554,55.73916849835554,0.1823432381180395,0.1823432381180395,-61.02109085494702,-61.02109085494702,0.004316916614119368,0.004316916614119368 -1.7576470588235293,56.26939634824762,56.26939634824762,0.18401121171630802,0.18401121171630802,-61.56068922973425,-61.56068922973425,0.0043003792269663155,0.0043003792269663155 -1.76,56.800542631357395,56.800542631357395,0.1810786119117853,0.1810786119117853,-62.10482946143671,-62.10482946143671,0.004410460767359862,0.004410460767359862 -1.7623529411764705,57.31428031109533,57.31428031109533,0.17375479987439046,0.17375479987439046,-62.63704038196105,-62.63704038196105,0.004646032163605125,0.004646032163605125 -1.7647058823529411,57.800005019461125,57.800005019461125,0.16396456179643717,0.16396456179643717,-63.146615654018845,-63.146615654018845,0.0049718809194606,0.0049718809194606 -1.7670588235294116,58.25642113817228,58.25642113817228,0.15371605860960286,0.15371605860960286,-63.63118824633991,-63.63118824633991,0.00533547047515736,0.00533547047515736 -1.7694117647058827,58.689760500396005,58.689760500396005,0.14445337823340906,0.14445337823340906,-64.09465780079185,-64.09465780079185,0.005684406508651317,0.005684406508651317 -1.7717647058823531,59.10802309483248,59.10802309483248,0.13681967424051125,0.13681967424051125,-64.54315632052054,-64.54315632052054,0.005975080258933825,0.005975080258933825 -1.7741176470588236,59.52142027282101,59.52142027282101,0.13104822299733002,0.13104822299733002,-64.98359166364388,-64.98359166364388,0.006179298769288221,0.006179298769288221 -1.776470588235294,59.937921519492676,59.937921519492676,0.12721667428357275,0.12721667428357275,-65.42250455157023,-65.42250455157023,0.006283820070873311,0.006283820070873311 -1.7788235294117647,60.36504282475434,60.36504282475434,0.12532253403809696,0.12532253403809696,-65.86611174062108,-65.86611174062108,0.006292615538866837,0.006292615538866837 -1.7811764705882354,60.80805232874972,60.80805232874972,0.12524256882097984,0.12524256882097984,-66.31977850351589,-66.31977850351589,0.006225637461798388,0.006225637461798388 -1.7835294117647063,61.26976211986329,61.26976211986329,0.1266542630661763,0.1266542630661763,-66.78787623104373,-66.78787623104373,0.006117865652027929,0.006117865652027929 -1.7858823529411765,61.749154218475866,61.749154218475866,0.12877875989911133,0.12877875989911133,-67.27256893499414,-67.27256893499414,0.006016003772317662,0.006016003772317662 -1.7882352941176471,62.241486519397306,62.241486519397306,0.1305869096886429,0.1305869096886429,-67.77212646996766,-67.77212646996766,0.005969973372245324,0.005969973372245324 -1.7905882352941174,62.737444068802255,62.737444068802255,0.1308729526504325,0.1308729526504325,-68.28035818067265,-68.28035818067265,0.00602067860604924,0.00602067860604924 -1.7929411764705883,63.22618350414868,63.22618350414868,0.12894277564988554,0.12894277564988554,-68.78775847550074,-68.78775847550074,0.006187031524945802,0.006187031524945802 -1.795294117647059,63.69869449937294,63.69869449937294,0.12485958040478182,0.12485958040478182,-69.28527534335733,-69.28527534335733,0.006459584274389466,0.006459584274389466 -1.7976470588235294,64.15046133568046,64.15046133568046,0.11927866193831997,0.11927866193831997,-69.76719361831366,-69.76719361831366,0.006805123458684156,0.006805123458684156 -1.8,64.58304366963644,64.58304366963644,0.11314665297882863,0.11314665297882863,-70.2324163199933,-70.2324163199933,0.007178089469671141,0.007178089469671141 diff --git a/sparameters/rotate_f258530e_b5fb72a1.yml b/sparameters/rotate_f258530e_b5fb72a1.yml deleted file mode 100644 index 4116ae8e..00000000 --- a/sparameters/rotate_f258530e_b5fb72a1.yml +++ /dev/null @@ -1,27 +0,0 @@ -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: -2 -compute_time_seconds: 78.15797519683838 -compute_time_minutes: 1.3026329199473063 diff --git a/sparameters/rotate_f258530e_b70d6a24.csv b/sparameters/rotate_f258530e_b70d6a24.csv deleted file mode 100644 index 85c6d270..00000000 --- a/sparameters/rotate_f258530e_b70d6a24.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,0.4223271234012086,0.4223271234012086,0.012241702594489482,0.012241702594489482,-3.119688735527263,-3.119688735527263,0.0009721309236517492,0.0009721309236517492 -1.2023529411764706,2.9243666480086086,2.9243666480086086,0.02229090806671116,0.02229090806671116,-3.086050116831667,-3.086050116831667,0.0014571505267852256,0.0014571505267852256 -1.204705882352941,3.4762191756902054,3.4762191756902054,0.014360047430169857,0.014360047430169857,-4.331236554775834,-4.331236554775834,0.0012891188439099579,0.0012891188439099579 -1.2070588235294117,6.046768281171603,6.046768281171603,0.03441830643729491,0.03441830643729491,-3.1741331478172876,-3.1741331478172876,0.0004829098421571188,0.0004829098421571188 -1.2094117647058824,5.287210323272788,5.287210323272788,0.004198781860110618,0.004198781860110618,-4.377923761266513,-4.377923761266513,0.0027286041723395753,0.0027286041723395753 -1.2117647058823529,3.9674529583137392,3.9674529583137392,0.0033763352816645873,0.0033763352816645873,-5.933778861502771,-5.933778861502771,0.004329964644784118,0.004329964644784118 -1.2141176470588235,5.3265106706012,5.3265106706012,0.005640493059617991,0.005640493059617991,-7.575266953234245,-7.575266953234245,0.004675929783016864,0.004675929783016864 -1.216470588235294,5.813537906542656,5.813537906542656,0.003244113792942878,0.003244113792942878,-9.31248297158571,-9.31248297158571,0.004081863323254757,0.004081863323254757 -1.2188235294117646,8.89209380707908,8.89209380707908,0.00458201604074617,0.00458201604074617,-11.10625279798133,-11.10625279798133,0.0032262985330175427,0.0032262985330175427 -1.2211764705882353,7.819948302289698,7.819948302289698,0.007598923858697078,0.007598923858697078,-12.74470913039423,-12.74470913039423,0.002393344951986934,0.002393344951986934 -1.2235294117647058,9.154581965469337,9.154581965469337,0.005266049035937558,0.005266049035937558,-13.916572818260956,-13.916572818260956,0.00173149285212413,0.00173149285212413 -1.2258823529411764,11.324647633144252,11.324647633144252,0.004028560681716589,0.004028560681716589,-14.845911322673167,-14.845911322673167,0.0020895249040103186,0.0020895249040103186 -1.228235294117647,10.91455166280503,10.91455166280503,0.004874591081008583,0.004874591081008583,-16.29652338259836,-16.29652338259836,0.00273337903056928,0.00273337903056928 -1.2305882352941175,10.750379633824627,10.750379633824627,0.002378122104608615,0.002378122104608615,-18.202899924754163,-18.202899924754163,0.0032071683688800518,0.0032071683688800518 -1.2329411764705882,10.724909074258642,10.724909074258642,0.002298205121278359,0.002298205121278359,-20.26630847619936,-20.26630847619936,0.004467148349783802,0.004467148349783802 -1.2352941176470589,8.976447726976541,8.976447726976541,0.001169517091433339,0.001169517091433339,-22.116469215652437,-22.116469215652437,0.006518731669178413,0.006518731669178413 -1.2376470588235293,8.764667184310394,8.764667184310394,0.0006159866586541985,0.0006159866586541985,-23.824459609909376,-23.824459609909376,0.007899437588843096,0.007899437588843096 -1.24,9.295083598624407,9.295083598624407,0.002198452923835249,0.002198452923835249,-25.545387605215225,-25.545387605215225,0.007649085598460616,0.007649085598460616 -1.2423529411764704,9.891638347991321,9.891638347991321,0.0002667069994492246,0.0002667069994492246,-27.455827897726977,-27.455827897726977,0.0063451028159368355,0.0063451028159368355 -1.244705882352941,7.817978477644713,7.817978477644713,0.0009293253433791869,0.0009293253433791869,-29.588618959482623,-29.588618959482623,0.006289150931747475,0.006289150931747475 -1.2470588235294118,7.461751402209793,7.461751402209793,0.0008735592115043537,0.0008735592115043537,-31.500249839483324,-31.500249839483324,0.007739878603053484,0.007739878603053484 -1.2494117647058822,7.849446386439728,7.849446386439728,0.001647069601699524,0.001647069601699524,-33.160175420490596,-33.160175420490596,0.00816094189780601,0.00816094189780601 -1.251764705882353,8.282513938606527,8.282513938606527,0.0008601069327454467,0.0008601069327454467,-34.75999298534596,-34.75999298534596,0.006308403601894406,0.006308403601894406 -1.2541176470588236,7.283550198553474,7.283550198553474,0.002801880319983693,0.002801880319983693,-36.683961334928306,-36.683961334928306,0.0031765812117835685,0.0031765812117835685 -1.256470588235294,7.013416911429614,7.013416911429614,0.0008821537055471337,0.0008821537055471337,-39.388529838157645,-39.388529838157645,0.003421686509889356,0.003421686509889356 -1.2588235294117647,7.000008130168251,7.000008130168251,0.0006822813546272434,0.0006822813546272434,-41.01150255849996,-41.01150255849996,0.005572955335503413,0.005572955335503413 -1.2611764705882353,5.977218795861211,5.977218795861211,0.0007278817325305065,0.0007278817325305065,-42.13932833084541,-42.13932833084541,0.00582331023552531,0.00582331023552531 -1.2635294117647058,3.8667059759105253,3.8667059759105253,0.0006217283820998963,0.0006217283820998963,-42.774806986476385,-42.774806986476385,0.005355165667063185,0.005355165667063185 -1.2658823529411765,2.6597601460361946,2.6597601460361946,0.00032140412294948866,0.00032140412294948866,-43.282151461665315,-43.282151461665315,0.007628932387709135,0.007628932387709135 -1.268235294117647,1.493050764671579,1.493050764671579,0.0007449084764462497,0.0007449084764462497,-44.143120918333615,-44.143120918333615,0.01132338438799968,0.01132338438799968 -1.2705882352941176,1.9568453166725066,1.9568453166725066,0.0004854100057376946,0.0004854100057376946,-45.122724069237904,-45.122724069237904,0.013577486768849173,0.013577486768849173 -1.2729411764705882,1.9154380420908843,1.9154380420908843,3.887139549198512e-05,3.887139549198512e-05,-46.05810178286863,-46.05810178286863,0.013497864915902357,0.013497864915902357 -1.2752941176470587,1.4439899700430257,1.4439899700430257,0.00013766254818327062,0.00013766254818327062,-46.842055528053315,-46.842055528053315,0.012076971629331546,0.012076971629331546 -1.2776470588235294,2.2640847671375397,2.2640847671375397,0.00028952614049592925,0.00028952614049592925,-47.46335053667987,-47.46335053667987,0.011581157450110473,0.011581157450110473 -1.28,0.7267236817849283,0.7267236817849283,0.00014678529270608688,0.00014678529270608688,-48.107232906349466,-48.107232906349466,0.012718258218174993,0.012718258218174993 -1.2823529411764705,1.2058699993339572,1.2058699993339572,0.0003954235663587452,0.0003954235663587452,-48.8475312112691,-48.8475312112691,0.01379322309460131,0.01379322309460131 -1.2847058823529411,2.814829833137317,2.814829833137317,8.342022758954117e-06,8.342022758954117e-06,-49.59032187342505,-49.59032187342505,0.01376455601924872,0.01376455601924872 -1.2870588235294118,3.082738385015024,3.082738385015024,0.00032937487332142284,0.00032937487332142284,-50.25829533544758,-50.25829533544758,0.013315482315562475,0.013315482315562475 -1.2894117647058823,1.8960881743893314,1.8960881743893314,0.00026683305829882124,0.00026683305829882124,-50.87656280098682,-50.87656280098682,0.013609295959012035,0.013609295959012035 -1.291764705882353,0.9973775313761133,0.9973775313761133,0.00019234431702729764,0.00019234431702729764,-51.53070226984304,-51.53070226984304,0.014548741951501932,0.014548741951501932 -1.2941176470588236,0.13997355868214054,0.13997355868214054,0.00017510827336140623,0.00017510827336140623,-52.22346936660066,-52.22346936660066,0.015150903817300934,0.015150903817300934 -1.296470588235294,-0.6619523074034341,-0.6619523074034341,0.00011541296642779884,0.00011541296642779884,-52.89917081373899,-52.89917081373899,0.015141859956169358,0.015141859956169358 -1.2988235294117647,2.1844304817151863,2.1844304817151863,0.0001945443076478777,0.0001945443076478777,-53.53179161198904,-53.53179161198904,0.015154472618797914,0.015154472618797914 -1.3011764705882352,1.9074238990856682,1.9074238990856682,0.00036860432407458224,0.00036860432407458224,-54.15485506635884,-54.15485506635884,0.01571601007050514,0.01571601007050514 -1.3035294117647058,0.9563558556979473,0.9563558556979473,0.00025334579373854026,0.00025334579373854026,-54.804592185824355,-54.804592185824355,0.016473660299880028,0.016473660299880028 -1.3058823529411765,-0.44047577701829654,-0.44047577701829654,0.00012155759172634914,0.00012155759172634914,-55.466395820600944,-55.466395820600944,0.0168751305583203,0.0168751305583203 -1.308235294117647,-3.2540649698604214,-3.2540649698604214,0.00010585116939493001,0.00010585116939493001,-56.109361976881715,-56.109361976881715,0.01696602817019674,0.01696602817019674 -1.3105882352941176,-3.303817841702161,-3.303817841702161,7.808165650781452e-05,7.808165650781452e-05,-56.72954294672554,-56.72954294672554,0.017221059352499773,0.017221059352499773 -1.3129411764705883,-5.163276410511698,-5.163276410511698,0.00023688296125256675,0.00023688296125256675,-57.352369147578074,-57.352369147578074,0.017824921135788537,0.017824921135788537 -1.3152941176470587,-5.243623857094109,-5.243623857094109,0.00012950719085703393,0.00012950719085703393,-57.99091115149306,-57.99091115149306,0.018433004660398863,0.018433004660398863 -1.3176470588235294,-7.64536682086975,-7.64536682086975,0.00025109719509943724,0.00025109719509943724,-58.631135071697244,-58.631135071697244,0.01875169478147025,0.01875169478147025 -1.32,-7.683895370798194,-7.683895370798194,6.210879903688568e-05,6.210879903688568e-05,-59.255914139016205,-59.255914139016205,0.018920549295847747,0.018920549295847747 -1.3223529411764705,-10.763736113660892,-10.763736113660892,0.00017803563608796805,0.00017803563608796805,-59.86902401191332,-59.86902401191332,0.019270588303705222,0.019270588303705222 -1.3247058823529412,-9.955988348885032,-9.955988348885032,5.429453544187215e-05,5.429453544187215e-05,-60.486816874727886,-60.486816874727886,0.01982381333872764,0.01982381333872764 -1.3270588235294118,-12.04120647060274,-12.04120647060274,0.0002354764532706901,0.0002354764532706901,-61.113129566105734,-61.113129566105734,0.020306660181491073,0.020306660181491073 -1.3294117647058823,-12.426616128300422,-12.426616128300422,0.00022101887712906986,0.00022101887712906986,-61.737388964315414,-61.737388964315414,0.02056955493665625,0.02056955493665625 -1.331764705882353,-11.512252935601984,-11.512252935601984,8.48636469443184e-05,8.48636469443184e-05,-62.35050275525131,-62.35050275525131,0.020761666510068666,0.020761666510068666 -1.3341176470588234,-11.055985097983488,-11.055985097983488,7.333280404514497e-05,7.333280404514497e-05,-62.956842249179275,-62.956842249179275,0.02109833905608509,0.02109833905608509 -1.336470588235294,-11.341605660583193,-11.341605660583193,0.00016122285913000096,0.00016122285913000096,-63.56707468500652,-63.56707468500652,0.021549112341923134,0.021549112341923134 -1.3388235294117647,-12.264445386981203,-12.264445386981203,0.00025128088546733405,0.00025128088546733405,-64.18229863825543,-64.18229863825543,0.02192054300088849,0.02192054300088849 -1.3411764705882352,-13.440221112160597,-13.440221112160597,8.17714192695976e-05,8.17714192695976e-05,-64.7945815523224,-64.7945815523224,0.022111042493697237,0.022111042493697237 -1.3435294117647059,-15.322497404055587,-15.322497404055587,0.00012394286029444016,0.00012394286029444016,-65.39878685318192,-65.39878685318192,0.022260154784201406,0.022260154784201406 -1.3458823529411765,-17.786932689884242,-17.786932689884242,6.757480612201803e-05,6.757480612201803e-05,-65.99854645290675,-65.99854645290675,0.022504102517298303,0.022504102517298303 -1.348235294117647,-17.992111078464557,-17.992111078464557,7.509089870628627e-05,7.509089870628627e-05,-66.60114639598558,-66.60114639598558,0.02281553404233156,0.02281553404233156 -1.3505882352941176,-19.791973694732498,-19.791973694732498,2.3674699446987986e-05,2.3674699446987986e-05,-67.20714625709485,-67.20714625709485,0.02303858259114901,0.02303858259114901 -1.3529411764705883,-19.462260838837082,-19.462260838837082,7.376561619783748e-05,7.376561619783748e-05,-67.81078395168423,-67.81078395168423,0.023105502690684378,0.023105502690684378 -1.3552941176470588,-19.10402114972801,-19.10402114972801,2.536310281925878e-05,2.536310281925878e-05,-68.4084151146474,-68.4084151146474,0.023115968253877784,0.023115968253877784 -1.3576470588235294,-18.009102349524333,-18.009102349524333,2.4539635422935897e-05,2.4539635422935897e-05,-69.00254380224303,-69.00254380224303,0.023168437445313262,0.023168437445313262 -1.3599999999999999,-18.508804183214142,-18.508804183214142,0.00014371086548761294,0.00014371086548761294,-69.5983979476492,-69.5983979476492,0.023242478842127903,0.023242478842127903 -1.3623529411764705,-18.901218085173355,-18.901218085173355,0.0001875720233278641,0.0001875720233278641,-70.19700863814845,-70.19700863814845,0.023210167319700957,0.023210167319700957 -1.3647058823529412,-19.71285600876365,-19.71285600876365,0.00010350018490599169,0.00010350018490599169,-70.79385997743503,-70.79385997743503,0.02301146899404163,0.02301146899404163 -1.3670588235294117,-20.013640198271414,-20.013640198271414,0.00010193630755211947,0.00010193630755211947,-71.38519570353114,-71.38519570353114,0.022704799506970845,0.022704799506970845 -1.3694117647058823,-17.623659928565367,-17.623659928565367,5.871103979727551e-05,5.871103979727551e-05,-71.97214456559432,-71.97214456559432,0.022375683316466256,0.022375683316466256 -1.371764705882353,-15.20742496212009,-15.20742496212009,1.9781526650831902e-05,1.9781526650831902e-05,-72.55813470189308,-72.55813470189308,0.022017023009045948,0.022017023009045948 -1.3741176470588234,-12.54653081772728,-12.54653081772728,0.000128147665538864,0.000128147665538864,-73.1439912830918,-73.1439912830918,0.021543972364946713,0.021543972364946713 -1.3764705882352941,-13.588286542370351,-13.588286542370351,9.938410888734595e-05,9.938410888734595e-05,-73.72588320050991,-73.72588320050991,0.020905590932947585,0.020905590932947585 -1.3788235294117648,-13.685606845537068,-13.685606845537068,0.00010334924154422283,0.00010334924154422283,-74.29918046628765,-74.29918046628765,0.02014905299433861,0.02014905299433861 -1.3811764705882352,-13.545939440419343,-13.545939440419343,2.7977770642327405e-05,2.7977770642327405e-05,-74.86276827766878,-74.86276827766878,0.019378819323466055,0.019378819323466055 -1.383529411764706,-12.70761689825817,-12.70761689825817,7.474874713125779e-05,7.474874713125779e-05,-75.41944614638594,-75.41944614638594,0.018637017008283373,0.018637017008283373 -1.3858823529411763,-13.045635420226423,-13.045635420226423,0.00012146156514640738,0.00012146156514640738,-75.97116046875188,-75.97116046875188,0.017890779795552016,0.017890779795552016 -1.388235294117647,-13.812994495993738,-13.812994495993738,0.00016137289543130111,0.00016137289543130111,-76.51551078834288,-76.51551078834288,0.01710500851175049,0.01710500851175049 -1.3905882352941177,-13.700369231474413,-13.700369231474413,0.00019406693420100107,0.00019406693420100107,-77.04845832420523,-77.04845832420523,0.016320788297702976,0.016320788297702976 -1.3929411764705881,-14.145443873603417,-14.145443873603417,9.515738922549919e-05,9.515738922549919e-05,-77.56928073984116,-77.56928073984116,0.015628502989199437,0.015628502989199437 -1.3952941176470588,-14.26942822358257,-14.26942822358257,0.00018319136914882544,0.00018319136914882544,-78.08275936391253,-78.08275936391253,0.015081249906073693,0.015081249906073693 -1.3976470588235295,-13.060855115792684,-13.060855115792684,8.596213892640632e-05,8.596213892640632e-05,-78.59369741480752,-78.59369741480752,0.014635526563618778,0.014635526563618778 -1.4,-13.336197129226324,-13.336197129226324,0.00016431420023423063,0.00016431420023423063,-79.10219851669466,-79.10219851669466,0.014231221219685505,0.014231221219685505 -1.4023529411764706,-13.806369160249329,-13.806369160249329,0.00013532489352074392,0.00013532489352074392,-79.60555094946486,-79.60555094946486,0.013861755517973966,0.013861755517973966 -1.4047058823529412,-14.832068765035677,-14.832068765035677,0.00014431597593041973,0.00014431597593041973,-80.10330658312961,-80.10330658312961,0.01357561503724056,0.01357561503724056 -1.4070588235294117,-12.535137888485488,-12.535137888485488,3.305582009570329e-05,3.305582009570329e-05,-80.59983356488753,-80.59983356488753,0.01339672428424419,0.01339672428424419 -1.4094117647058824,-13.30860141856841,-13.30860141856841,9.216601810449033e-05,9.216601810449033e-05,-81.09972881322716,-81.09972881322716,0.013276738406283468,0.013276738406283468 -1.4117647058823528,-13.89496514795343,-13.89496514795343,0.00018034744326363462,0.00018034744326363462,-81.60265205745597,-81.60265205745597,0.013145659278237938,0.013145659278237938 -1.4141176470588235,-13.863849079868931,-13.863849079868931,0.00018859566707571648,0.00018859566707571648,-82.10441969719102,-82.10441969719102,0.012977094890078446,0.012977094890078446 -1.4164705882352941,-13.68601271020145,-13.68601271020145,0.0001914992623553102,0.0001914992623553102,-82.6024823907808,-82.6024823907808,0.012802691893186734,0.012802691893186734 -1.4188235294117646,-14.953624350968076,-14.953624350968076,8.80438442119261e-05,8.80438442119261e-05,-83.09821158471848,-83.09821158471848,0.012657226051508326,0.012657226051508326 -1.4211764705882353,-15.990349697932238,-15.990349697932238,8.109512371376942e-05,8.109512371376942e-05,-83.59471389145207,-83.59471389145207,0.012528719783954815,0.012528719783954815 -1.423529411764706,-13.430790578555348,-13.430790578555348,0.00016175078783522618,0.00016175078783522618,-84.09220957471506,-84.09220957471506,0.0123682105532074,0.0123682105532074 -1.4258823529411764,-14.171003652170944,-14.171003652170944,0.0001436271540774821,0.0001436271540774821,-84.58748061029243,-84.58748061029243,0.012153510822185904,0.012153510822185904 -1.428235294117647,-15.003450111432276,-15.003450111432276,0.0001404579105266813,0.0001404579105266813,-85.07687029842974,-85.07687029842974,0.011908348637785804,0.011908348637785804 -1.4305882352941177,-15.152565893592607,-15.152565893592607,0.00018579058543171162,0.00018579058543171162,-85.56081283254753,-85.56081283254753,0.01167592202672055,0.01167592202672055 -1.4329411764705882,-15.909635328043661,-15.909635328043661,0.00010640762209161004,0.00010640762209161004,-86.04204805230313,-86.04204805230313,0.011469191167131177,0.011469191167131177 -1.4352941176470588,-13.699494654973154,-13.699494654973154,8.21391233498789e-05,8.21391233498789e-05,-86.52241617609104,-86.52241617609104,0.011253292901546504,0.011253292901546504 -1.4376470588235293,-14.733122048186477,-14.733122048186477,6.107232137184927e-05,6.107232137184927e-05,-87.00005644088876,-87.00005644088876,0.010998383983564557,0.010998383983564557 -1.44,-14.414644689790372,-14.414644689790372,0.00018038988630845277,0.00018038988630845277,-87.47079520010347,-87.47079520010347,0.0107116506483676,0.0107116506483676 -1.4423529411764706,-15.127972176347953,-15.127972176347953,0.00023448837744352311,0.00023448837744352311,-87.93307140924959,-87.93307140924959,0.010438702096255581,0.010438702096255581 -1.444705882352941,-15.872301702132313,-15.872301702132313,0.00014569748899075088,0.00014569748899075088,-88.3893644402088,-88.3893644402088,0.010206496953725082,0.010206496953725082 -1.4470588235294117,-14.862266726520136,-14.862266726520136,7.003275123206777e-05,7.003275123206777e-05,-88.8426825014339,-88.8426825014339,0.010003051483257343,0.010003051483257343 -1.4494117647058824,-14.49949277635227,-14.49949277635227,0.0001619593196001597,0.0001619593196001597,-89.2930660588421,-89.2930660588421,0.009796697411189178,0.009796697411189178 -1.4517647058823528,-14.636506745647658,-14.636506745647658,0.00020777501206343098,0.00020777501206343098,-89.73712541771602,-89.73712541771602,0.009580423012867174,0.009580423012867174 -1.4541176470588235,-14.323236036803213,-14.323236036803213,0.00021301459440504803,0.00021301459440504803,-90.1721420922817,-90.1721420922817,0.009381140545617155,0.009381140545617155 -1.4564705882352942,-15.181199641266863,-15.181199641266863,0.00019677744690516785,0.00019677744690516785,-90.59939267408232,-90.59939267408232,0.009238436608320171,0.009238436608320171 -1.4588235294117646,-15.211322612474396,-15.211322612474396,0.0001266912453308552,0.0001266912453308552,-91.02265563166691,-91.02265563166691,0.009154352827523998,0.009154352827523998 -1.4611764705882353,-14.580460431553924,-14.580460431553924,2.8589768709453832e-05,2.8589768709453832e-05,-91.44355547008895,-91.44355547008895,0.009107679282932856,0.009107679282932856 -1.4635294117647057,-14.374492581788642,-14.374492581788642,0.00021702460664275728,0.00021702460664275728,-91.8606374504682,-91.8606374504682,0.009085096083947523,0.009085096083947523 -1.4658823529411764,-14.665138954958673,-14.665138954958673,0.00019763430061509285,0.00019763430061509285,-92.27156421393586,-92.27156421393586,0.009106368467225548,0.009106368467225548 -1.468235294117647,-14.689476339920752,-14.689476339920752,0.00024029224281326138,0.00024029224281326138,-92.6791523134069,-92.6791523134069,0.009206843218405007,0.009206843218405007 -1.4705882352941178,-14.64113567224654,-14.64113567224654,7.925676167535632e-05,7.925676167535632e-05,-93.0882709131772,-93.0882709131772,0.00938978454649057,0.00938978454649057 -1.4729411764705882,-13.64143547840073,-13.64143547840073,4.589056950961951e-05,4.589056950961951e-05,-93.50289911079115,-93.50289911079115,0.00961379007611325,0.00961379007611325 -1.4752941176470589,-14.20353790731657,-14.20353790731657,0.00016504659284051124,0.00016504659284051124,-93.92152772112391,-93.92152772112391,0.009823530287956503,0.009823530287956503 -1.4776470588235295,-14.754132675154738,-14.754132675154738,0.00018175922984769072,0.00018175922984769072,-94.3389317647068,-94.3389317647068,0.009990437580915916,0.009990437580915916 -1.48,-14.952544962303046,-14.952544962303046,0.00014300016267647982,0.00014300016267647982,-94.75016967759358,-94.75016967759358,0.010124651337453116,0.010124651337453116 -1.4823529411764707,-15.662725435775965,-15.662725435775965,0.00010140185043390445,0.00010140185043390445,-95.15244176793941,-95.15244176793941,0.010267552768840284,0.010267552768840284 -1.484705882352941,-16.481566021626207,-16.481566021626207,6.238460806649348e-05,6.238460806649348e-05,-95.54580632216394,-95.54580632216394,0.010461561641633893,0.010461561641633893 -1.4870588235294118,-15.16396665682521,-15.16396665682521,0.00010544001973334298,0.00010544001973334298,-95.93155541841152,-95.93155541841152,0.010748467224105884,0.010748467224105884 -1.4894117647058822,-14.626173104208569,-14.626173104208569,0.00013080020915221923,0.00013080020915221923,-96.31321180471355,-96.31321180471355,0.011169941316963531,0.011169941316963531 -1.4917647058823529,-15.448481965144758,-15.448481965144758,0.00014085754039447497,0.00014085754039447497,-96.69651303696926,-96.69651303696926,0.011753415300686354,0.011753415300686354 -1.4941176470588236,-15.456643701352803,-15.456643701352803,0.00013850717262876277,0.00013850717262876277,-97.08743640760318,-97.08743640760318,0.012469817541560157,0.012469817541560157 -1.4964705882352942,-16.03057980768101,-16.03057980768101,0.00015120780598411012,0.00015120780598411012,-97.48701245123964,-97.48701245123964,0.013236001960992635,0.013236001960992635 -1.4988235294117647,-16.620378049268563,-16.620378049268563,9.365927236197841e-05,9.365927236197841e-05,-97.88973621341862,-97.88973621341862,0.013958002457731768,0.013958002457731768 -1.5011764705882353,-15.605263909391427,-15.605263909391427,7.972732782809445e-05,7.972732782809445e-05,-98.28553246045507,-98.28553246045507,0.014614634651806797,0.014614634651806797 -1.5035294117647058,-15.30096991935741,-15.30096991935741,0.00014507976960834005,0.00014507976960834005,-98.66582949689442,-98.66582949689442,0.015322466612159823,0.015322466612159823 -1.5058823529411764,-15.501787669750254,-15.501787669750254,0.00014382131123980905,0.00014382131123980905,-99.03160928213504,-99.03160928213504,0.01631016510396083,0.01631016510396083 -1.5082352941176471,-15.817784878687652,-15.817784878687652,0.00016484626193680925,0.00016484626193680925,-99.39519707285713,-99.39519707285713,0.017792069152571408,0.017792069152571408 -1.5105882352941176,-16.311893868049417,-16.311893868049417,0.00016004300241317934,0.00016004300241317934,-99.7720810309107,-99.7720810309107,0.019817579746295156,0.019817579746295156 -1.5129411764705882,-15.78514926050038,-15.78514926050038,0.0001254770222038848,0.0001254770222038848,-100.16935558686474,-100.16935558686474,0.0222489930685182,0.0222489930685182 -1.5152941176470587,-15.561545326997894,-15.561545326997894,0.00011080358286469298,0.00011080358286469298,-100.58307432715392,-100.58307432715392,0.024877880129651742,0.024877880129651742 -1.5176470588235293,-15.481614257774552,-15.481614257774552,0.00012000154377639157,0.00012000154377639157,-101.0041907745462,-101.0041907745462,0.02756194591371132,0.02756194591371132 -1.52,-15.75998573437564,-15.75998573437564,0.0001397705906471072,0.0001397705906471072,-101.42413110939498,-101.42413110939498,0.030316529152741724,0.030316529152741724 -1.5223529411764707,-15.989968276184214,-15.989968276184214,0.00013242739266606713,0.00013242739266606713,-101.83864113201152,-101.83864113201152,0.03331757944343185,0.03331757944343185 -1.5247058823529411,-16.21639603976916,-16.21639603976916,0.00012568280129671069,0.00012568280129671069,-102.24893573591113,-102.24893573591113,0.03683958690562847,0.03683958690562847 -1.5270588235294118,-16.097711810046558,-16.097711810046558,0.00011678086027494713,0.00011678086027494713,-102.66040670249899,-102.66040670249899,0.04113827283675404,0.04113827283675404 -1.5294117647058822,-16.069233410855155,-16.069233410855155,0.00010634223823608129,0.00010634223823608129,-103.07914471665325,-103.07914471665325,0.04636129918374691,0.04636129918374691 -1.531764705882353,-15.995390283114837,-15.995390283114837,0.0001025890719794349,0.0001025890719794349,-103.5090865202915,-103.5090865202915,0.05250983864784314,0.05250983864784314 -1.5341176470588236,-16.010590474404356,-16.010590474404356,0.00012574170422642345,0.00012574170422642345,-103.95085161691019,-103.95085161691019,0.05948261881312115,0.05948261881312115 -1.536470588235294,-16.11395600364791,-16.11395600364791,0.00012369736009662621,0.00012369736009662621,-104.40271615357771,-104.40271615357771,0.0671384649191437,0.0671384649191437 -1.5388235294117647,-16.239947201176477,-16.239947201176477,0.00012372040063972394,0.00012372040063972394,-104.86190353004918,-104.86190353004918,0.07535177064995877,0.07535177064995877 -1.5411764705882351,-16.27986164282712,-16.27986164282712,0.00011066287791879131,0.00011066287791879131,-105.32575274873194,-105.32575274873194,0.08405773777184192,0.08405773777184192 -1.5435294117647058,-16.23179446907943,-16.23179446907943,0.00010100636192609055,0.00010100636192609055,-105.79222914489966,-105.79222914489966,0.09326315138979491,0.09326315138979491 -1.5458823529411767,-16.236115533033868,-16.236115533033868,0.00011143762502174757,0.00011143762502174757,-106.26029468187653,-106.26029468187653,0.103034092148195,0.103034092148195 -1.5482352941176472,-16.21553790649566,-16.21553790649566,0.00011028628401948815,0.00011028628401948815,-106.72969543455744,-106.72969543455744,0.11345748640879241,0.11345748640879241 -1.5505882352941176,-16.216302633268104,-16.216302633268104,0.00011546054368723935,0.00011546054368723935,-107.20079388936239,-107.20079388936239,0.12460044847493004,0.12460044847493004 -1.5529411764705883,-16.33445763506534,-16.33445763506534,0.00011976661924631574,0.00011976661924631574,-107.67399393601646,-107.67399393601646,0.13646798199173815,0.13646798199173815 -1.5552941176470587,-16.404188288220492,-16.404188288220492,0.00011678891142666528,0.00011678891142666528,-108.14958175863984,-108.14958175863984,0.14899511889586464,0.14899511889586464 -1.5576470588235294,-16.417698107172562,-16.417698107172562,0.00011286201100539902,0.00011286201100539902,-108.62729172462137,-108.62729172462137,0.16205218869336493,0.16205218869336493 -1.5599999999999998,-16.449635369631427,-16.449635369631427,0.0001072521165871867,0.0001072521165871867,-109.10661317692582,-109.10661317692582,0.17549670137274725,0.17549670137274725 -1.5623529411764705,-16.439220989168323,-16.439220989168323,0.00010291720725966404,0.00010291720725966404,-109.58671888977968,-109.58671888977968,0.18920197475899117,0.18920197475899117 -1.5647058823529412,-16.44462718663325,-16.44462718663325,0.0001086090336912994,0.0001086090336912994,-110.06681258271581,-110.06681258271581,0.20308610643506092,0.20308610643506092 -1.5670588235294118,-16.45050766454035,-16.45050766454035,0.00010987436125198206,0.00010987436125198206,-110.54625944944618,-110.54625944944618,0.21712750568306408,0.21712750568306408 -1.5694117647058823,-16.537247855315073,-16.537247855315073,0.0001097162999703813,0.0001097162999703813,-111.02470545663205,-111.02470545663205,0.23135102762217813,0.23135102762217813 -1.571764705882353,-16.59681707664506,-16.59681707664506,0.00010874792395427684,0.00010874792395427684,-111.50199876662091,-111.50199876662091,0.24580372226346148,0.24580372226346148 -1.5741176470588236,-16.654245360053253,-16.654245360053253,0.00010745407168011153,0.00010745407168011153,-111.97829653808695,-111.97829653808695,0.26053480543526797,0.26053480543526797 -1.576470588235294,-16.693205680137858,-16.693205680137858,0.00010204555789227569,0.00010204555789227569,-112.45377573000903,-112.45377573000903,0.2755667479924456,0.2755667479924456 -1.5788235294117647,-16.741342808157434,-16.741342808157434,9.662182515750486e-05,9.662182515750486e-05,-112.92869206127055,-112.92869206127055,0.29088248703917186,0.29088248703917186 -1.5811764705882352,-16.698930228977407,-16.698930228977407,9.945846439190877e-05,9.945846439190877e-05,-113.40333523173624,-113.40333523173624,0.30641658416765544,0.30641658416765544 -1.5835294117647059,-16.73271597464408,-16.73271597464408,0.00010240431966274398,0.00010240431966274398,-113.8777427264142,-113.8777427264142,0.3220613476148202,0.3220613476148202 -1.5858823529411765,-16.81193721148605,-16.81193721148605,0.00010863286754314293,0.00010863286754314293,-114.35192286485793,-114.35192286485793,0.3376705732208177,0.3376705732208177 -1.5882352941176474,-16.851547208822897,-16.851547208822897,0.00010571966750142697,0.00010571966750142697,-114.82576170950486,-114.82576170950486,0.3530877790646111,0.3530877790646111 -1.5905882352941176,-16.908839350927597,-16.908839350927597,0.00010313969553535998,0.00010313969553535998,-115.29895152535244,-115.29895152535244,0.36817181454718845,0.36817181454718845 -1.592941176470588,-16.945258851298135,-16.945258851298135,9.694448549786087e-05,9.694448549786087e-05,-115.7712076767329,-115.7712076767329,0.3828143496356581,0.3828143496356581 -1.5952941176470588,-16.95209170617852,-16.95209170617852,9.76961416241853e-05,9.76961416241853e-05,-116.24222239407594,-116.24222239407594,0.3969535851732417,0.3969535851732417 -1.5976470588235294,-16.96646043501716,-16.96646043501716,9.823843783003983e-05,9.823843783003983e-05,-116.71178681960812,-116.71178681960812,0.4105771235402487,0.4105771235402487 -1.6,-17.00000530629347,-17.00000530629347,0.00010136022811555187,0.00010136022811555187,-117.17972913328904,-117.17972913328904,0.4236998494291152,0.4236998494291152 -1.6023529411764705,-17.029442215082614,-17.029442215082614,0.00010299048799665802,0.00010299048799665802,-117.64599824898485,-117.64599824898485,0.43635152297845514,0.43635152297845514 -1.6047058823529412,-17.048006505485766,-17.048006505485766,0.00010066649324374621,0.00010066649324374621,-118.11069596647945,-118.11069596647945,0.4485553015508911,0.4485553015508911 -1.6070588235294117,-17.096039623045844,-17.096039623045844,0.00010170537292211844,0.00010170537292211844,-118.57382546517455,-118.57382546517455,0.4603175955596177,0.4603175955596177 -1.6094117647058825,-17.14732457050771,-17.14732457050771,9.891275394506632e-05,9.891275394506632e-05,-119.0355285010162,-119.0355285010162,0.47162128295165306,0.47162128295165306 -1.611764705882353,-17.18338654517812,-17.18338654517812,9.62668687538397e-05,9.62668687538397e-05,-119.49587042164679,-119.49587042164679,0.4824326567492336,0.4824326567492336 -1.6141176470588237,-17.192390075888657,-17.192390075888657,9.221342350132633e-05,9.221342350132633e-05,-119.95484859514613,-119.95484859514613,0.4927070998388194,0.4927070998388194 -1.616470588235294,-17.20120756687677,-17.20120756687677,9.168892898935424e-05,9.168892898935424e-05,-120.41251575475856,-120.41251575475856,0.5023937499682191,0.5023937499682191 -1.6188235294117648,-17.227304574982572,-17.227304574982572,9.110256613764827e-05,9.110256613764827e-05,-120.86889286477333,-120.86889286477333,0.5114407486413713,0.5114407486413713 -1.6211764705882352,-17.266687913367136,-17.266687913367136,9.045475345356386e-05,9.045475345356386e-05,-121.32387938564185,-121.32387938564185,0.5197956792041957,0.5197956792041957 -1.6235294117647059,-17.326577541374903,-17.326577541374903,9.20178147432539e-05,9.20178147432539e-05,-121.77751447112178,-121.77751447112178,0.5274138745015596,0.5274138745015596 -1.6258823529411766,-17.397234042000704,-17.397234042000704,8.680068346995645e-05,8.680068346995645e-05,-122.22966474222233,-122.22966474222233,0.5342667973173392,0.5342667973173392 -1.6282352941176468,-17.456849934062106,-17.456849934062106,8.35404230468698e-05,8.35404230468698e-05,-122.68028159578061,-122.68028159578061,0.5403409607908104,0.5403409607908104 -1.630588235294118,-17.481069028367934,-17.481069028367934,8.366637406911221e-05,8.366637406911221e-05,-123.129302675535,-123.129302675535,0.545642144409429,0.545642144409429 -1.6329411764705881,-17.530417706895406,-17.530417706895406,8.172143801862834e-05,8.172143801862834e-05,-123.57671556048672,-123.57671556048672,0.5501900195521581,0.5501900195521581 -1.6352941176470588,-17.53419204168114,-17.53419204168114,7.999506828702464e-05,7.999506828702464e-05,-124.02247448057601,-124.02247448057601,0.5540097101846659,0.5540097101846659 -1.6376470588235295,-17.57977248636352,-17.57977248636352,8.303668089399542e-05,8.303668089399542e-05,-124.46659087188677,-124.46659087188677,0.5571254156605514,0.5571254156605514 -1.6400000000000001,-17.637657515585726,-17.637657515585726,8.223501194369355e-05,8.223501194369355e-05,-124.90915284563324,-124.90915284563324,0.5595494294502542,0.5595494294502542 -1.6423529411764706,-17.700937398967007,-17.700937398967007,8.256882418832482e-05,8.256882418832482e-05,-125.35014859522039,-125.35014859522039,0.5612888466635918,0.5612888466635918 -1.6447058823529415,-17.763258924138267,-17.763258924138267,8.53318571871928e-05,8.53318571871928e-05,-125.78962841700918,-125.78962841700918,0.5623471836894808,0.5623471836894808 -1.6470588235294117,-17.826588820282186,-17.826588820282186,8.189592546674557e-05,8.189592546674557e-05,-126.22754695244045,-126.22754695244045,0.5627236937245551,0.5627236937245551 -1.6494117647058824,-17.875954427570075,-17.875954427570075,8.065964482594873e-05,8.065964482594873e-05,-126.66401629605355,-126.66401629605355,0.5624194320094005,0.5624194320094005 -1.651764705882353,-17.872798800947944,-17.872798800947944,7.936983207161577e-05,7.936983207161577e-05,-127.0989917845748,-127.0989917845748,0.5614288570876717,0.5614288570876717 -1.6541176470588237,-17.883373259590236,-17.883373259590236,8.153428588767395e-05,8.153428588767395e-05,-127.53256177469218,-127.53256177469218,0.5597365012154335,0.5597365012154335 -1.6564705882352944,-17.91258808658556,-17.91258808658556,8.056388245226435e-05,8.056388245226435e-05,-127.96470598472872,-127.96470598472872,0.5573154487000513,0.5573154487000513 -1.6588235294117644,-17.91374986607914,-17.91374986607914,8.525870644200757e-05,8.525870644200757e-05,-128.39540502206606,-128.39540502206606,0.5541253743871077,0.5541253743871077 -1.6611764705882353,-17.999292789554005,-17.999292789554005,8.483562439395634e-05,8.483562439395634e-05,-128.82463249313466,-128.82463249313466,0.5501283823601865,0.5501283823601865 -1.663529411764706,-18.062593530681696,-18.062593530681696,8.461160087491835e-05,8.461160087491835e-05,-129.25229807398836,-129.25229807398836,0.5452879352062866,0.5452879352062866 -1.6658823529411766,-18.072037682669322,-18.072037682669322,8.587155313762574e-05,8.587155313762574e-05,-129.67823462868503,-129.67823462868503,0.5395855719424336,0.5395855719424336 -1.668235294117647,-18.136044554140017,-18.136044554140017,7.954875474615878e-05,7.954875474615878e-05,-130.1023488850697,-130.1023488850697,0.5330129702432052,0.5330129702432052 -1.670588235294118,-18.129691469933064,-18.129691469933064,7.640140712879844e-05,7.640140712879844e-05,-130.52444709570597,-130.52444709570597,0.52557993851994,0.52557993851994 -1.672941176470588,-18.14516330938797,-18.14516330938797,7.622067296150137e-05,7.622067296150137e-05,-130.94428525160208,-130.94428525160208,0.5173113263579009,0.5173113263579009 -1.6752941176470588,-18.176385657360854,-18.176385657360854,7.478996142338188e-05,7.478996142338188e-05,-131.36159979307635,-131.36159979307635,0.5082476880237732,0.5082476880237732 -1.6776470588235295,-18.208543687307717,-18.208543687307717,7.644147785861743e-05,7.644147785861743e-05,-131.77613317492762,-131.77613317492762,0.498449673073646,0.498449673073646 -1.68,-18.249464583461968,-18.249464583461968,7.806611173222422e-05,7.806611173222422e-05,-132.18747961429494,-132.18747961429494,0.48802607741352777,0.48802607741352777 -1.6823529411764706,-18.286497276859993,-18.286497276859993,7.793492727679361e-05,7.793492727679361e-05,-132.59522979583062,-132.59522979583062,0.4771289456406063,0.4771289456406063 -1.684705882352941,-18.38115668775282,-18.38115668775282,7.321293705141487e-05,7.321293705141487e-05,-132.9989655919574,-132.9989655919574,0.46597081206077495,0.46597081206077495 -1.6870588235294117,-18.444799731104112,-18.444799731104112,7.152696985715606e-05,7.152696985715606e-05,-133.39834514390566,-133.39834514390566,0.4548191399461689,0.4548191399461689 -1.6894117647058824,-18.49162738650593,-18.49162738650593,6.890178297603074e-05,6.890178297603074e-05,-133.7930957057532,-133.7930957057532,0.44398003383891466,0.44398003383891466 -1.6917647058823528,-18.537031262963325,-18.537031262963325,6.367535072539233e-05,6.367535072539233e-05,-134.1830675161789,-134.1830675161789,0.4337941797150231,0.4337941797150231 -1.6941176470588235,-18.50846743879714,-18.50846743879714,6.680819846670511e-05,6.680819846670511e-05,-134.56831029159108,-134.56831029159108,0.42462570610223893,0.42462570610223893 -1.6964705882352942,-18.551827520540638,-18.551827520540638,6.613402558401284e-05,6.613402558401284e-05,-134.94911901912076,-134.94911901912076,0.416846765835578,0.416846765835578 -1.6988235294117644,-18.63796264166827,-18.63796264166827,6.966429813947702e-05,6.966429813947702e-05,-135.32614700163873,-135.32614700163873,0.41083197654873826,0.41083197654873826 -1.7011764705882353,-18.69759948479581,-18.69759948479581,7.437586654301186e-05,7.437586654301186e-05,-135.70041961117508,-135.70041961117508,0.4069123920991502,0.4069123920991502 -1.7035294117647062,-18.817140453605354,-18.817140453605354,7.920852157992512e-05,7.920852157992512e-05,-136.0734574731557,-136.0734574731557,0.40532025360703955,0.40532025360703955 -1.7058823529411766,-18.906207030187844,-18.906207030187844,7.042074474178867e-05,7.042074474178867e-05,-136.44712409113816,-136.44712409113816,0.4061093427459286,0.4061093427459286 -1.7082352941176469,-18.98198847483852,-18.98198847483852,6.96526675801965e-05,6.96526675801965e-05,-136.82340593209074,-136.82340593209074,0.4090758777435292,0.4090758777435292 -1.7105882352941175,-18.928052256680413,-18.928052256680413,6.593469466218477e-05,6.593469466218477e-05,-137.2039810111039,-137.2039810111039,0.41373444027714995,0.41373444027714995 -1.7129411764705882,-18.95572629476271,-18.95572629476271,6.695170864413415e-05,6.695170864413415e-05,-137.590014629029,-137.590014629029,0.4193614164098452,0.4193614164098452 -1.7152941176470589,-18.992754847863036,-18.992754847863036,6.972222822157466e-05,6.972222822157466e-05,-137.98185995526617,-137.98185995526617,0.42507964128903014,0.42507964128903014 -1.7176470588235295,-19.017206239815785,-19.017206239815785,7.388621250851123e-05,7.388621250851123e-05,-138.37904413827752,-138.37904413827752,0.4300216827594088,0.4300216827594088 -1.72,-18.979731424080157,-18.979731424080157,7.70953887344137e-05,7.70953887344137e-05,-138.78042250006212,-138.78042250006212,0.4334630815486239,0.4334630815486239 -1.7223529411764709,-19.100866466159353,-19.100866466159353,8.678005139951396e-05,8.678005139951396e-05,-139.1845639417184,-139.1845639417184,0.4349216166628046,0.4349216166628046 -1.7247058823529409,-19.20934286321293,-19.20934286321293,7.985395509324856e-05,7.985395509324856e-05,-139.58980703446196,-139.58980703446196,0.4342257306245378,0.4342257306245378 -1.7270588235294118,-19.25698330975144,-19.25698330975144,7.59208543397924e-05,7.59208543397924e-05,-139.99468742716127,-139.99468742716127,0.4314981580298019,0.4314981580298019 -1.7294117647058824,-19.29375987731683,-19.29375987731683,7.14684361362159e-05,7.14684361362159e-05,-140.3980996882012,-140.3980996882012,0.4270898235115353,0.4270898235115353 -1.731764705882353,-19.282059419179255,-19.282059419179255,7.112922640949164e-05,7.112922640949164e-05,-140.79940703158104,-140.79940703158104,0.42147475143401375,0.42147475143401375 -1.7341176470588235,-19.2738997317699,-19.2738997317699,7.413260036993928e-05,7.413260036993928e-05,-141.1985919050905,-141.1985919050905,0.4151292140157107,0.4151292140157107 -1.7364705882352938,-19.416042007411455,-19.416042007411455,6.282304141795302e-05,6.282304141795302e-05,-141.5959832261552,-141.5959832261552,0.4084113874874478,0.4084113874874478 -1.7388235294117647,-19.215507839536038,-19.215507839536038,6.678140936486794e-05,6.678140936486794e-05,-141.99230008328726,-141.99230008328726,0.401500955387081,0.401500955387081 -1.7411764705882353,-19.312033733374,-19.312033733374,8.016657426438543e-05,8.016657426438543e-05,-142.38818941964269,-142.38818941964269,0.39438496407854196,0.39438496407854196 -1.743529411764706,-19.40030097748039,-19.40030097748039,7.965374601185647e-05,7.965374601185647e-05,-142.78418720579415,-142.78418720579415,0.38692253668636384,0.38692253668636384 -1.7458823529411764,-19.449196193947515,-19.449196193947515,7.935009623293697e-05,7.935009623293697e-05,-143.1804097282214,-143.1804097282214,0.378904186076985,0.378904186076985 -1.748235294117647,-19.588078003188045,-19.588078003188045,7.795630084945196e-05,7.795630084945196e-05,-143.57673679003742,-143.57673679003742,0.37014542032416553,0.37014542032416553 -1.7505882352941176,-19.66241460496582,-19.66241460496582,7.878155897243498e-05,7.878155897243498e-05,-143.97264950894893,-143.97264950894893,0.3605569234561009,0.3605569234561009 -1.7529411764705882,-19.69469824651762,-19.69469824651762,6.824134294962234e-05,6.824134294962234e-05,-144.36761227931532,-144.36761227931532,0.3501590026228199,0.3501590026228199 -1.7552941176470591,-19.64140792553425,-19.64140792553425,6.781410433858992e-05,6.781410433858992e-05,-144.7610948029172,-144.7610948029172,0.33906584355880914,0.33906584355880914 -1.7576470588235293,-19.523177636283325,-19.523177636283325,6.923285466327699e-05,6.923285466327699e-05,-145.1526616914952,-145.1526616914952,0.3274632824970751,0.3274632824970751 -1.76,-19.637596986146296,-19.637596986146296,6.5444036319965e-05,6.5444036319965e-05,-145.54210471963125,-145.54210471963125,0.3155471383966768,0.3155471383966768 -1.7623529411764705,-19.61362818060424,-19.61362818060424,7.688869939682085e-05,7.688869939682085e-05,-145.92940017593526,-145.92940017593526,0.3034933268814639,0.3034933268814639 -1.7647058823529411,-19.758372898538095,-19.758372898538095,8.872975629221597e-05,8.872975629221597e-05,-146.31468158194716,-146.31468158194716,0.29142886572240445,0.29142886572240445 -1.7670588235294116,-19.662865133237048,-19.662865133237048,9.447111366395211e-05,9.447111366395211e-05,-146.69809443395852,-146.69809443395852,0.2794302277760931,0.2794302277760931 -1.7694117647058827,-19.845726445100414,-19.845726445100414,6.758700620341848e-05,6.758700620341848e-05,-147.07980888583992,-147.07980888583992,0.2675327690720632,0.2675327690720632 -1.7717647058823531,-20.078854443027453,-20.078854443027453,7.68426067138316e-05,7.68426067138316e-05,-147.45983651116944,-147.45983651116944,0.25575394754767034,0.25575394754767034 -1.7741176470588236,-20.121218863263707,-20.121218863263707,7.328770274473872e-05,7.328770274473872e-05,-147.83822225550475,-147.83822225550475,0.24411003622561636,0.24411003622561636 -1.776470588235294,-20.555631840044185,-20.555631840044185,5.7220301767686974e-05,5.7220301767686974e-05,-148.21488812046778,-148.21488812046778,0.23262502950127753,0.23262502950127753 -1.7788235294117647,-20.079993273193043,-20.079993273193043,6.195101314969255e-05,6.195101314969255e-05,-148.58985208721768,-148.58985208721768,0.22133504581621108,0.22133504581621108 -1.7811764705882354,-19.831214245246706,-19.831214245246706,6.721599132843113e-05,6.721599132843113e-05,-148.96298506437552,-148.96298506437552,0.21027088468996347,0.21027088468996347 -1.7835294117647063,-19.95499085349407,-19.95499085349407,5.515480973748348e-05,5.515480973748348e-05,-149.33435063602246,-149.33435063602246,0.19946578383128627,0.19946578383128627 -1.7858823529411765,-20.092112353878846,-20.092112353878846,7.542442011563331e-05,7.542442011563331e-05,-149.7038980642647,-149.7038980642647,0.1889466255247858,0.1889466255247858 -1.7882352941176471,-20.15382216799405,-20.15382216799405,0.00010927357442377327,0.00010927357442377327,-150.0717056167326,-150.0717056167326,0.17872271934676404,0.17872271934676404 -1.7905882352941174,-20.351558212625587,-20.351558212625587,0.00011479611477001748,0.00011479611477001748,-150.43774347449033,-150.43774347449033,0.16881202373817902,0.16881202373817902 -1.7929411764705883,-20.372806813508944,-20.372806813508944,0.00010190037006889127,0.00010190037006889127,-150.8019342467127,-150.8019342467127,0.1592365597266452,0.1592365597266452 -1.795294117647059,-20.68975307056136,-20.68975307056136,9.156731033305587e-05,9.156731033305587e-05,-151.16430200763642,-151.16430200763642,0.15001590940305398,0.15001590940305398 -1.7976470588235294,-20.66278902890499,-20.66278902890499,7.332448497631175e-05,7.332448497631175e-05,-151.5248497111045,-151.5248497111045,0.14117462058686134,0.14117462058686134 -1.8,-20.47415110674418,-20.47415110674418,4.605521966615986e-05,4.605521966615986e-05,-151.88380589397477,-151.88380589397477,0.13273206879709043,0.13273206879709043 diff --git a/sparameters/rotate_f258530e_b70d6a24.yml b/sparameters/rotate_f258530e_b70d6a24.yml deleted file mode 100644 index 5a8a5961..00000000 --- a/sparameters/rotate_f258530e_b70d6a24.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 30 -fiber_xoffset: 21 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 108.05779433250427 -compute_time_minutes: 1.8009632388750711 diff --git a/sparameters/rotate_f258530e_c156aa56.csv b/sparameters/rotate_f258530e_c156aa56.csv deleted file mode 100644 index 2033c4e5..00000000 --- a/sparameters/rotate_f258530e_c156aa56.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,2.985095252799178,2.985095252799178,0.00024849403193720254,0.00024849403193720254,-0.45692230788325994,-0.45692230788325994,0.023829978421848905,0.023829978421848905 -1.2023529411764706,3.077393925933269,3.077393925933269,0.000290765369694465,0.000290765369694465,-1.8007677414493317,-1.8007677414493317,0.024509042734520467,0.024509042734520467 -1.204705882352941,3.365079843336136,3.365079843336136,0.0002347568701261801,0.0002347568701261801,-3.1510242383569236,-3.1510242383569236,0.02465051390722736,0.02465051390722736 -1.2070588235294117,4.109829395154525,4.109829395154525,0.00018524124783059778,0.00018524124783059778,-4.484707837270387,-4.484707837270387,0.024140268668247578,0.024140268668247578 -1.2094117647058824,4.8827368802380064,4.8827368802380064,0.0002216463221701469,0.0002216463221701469,-5.7850296232698835,-5.7850296232698835,0.02335116470222045,0.02335116470222045 -1.2117647058823529,4.965453162739985,4.965453162739985,0.00022077780156240295,0.00022077780156240295,-7.054435698072811,-7.054435698072811,0.022840925395413544,0.022840925395413544 -1.2141176470588235,4.972718988055483,4.972718988055483,7.144074279892864e-05,7.144074279892864e-05,-8.316362628324026,-8.316362628324026,0.022880425615335997,0.022880425615335997 -1.216470588235294,3.0832268897838997,3.0832268897838997,4.272551020876003e-05,4.272551020876003e-05,-9.593933872326872,-9.593933872326872,0.023211148032229456,0.023211148032229456 -1.2188235294117646,2.1685827705058216,2.1685827705058216,0.0001980826563791024,0.0001980826563791024,-10.891295798016873,-10.891295798016873,0.02334782116904678,0.02334782116904678 -1.2211764705882353,2.578367554276428,2.578367554276428,0.00022198222352135652,0.00022198222352135652,-12.197382001362682,-12.197382001362682,0.02302014541135833,0.02302014541135833 -1.2235294117647058,3.167734363946198,3.167734363946198,0.0002111331110881513,0.0002111331110881513,-13.499557286082181,-13.499557286082181,0.02231752607296891,0.02231752607296891 -1.2258823529411764,3.7633087967867738,3.7633087967867738,0.0002869963191684596,0.0002869963191684596,-14.793952104434764,-14.793952104434764,0.02155440207700891,0.02155440207700891 -1.228235294117647,4.113749195139471,4.113749195139471,0.00027788537213804994,0.00027788537213804994,-16.08889824223952,-16.08889824223952,0.020965452069474068,0.020965452069474068 -1.2305882352941175,4.177290802321757,4.177290802321757,0.00014619855610036796,0.00014619855610036796,-17.396921130753373,-17.396921130753373,0.020551065397115386,0.020551065397115386 -1.2329411764705882,2.9467852283217044,2.9467852283217044,4.385860764171558e-05,4.385860764171558e-05,-18.72276619122787,-18.72276619122787,0.020094555026775696,0.020094555026775696 -1.2352941176470589,1.576886888281168,1.576886888281168,0.000222889110030443,0.000222889110030443,-20.05872908745282,-20.05872908745282,0.01941048112032221,0.01941048112032221 -1.2376470588235293,2.0900922223014238,2.0900922223014238,0.0002771841872894303,0.0002771841872894303,-21.390149049434527,-21.390149049434527,0.018487442977673327,0.018487442977673327 -1.24,2.538772406589978,2.538772406589978,0.00025772745760768446,0.00025772745760768446,-22.704264176686053,-22.704264176686053,0.017531715512318732,0.017531715512318732 -1.2423529411764704,3.1923534897557553,3.1923534897557553,0.0003007121832870712,0.0003007121832870712,-24.00084081475512,-24.00084081475512,0.016834392004193555,0.016834392004193555 -1.244705882352941,3.715786470318027,3.715786470318027,0.0003276447662127059,0.0003276447662127059,-25.298232133741617,-25.298232133741617,0.016556119071923687,0.016556119071923687 -1.2470588235294118,3.987844572934552,3.987844572934552,0.00024042739676928684,0.00024042739676928684,-26.621874472833913,-26.621874472833913,0.016547582029328944,0.016547582029328944 -1.2494117647058822,3.9059615660386426,3.9059615660386426,9.591653394022594e-05,9.591653394022594e-05,-27.98807792823541,-27.98807792823541,0.016425408880218796,0.016425408880218796 -1.251764705882353,1.7326159355868596,1.7326159355868596,0.00012745631211993327,0.00012745631211993327,-29.399221888351626,-29.399221888351626,0.015800232334751387,0.015800232334751387 -1.2541176470588236,1.7895313871628236,1.7895313871628236,0.00022371842473992772,0.00022371842473992772,-30.851168140226868,-30.851168140226868,0.014470673716558077,0.014470673716558077 -1.256470588235294,2.2122977420215797,2.2122977420215797,0.0003075886800922532,0.0003075886800922532,-32.34085303769486,-32.34085303769486,0.012471130740661135,0.012471130740661135 -1.2588235294117647,2.976079638110076,2.976079638110076,0.00038048321391499426,0.00038048321391499426,-33.86938472800807,-33.86938472800807,0.010038372482116479,0.010038372482116479 -1.2611764705882353,3.933218360601002,3.933218360601002,0.0002520315992459998,0.0002520315992459998,-35.44376165224357,-35.44376165224357,0.007513337513804137,0.007513337513804137 -1.2635294117647058,5.393879701860994,5.393879701860994,0.0004009097675458458,0.0004009097675458458,-37.077021882767895,-37.077021882767895,0.005238976589631931,0.005238976589631931 -1.2658823529411765,6.6496869434299475,6.6496869434299475,0.0006585388265015141,0.0006585388265015141,-38.782095921213745,-38.782095921213745,0.003440967563067253,0.003440967563067253 -1.268235294117647,7.9286291093367325,7.9286291093367325,0.0008022779081138796,0.0008022779081138796,-40.55770152794728,-40.55770152794728,0.0021560321426193,0.0021560321426193 -1.2705882352941176,9.349699558439216,9.349699558439216,0.0016371244446586805,0.0016371244446586805,-42.39248054794128,-42.39248054794128,0.0012498308481832235,0.0012498308481832235 -1.2729411764705882,10.799127490712927,10.799127490712927,0.004592013904056267,0.004592013904056267,-44.401514815193224,-44.401514815193224,0.0005859427930046574,0.0005859427930046574 -1.2752941176470587,12.978766772918094,12.978766772918094,0.006679675281960962,0.006679675281960962,-47.25437842792616,-47.25437842792616,0.00033394213951621216,0.00033394213951621216 -1.2776470588235294,14.732087585577954,14.732087585577954,0.0025372525988116013,0.0025372525988116013,-49.56156382327475,-49.56156382327475,0.0005523931331019465,0.0005523931331019465 -1.28,16.29098134221003,16.29098134221003,0.0025467943150306697,0.0025467943150306697,-51.2764199679324,-51.2764199679324,0.0006551710589837609,0.0006551710589837609 -1.2823529411764705,17.169811680369357,17.169811680369357,0.0034349976927768844,0.0034349976927768844,-52.86219945735769,-52.86219945735769,0.00054714502297207,0.00054714502297207 -1.2847058823529411,18.036564146263085,18.036564146263085,0.006646685151173262,0.006646685151173262,-54.46185270014566,-54.46185270014566,0.0002875778608203781,0.0002875778608203781 -1.2870588235294118,21.177482762301718,21.177482762301718,0.017564278383167112,0.017564278383167112,-51.432934530450936,-51.432934530450936,6.236816970387653e-05,6.236816970387653e-05 -1.2894117647058823,23.206532070485252,23.206532070485252,0.00523454270198721,0.00523454270198721,-53.83434616475546,-53.83434616475546,0.00027728236627987303,0.00027728236627987303 -1.291764705882353,24.147307793289745,24.147307793289745,0.005797193437018322,0.005797193437018322,-55.33440239949185,-55.33440239949185,0.0003906303505965289,0.0003906303505965289 -1.2941176470588236,25.071305705555982,25.071305705555982,0.0050365812845254146,0.0050365812845254146,-56.76534333869204,-56.76534333869204,0.0003576990168489633,0.0003576990168489633 -1.296470588235294,25.954761172463357,25.954761172463357,0.006570132662125759,0.006570132662125759,-58.162577584448854,-58.162577584448854,0.00020989395577027865,0.00020989395577027865 -1.2988235294117647,26.770490712800722,26.770490712800722,0.11635873668063908,0.11635873668063908,-59.19915663407758,-59.19915663407758,1.380212937507682e-05,1.380212937507682e-05 -1.3011764705882352,24.880258345248766,24.880258345248766,0.011287288021988084,0.011287288021988084,-57.83224204203911,-57.83224204203911,0.00016204841803084413,0.00016204841803084413 -1.3035294117647058,25.473731516341523,25.473731516341523,0.0057142657134769586,0.0057142657134769586,-59.17183743347123,-59.17183743347123,0.00025896138299030266,0.00025896138299030266 -1.3058823529411765,26.51931072742173,26.51931072742173,0.004138982078601493,0.004138982078601493,-60.49284772410123,-60.49284772410123,0.0002543957120437289,0.0002543957120437289 -1.308235294117647,27.63712245527758,27.63712245527758,0.006351306162531513,0.006351306162531513,-61.75908936926522,-61.75908936926522,0.00016153631257914846,0.00016153631257914846 -1.3105882352941176,27.610014154546015,27.610014154546015,0.04990228751128015,0.04990228751128015,-62.309260485980445,-62.309260485980445,3.0479169880506398e-05,3.0479169880506398e-05 -1.3129411764705883,26.060372540924583,26.060372540924583,0.0093612141754889,0.0093612141754889,-61.56931654760563,-61.56931654760563,0.0001181082624695706,0.0001181082624695706 -1.3152941176470587,26.91645596048946,26.91645596048946,0.0034479818752783022,0.0034479818752783022,-62.74672105780826,-62.74672105780826,0.00019889305519881777,0.00019889305519881777 -1.3176470588235294,27.835317033271657,27.835317033271657,0.0043331545928842075,0.0043331545928842075,-63.94697369143578,-63.94697369143578,0.00020422407153939136,0.00020422407153939136 -1.32,28.48499611693497,28.48499611693497,0.007830587832532257,0.007830587832532257,-65.04068598287107,-65.04068598287107,0.00013951985663321535,0.00013951985663321535 -1.3223529411764705,28.519558651944653,28.519558651944653,0.019832804927590306,0.019832804927590306,-65.37056492220928,-65.37056492220928,5.860117297828787e-05,5.860117297828787e-05 -1.3247058823529412,27.625779865989934,27.625779865989934,0.008895438329714237,0.008895438329714237,-65.2721833687995,-65.2721833687995,0.00011569038071471458,0.00011569038071471458 -1.3270588235294118,28.170414422032245,28.170414422032245,0.005610824867202607,0.005610824867202607,-66.24735807654193,-66.24735807654193,0.0001882304013028028,0.0001882304013028028 -1.3294117647058823,28.94804143416354,28.94804143416354,0.004683518782270765,0.004683518782270765,-67.32620940764978,-67.32620940764978,0.0002055617514692579,0.0002055617514692579 -1.331764705882353,29.245268821801822,29.245268821801822,0.006423057624125683,0.006423057624125683,-68.31530581906709,-68.31530581906709,0.00016702786852059866,0.00016702786852059866 -1.3341176470588234,29.389138621582063,29.389138621582063,0.007803732070729574,0.007803732070729574,-68.92617856738157,-68.92617856738157,0.00010982146399592228,0.00010982146399592228 -1.336470588235294,29.221647579382115,29.221647579382115,0.004823667139309404,0.004823667139309404,-69.13651662884998,-69.13651662884998,0.0001229029067695094,0.0001229029067695094 -1.3388235294117647,29.827440725837995,29.827440725837995,0.003955348463651232,0.003955348463651232,-69.8646719082393,-69.8646719082393,0.00018404816368480616,0.00018404816368480616 -1.3411764705882352,30.414797686423963,30.414797686423963,0.004256571684149975,0.004256571684149975,-70.82447558039894,-70.82447558039894,0.0002179414931726292,0.0002179414931726292 -1.3435294117647059,30.85119613914683,30.85119613914683,0.0051563812921231215,0.0051563812921231215,-71.78636409083164,-71.78636409083164,0.00020604135898778607,0.00020604135898778607 -1.3458823529411765,31.166759578526552,31.166759578526552,0.0025382412209444386,0.0025382412209444386,-72.58492397347676,-72.58492397347676,0.00016410564626688414,0.00016410564626688414 -1.348235294117647,31.61584543335317,31.61584543335317,0.005055303397111764,0.005055303397111764,-73.07468439743258,-73.07468439743258,0.0001406125073638516,0.0001406125073638516 -1.3505882352941176,31.75395895007807,31.75395895007807,0.004884938337763368,0.004884938337763368,-73.59836342846613,-73.59836342846613,0.00017193998393551455,0.00017193998393551455 -1.3529411764705883,31.753542298370498,31.753542298370498,0.0034518077935610566,0.0034518077935610566,-74.39409326053296,-74.39409326053296,0.00021393779480421762,0.00021393779480421762 -1.3552941176470588,32.14094295345177,32.14094295345177,0.002489032339866868,0.002489032339866868,-75.29483702872675,-75.29483702872675,0.00022625703816372806,0.00022625703816372806 -1.3576470588235294,33.259302003277774,33.259302003277774,0.0018000125685385332,0.0018000125685385332,-76.1508602969682,-76.1508602969682,0.0002025957407656785,0.0002025957407656785 -1.3599999999999999,33.68566386183995,33.68566386183995,0.004104225665245102,0.004104225665245102,-76.828974169424,-76.828974169424,0.00016527005232689547,0.00016527005232689547 -1.3623529411764705,33.33894574245455,33.33894574245455,0.002221604744115637,0.002221604744115637,-77.30011589043178,-77.30011589043178,0.00015704089636196463,0.00015704089636196463 -1.3647058823529412,32.53324155648275,32.53324155648275,0.0011984728581511778,0.0011984728581511778,-77.8783063234065,-77.8783063234065,0.00018524036788544206,0.00018524036788544206 -1.3670588235294117,33.29299411246519,33.29299411246519,0.000472165264484027,0.000472165264484027,-78.62700675221181,-78.62700675221181,0.00021053420450316393,0.00021053420450316393 -1.3694117647058823,34.89947209567588,34.89947209567588,0.0014037147158606133,0.0014037147158606133,-79.3996512307297,-79.3996512307297,0.0002078583394734809,0.0002078583394734809 -1.371764705882353,34.854143896637,34.854143896637,0.0011777182540216446,0.0011777182540216446,-80.04158457815387,-80.04158457815387,0.00018615852054868647,0.00018615852054868647 -1.3741176470588234,34.056321578088095,34.056321578088095,0.0014323086766939797,0.0014323086766939797,-80.48639238184884,-80.48639238184884,0.00018675780961715225,0.00018675780961715225 -1.3764705882352941,34.022504841237584,34.022504841237584,0.0004113810905349858,0.0004113810905349858,-80.98985510827424,-80.98985510827424,0.00023999239276306124,0.00023999239276306124 -1.3788235294117648,35.37109750348507,35.37109750348507,0.0001534716292955414,0.0001534716292955414,-81.68508552954428,-81.68508552954428,0.00031885589218806653,0.00031885589218806653 -1.3811764705882352,36.02683428163305,36.02683428163305,0.0006582974046190253,0.0006582974046190253,-82.46706451632512,-82.46706451632512,0.00039238396191344755,0.00039238396191344755 -1.383529411764706,35.561210347340236,35.561210347340236,0.000859954753337239,0.000859954753337239,-83.25739720977819,-83.25739720977819,0.000453543191788155,0.000453543191788155 -1.3858823529411763,35.33858422395216,35.33858422395216,0.0006030583927370039,0.0006030583927370039,-84.02865507539366,-84.02865507539366,0.0005129946786636956,0.0005129946786636956 -1.388235294117647,36.54447638237548,36.54447638237548,0.0005227379788041842,0.0005227379788041842,-84.7952660085903,-84.7952660085903,0.0005877919185577339,0.0005877919185577339 -1.3905882352941177,36.99093951317573,36.99093951317573,0.0006052564055602052,0.0006052564055602052,-85.58582656718599,-85.58582656718599,0.0006831686427611513,0.0006831686427611513 -1.3929411764705881,37.577845088674835,37.577845088674835,0.0007457698910933932,0.0007457698910933932,-86.41255342910746,-86.41255342910746,0.0007880258099934794,0.0007880258099934794 -1.3952941176470588,37.81047442090831,37.81047442090831,0.0007813410749397702,0.0007813410749397702,-87.26609609479772,-87.26609609479772,0.0008858496622086519,0.0008858496622086519 -1.3976470588235295,38.143537462523874,38.143537462523874,0.00035886389686176694,0.00035886389686176694,-88.12970376244432,-88.12970376244432,0.0009645905504664037,0.0009645905504664037 -1.4,39.44916551098622,39.44916551098622,0.0003568624533295211,0.0003568624533295211,-88.98876049259114,-88.98876049259114,0.0010230480962075362,0.0010230480962075362 -1.4023529411764706,40.05104356146422,40.05104356146422,0.00040601260117143975,0.00040601260117143975,-89.83616339509777,-89.83616339509777,0.0010699055441167871,0.0010699055441167871 -1.4047058823529412,40.325800145409374,40.325800145409374,0.0004188549606987117,0.0004188549606987117,-90.6747746367669,-90.6747746367669,0.0011166368294530712,0.0011166368294530712 -1.4070588235294117,40.88886991433481,40.88886991433481,0.0003539394747079917,0.0003539394747079917,-91.51336808665656,-91.51336808665656,0.0011701827798032414,0.0011701827798032414 -1.4094117647058824,41.58629067512114,41.58629067512114,0.0003697513543536398,0.0003697513543536398,-92.36106674434727,-92.36106674434727,0.0012285226580673882,0.0012285226580673882 -1.4117647058823528,42.08673367441093,42.08673367441093,0.00043871691195238683,0.00043871691195238683,-93.22025779626449,-93.22025779626449,0.0012832750442338876,0.0012832750442338876 -1.4141176470588235,42.73851101070591,42.73851101070591,0.0005248551024484801,0.0005248551024484801,-94.08713373939054,-94.08713373939054,0.0013265667074246136,0.0013265667074246136 -1.4164705882352941,42.833522914460644,42.833522914460644,0.000575768426345549,0.000575768426345549,-94.95449830768493,-94.95449830768493,0.001356974532604153,0.001356974532604153 -1.4188235294117646,42.98570982826424,42.98570982826424,0.00040905024099574397,0.00040905024099574397,-95.81612422268633,-95.81612422268633,0.0013798494447511205,0.0013798494447511205 -1.4211764705882353,43.558738116538045,43.558738116538045,0.00029460114565726497,0.00029460114565726497,-96.66934182792727,-96.66934182792727,0.001405613201461894,0.001405613201461894 -1.423529411764706,44.50944029619983,44.50944029619983,0.000267427074742135,0.000267427074742135,-97.5168499236898,-97.5168499236898,0.0014444370199861508,0.0014444370199861508 -1.4258823529411764,44.73621597025405,44.73621597025405,0.00023537161054821182,0.00023537161054821182,-98.36355492516618,-98.36355492516618,0.0015009839858785786,0.0015009839858785786 -1.428235294117647,44.81323512340573,44.81323512340573,0.00021947029174407422,0.00021947029174407422,-99.21343897082744,-99.21343897082744,0.0015733510363324346,0.0015733510363324346 -1.4305882352941177,45.562885167434814,45.562885167434814,0.00017826813136245413,0.00017826813136245413,-100.06668319770539,-100.06668319770539,0.0016548788078443292,0.0016548788078443292 -1.4329411764705882,47.02337275414696,47.02337275414696,0.00016928072936129728,0.00016928072936129728,-100.91898214638645,-100.91898214638645,0.0017406162995436192,0.0017406162995436192 -1.4352941176470588,47.28891405809644,47.28891405809644,0.00023552852560149897,0.00023552852560149897,-101.76557643471384,-101.76557643471384,0.0018284478819564913,0.0018284478819564913 -1.4376470588235293,47.30724863397573,47.30724863397573,0.00034459846776217215,0.00034459846776217215,-102.60206727178013,-102.60206727178013,0.0019224926077814114,0.0019224926077814114 -1.44,47.803163839326835,47.803163839326835,0.0003416741582149194,0.0003416741582149194,-103.42745442311795,-103.42745442311795,0.002030975107843395,0.002030975107843395 -1.4423529411764706,47.809589130477285,47.809589130477285,0.0002939785010626467,0.0002939785010626467,-104.24399548921329,-104.24399548921329,0.0021619501425780914,0.0021619501425780914 -1.444705882352941,48.54288645486205,48.54288645486205,0.00029116134255261953,0.00029116134255261953,-105.05555207586724,-105.05555207586724,0.002318844498711764,0.002318844498711764 -1.4470588235294117,48.7908867467547,48.7908867467547,0.0002738924419681527,0.0002738924419681527,-105.86496719248385,-105.86496719248385,0.002499270854679933,0.002499270854679933 -1.4494117647058824,49.01602279935893,49.01602279935893,0.00023719371201516058,0.00023719371201516058,-106.67283491024897,-106.67283491024897,0.0026969309854903666,0.0026969309854903666 -1.4517647058823528,49.19606936612288,49.19606936612288,0.0002662314382437447,0.0002662314382437447,-107.47764580025542,-107.47764580025542,0.002905243639910798,0.002905243639910798 -1.4541176470588235,49.35590015169802,49.35590015169802,0.00014617306161717375,0.00014617306161717375,-108.27653457472259,-108.27653457472259,0.0031232058033191304,0.0031232058033191304 -1.4564705882352942,49.51749443265529,49.51749443265529,4.501951476318257e-05,4.501951476318257e-05,-109.06795242397834,-109.06795242397834,0.003355621280930453,0.003355621280930453 -1.4588235294117646,52.142636352862624,52.142636352862624,4.4136278091426926e-05,4.4136278091426926e-05,-109.85188650940984,-109.85188650940984,0.003612692027937273,0.003612692027937273 -1.4611764705882353,52.616678521375135,52.616678521375135,0.0001012761005076084,0.0001012761005076084,-110.6305940824737,-110.6305940824737,0.003905187853429506,0.003905187853429506 -1.4635294117647057,52.86224078213256,52.86224078213256,0.00014032337478848915,0.00014032337478848915,-111.40707833834072,-111.40707833834072,0.0042401396819476455,0.0042401396819476455 -1.4658823529411764,53.14657499441694,53.14657499441694,0.00013050788377819028,0.00013050788377819028,-112.18381774211208,-112.18381774211208,0.004617994627570514,0.004617994627570514 -1.468235294117647,53.56192881945483,53.56192881945483,0.00018162635817105897,0.00018162635817105897,-112.96198698238396,-112.96198698238396,0.005034595167655849,0.005034595167655849 -1.4705882352941178,53.813274437837144,53.813274437837144,0.00018668883816470478,0.00018668883816470478,-113.74136656831148,-113.74136656831148,0.005485122271657075,0.005485122271657075 -1.4729411764705882,53.881082551658054,53.881082551658054,0.00020277013533647948,0.00020277013533647948,-114.52113419513924,-114.52113419513924,0.005967950377491647,0.005967950377491647 -1.4752941176470589,54.00852856973419,54.00852856973419,0.00021234359507749115,0.00021234359507749115,-115.30043010783241,-115.30043010783241,0.006487067805708063,0.006487067805708063 -1.4776470588235295,54.09734930699667,54.09734930699667,0.0001888519147954865,0.0001888519147954865,-116.07934252029108,-116.07934252029108,0.007050981756264138,0.007050981756264138 -1.48,54.149322213952566,54.149322213952566,0.00015566019237983524,0.00015566019237983524,-116.85862255872777,-116.85862255872777,0.007669321078515834,0.007669321078515834 -1.4823529411764707,54.18364312952684,54.18364312952684,0.00012704286397533939,0.00012704286397533939,-117.63949848257599,-117.63949848257599,0.008348961082778841,0.008348961082778841 -1.484705882352941,54.28083967291734,54.28083967291734,0.0001096758492576646,0.0001096758492576646,-118.42316027915588,-118.42316027915588,0.009090694555969404,0.009090694555969404 -1.4870588235294118,54.12722159596091,54.12722159596091,7.781560815295407e-05,7.781560815295407e-05,-119.21020820598382,-119.21020820598382,0.009889113358608008,0.009889113358608008 -1.4894117647058822,53.9189711266672,53.9189711266672,7.373645150030924e-05,7.373645150030924e-05,-120.00052598516987,-120.00052598516987,0.010734402566911072,0.010734402566911072 -1.4917647058823529,53.58186887353541,53.58186887353541,8.737803523349229e-05,8.737803523349229e-05,-120.79357342554073,-120.79357342554073,0.011616067452882623,0.011616067452882623 -1.4941176470588236,53.440975913786254,53.440975913786254,0.00010523278862547774,0.00010523278862547774,-121.58861602593137,-121.58861602593137,0.012524713083565814,0.012524713083565814 -1.4964705882352942,53.39213464094237,53.39213464094237,0.00012040756952695942,0.00012040756952695942,-122.38489642873908,-122.38489642873908,0.013454204460506209,0.013454204460506209 -1.4988235294117647,53.32411746029746,53.32411746029746,0.0001483709660481822,0.0001483709660481822,-123.18198301785065,-123.18198301785065,0.014399709187040732,0.014399709187040732 -1.5011764705882353,53.369247531602554,53.369247531602554,0.0001555819175586571,0.0001555819175586571,-123.9796783017408,-123.9796783017408,0.015356477657197292,0.015356477657197292 -1.5035294117647058,53.474281941585744,53.474281941585744,0.00015673236922581402,0.00015673236922581402,-124.7779103665878,-124.7779103665878,0.01631691366741017,0.01631691366741017 -1.5058823529411764,53.57331308795155,53.57331308795155,0.0001477364493270321,0.0001477364493270321,-125.57664942980676,-125.57664942980676,0.017268803600044676,0.017268803600044676 -1.5082352941176471,53.656481442555815,53.656481442555815,0.00013563363013936765,0.00013563363013936765,-126.37570714370553,-126.37570714370553,0.018195410551946622,0.018195410551946622 -1.5105882352941176,53.66078866256946,53.66078866256946,0.00012835276947763868,0.00012835276947763868,-127.17467089921573,-127.17467089921573,0.019076306903884822,0.019076306903884822 -1.5129411764705882,53.68901580808612,53.68901580808612,0.00011640986825499694,0.00011640986825499694,-127.97290878954192,-127.97290878954192,0.019891351654405916,0.019891351654405916 -1.5152941176470587,53.61060525414255,53.61060525414255,0.00010718179151157998,0.00010718179151157998,-128.76958832884333,-128.76958832884333,0.0206226884565782,0.0206226884565782 -1.5176470588235293,53.41933758467935,53.41933758467935,0.00010183240219164857,0.00010183240219164857,-129.56378848808947,-129.56378848808947,0.021257820776897415,0.021257820776897415 -1.52,53.23663555911749,53.23663555911749,0.00010368751118067961,0.00010368751118067961,-130.35464574719063,-130.35464574719063,0.021790892198559345,0.021790892198559345 -1.5223529411764707,53.057457554798205,53.057457554798205,0.0001090785030667531,0.0001090785030667531,-131.1414984573217,-131.1414984573217,0.02222245731698416,0.02222245731698416 -1.5247058823529411,53.02976268814043,53.02976268814043,0.00011519617881971007,0.00011519617881971007,-131.92384135802777,-131.92384135802777,0.022557726078535196,0.022557726078535196 -1.5270588235294118,53.00943302137007,53.00943302137007,0.00012039632385235137,0.00012039632385235137,-132.70142691668602,-132.70142691668602,0.02280413523652847,0.02280413523652847 -1.5294117647058822,53.03029760400287,53.03029760400287,0.00012618144695280837,0.00012618144695280837,-133.4741861046677,-133.4741861046677,0.022968666475032526,0.022968666475032526 -1.531764705882353,53.066354716942136,53.066354716942136,0.00013317391020348425,0.00013317391020348425,-134.2422046747467,-134.2422046747467,0.0230556348509529,0.0230556348509529 -1.5341176470588236,53.14107967196566,53.14107967196566,0.00013769929392368118,0.00013769929392368118,-135.00551607106624,-135.00551607106624,0.023066972784012298,0.023066972784012298 -1.536470588235294,53.135838074385106,53.135838074385106,0.00013726684520125288,0.00013726684520125288,-135.76416438185726,-135.76416438185726,0.02300227295782072,0.02300227295782072 -1.5388235294117647,53.201354388939066,53.201354388939066,0.00013876751139025117,0.00013876751139025117,-136.51785761401806,-136.51785761401806,0.022861533910565203,0.022861533910565203 -1.5411764705882351,53.201189537110906,53.201189537110906,0.00012929161937001276,0.00012929161937001276,-137.26642311907705,-137.26642311907705,0.022646966321909084,0.022646966321909084 -1.5435294117647058,53.15079605606452,53.15079605606452,0.00011867964635906627,0.00011867964635906627,-138.00939166798722,-138.00939166798722,0.022364919813757923,0.022364919813757923 -1.5458823529411767,53.0851979114757,53.0851979114757,0.00010587585423676615,0.00010587585423676615,-138.74650939287662,-138.74650939287662,0.022026463928705244,0.022026463928705244 -1.5482352941176472,53.03369361623875,53.03369361623875,9.870082698264301e-05,9.870082698264301e-05,-139.47750827698687,-139.47750827698687,0.021645853087555587,0.021645853087555587 -1.5505882352941176,52.827144016200094,52.827144016200094,8.564033337083872e-05,8.564033337083872e-05,-140.20243718580835,-140.20243718580835,0.021238410791173813,0.021238410791173813 -1.5529411764705883,52.71859676023333,52.71859676023333,8.387024992309914e-05,8.387024992309914e-05,-140.9214957017647,-140.9214957017647,0.020817220497423912,0.020817220497423912 -1.5552941176470587,52.579607298791345,52.579607298791345,9.144089127416748e-05,9.144089127416748e-05,-141.6351527918152,-141.6351527918152,0.020391126395445675,0.020391126395445675 -1.5576470588235294,52.55131459722643,52.55131459722643,0.00010406607027489174,0.00010406607027489174,-142.34386723159122,-142.34386723159122,0.01996316143953288,0.01996316143953288 -1.5599999999999998,52.577275892374544,52.577275892374544,0.0001176538560839105,0.0001176538560839105,-143.0480435919009,-143.0480435919009,0.019531386196482987,0.019531386196482987 -1.5623529411764705,52.59057040295981,52.59057040295981,0.00012557507758028972,0.00012557507758028972,-143.74785839083273,-143.74785839083273,0.019090919236684937,0.019090919236684937 -1.5647058823529412,52.606674301704494,52.606674301704494,0.0001430985291460302,0.0001430985291460302,-144.4432271483433,-144.4432271483433,0.018637427433746235,0.018637427433746235 -1.5670588235294118,52.597910530559574,52.597910530559574,0.00014294796623075617,0.00014294796623075617,-145.13385266458337,-145.13385266458337,0.018169110099378823,0.018169110099378823 -1.5694117647058823,52.60718104134825,52.60718104134825,0.00013557312433819311,0.00013557312433819311,-145.81937817195256,-145.81937817195256,0.0176890267472267,0.0176890267472267 -1.571764705882353,52.69671067513606,52.69671067513606,0.00012642035610721495,0.00012642035610721495,-146.49937919853488,-146.49937919853488,0.017204598616906843,0.017204598616906843 -1.5741176470588236,52.76572187349948,52.76572187349948,0.0001093596388847912,0.0001093596388847912,-147.1737777493692,-147.1737777493692,0.016725527475119455,0.016725527475119455 -1.576470588235294,52.81362331654445,52.81362331654445,9.208108664436111e-05,9.208108664436111e-05,-147.8426010900037,-147.8426010900037,0.016261733467419524,0.016261733467419524 -1.5788235294117647,52.84968006430962,52.84968006430962,7.862128828079068e-05,7.862128828079068e-05,-148.50622948040046,-148.50622948040046,0.015820810541792782,0.015820810541792782 -1.5811764705882352,52.77933367772192,52.77933367772192,7.259630161114926e-05,7.259630161114926e-05,-149.16523111746915,-149.16523111746915,0.015405043258284304,0.015405043258284304 -1.5835294117647059,52.74306629583493,52.74306629583493,6.510521203643892e-05,6.510521203643892e-05,-149.820027755692,-149.820027755692,0.015013402778767447,0.015013402778767447 -1.5858823529411765,52.40159894146984,52.40159894146984,6.99532574342511e-05,6.99532574342511e-05,-150.47106778975245,-150.47106778975245,0.01464063196980085,0.01464063196980085 -1.5882352941176474,51.96711742774065,51.96711742774065,7.462548146650363e-05,7.462548146650363e-05,-151.11847172747383,-151.11847172747383,0.01428081939404864,0.01428081939404864 -1.5905882352941176,51.79502752483708,51.79502752483708,9.191982592672436e-05,9.191982592672436e-05,-151.7620776292043,-151.7620776292043,0.013929469763411856,0.013929469763411856 -1.592941176470588,51.74350832456924,51.74350832456924,9.79100290755056e-05,9.79100290755056e-05,-152.4016001863883,-152.4016001863883,0.013584279286074882,0.013584279286074882 -1.5952941176470588,51.671066919905265,51.671066919905265,0.00010399357124488629,0.00010399357124488629,-153.03672753888085,-153.03672753888085,0.013247150092537135,0.013247150092537135 -1.5976470588235294,51.73101340306548,51.73101340306548,0.00010768796521111678,0.00010768796521111678,-153.66725416984013,-153.66725416984013,0.012921338449240144,0.012921338449240144 -1.6,51.81295332995063,51.81295332995063,0.00011691566337017234,0.00011691566337017234,-154.29309865917116,-154.29309865917116,0.012611516565031976,0.012611516565031976 -1.6023529411764705,52.11068828937568,52.11068828937568,0.00012728497972682373,0.00012728497972682373,-154.91440364738526,-154.91440364738526,0.012320845080684118,0.012320845080684118 -1.6047058823529412,52.11665154404986,52.11665154404986,0.00014193708460478647,0.00014193708460478647,-155.53150209238356,-155.53150209238356,0.012051218986867795,0.012051218986867795 -1.6070588235294117,52.16180276062962,52.16180276062962,0.0001420452905616916,0.0001420452905616916,-156.1445986003488,-156.1445986003488,0.011801921818345057,0.011801921818345057 -1.6094117647058825,52.17083977303164,52.17083977303164,0.00015573575631263865,0.00015573575631263865,-156.7539748939598,-156.7539748939598,0.011570903832164855,0.011570903832164855 -1.611764705882353,52.15514127655478,52.15514127655478,0.00014456909429178414,0.00014456909429178414,-157.35969486662103,-157.35969486662103,0.011356393805423816,0.011356393805423816 -1.6141176470588237,52.30212297069371,52.30212297069371,0.0001161830501708663,0.0001161830501708663,-157.96168234828664,-157.96168234828664,0.011156822769102327,0.011156822769102327 -1.616470588235294,52.25536111922457,52.25536111922457,0.00011124095742557414,0.00011124095742557414,-158.55988682671716,-158.55988682671716,0.010971817245753067,0.010971817245753067 -1.6188235294117648,52.44355030543981,52.44355030543981,7.62141883721943e-05,7.62141883721943e-05,-159.15428767692873,-159.15428767692873,0.010802437081567149,0.010802437081567149 -1.6211764705882352,52.64888969880056,52.64888969880056,5.8190465884814305e-05,5.8190465884814305e-05,-159.7448049917612,-159.7448049917612,0.010649961754319131,0.010649961754319131 -1.6235294117647059,53.08668353196749,53.08668353196749,3.134149572289777e-05,3.134149572289777e-05,-160.33165358499033,-160.33165358499033,0.010515696327715493,0.010515696327715493 -1.6258823529411766,52.78628828080357,52.78628828080357,3.922706358366534e-05,3.922706358366534e-05,-160.91491385329272,-160.91491385329272,0.010400877929954226,0.010400877929954226 -1.6282352941176468,52.69175001696524,52.69175001696524,3.540345774249112e-05,3.540345774249112e-05,-161.49476492055203,-161.49476492055203,0.010305717726417231,0.010305717726417231 -1.630588235294118,51.38614235957353,51.38614235957353,4.250831372810998e-05,4.250831372810998e-05,-162.0712799484141,-162.0712799484141,0.010230150824717907,0.010230150824717907 -1.6329411764705881,50.82463518825031,50.82463518825031,5.03317686980481e-05,5.03317686980481e-05,-162.64458741668852,-162.64458741668852,0.010175063742627034,0.010175063742627034 -1.6352941176470588,50.73745198847434,50.73745198847434,9.813829189036629e-05,9.813829189036629e-05,-163.21470312089582,-163.21470312089582,0.010140975395788378,0.010140975395788378 -1.6376470588235295,50.74190701536995,50.74190701536995,0.00010707529570452205,0.00010707529570452205,-163.7817298019017,-163.7817298019017,0.010129850252357691,0.010129850252357691 -1.6400000000000001,50.721081565496746,50.721081565496746,0.00011271617823693779,0.00011271617823693779,-164.3458760377126,-164.3458760377126,0.010143458882614968,0.010143458882614968 -1.6423529411764706,50.73811139342269,50.73811139342269,0.00011139252658102032,0.00011139252658102032,-164.9072857238816,-164.9072857238816,0.010183397040732237,0.010183397040732237 -1.6447058823529415,50.928309332013065,50.928309332013065,0.00011791479985696989,0.00011791479985696989,-165.466274391935,-165.466274391935,0.01025121569905292,0.01025121569905292 -1.6470588235294117,51.246682062962506,51.246682062962506,0.00012260923430043358,0.00012260923430043358,-166.0229704888966,-166.0229704888966,0.010348474813922013,0.010348474813922013 -1.6494117647058824,51.37478822994319,51.37478822994319,0.00012392430772522746,0.00012392430772522746,-166.57771714726306,-166.57771714726306,0.010476388189029495,0.010476388189029495 -1.651764705882353,51.349623979290556,51.349623979290556,0.00011507033189834031,0.00011507033189834031,-167.1306085672926,-167.1306085672926,0.010636891088428172,0.010636891088428172 -1.6541176470588237,51.39867734776195,51.39867734776195,0.00013487571413903695,0.00013487571413903695,-167.68197992602668,-167.68197992602668,0.010832996891490362,0.010832996891490362 -1.6564705882352944,51.31624972723847,51.31624972723847,0.0001181492342657619,0.0001181492342657619,-168.2321405961175,-168.2321405961175,0.0110670473855069,0.0110670473855069 -1.6588235294117644,51.34791283816521,51.34791283816521,8.016178803544409e-05,8.016178803544409e-05,-168.78134020276556,-168.78134020276556,0.011342314547119718,0.011342314547119718 -1.6611764705882353,51.235814211131576,51.235814211131576,8.621263890394534e-05,8.621263890394534e-05,-169.33016336323863,-169.33016336323863,0.011660025379945769,0.011660025379945769 -1.663529411764706,51.45348962391798,51.45348962391798,5.4609184125879845e-05,5.4609184125879845e-05,-169.87881559240714,-169.87881559240714,0.012022708232812904,0.012022708232812904 -1.6658823529411766,51.79340547960733,51.79340547960733,3.796903114261273e-05,3.796903114261273e-05,-170.4275393169351,-170.4275393169351,0.012430844698064263,0.012430844698064263 -1.668235294117647,51.936546908043894,51.936546908043894,3.3542061163744186e-05,3.3542061163744186e-05,-170.976540903032,-170.976540903032,0.012886095143290553,0.012886095143290553 -1.670588235294118,52.548688046893474,52.548688046893474,2.3776346028071065e-05,2.3776346028071065e-05,-171.52591471487963,-171.52591471487963,0.013392629921730912,0.013392629921730912 -1.672941176470588,51.483377028114376,51.483377028114376,3.471066885446351e-05,3.471066885446351e-05,-172.07571694789743,-172.07571694789743,0.013956276449772634,0.013956276449772634 -1.6752941176470588,51.05703452543939,51.05703452543939,3.149949859462602e-05,3.149949859462602e-05,-172.62632086688566,-172.62632086688566,0.014585609340178501,0.014585609340178501 -1.6776470588235295,50.64216677946462,50.64216677946462,5.072629192270396e-05,5.072629192270396e-05,-173.1783132592923,-173.1783132592923,0.015289956200522486,0.015289956200522486 -1.68,50.113023158318896,50.113023158318896,5.510726652178212e-05,5.510726652178212e-05,-173.7323894915913,-173.7323894915913,0.01607572185941256,0.01607572185941256 -1.6823529411764706,50.17591332126362,50.17591332126362,7.383215106570908e-05,7.383215106570908e-05,-174.28942326939992,-174.28942326939992,0.016947168580193808,0.016947168580193808 -1.684705882352941,50.15835318897578,50.15835318897578,8.06976645129791e-05,8.06976645129791e-05,-174.85011998575908,-174.85011998575908,0.017900902335247527,0.017900902335247527 -1.6870588235294117,50.181378975772915,50.181378975772915,7.391315304925668e-05,7.391315304925668e-05,-175.41506347896552,-175.41506347896552,0.01892780485754262,0.01892780485754262 -1.6894117647058824,50.2786349248138,50.2786349248138,8.644541393632e-05,8.644541393632e-05,-175.9844344273847,-175.9844344273847,0.020013139996035424,0.020013139996035424 -1.6917647058823528,50.18217544338086,50.18217544338086,7.349869493069814e-05,7.349869493069814e-05,-176.55808726965955,-176.55808726965955,0.02113750269762127,0.02113750269762127 -1.6941176470588235,50.4921389635419,50.4921389635419,7.012014295531452e-05,7.012014295531452e-05,-177.13560288511326,-177.13560288511326,0.02228030962111459,0.02228030962111459 -1.6964705882352942,50.660194827202474,50.660194827202474,6.819652441859444e-05,6.819652441859444e-05,-177.7163907423376,-177.7163907423376,0.02342218490627032,0.02342218490627032 -1.6988235294117644,50.79543882049715,50.79543882049715,7.270518248931899e-05,7.270518248931899e-05,-178.29986114528896,-178.29986114528896,0.024544819120589964,0.024544819120589964 -1.7011764705882353,50.789523195734496,50.789523195734496,8.126650995025141e-05,8.126650995025141e-05,-178.88533469262012,-178.88533469262012,0.025634157650248828,0.025634157650248828 -1.7035294117647062,50.601184353318246,50.601184353318246,7.707378217878138e-05,7.707378217878138e-05,-179.47234602906752,-179.47234602906752,0.026676683593821096,0.026676683593821096 -1.7058823529411766,50.554581093395875,50.554581093395875,6.412698896864788e-05,6.412698896864788e-05,-180.0604544709428,-180.0604544709428,0.027661789316769377,0.027661789316769377 -1.7082352941176469,50.40668462798483,50.40668462798483,5.709310922016948e-05,5.709310922016948e-05,-180.6493740651629,-180.6493740651629,0.028578040976185954,0.028578040976185954 -1.7105882352941175,50.16247318886214,50.16247318886214,5.3060669352895156e-05,5.3060669352895156e-05,-181.23872306197381,-181.23872306197381,0.02941288549209136,0.02941288549209136 -1.7129411764705882,49.78819536977009,49.78819536977009,5.1575528443785705e-05,5.1575528443785705e-05,-181.82825934653903,-181.82825934653903,0.030153216179734658,0.030153216179734658 -1.7152941176470589,49.62752963221859,49.62752963221859,5.220306718037248e-05,5.220306718037248e-05,-182.41764449964037,-182.41764449964037,0.03078392770518487,0.03078392770518487 -1.7176470588235295,49.43890079494047,49.43890079494047,4.85684414367817e-05,4.85684414367817e-05,-183.00640842531647,-183.00640842531647,0.031292814376996395,0.031292814376996395 -1.72,49.458387188604455,49.458387188604455,5.2700849067896036e-05,5.2700849067896036e-05,-183.59395126580054,-183.59395126580054,0.031669045978865634,0.031669045978865634 -1.7223529411764709,49.317289592514356,49.317289592514356,6.694551791071937e-05,6.694551791071937e-05,-184.17971803492742,-184.17971803492742,0.031907091373572075,0.031907091373572075 -1.7247058823529409,49.55400730006798,49.55400730006798,6.956290527683139e-05,6.956290527683139e-05,-184.7629781318021,-184.7629781318021,0.03201096008336623,0.03201096008336623 -1.7270588235294118,49.70283749324764,49.70283749324764,7.50896548794244e-05,7.50896548794244e-05,-185.34307330418707,-185.34307330418707,0.031988264179854606,0.031988264179854606 -1.7294117647058824,49.74847971991782,49.74847971991782,9.719456303335658e-05,9.719456303335658e-05,-185.9195160312528,-185.9195160312528,0.03185845764250219,0.03185845764250219 -1.731764705882353,49.775730071920925,49.775730071920925,9.885274344969107e-05,9.885274344969107e-05,-186.49188061083203,-186.49188061083203,0.03164460816357289,0.03164460816357289 -1.7341176470588235,49.74342399567512,49.74342399567512,0.00010400278515771762,0.00010400278515771762,-187.06016027315198,-187.06016027315198,0.03137198601361864,0.03137198601361864 -1.7364705882352938,49.77178746125509,49.77178746125509,0.00010443917305463233,0.00010443917305463233,-187.62444820528665,-187.62444820528665,0.031065456627446097,0.031065456627446097 -1.7388235294117647,49.64520225948113,49.64520225948113,0.00010245808081030666,0.00010245808081030666,-188.1852382943493,-188.1852382943493,0.030743371632325513,0.030743371632325513 -1.7411764705882353,49.67267869096672,49.67267869096672,9.19094207319841e-05,9.19094207319841e-05,-188.7430621056379,-188.7430621056379,0.030415744747941884,0.030415744747941884 -1.743529411764706,49.66844689220325,49.66844689220325,7.644341043797583e-05,7.644341043797583e-05,-189.29861910578174,-189.29861910578174,0.03008221335612174,0.03008221335612174 -1.7458823529411764,49.74540188956093,49.74540188956093,6.0012227982538095e-05,6.0012227982538095e-05,-189.8522809395318,-189.8522809395318,0.029734441798540675,0.029734441798540675 -1.748235294117647,49.78915167911411,49.78915167911411,4.324572500347755e-05,4.324572500347755e-05,-190.40447132114502,-190.40447132114502,0.029357524612919194,0.029357524612919194 -1.7505882352941176,50.15281634330246,50.15281634330246,3.0247934147587917e-05,3.0247934147587917e-05,-190.95502584448965,-190.95502584448965,0.02893628212943108,0.02893628212943108 -1.7529411764705882,50.25984895417587,50.25984895417587,3.737211732951212e-05,3.737211732951212e-05,-191.50362461857614,-191.50362461857614,0.028457894518207294,0.028457894518207294 -1.7552941176470591,49.76550109838542,49.76550109838542,4.103448737847531e-05,4.103448737847531e-05,-192.04972665437512,-192.04972665437512,0.027915795963424344,0.027915795963424344 -1.7576470588235293,49.962229330102566,49.962229330102566,5.0764292193994935e-05,5.0764292193994935e-05,-192.5925660061006,-192.5925660061006,0.027313852121796562,0.027313852121796562 -1.76,49.332180975075396,49.332180975075396,5.647081227941269e-05,5.647081227941269e-05,-193.13145307178044,-193.13145307178044,0.02666424119952376,0.02666424119952376 -1.7623529411764705,49.20162591351542,49.20162591351542,5.479494095952404e-05,5.479494095952404e-05,-193.66588976392262,-193.66588976392262,0.02598369163963047,0.02598369163963047 -1.7647058823529411,48.9648490856426,48.9648490856426,7.228243426606873e-05,7.228243426606873e-05,-194.19556471785623,-194.19556471785623,0.025296238460752397,0.025296238460752397 -1.7670588235294116,48.88338047416021,48.88338047416021,0.0001178938340287313,0.0001178938340287313,-194.72054681965855,-194.72054681965855,0.024620836642966108,0.024620836642966108 -1.7694117647058827,48.73803638711411,48.73803638711411,0.00011386019116376152,0.00011386019116376152,-195.2412427311021,-195.2412427311021,0.023974833342997104,0.023974833342997104 -1.7717647058823531,48.59977640830351,48.59977640830351,9.618710877817903e-05,9.618710877817903e-05,-195.75812001444095,-195.75812001444095,0.02336450973110299,0.02336450973110299 -1.7741176470588236,48.796901397538335,48.796901397538335,8.795742273756235e-05,8.795742273756235e-05,-196.2718240394306,-196.2718240394306,0.02278955707480101,0.02278955707480101 -1.776470588235294,48.689632457624356,48.689632457624356,8.791466768479948e-05,8.791466768479948e-05,-196.7828258936036,-196.7828258936036,0.022242528097993784,0.022242528097993784 -1.7788235294117647,48.99859214469792,48.99859214469792,9.306767956329844e-05,9.306767956329844e-05,-197.2913272950768,-197.2913272950768,0.0217129220639274,0.0217129220639274 -1.7811764705882354,48.943333708489874,48.943333708489874,8.065290821242112e-05,8.065290821242112e-05,-197.79706884599423,-197.79706884599423,0.02119166664617151,0.02119166664617151 -1.7835294117647063,49.2769480123024,49.2769480123024,0.00010553169590221986,0.00010553169590221986,-198.29960773536104,-198.29960773536104,0.020673974553749624,0.020673974553749624 -1.7858823529411765,49.387377156289325,49.387377156289325,0.00011128381261432906,0.00011128381261432906,-198.7983677209132,-198.7983677209132,0.020161625062169394,0.020161625062169394 -1.7882352941176471,49.303708483470004,49.303708483470004,0.0001312097117979163,0.0001312097117979163,-199.2927583128571,-199.2927583128571,0.019665085636621043,0.019665085636621043 -1.7905882352941174,49.19469048970693,49.19469048970693,0.0001268219716697219,0.0001268219716697219,-199.7824824614583,-199.7824824614583,0.01919791111347036,0.01919791111347036 -1.7929411764705883,49.211366379874455,49.211366379874455,0.0001459168202052166,0.0001459168202052166,-200.26759551433062,-200.26759551433062,0.01877693793709632,0.01877693793709632 -1.795294117647059,48.98891260149245,48.98891260149245,0.0001366652492197045,0.0001366652492197045,-200.7485976991266,-200.7485976991266,0.018413765066475674,0.018413765066475674 -1.7976470588235294,48.96664919263438,48.96664919263438,0.00011664805387029847,0.00011664805387029847,-201.2261286024422,-201.2261286024422,0.018116854691989818,0.018116854691989818 -1.8,48.13867268025376,48.13867268025376,7.158613883446983e-05,7.158613883446983e-05,-201.70121184131528,-201.70121184131528,0.01788449571054275,0.01788449571054275 diff --git a/sparameters/rotate_f258530e_c156aa56.yml b/sparameters/rotate_f258530e_c156aa56.yml deleted file mode 100644 index 5eee3d3b..00000000 --- a/sparameters/rotate_f258530e_c156aa56.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 30 -fiber_xoffset: 35 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 280.6240475177765 -compute_time_minutes: 4.677067458629608 diff --git a/sparameters/rotate_f258530e_cfeae4e8.csv b/sparameters/rotate_f258530e_cfeae4e8.csv deleted file mode 100644 index 9aaf69f5..00000000 --- a/sparameters/rotate_f258530e_cfeae4e8.csv +++ /dev/null @@ -1,51 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.5,2.8288024249726,2.8288024249726,0.00011505517729216287,0.00011505517729216287,2.4475326762668472,2.4475326762668472,0.014959106684363073,0.014959106684363073 -1.5020408163265306,1.8969294995877544,1.8969294995877544,4.9108850447910985e-05,4.9108850447910985e-05,2.1079882156933216,2.1079882156933216,0.015567490868768791,0.015567490868768791 -1.5040816326530613,3.0744104731740336,3.0744104731740336,5.0731492101269245e-05,5.0731492101269245e-05,1.7803032603496929,1.7803032603496929,0.01627668070755895,0.01627668070755895 -1.506122448979592,3.3057399294347687,3.3057399294347687,0.00015474333242585715,0.00015474333242585715,1.4613325757791296,1.4613325757791296,0.01723680520349978,0.01723680520349978 -1.5081632653061225,3.3446367769645846,3.3446367769645846,0.00013748783075716406,0.00013748783075716406,1.1425887709190192,1.1425887709190192,0.018577157522437073,0.018577157522437073 -1.510204081632653,3.2577622084880677,3.2577622084880677,9.780517399787611e-05,9.780517399787611e-05,0.8149198982371603,0.8149198982371603,0.020325815346161083,0.020325815346161083 -1.5122448979591836,3.3758301585013797,3.3758301585013797,6.61219527460415e-05,6.61219527460415e-05,0.4732236342822764,0.4732236342822764,0.022400669361935983,0.022400669361935983 -1.5142857142857142,3.194575115918215,3.194575115918215,0.00012275491949618046,0.00012275491949618046,0.1183267510826406,0.1183267510826406,0.02467522430254295,0.02467522430254295 -1.5163265306122449,2.786371572097699,2.786371572097699,6.704825807325005e-05,6.704825807325005e-05,-0.24494144070044274,-0.24494144070044274,0.02703246341260352,0.02703246341260352 -1.5183673469387755,3.597458666514267,3.597458666514267,0.00010580915657052007,0.00010580915657052007,-0.6107708897496816,-0.6107708897496816,0.029418246772324543,0.029418246772324543 -1.5204081632653061,3.006847459474407,3.006847459474407,0.00016777663354263376,0.00016777663354263376,-0.9743910044341596,-0.9743910044341596,0.03188093884870412,0.03188093884870412 -1.5224489795918368,2.94918981683784,2.94918981683784,0.00012116333090162939,0.00012116333090162939,-1.3336445935190633,-1.3336445935190633,0.03454880785170617,0.03454880785170617 -1.5244897959183674,2.9872811360700173,2.9872811360700173,0.00010586817933782487,0.00010586817933782487,-1.6894203173153401,-1.6894203173153401,0.037615685438882045,0.037615685438882045 -1.5265306122448983,2.8779083861119883,2.8779083861119883,0.0001068498977955096,0.0001068498977955096,-2.0450790783760815,-2.0450790783760815,0.041263776850660266,0.041263776850660266 -1.5285714285714287,2.7226014948766744,2.7226014948766744,0.00010437268776862902,0.00010437268776862902,-2.4049697869461815,-2.4049697869461815,0.045619803552083296,0.045619803552083296 -1.530612244897959,3.032897835921956,3.032897835921956,9.811724589911622e-05,9.811724589911622e-05,-2.772590010091036,-2.772590010091036,0.050718953473580165,0.050718953473580165 -1.5326530612244897,3.0674623068198934,3.0674623068198934,0.00011271938689449031,0.00011271938689449031,-3.1494325742778737,-3.1494325742778737,0.056513694176125916,0.056513694176125916 -1.5346938775510204,2.906512213626324,2.906512213626324,0.00012372286007661205,0.00012372286007661205,-3.5352484728115154,-3.5352484728115154,0.06290493375205825,0.06290493375205825 -1.536734693877551,2.801749767201065,2.801749767201065,0.00012339188600075083,0.00012339188600075083,-3.9283537146582344,-3.9283537146582344,0.06978036705100511,0.06978036705100511 -1.5387755102040817,2.706176489023636,2.706176489023636,0.0001195135522741449,0.0001195135522741449,-4.3268113366483485,-4.3268113366483485,0.07705367554392879,0.07705367554392879 -1.5408163265306123,2.7835255129609777,2.7835255129609777,0.00010515034470275513,0.00010515034470275513,-4.728630983734627,-4.728630983734627,0.08468865976996055,0.08468865976996055 -1.542857142857143,2.6145443139578877,2.6145443139578877,0.00010539799626959298,0.00010539799626959298,-5.132480936327748,-5.132480936327748,0.09268990550682828,0.09268990550682828 -1.5448979591836736,2.6314986768797803,2.6314986768797803,0.0001120061096924439,0.0001120061096924439,-5.537505215104241,-5.537505215104241,0.101106603787075,0.101106603787075 -1.546938775510204,2.7065773845802386,2.7065773845802386,0.00011191553537240127,0.00011191553537240127,-5.943567776020462,-5.943567776020462,0.10999998340679601,0.10999998340679601 -1.5489795918367348,2.686047208889773,2.686047208889773,0.00010860212073237312,0.00010860212073237312,-6.350728587086052,-6.350728587086052,0.119423656664301,0.119423656664301 -1.5510204081632653,2.5609953218741937,2.5609953218741937,0.00010234172737671122,0.00010234172737671122,-6.759320853410497,-6.759320853410497,0.12940549033018062,0.12940549033018062 -1.5530612244897959,2.4920501250650062,2.4920501250650062,0.00011096596867870874,0.00011096596867870874,-7.169590349237967,-7.169590349237967,0.13993370606796113,0.13993370606796113 -1.5551020408163265,2.52012864447052,2.52012864447052,0.00011497503773189468,0.00011497503773189468,-7.581594816675116,-7.581594816675116,0.15095721948435858,0.15095721948435858 -1.5571428571428572,2.4896873017412604,2.4896873017412604,0.00010772629108446165,0.00010772629108446165,-7.995243092140308,-7.995243092140308,0.16239863852324982,0.16239863852324982 -1.5591836734693876,2.4773591436703155,2.4773591436703155,9.987527950844605e-05,9.987527950844605e-05,-8.410185521914622,-8.410185521914622,0.17417017835148318,0.17417017835148318 -1.5612244897959184,2.4817907656677134,2.4817907656677134,0.00010514221234219812,0.00010514221234219812,-8.826001101426208,-8.826001101426208,0.18618008004329106,0.18618008004329106 -1.563265306122449,2.444523357594868,2.444523357594868,0.000108964035521831,0.000108964035521831,-9.242164361142331,-9.242164361142331,0.1983623624932783,0.1983623624932783 -1.5653061224489797,2.4400079128406658,2.4400079128406658,0.00010455215091358527,0.00010455215091358527,-9.65822515290106,-9.65822515290106,0.21066923699719303,0.21066923699719303 -1.5673469387755101,2.4029735135282984,2.4029735135282984,0.00010986219650510883,0.00010986219650510883,-10.073781258411072,-10.073781258411072,0.22308518807172467,0.22308518807172467 -1.569387755102041,2.345170615734892,2.345170615734892,0.00010971606344789233,0.00010971606344789233,-10.48860202120864,-10.48860202120864,0.23562940936057566,0.23562940936057566 -1.5714285714285714,2.28229366844427,2.28229366844427,0.00010305614349286662,0.00010305614349286662,-10.902550915703156,-10.902550915703156,0.2483324453152686,0.2483324453152686 -1.573469387755102,2.2334267416871096,2.2334267416871096,9.95481298174385e-05,9.95481298174385e-05,-11.315651126389403,-11.315651126389403,0.2612341964672511,0.2612341964672511 -1.5755102040816327,2.2855743973978884,2.2855743973978884,9.035316702888574e-05,9.035316702888574e-05,-11.728108967563362,-11.728108967563362,0.2743650726242966,0.2743650726242966 -1.577551020408163,2.2086167774898158,2.2086167774898158,0.00010025314508029263,0.00010025314508029263,-12.140056398970874,-12.140056398970874,0.2877256851485733,0.2877256851485733 -1.579591836734694,2.170607611048588,2.170607611048588,9.903068176106913e-05,9.903068176106913e-05,-12.551704639457995,-12.551704639457995,0.3012893001138307,0.3012893001138307 -1.5816326530612246,2.1597813006630413,2.1597813006630413,9.989152518930154e-05,9.989152518930154e-05,-12.963220439283953,-12.963220439283953,0.3149931980908156,0.3149931980908156 -1.5836734693877552,2.091912947671729,2.091912947671729,0.00010084236343403103,0.00010084236343403103,-13.374605917591508,-13.374605917591508,0.3287464677854356,0.3287464677854356 -1.5857142857142859,2.048373575653803,2.048373575653803,0.00010076828556498349,0.00010076828556498349,-13.785851569038025,-13.785851569038025,0.3424491214459714,0.3424491214459714 -1.5877551020408165,1.988699392405524,1.988699392405524,0.00010007844715402324,0.00010007844715402324,-14.19679664306879,-14.19679664306879,0.3559968769036371,0.3559968769036371 -1.5897959183673471,1.963737879164916,1.963737879164916,9.620420919716624e-05,9.620420919716624e-05,-14.60728404482014,-14.60728404482014,0.36930149128685674,0.36930149128685674 -1.5918367346938775,1.9331726252674053,1.9331726252674053,9.771537565954782e-05,9.771537565954782e-05,-15.017130960234358,-15.017130960234358,0.3822912256188618,0.3822912256188618 -1.593877551020408,1.9500036738942832,1.9500036738942832,9.679388759013773e-05,9.679388759013773e-05,-15.42613588586991,-15.42613588586991,0.39491881064537404,0.39491881064537404 -1.5959183673469388,1.9015889731235642,1.9015889731235642,9.601221998404198e-05,9.601221998404198e-05,-15.834178257984522,-15.834178257984522,0.4071588504955922,0.4071588504955922 -1.5979591836734695,1.882845441845422,1.882845441845422,9.895014723237028e-05,9.895014723237028e-05,-16.241056155546723,-16.241056155546723,0.41900203622290816,0.41900203622290816 -1.6,1.855929576025085,1.855929576025085,0.00010143588470025325,0.00010143588470025325,-16.646792325169944,-16.646792325169944,0.43045750864058663,0.43045750864058663 diff --git a/sparameters/rotate_f258530e_cfeae4e8.yml b/sparameters/rotate_f258530e_cfeae4e8.yml deleted file mode 100644 index 549f4387..00000000 --- a/sparameters/rotate_f258530e_cfeae4e8.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: 21 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 345.83163118362427 -compute_time_minutes: 5.763860519727071 diff --git a/sparameters/rotate_f258530e_e0617363.csv b/sparameters/rotate_f258530e_e0617363.csv deleted file mode 100644 index f2344d23..00000000 --- a/sparameters/rotate_f258530e_e0617363.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,2.071303746534569,2.071303746534569,0.0037909580259988013,0.0037909580259988013,-2.1258977457080075,-2.1258977457080075,1.3565124571822264e-18,1.3565124571822264e-18 -1.2023529411764706,1.3212270035634621,1.3212270035634621,0.009605676160607259,0.009605676160607259,-4.96710287394416,-4.96710287394416,7.0862213284364245e-19,7.0862213284364245e-19 -1.204705882352941,2.6091017848096008,2.6091017848096008,0.0018839459291407309,0.0018839459291407309,-7.313929257468561,-7.313929257468561,1.4394728385651359e-18,1.4394728385651359e-18 -1.2070588235294117,1.2307150995380531,1.2307150995380531,0.002505828808145552,0.002505828808145552,-8.91293526100151,-8.91293526100151,1.832101489587383e-18,1.832101489587383e-18 -1.2094117647058824,-1.7968995622044284,-1.7968995622044284,0.0050052708651337026,0.0050052708651337026,-10.331478889375045,-10.331478889375045,1.595526991117335e-18,1.595526991117335e-18 -1.2117647058823529,-0.17746453695039952,-0.17746453695039952,0.004235261315814167,0.004235261315814167,-11.698319401901854,-11.698319401901854,8.95794855317576e-19,8.95794855317576e-19 -1.2141176470588235,-2.3772081091782886,-2.3772081091782886,0.04869936200152633,0.04869936200152633,-9.05434330536999,-9.05434330536999,2.539411290001138e-19,2.539411290001138e-19 -1.216470588235294,-1.3321777338166,-1.3321777338166,0.0015742413769821429,0.0015742413769821429,-10.92718346834631,-10.92718346834631,1.730167555568794e-18,1.730167555568794e-18 -1.2188235294117646,-1.7094697963924341,-1.7094697963924341,0.0012490022359265824,0.0012490022359265824,-12.384400806948474,-12.384400806948474,3.4335241221197974e-18,3.4335241221197974e-18 -1.2211764705882353,0.4494273632380645,0.4494273632380645,0.0014964741017158482,0.0014964741017158482,-13.887984197343242,-13.887984197343242,4.726442353737773e-18,4.726442353737773e-18 -1.2235294117647058,1.9115299477070486,1.9115299477070486,0.0011641936002468412,0.0011641936002468412,-15.445910962237274,-15.445910962237274,4.9677346557462756e-18,4.9677346557462756e-18 -1.2258823529411764,2.8519777544920313,2.8519777544920313,0.0021309334903517147,0.0021309334903517147,-17.09167733600732,-17.09167733600732,3.881680236443318e-18,3.881680236443318e-18 -1.228235294117647,2.4772008439088484,2.4772008439088484,0.0024290764057845475,0.0024290764057845475,-19.07264939041789,-19.07264939041789,1.8325224996934608e-18,1.8325224996934608e-18 -1.2305882352941175,2.3112544566529802,2.3112544566529802,0.001609203584019733,0.001609203584019733,-16.153610597933596,-16.153610597933596,1.767989237673967e-18,1.767989237673967e-18 -1.2329411764705882,2.747166263317314,2.747166263317314,0.0011785191969718594,0.0011785191969718594,-18.214464005041815,-18.214464005041815,3.992234010375345e-18,3.992234010375345e-18 -1.2352941176470589,2.0738912247329377,2.0738912247329377,0.00030002389673661716,0.00030002389673661716,-19.958809654747817,-19.958809654747817,5.513308906702328e-18,5.513308906702328e-18 -1.2376470588235293,-0.6277093122006596,-0.6277093122006596,0.0005227966413959937,0.0005227966413959937,-21.640891607211003,-21.640891607211003,5.739654480849406e-18,5.739654480849406e-18 -1.24,-0.8665543128253771,-0.8665543128253771,0.0022327773347466376,0.0022327773347466376,-23.293941361552314,-23.293941361552314,4.4056496391654926e-18,4.4056496391654926e-18 -1.2423529411764704,-0.236151352680038,-0.236151352680038,0.004070407842913983,0.004070407842913983,-25.06684027265684,-25.06684027265684,1.6024769219153115e-18,1.6024769219153115e-18 -1.244705882352941,-2.415446380887214,-2.415446380887214,0.0018991603944050349,0.0018991603944050349,-22.921555501763986,-22.921555501763986,2.329120310440766e-18,2.329120310440766e-18 -1.2470588235294118,-0.33782225042374453,-0.33782225042374453,0.0015188496407268599,0.0015188496407268599,-24.489952050925133,-24.489952050925133,5.8881352053040875e-18,5.8881352053040875e-18 -1.2494117647058822,0.44959726398839256,0.44959726398839256,0.0006061637966116302,0.0006061637966116302,-25.854408997866134,-25.854408997866134,7.912641084458732e-18,7.912641084458732e-18 -1.251764705882353,-0.3809047461932273,-0.3809047461932273,0.001016890736226239,0.001016890736226239,-27.023816681778648,-27.023816681778648,7.609482766968215e-18,7.609482766968215e-18 -1.2541176470588236,-1.3953250028389472,-1.3953250028389472,0.0003294408190272953,0.0003294408190272953,-27.77248132948719,-27.77248132948719,6.1852950841390905e-18,6.1852950841390905e-18 -1.256470588235294,-1.0074274158957057,-1.0074274158957057,0.001329294969467297,0.001329294969467297,-28.191834425680348,-28.191834425680348,7.919128363237603e-18,7.919128363237603e-18 -1.2588235294117647,1.700000915907205,1.700000915907205,0.00036016816617521406,0.00036016816617521406,-28.96495229621058,-28.96495229621058,1.2744505395035214e-17,1.2744505395035214e-17 -1.2611764705882353,-1.2573903476053536,-1.2573903476053536,0.0002723679410423452,0.0002723679410423452,-29.884153382127405,-29.884153382127405,1.7812580767492513e-17,1.7812580767492513e-17 -1.2635294117647058,-1.6822062493007568,-1.6822062493007568,0.00031462149692435573,0.00031462149692435573,-30.79627958115093,-30.79627958115093,2.2872515750838413e-17,2.2872515750838413e-17 -1.2658823529411765,-1.642281343749319,-1.642281343749319,0.000364493542867161,0.000364493542867161,-31.700479499972836,-31.700479499972836,2.878463304934355e-17,2.878463304934355e-17 -1.268235294117647,-4.094059584408047,-4.094059584408047,0.00011199591698092223,0.00011199591698092223,-32.629123532409764,-32.629123532409764,3.532499003801993e-17,3.532499003801993e-17 -1.2705882352941176,-4.368547285821857,-4.368547285821857,6.83363071028001e-05,6.83363071028001e-05,-33.571936931871676,-33.571936931871676,4.0956119525128606e-17,4.0956119525128606e-17 -1.2729411764705882,-7.225156682305624,-7.225156682305624,0.0002758954603002704,0.0002758954603002704,-34.48891235339883,-34.48891235339883,4.456210947780249e-17,4.456210947780249e-17 -1.2752941176470587,-10.007076978553027,-10.007076978553027,7.823770683879205e-05,7.823770683879205e-05,-35.34705705333175,-35.34705705333175,4.7027716746631107e-17,4.7027716746631107e-17 -1.2776470588235294,-12.255269182147515,-12.255269182147515,5.1937373170848315e-05,5.1937373170848315e-05,-36.15566425745632,-36.15566425745632,5.051342016978162e-17,5.051342016978162e-17 -1.28,-11.381081334979383,-11.381081334979383,0.0001632851669724578,0.0001632851669724578,-36.96015428343368,-36.96015428343368,5.591855454174338e-17,5.591855454174338e-17 -1.2823529411764705,-11.501356174179572,-11.501356174179572,0.00021954721660488746,0.00021954721660488746,-37.78149827435694,-37.78149827435694,6.185662425470936e-17,6.185662425470936e-17 -1.2847058823529411,-10.239042172235006,-10.239042172235006,9.161804401767056e-05,9.161804401767056e-05,-38.60186518340996,-38.60186518340996,6.692788938195257e-17,6.692788938195257e-17 -1.2870588235294118,-11.358591674666155,-11.358591674666155,0.000153611088679122,0.000153611088679122,-39.40082369732954,-39.40082369732954,7.153740816631852e-17,7.153740816631852e-17 -1.2894117647058823,-9.960393521308319,-9.960393521308319,0.00013527012562155311,0.00013527012562155311,-40.182056794435454,-40.182056794435454,7.708537740343612e-17,7.708537740343612e-17 -1.291764705882353,-10.839588639786678,-10.839588639786678,0.00015322530208493505,0.00015322530208493505,-40.96416406410638,-40.96416406410638,8.385305405295365e-17,8.385305405295365e-17 -1.2941176470588236,-10.981255665151128,-10.981255665151128,0.00012839104868424064,0.00012839104868424064,-41.75232685582112,-41.75232685582112,9.076966549938257e-17,9.076966549938257e-17 -1.296470588235294,-10.368692925266695,-10.368692925266695,4.720401992709182e-05,4.720401992709182e-05,-42.53610123927792,-42.53610123927792,9.707642403313651e-17,9.707642403313651e-17 -1.2988235294117647,-10.243418942874955,-10.243418942874955,0.00010669611725247576,0.00010669611725247576,-43.3070404703055,-43.3070404703055,1.0333549453655794e-16,1.0333549453655794e-16 -1.3011764705882352,-10.324791231859741,-10.324791231859741,0.00014218104166371267,0.00014218104166371267,-44.06993365210439,-44.06993365210439,1.1049583722341535e-16,1.1049583722341535e-16 -1.3035294117647058,-10.803636831754805,-10.803636831754805,0.00011331703187726348,0.00011331703187726348,-44.83362079395961,-44.83362079395961,1.1845242777520945e-16,1.1845242777520945e-16 -1.3058823529411765,-11.481636376891842,-11.481636376891842,8.899271881103236e-05,8.899271881103236e-05,-45.59877342284803,-45.59877342284803,1.26318244989077e-16,1.26318244989077e-16 -1.308235294117647,-10.563047593116988,-10.563047593116988,6.636842717310481e-06,6.636842717310481e-06,-46.35855295649945,-46.35855295649945,1.3374089958711968e-16,1.3374089958711968e-16 -1.3105882352941176,-10.628279854312643,-10.628279854312643,3.553289584822925e-05,3.553289584822925e-05,-47.109863318954574,-47.109863318954574,1.413230945320199e-16,1.413230945320199e-16 -1.3129411764705883,-11.673128393689256,-11.673128393689256,5.2204082847774434e-05,5.2204082847774434e-05,-47.856559982358284,-47.856559982358284,1.4968192244439137e-16,1.4968192244439137e-16 -1.3152941176470587,-11.734221586793081,-11.734221586793081,0.00013117761760724205,0.00013117761760724205,-48.603273770572166,-48.603273770572166,1.5852520945586474e-16,1.5852520945586474e-16 -1.3176470588235294,-11.836767350487868,-11.836767350487868,0.00013550505625586974,0.00013550505625586974,-49.34903878012863,-49.34903878012863,1.6715674017796405e-16,1.6715674017796405e-16 -1.32,-12.054882951213518,-12.054882951213518,0.00017615101956538982,0.00017615101956538982,-50.08993524216965,-50.08993524216965,1.7545015346353156e-16,1.7545015346353156e-16 -1.3223529411764705,-11.61370982893439,-11.61370982893439,0.00011037636915190276,0.00011037636915190276,-50.82472033908727,-50.82472033908727,1.8395338957357203e-16,1.8395338957357203e-16 -1.3247058823529412,-11.66786702410766,-11.66786702410766,0.00011694995492404817,0.00011694995492404817,-51.55621477689058,-51.55621477689058,1.9304807315955512e-16,1.9304807315955512e-16 -1.3270588235294118,-11.321855754944899,-11.321855754944899,0.00012895058264204517,0.00012895058264204517,-52.28695895139793,-52.28695895139793,2.0238448259670942e-16,2.0238448259670942e-16 -1.3294117647058823,-11.571523117571731,-11.571523117571731,0.0001295135031106166,0.0001295135031106166,-53.01592101743026,-53.01592101743026,2.1141609124132695e-16,2.1141609124132695e-16 -1.331764705882353,-11.273878714511367,-11.273878714511367,0.00010187622633783229,0.00010187622633783229,-53.740506411080304,-53.740506411080304,2.2011853704211356e-16,2.2011853704211356e-16 -1.3341176470588234,-11.066118323010695,-11.066118323010695,9.219560085698263e-05,9.219560085698263e-05,-54.46038516573286,-54.46038516573286,2.2894839201997182e-16,2.2894839201997182e-16 -1.336470588235294,-11.075747670547115,-11.075747670547115,6.419181436650129e-05,6.419181436650129e-05,-55.177437202941526,-55.177437202941526,2.3812996415008426e-16,2.3812996415008426e-16 -1.3388235294117647,-11.79598200044348,-11.79598200044348,6.649264516461906e-05,6.649264516461906e-05,-55.89334191012809,-55.89334191012809,2.473279508135378e-16,2.473279508135378e-16 -1.3411764705882352,-11.177544565076321,-11.177544565076321,6.308705816855479e-05,6.308705816855479e-05,-56.60708989849141,-56.60708989849141,2.5609464253309187e-16,2.5609464253309187e-16 -1.3435294117647059,-11.58143797359291,-11.58143797359291,4.1482757148961285e-05,4.1482757148961285e-05,-57.317019692977006,-57.317019692977006,2.644354784261784e-16,2.644354784261784e-16 -1.3458823529411765,-13.703215753220404,-13.703215753220404,5.203966281477201e-06,5.203966281477201e-06,-58.02291219524936,-58.02291219524936,2.72692346695699e-16,2.72692346695699e-16 -1.348235294117647,-12.677094063334227,-12.677094063334227,3.30625101022947e-05,3.30625101022947e-05,-58.7262065205093,-58.7262065205093,2.8106540151705006e-16,2.8106540151705006e-16 -1.3505882352941176,-13.181772443491697,-13.181772443491697,5.043131988300665e-05,5.043131988300665e-05,-59.42792039892918,-59.42792039892918,2.8921552408593386e-16,2.8921552408593386e-16 -1.3529411764705883,-12.874138843601267,-12.874138843601267,6.293845504900835e-05,6.293845504900835e-05,-60.12736896186883,-60.12736896186883,2.967287940102462e-16,2.967287940102462e-16 -1.3552941176470588,-12.630766048277236,-12.630766048277236,6.122602758301476e-05,6.122602758301476e-05,-60.823288189828034,-60.823288189828034,3.0359100159657676e-16,3.0359100159657676e-16 -1.3576470588235294,-12.670595110020683,-12.670595110020683,8.192935725668965e-05,8.192935725668965e-05,-61.515307106689285,-61.515307106689285,3.101039620909353e-16,3.101039620909353e-16 -1.3599999999999999,-12.901228167543007,-12.901228167543007,7.88113227010296e-05,7.88113227010296e-05,-62.20441077593663,-62.20441077593663,3.164253823348741e-16,3.164253823348741e-16 -1.3623529411764705,-12.746689033614558,-12.746689033614558,9.264585018035043e-05,9.264585018035043e-05,-62.891355144528205,-62.891355144528205,3.222651035003707e-16,3.222651035003707e-16 -1.3647058823529412,-12.759075705689304,-12.759075705689304,0.00010354252077616181,0.00010354252077616181,-63.57554284554898,-63.57554284554898,3.272675079834293e-16,3.272675079834293e-16 -1.3670588235294117,-12.554656773397506,-12.554656773397506,7.737308233954999e-05,7.737308233954999e-05,-64.25578684708465,-64.25578684708465,3.3140200766059083e-16,3.3140200766059083e-16 -1.3694117647058823,-12.42629428600545,-12.42629428600545,6.861916410007518e-05,6.861916410007518e-05,-64.93151179298124,-64.93151179298124,3.3498934515378086e-16,3.3498934515378086e-16 -1.371764705882353,-12.380385723248379,-12.380385723248379,6.561784648661869e-05,6.561784648661869e-05,-65.60333989677633,-65.60333989677633,3.382774338256358e-16,3.382774338256358e-16 -1.3741176470588234,-12.444854086612667,-12.444854086612667,7.995213015373985e-05,7.995213015373985e-05,-66.27192215720999,-66.27192215720999,3.4114468256775655e-16,3.4114468256775655e-16 -1.3764705882352941,-12.902443643618616,-12.902443643618616,5.193362526707885e-05,5.193362526707885e-05,-66.93703697722992,-66.93703697722992,3.4334848336941093e-16,3.4334848336941093e-16 -1.3788235294117648,-13.10283604142519,-13.10283604142519,3.614304919905381e-05,3.614304919905381e-05,-67.59766591876259,-67.59766591876259,3.4489350541684414e-16,3.4489350541684414e-16 -1.3811764705882352,-12.721551045586935,-12.721551045586935,3.1819214269977597e-05,3.1819214269977597e-05,-68.25341602684004,-68.25341602684004,3.461770342539449e-16,3.461770342539449e-16 -1.383529411764706,-13.543927676910947,-13.543927676910947,3.294175424349213e-05,3.294175424349213e-05,-68.90495346441689,-68.90495346441689,3.4750776503558355e-16,3.4750776503558355e-16 -1.3858823529411763,-13.631768671313331,-13.631768671313331,4.554123589129332e-05,4.554123589129332e-05,-69.5533009395281,-69.5533009395281,3.4887508785942984e-16,3.4887508785942984e-16 -1.388235294117647,-13.770663498069647,-13.770663498069647,6.89865613791886e-05,6.89865613791886e-05,-70.19872993042942,-70.19872993042942,3.500465085854724e-16,3.500465085854724e-16 -1.3905882352941177,-13.976215822411595,-13.976215822411595,9.648238894829565e-05,9.648238894829565e-05,-70.84072787983145,-70.84072787983145,3.5090187515901114e-16,3.5090187515901114e-16 -1.3929411764705881,-14.067690024043205,-14.067690024043205,8.578376909530027e-05,8.578376909530027e-05,-71.47888267593996,-71.47888267593996,3.516527801950591e-16,3.516527801950591e-16 -1.3952941176470588,-14.018512798637213,-14.018512798637213,6.63953140700588e-05,6.63953140700588e-05,-72.11368941592137,-72.11368941592137,3.5258152119429925e-16,3.5258152119429925e-16 -1.3976470588235295,-13.911616499648806,-13.911616499648806,9.487922391637876e-05,9.487922391637876e-05,-72.74614778672012,-72.74614778672012,3.5366455340873525e-16,3.5366455340873525e-16 -1.4,-13.928026491548003,-13.928026491548003,0.00010523320673437048,0.00010523320673437048,-73.3767054332466,-73.3767054332466,3.5461645513433505e-16,3.5461645513433505e-16 -1.4023529411764706,-13.898081917610359,-13.898081917610359,0.00010947524579789364,0.00010947524579789364,-74.00494325383316,-74.00494325383316,3.5522488302031268e-16,3.5522488302031268e-16 -1.4047058823529412,-13.886548236330293,-13.886548236330293,0.00011214974295093684,0.00011214974295093684,-74.63025924336614,-74.63025924336614,3.555627244648952e-16,3.555627244648952e-16 -1.4070588235294117,-13.87095016153867,-13.87095016153867,0.00011731336273278351,0.00011731336273278351,-75.25281973541824,-75.25281973541824,3.558624687143627e-16,3.558624687143627e-16 -1.4094117647058824,-13.9223210682457,-13.9223210682457,8.855047479396833e-05,8.855047479396833e-05,-75.87340240454039,-75.87340240454039,3.561652115578701e-16,3.561652115578701e-16 -1.4117647058823528,-13.786393703719312,-13.786393703719312,0.00011321083580647138,0.00011321083580647138,-76.4926088504175,-76.4926088504175,3.562179846893277e-16,3.562179846893277e-16 -1.4141176470588235,-13.728601417968708,-13.728601417968708,0.00010680453203517698,0.00010680453203517698,-77.11017456068727,-77.11017456068727,3.5571561224717653e-16,3.5571561224717653e-16 -1.4164705882352941,-13.686886221052251,-13.686886221052251,0.00010036317931077276,0.00010036317931077276,-77.72529951576271,-77.72529951576271,3.545640321176548e-16,3.545640321176548e-16 -1.4188235294117646,-14.01691961924638,-14.01691961924638,7.438589069506757e-05,7.438589069506757e-05,-78.33763210290421,-78.33763210290421,3.5295712135724894e-16,3.5295712135724894e-16 -1.4211764705882353,-14.212861962408464,-14.212861962408464,5.990387315883141e-05,5.990387315883141e-05,-78.94744800982998,-78.94744800982998,3.5105239048738323e-16,3.5105239048738323e-16 -1.423529411764706,-14.18785223088296,-14.18785223088296,7.137540526395407e-05,7.137540526395407e-05,-79.55541170605481,-79.55541170605481,3.487576769807058e-16,3.487576769807058e-16 -1.4258823529411764,-14.313058886146093,-14.313058886146093,6.88258017318516e-05,6.88258017318516e-05,-80.16158921639561,-80.16158921639561,3.458099856991337e-16,3.458099856991337e-16 -1.428235294117647,-14.590877281151846,-14.590877281151846,8.563295924241798e-05,8.563295924241798e-05,-80.76539341538852,-80.76539341538852,3.420413674047104e-16,3.420413674047104e-16 -1.4305882352941177,-14.786062117899068,-14.786062117899068,8.928058749740989e-05,8.928058749740989e-05,-81.36618499660283,-81.36618499660283,3.375086388057901e-16,3.375086388057901e-16 -1.4329411764705882,-14.763970413913512,-14.763970413913512,8.981781701973858e-05,8.981781701973858e-05,-81.9638545413296,-81.9638545413296,3.3238111433564786e-16,3.3238111433564786e-16 -1.4352941176470588,-14.939334706003418,-14.939334706003418,9.235247396892243e-05,9.235247396892243e-05,-82.55877637730153,-82.55877637730153,3.266815052367386e-16,3.266815052367386e-16 -1.4376470588235293,-14.775170139592591,-14.775170139592591,0.00010376069766495308,0.00010376069766495308,-83.15112569173537,-83.15112569173537,3.202064294905817e-16,3.202064294905817e-16 -1.44,-14.684663088344772,-14.684663088344772,0.0001170831041878901,0.0001170831041878901,-83.74027535317117,-83.74027535317117,3.1276869284708597e-16,3.1276869284708597e-16 -1.4423529411764706,-14.82486291669778,-14.82486291669778,0.0001314419139513184,0.0001314419139513184,-84.3251650890039,-84.3251650890039,3.04363282358389e-16,3.04363282358389e-16 -1.444705882352941,-14.70402235261146,-14.70402235261146,0.00013643076767767647,0.00013643076767767647,-84.90497419424676,-84.90497419424676,2.9521808345673977e-16,2.9521808345673977e-16 -1.4470588235294117,-14.87297948440866,-14.87297948440866,0.00013127768924362497,0.00013127768924362497,-85.4794616965796,-85.4794616965796,2.8556365813479946e-16,2.8556365813479946e-16 -1.4494117647058824,-14.74721493053053,-14.74721493053053,0.00015193898002789855,0.00015193898002789855,-86.04883084375818,-86.04883084375818,2.754389258852878e-16,2.754389258852878e-16 -1.4517647058823528,-14.64777408588754,-14.64777408588754,0.0001479003792751812,0.0001479003792751812,-86.6127549380037,-86.6127549380037,2.6472558626830174e-16,2.6472558626830174e-16 -1.4541176470588235,-14.59320919250859,-14.59320919250859,0.00014910938881908953,0.00014910938881908953,-87.16982680415481,-87.16982680415481,2.5335994550337135e-16,2.5335994550337135e-16 -1.4564705882352942,-14.578507634108247,-14.578507634108247,0.00015710897944697658,0.00015710897944697658,-87.71829094500427,-87.71829094500427,2.415139323436636e-16,2.415139323436636e-16 -1.4588235294117646,-14.758497509053658,-14.758497509053658,0.00012177630385080531,0.00012177630385080531,-88.2566197417266,-88.2566197417266,2.2950638079897673e-16,2.2950638079897673e-16 -1.4611764705882353,-14.600107746731453,-14.600107746731453,0.00011649603852228609,0.00011649603852228609,-88.78356344781565,-88.78356344781565,2.17633981778848e-16,2.17633981778848e-16 -1.4635294117647057,-14.735628031304387,-14.735628031304387,0.00011050380542356395,0.00011050380542356395,-89.29760686785036,-89.29760686785036,2.0610231580987452e-16,2.0610231580987452e-16 -1.4658823529411764,-14.638632559973537,-14.638632559973537,0.00011109130479155359,0.00011109130479155359,-89.79606749331975,-89.79606749331975,1.9525227343188543e-16,1.9525227343188543e-16 -1.468235294117647,-14.804272420726097,-14.804272420726097,0.00014088577211500766,0.00014088577211500766,-90.27594856900139,-90.27594856900139,1.858004748919535e-16,1.858004748919535e-16 -1.4705882352941178,-14.77566899965008,-14.77566899965008,9.578255226959061e-05,9.578255226959061e-05,-90.73665430803767,-90.73665430803767,1.788304810345939e-16,1.788304810345939e-16 -1.4729411764705882,-14.949708011783631,-14.949708011783631,8.806538870914437e-05,8.806538870914437e-05,-91.18225049195303,-91.18225049195303,1.754051819454944e-16,1.754051819454944e-16 -1.4752941176470589,-14.893622739251935,-14.893622739251935,0.00010665156403260341,0.00010665156403260341,-91.62090816729938,-91.62090816729938,1.760349171661201e-16,1.760349171661201e-16 -1.4776470588235295,-14.867213177629525,-14.867213177629525,0.00011424236188756491,0.00011424236188756491,-92.06103046432266,-92.06103046432266,1.80513635738703e-16,1.80513635738703e-16 -1.48,-15.045356713288559,-15.045356713288559,0.00010334613326814218,0.00010334613326814218,-92.50778287301364,-92.50778287301364,1.882497005563197e-16,1.882497005563197e-16 -1.4823529411764707,-15.136255155479141,-15.136255155479141,0.00011444697022317164,0.00011444697022317164,-92.96281623816819,-92.96281623816819,1.9867077972628867e-16,1.9867077972628867e-16 -1.484705882352941,-15.583232497360786,-15.583232497360786,9.108459142782209e-05,9.108459142782209e-05,-93.42564899726992,-93.42564899726992,2.1145816382100211e-16,2.1145816382100211e-16 -1.4870588235294118,-15.414112416147471,-15.414112416147471,0.00010167645457862532,0.00010167645457862532,-93.8951337547896,-93.8951337547896,2.2664041614881034e-16,2.2664041614881034e-16 -1.4894117647058822,-15.54372154072507,-15.54372154072507,0.00010329515302704569,0.00010329515302704569,-94.37092974124036,-94.37092974124036,2.446331386615397e-16,2.446331386615397e-16 -1.4917647058823529,-15.405270777064477,-15.405270777064477,0.00010058170177736406,0.00010058170177736406,-94.85454907172804,-94.85454907172804,2.660603678969381e-16,2.660603678969381e-16 -1.4941176470588236,-15.469929877969452,-15.469929877969452,0.00011747749189578945,0.00011747749189578945,-95.34922392951447,-95.34922392951447,2.9123594727552595e-16,2.9123594727552595e-16 -1.4964705882352942,-15.507649468453376,-15.507649468453376,0.00013118956164673653,0.00013118956164673653,-95.85785077378472,-95.85785077378472,3.195430380339759e-16,3.195430380339759e-16 -1.4988235294117647,-15.66825104654082,-15.66825104654082,0.00013401059018576685,0.00013401059018576685,-96.38046203568418,-96.38046203568418,3.4927820148167524e-16,3.4927820148167524e-16 -1.5011764705882353,-15.588788874176212,-15.588788874176212,0.00012290903144592693,0.00012290903144592693,-96.91318682336659,-96.91318682336659,3.7825029592892975e-16,3.7825029592892975e-16 -1.5035294117647058,-15.602496275765791,-15.602496275765791,0.00011125412087336395,0.00011125412087336395,-97.44946631638058,-97.44946631638058,4.048783783958936e-16,4.048783783958936e-16 -1.5058823529411764,-15.526645732414883,-15.526645732414883,0.00011919395589529958,0.00011919395589529958,-97.98262978936278,-97.98262978936278,4.292327919298258e-16,4.292327919298258e-16 -1.5082352941176471,-15.59249693362561,-15.59249693362561,0.00012064404007627225,0.00012064404007627225,-98.50886947626428,-98.50886947626428,4.533391392816534e-16,4.533391392816534e-16 -1.5105882352941176,-15.662772905797121,-15.662772905797121,0.0001301771747549219,0.0001301771747549219,-99.02937925839814,-99.02937925839814,4.80236376042514e-16,4.80236376042514e-16 -1.5129411764705882,-15.711077880749404,-15.711077880749404,0.0001303166667243616,0.0001303166667243616,-99.54995986529565,-99.54995986529565,5.12183451397172e-16,5.12183451397172e-16 -1.5152941176470587,-15.768891512213196,-15.768891512213196,0.00011920083027285197,0.00011920083027285197,-100.07718764038002,-100.07718764038002,5.489912661526444e-16,5.489912661526444e-16 -1.5176470588235293,-15.786900343003458,-15.786900343003458,0.00011267836925996929,0.00011267836925996929,-100.61430735627408,-100.61430735627408,5.879064400009526e-16,5.879064400009526e-16 -1.52,-15.781932780579591,-15.781932780579591,0.00011555232174498609,0.00011555232174498609,-101.15960661367947,-101.15960661367947,6.25019397479818e-16,6.25019397479818e-16 -1.5223529411764707,-15.78257827639479,-15.78257827639479,0.00011915306879083174,0.00011915306879083174,-101.70787034988301,-101.70787034988301,6.57278750723977e-16,6.57278750723977e-16 -1.5247058823529411,-15.823095547064238,-15.823095547064238,0.00011957326166546154,0.00011957326166546154,-102.25298827241969,-102.25298827241969,6.839612241706336e-16,6.839612241706336e-16 -1.5270588235294118,-15.920075349029325,-15.920075349029325,0.00011885868675547903,0.00011885868675547903,-102.7903731760443,-102.7903731760443,7.070192911308504e-16,7.070192911308504e-16 -1.5294117647058822,-15.990658200796968,-15.990658200796968,0.00011771829672491137,0.00011771829672491137,-103.31887292557835,-103.31887292557835,7.302133459344065e-16,7.302133459344065e-16 -1.531764705882353,-16.02589814004411,-16.02589814004411,0.00011403209162470313,0.00011403209162470313,-103.84123774712924,-103.84123774712924,7.572936864772626e-16,7.572936864772626e-16 -1.5341176470588236,-16.04221698775154,-16.04221698775154,0.00011602043983310303,0.00011602043983310303,-104.36259392819528,-104.36259392819528,7.90094432969034e-16,7.90094432969034e-16 -1.536470588235294,-16.092508719707464,-16.092508719707464,0.0001136398134707677,0.0001136398134707677,-104.88763745876169,-104.88763745876169,8.276909409247309e-16,8.276909409247309e-16 -1.5388235294117647,-16.00071530743734,-16.00071530743734,0.00012450910938110608,0.00012450910938110608,-105.41838134044052,-105.41838134044052,8.67027885660887e-16,8.67027885660887e-16 -1.5411764705882351,-16.090967463496177,-16.090967463496177,0.00012393924495613631,0.00012393924495613631,-105.95395308580741,-105.95395308580741,9.045025253587183e-16,9.045025253587183e-16 -1.5435294117647058,-16.1662255790567,-16.1662255790567,0.00012216396090502455,0.00012216396090502455,-106.4913679741846,-106.4913679741846,9.374591582638655e-16,9.374591582638655e-16 -1.5458823529411767,-16.20699655114285,-16.20699655114285,0.00011801135861472587,0.00011801135861472587,-107.02723651565162,-107.02723651565162,9.65088731052481e-16,9.65088731052481e-16 -1.5482352941176472,-16.216203576667795,-16.216203576667795,0.00011561085902787353,0.00011561085902787353,-107.55880122160188,-107.55880122160188,9.884463639382405e-16,9.884463639382405e-16 -1.5505882352941176,-16.24271545574679,-16.24271545574679,0.00011180083033296979,0.00011180083033296979,-108.08481713339943,-108.08481713339943,1.009879798603022e-15,1.009879798603022e-15 -1.5529411764705883,-16.207057373808254,-16.207057373808254,0.00011701148894565893,0.00011701148894565893,-108.60568344658589,-108.60568344658589,1.0320242588463098e-15,1.0320242588463098e-15 -1.5552941176470587,-16.28302124171583,-16.28302124171583,0.00011676966155651387,0.00011676966155651387,-109.12321728939226,-109.12321728939226,1.0568274523579533e-15,1.0568274523579533e-15 -1.5576470588235294,-16.31597459732992,-16.31597459732992,0.00011469448892268649,0.00011469448892268649,-109.63965748002826,-109.63965748002826,1.0848713499076888e-15,1.0848713499076888e-15 -1.5599999999999998,-16.38599626745507,-16.38599626745507,0.00011101520549168668,0.00011101520549168668,-110.15687549185267,-110.15687549185267,1.1154003271364589e-15,1.1154003271364589e-15 -1.5623529411764705,-16.37035080737102,-16.37035080737102,0.00010354775786211604,0.00010354775786211604,-110.67574131801113,-110.67574131801113,1.1467032106394298e-15,1.1467032106394298e-15 -1.5647058823529412,-16.418158213704988,-16.418158213704988,0.00010228484271469878,0.00010228484271469878,-111.19607296581513,-111.19607296581513,1.176882736089123e-15,1.176882736089123e-15 -1.5670588235294118,-16.429342067016293,-16.429342067016293,9.965426558893838e-05,9.965426558893838e-05,-111.71688760494675,-111.71688760494675,1.2044806702729976e-15,1.2044806702729976e-15 -1.5694117647058823,-16.435818593194163,-16.435818593194163,0.0001006800335768601,0.0001006800335768601,-112.23694268385283,-112.23694268385283,1.2288506594562006e-15,1.2288506594562006e-15 -1.571764705882353,-16.528808550972073,-16.528808550972073,0.00010103476435242368,0.00010103476435242368,-112.75509242248471,-112.75509242248471,1.2502059975304802e-15,1.2502059975304802e-15 -1.5741176470588236,-16.57388397282082,-16.57388397282082,0.00010081820844630343,0.00010081820844630343,-113.27068380365479,-113.27068380365479,1.269409677201244e-15,1.269409677201244e-15 -1.576470588235294,-16.648810077859157,-16.648810077859157,9.920769606472794e-05,9.920769606472794e-05,-113.7835375759002,-113.7835375759002,1.2875628354706617e-15,1.2875628354706617e-15 -1.5788235294117647,-16.733710218382527,-16.733710218382527,0.00010132419847358642,0.00010132419847358642,-114.2939710654511,-114.2939710654511,1.3056570721375116e-15,1.3056570721375116e-15 -1.5811764705882352,-16.681323710270874,-16.681323710270874,9.045927144165521e-05,9.045927144165521e-05,-114.802667757953,-114.802667757953,1.3242979693969859e-15,1.3242979693969859e-15 -1.5835294117647059,-16.75325012434656,-16.75325012434656,9.451732468926056e-05,9.451732468926056e-05,-115.31022390996232,-115.31022390996232,1.3435774295640485e-15,1.3435774295640485e-15 -1.5858823529411765,-16.84259812382807,-16.84259812382807,0.00010347351349343514,0.00010347351349343514,-115.8172223597612,-115.8172223597612,1.3632064671404358e-15,1.3632064671404358e-15 -1.5882352941176474,-16.809732330327183,-16.809732330327183,9.827876181109557e-05,9.827876181109557e-05,-116.32402211468116,-116.32402211468116,1.3826020103229215e-15,1.3826020103229215e-15 -1.5905882352941176,-16.865421267664964,-16.865421267664964,9.726809232447691e-05,9.726809232447691e-05,-116.83064133272293,-116.83064133272293,1.4010880129372453e-15,1.4010880129372453e-15 -1.592941176470588,-16.898637918354844,-16.898637918354844,9.85074026498201e-05,9.85074026498201e-05,-117.3369835094283,-117.3369835094283,1.4180350561586625e-15,1.4180350561586625e-15 -1.5952941176470588,-16.952433286333502,-16.952433286333502,9.769039701465963e-05,9.769039701465963e-05,-117.84276470780048,-117.84276470780048,1.4330156815906368e-15,1.4330156815906368e-15 -1.5976470588235294,-16.958284695089066,-16.958284695089066,9.509440355323638e-05,9.509440355323638e-05,-118.34766435600397,-118.34766435600397,1.4458157271543486e-15,1.4458157271543486e-15 -1.6,-16.962219646822867,-16.962219646822867,9.536495833050622e-05,9.536495833050622e-05,-118.85133526535178,-118.85133526535178,1.4564735401919562e-15,1.4564735401919562e-15 -1.6023529411764705,-16.97964162531932,-16.97964162531932,9.504055755942857e-05,9.504055755942857e-05,-119.3535548597835,-119.3535548597835,1.4652218921448253e-15,1.4652218921448253e-15 -1.6047058823529412,-17.003903459546823,-17.003903459546823,9.677323337647455e-05,9.677323337647455e-05,-119.85429289666747,-119.85429289666747,1.4724156558771058e-15,1.4724156558771058e-15 -1.6070588235294117,-17.024649251277193,-17.024649251277193,9.243310012479058e-05,9.243310012479058e-05,-120.3535471936496,-120.3535471936496,1.4783645373421468e-15,1.4783645373421468e-15 -1.6094117647058825,-17.045768226760142,-17.045768226760142,8.973803455410399e-05,8.973803455410399e-05,-120.85153228945441,-120.85153228945441,1.483298116971252e-15,1.483298116971252e-15 -1.611764705882353,-17.126385017520978,-17.126385017520978,9.126769564563716e-05,9.126769564563716e-05,-121.34843607801035,-121.34843607801035,1.4872551242376021e-15,1.4872551242376021e-15 -1.6141176470588237,-17.149725767046704,-17.149725767046704,8.559190448186273e-05,8.559190448186273e-05,-121.84439828511096,-121.84439828511096,1.4901464875630314e-15,1.4901464875630314e-15 -1.616470588235294,-17.188559912307053,-17.188559912307053,8.221187354904768e-05,8.221187354904768e-05,-122.33955330064491,-122.33955330064491,1.4917928242388354e-15,1.4917928242388354e-15 -1.6188235294117648,-17.19441690996412,-17.19441690996412,7.851871091323464e-05,7.851871091323464e-05,-122.83396047205322,-122.83396047205322,1.4919911757143498e-15,1.4919911757143498e-15 -1.6211764705882352,-17.235514533888924,-17.235514533888924,7.87351732784938e-05,7.87351732784938e-05,-123.32755848934552,-123.32755848934552,1.4905727808462842e-15,1.4905727808462842e-15 -1.6235294117647059,-17.274643905369786,-17.274643905369786,7.812567209719425e-05,7.812567209719425e-05,-123.82040093324318,-123.82040093324318,1.4874167558285712e-15,1.4874167558285712e-15 -1.6258823529411766,-17.34590524291123,-17.34590524291123,7.91489749061859e-05,7.91489749061859e-05,-124.31238752905533,-124.31238752905533,1.4824174943580435e-15,1.4824174943580435e-15 -1.6282352941176468,-17.430907043876772,-17.430907043876772,7.377176813235981e-05,7.377176813235981e-05,-124.80350673552994,-124.80350673552994,1.4755023209513296e-15,1.4755023209513296e-15 -1.630588235294118,-17.518709598968943,-17.518709598968943,7.111459163983487e-05,7.111459163983487e-05,-125.29370280472867,-125.29370280472867,1.4666055837769268e-15,1.4666055837769268e-15 -1.6329411764705881,-17.552429130033165,-17.552429130033165,7.299650453192145e-05,7.299650453192145e-05,-125.78292629946742,-125.78292629946742,1.4556985026067495e-15,1.4556985026067495e-15 -1.6352941176470588,-17.613313619628293,-17.613313619628293,6.989888555191707e-05,6.989888555191707e-05,-126.27107567693136,-126.27107567693136,1.442825582429182e-15,1.442825582429182e-15 -1.6376470588235295,-17.622632078403978,-17.622632078403978,7.284415420336793e-05,7.284415420336793e-05,-126.7580926067167,-126.7580926067167,1.428059838066492e-15,1.428059838066492e-15 -1.6400000000000001,-17.67211965030492,-17.67211965030492,7.299047975942468e-05,7.299047975942468e-05,-127.24403125667939,-127.24403125667939,1.4115059217494307e-15,1.4115059217494307e-15 -1.6423529411764706,-17.726063477836878,-17.726063477836878,7.309031370492824e-05,7.309031370492824e-05,-127.72887566781925,-127.72887566781925,1.3932572038125464e-15,1.3932572038125464e-15 -1.6447058823529415,-17.77199177973312,-17.77199177973312,7.7935617701274e-05,7.7935617701274e-05,-128.21272028497523,-128.21272028497523,1.373360266352033e-15,1.373360266352033e-15 -1.6470588235294117,-17.880391302962284,-17.880391302962284,7.332324875250536e-05,7.332324875250536e-05,-128.6955557286989,-128.6955557286989,1.3517965412202523e-15,1.3517965412202523e-15 -1.6494117647058824,-17.892794492860087,-17.892794492860087,7.428894279546903e-05,7.428894279546903e-05,-129.17749767498523,-129.17749767498523,1.3285109019120965e-15,1.3285109019120965e-15 -1.651764705882353,-17.940182386928996,-17.940182386928996,7.355141775829901e-05,7.355141775829901e-05,-129.65848880008238,-129.65848880008238,1.303458849033033e-15,1.303458849033033e-15 -1.6541176470588237,-17.971546853151878,-17.971546853151878,7.493493601189683e-05,7.493493601189683e-05,-130.13857583502988,-130.13857583502988,1.2766043971522339e-15,1.2766043971522339e-15 -1.6564705882352944,-17.906730956955098,-17.906730956955098,7.35495651831351e-05,7.35495651831351e-05,-130.6177006904926,-130.6177006904926,1.24794295937528e-15,1.24794295937528e-15 -1.6588235294117644,-17.92256507489477,-17.92256507489477,7.168954440570517e-05,7.168954440570517e-05,-131.09586891164457,-131.09586891164457,1.2174564939980795e-15,1.2174564939980795e-15 -1.6611764705882353,-18.028693693111133,-18.028693693111133,7.38416537856198e-05,7.38416537856198e-05,-131.57308395904892,-131.57308395904892,1.185118281555653e-15,1.185118281555653e-15 -1.663529411764706,-18.057691142261213,-18.057691142261213,7.574214414341851e-05,7.574214414341851e-05,-132.04934118882346,-132.04934118882346,1.150854093081711e-15,1.150854093081711e-15 -1.6658823529411766,-18.074829061820644,-18.074829061820644,7.428048562730942e-05,7.428048562730942e-05,-132.52451514822846,-132.52451514822846,1.1145568025189061e-15,1.1145568025189061e-15 -1.668235294117647,-18.158023472338343,-18.158023472338343,7.10761320326511e-05,7.10761320326511e-05,-132.99851679850127,-132.99851679850127,1.076174621312461e-15,1.076174621312461e-15 -1.670588235294118,-18.190568732475512,-18.190568732475512,6.660827250531827e-05,6.660827250531827e-05,-133.471098871682,-133.471098871682,1.035676799635473e-15,1.035676799635473e-15 -1.672941176470588,-18.227030362577622,-18.227030362577622,6.326343418375727e-05,6.326343418375727e-05,-133.94193379119628,-133.94193379119628,9.93123865835526e-16,9.93123865835526e-16 -1.6752941176470588,-18.251802922513452,-18.251802922513452,6.374734297119376e-05,6.374734297119376e-05,-134.41066574878877,-134.41066574878877,9.486239475266654e-16,9.486239475266654e-16 -1.6776470588235295,-18.274784024005754,-18.274784024005754,6.256952725712235e-05,6.256952725712235e-05,-134.87693875190436,-134.87693875190436,9.023235758298824e-16,9.023235758298824e-16 -1.68,-18.361168896669053,-18.361168896669053,6.339162578804621e-05,6.339162578804621e-05,-135.34019355743024,-135.34019355743024,8.543916583914991e-16,8.543916583914991e-16 -1.6823529411764706,-18.42449753718335,-18.42449753718335,6.418057526963446e-05,6.418057526963446e-05,-135.7997164442465,-135.7997164442465,8.050440868216801e-16,8.050440868216801e-16 -1.684705882352941,-18.543432275977644,-18.543432275977644,6.488065111425438e-05,6.488065111425438e-05,-136.25450307991576,-136.25450307991576,7.54604394838229e-16,7.54604394838229e-16 -1.6870588235294117,-18.701827913509835,-18.701827913509835,6.186833308989587e-05,6.186833308989587e-05,-136.70327321716707,-136.70327321716707,7.035640955870809e-16,7.035640955870809e-16 -1.6894117647058824,-18.77958030623065,-18.77958030623065,6.10892108539208e-05,6.10892108539208e-05,-137.14443624910257,-137.14443624910257,6.526927765368065e-16,6.526927765368065e-16 -1.6917647058823528,-18.83718019865665,-18.83718019865665,5.516522791320319e-05,5.516522791320319e-05,-137.5762528388939,-137.5762528388939,6.0299499909809e-16,6.0299499909809e-16 -1.6941176470588235,-18.89503611079658,-18.89503611079658,5.548515479769272e-05,5.548515479769272e-05,-137.99712257689723,-137.99712257689723,5.556549614271674e-16,5.556549614271674e-16 -1.6964705882352942,-18.710978396360932,-18.710978396360932,4.874100296041473e-05,4.874100296041473e-05,-138.40592752532174,-138.40592752532174,5.118771676139504e-16,5.118771676139504e-16 -1.6988235294117644,-18.821421619595977,-18.821421619595977,6.031913607010213e-05,6.031913607010213e-05,-138.80234085783178,-138.80234085783178,4.726668308851053e-16,4.726668308851053e-16 -1.7011764705882353,-18.79398013169501,-18.79398013169501,6.429458760517948e-05,6.429458760517948e-05,-139.18688092161622,-139.18688092161622,4.3868770744505037e-16,4.3868770744505037e-16 -1.7035294117647062,-19.033213817192234,-19.033213817192234,7.197811658451345e-05,7.197811658451345e-05,-139.5608748825627,-139.5608748825627,4.1020907600932764e-16,4.1020907600932764e-16 -1.7058823529411766,-19.18621534564469,-19.18621534564469,6.785074826221511e-05,6.785074826221511e-05,-139.9260972440593,-139.9260972440593,3.871813307338768e-16,3.871813307338768e-16 -1.7082352941176469,-19.25363325889286,-19.25363325889286,7.16459787406807e-05,7.16459787406807e-05,-140.2845902766846,-140.2845902766846,3.694618113337161e-16,3.694618113337161e-16 -1.7105882352941175,-19.218674270512864,-19.218674270512864,6.499473623695104e-05,6.499473623695104e-05,-140.63863976784856,-140.63863976784856,3.568678510099384e-16,3.568678510099384e-16 -1.7129411764705882,-19.02360624751988,-19.02360624751988,5.2485656716358346e-05,5.2485656716358346e-05,-140.99132810742609,-140.99132810742609,3.492584410437549e-16,3.492584410437549e-16 -1.7152941176470589,-19.238184562840605,-19.238184562840605,6.16759383977517e-05,6.16759383977517e-05,-141.34633576036398,-141.34633576036398,3.463036570322612e-16,3.463036570322612e-16 -1.7176470588235295,-19.11766273244867,-19.11766273244867,7.144007917188959e-05,7.144007917188959e-05,-141.70742343114404,-141.70742343114404,3.4732834492732414e-16,3.4732834492732414e-16 -1.72,-19.160189704772158,-19.160189704772158,7.497153079119314e-05,7.497153079119314e-05,-142.077489964466,-142.077489964466,3.512460663411034e-16,3.512460663411034e-16 -1.7223529411764709,-19.18866638836412,-19.18866638836412,5.6627195043874476e-05,5.6627195043874476e-05,-142.45788890301898,-142.45788890301898,3.5670716614707525e-16,3.5670716614707525e-16 -1.7247058823529409,-19.33645055973104,-19.33645055973104,7.76176808403395e-05,7.76176808403395e-05,-142.8480069551014,-142.8480069551014,3.6232859745264356e-16,3.6232859745264356e-16 -1.7270588235294118,-19.473340575324507,-19.473340575324507,6.296634291339408e-05,6.296634291339408e-05,-143.24591530018287,-143.24591530018287,3.6700920066770895e-16,3.6700920066770895e-16 -1.7294117647058824,-19.31351954801803,-19.31351954801803,6.139411374365119e-05,6.139411374365119e-05,-143.64902355724578,-143.64902355724578,3.700824090482275e-16,3.700824090482275e-16 -1.731764705882353,-19.114230388493112,-19.114230388493112,5.0858560477980765e-05,5.0858560477980765e-05,-144.05465105106086,-144.05465105106086,3.713431741008823e-16,3.713431741008823e-16 -1.7341176470588235,-19.31734082780218,-19.31734082780218,5.4652770305633615e-05,5.4652770305633615e-05,-144.46072086540104,-144.46072086540104,3.710075952911914e-16,3.710075952911914e-16 -1.7364705882352938,-18.890245387265388,-18.890245387265388,5.2511940688043126e-05,5.2511940688043126e-05,-144.8658076582182,-144.8658076582182,3.6953016447577607e-16,3.6953016447577607e-16 -1.7388235294117647,-19.444335408787417,-19.444335408787417,6.738244314772332e-05,6.738244314772332e-05,-145.26951320469277,-145.26951320469277,3.6740381609837346e-16,3.6740381609837346e-16 -1.7411764705882353,-19.39580420650727,-19.39580420650727,7.929128590643185e-05,7.929128590643185e-05,-145.67199857320733,-145.67199857320733,3.650492107272272e-16,3.650492107272272e-16 -1.743529411764706,-19.649903739588744,-19.649903739588744,6.513204816550907e-05,6.513204816550907e-05,-146.07393425382585,-146.07393425382585,3.6268263098669443e-16,3.6268263098669443e-16 -1.7458823529411764,-19.68778245210655,-19.68778245210655,6.976182875799838e-05,6.976182875799838e-05,-146.47593769917844,-146.47593769917844,3.6032550369441716e-16,3.6032550369441716e-16 -1.748235294117647,-19.89980905670676,-19.89980905670676,5.578393130513209e-05,5.578393130513209e-05,-146.8785307392693,-146.8785307392693,3.5784231109634517e-16,3.5784231109634517e-16 -1.7505882352941176,-19.547144765338672,-19.547144765338672,5.333753636609363e-05,5.333753636609363e-05,-147.28179734406342,-147.28179734406342,3.550677117856916e-16,3.550677117856916e-16 -1.7529411764705882,-19.692197105567235,-19.692197105567235,5.5253709655966106e-05,5.5253709655966106e-05,-147.68562483860703,-147.68562483860703,3.518493282375717e-16,3.518493282375717e-16 -1.7552941176470591,-19.64742729592394,-19.64742729592394,5.888260314565172e-05,5.888260314565172e-05,-148.08973690926567,-148.08973690926567,3.4807540081052363e-16,3.4807540081052363e-16 -1.7576470588235293,-19.61312308030261,-19.61312308030261,5.9582311448833615e-05,5.9582311448833615e-05,-148.49373888572404,-148.49373888572404,3.437165060944821e-16,3.437165060944821e-16 -1.76,-19.657441833302745,-19.657441833302745,7.508588585760312e-05,7.508588585760312e-05,-148.89727842710576,-148.89727842710576,3.3875590474926293e-16,3.3875590474926293e-16 -1.7623529411764705,-19.95172653503568,-19.95172653503568,7.33092599855776e-05,7.33092599855776e-05,-149.30009260233354,-149.30009260233354,3.332518603452683e-16,3.332518603452683e-16 -1.7647058823529411,-20.076537820281633,-20.076537820281633,7.857574915602754e-05,7.857574915602754e-05,-149.7018079392608,-149.7018079392608,3.2722806334631374e-16,3.2722806334631374e-16 -1.7670588235294116,-20.01766308600353,-20.01766308600353,5.1989682124341766e-05,5.1989682124341766e-05,-150.1021724981906,-150.1021724981906,3.207646078456957e-16,3.207646078456957e-16 -1.7694117647058827,-19.911439827153632,-19.911439827153632,6.918646794476343e-05,6.918646794476343e-05,-150.50092888367993,-150.50092888367993,3.13964084565336e-16,3.13964084565336e-16 -1.7717647058823531,-20.245461566836138,-20.245461566836138,5.545169311032592e-05,5.545169311032592e-05,-150.89780552590824,-150.89780552590824,3.069571333704791e-16,3.069571333704791e-16 -1.7741176470588236,-20.106324462750088,-20.106324462750088,6.255219349403829e-05,6.255219349403829e-05,-151.29281024296327,-151.29281024296327,2.998374282523848e-16,2.998374282523848e-16 -1.776470588235294,-19.58785549456282,-19.58785549456282,5.33621357094918e-05,5.33621357094918e-05,-151.68598405326512,-151.68598405326512,2.9273269381348716e-16,2.9273269381348716e-16 -1.7788235294117647,-20.02340884197069,-20.02340884197069,7.745344295347694e-05,7.745344295347694e-05,-152.07759421332702,-152.07759421332702,2.856956863236306e-16,2.856956863236306e-16 -1.7811764705882354,-20.090534315537898,-20.090534315537898,9.131331639261888e-05,9.131331639261888e-05,-152.46775836935169,-152.46775836935169,2.787627109253204e-16,2.787627109253204e-16 -1.7835294117647063,-20.16241849780119,-20.16241849780119,0.00010239133420775926,0.00010239133420775926,-152.8566728911317,-152.8566728911317,2.719118611680927e-16,2.719118611680927e-16 -1.7858823529411765,-20.188976814703487,-20.188976814703487,9.854894096383608e-05,9.854894096383608e-05,-153.24439473643966,-153.24439473643966,2.6511941905238193e-16,2.6511941905238193e-16 -1.7882352941176471,-20.45055743357354,-20.45055743357354,8.217317047228038e-05,8.217317047228038e-05,-153.63086539407098,-153.63086539407098,2.583838004810903e-16,2.583838004810903e-16 -1.7905882352941174,-20.381318439129867,-20.381318439129867,7.72542895353272e-05,7.72542895353272e-05,-154.01596291446768,-154.01596291446768,2.5168976896106737e-16,2.5168976896106737e-16 -1.7929411764705883,-20.205930115332563,-20.205930115332563,7.933537732018929e-05,7.933537732018929e-05,-154.3996115400873,-154.3996115400873,2.4510153375604425e-16,2.4510153375604425e-16 -1.795294117647059,-20.20159798904286,-20.20159798904286,7.034318870386723e-05,7.034318870386723e-05,-154.78185236826482,-154.78185236826482,2.3865114522672886e-16,2.3865114522672886e-16 -1.7976470588235294,-20.113142857160327,-20.113142857160327,8.103462195054968e-05,8.103462195054968e-05,-155.16283411495723,-155.16283411495723,2.3238049350399767e-16,2.3238049350399767e-16 -1.8,-20.180293025216884,-20.180293025216884,9.519793818333296e-05,9.519793818333296e-05,-155.54279992204724,-155.54279992204724,2.262940967529136e-16,2.262940967529136e-16 diff --git a/sparameters/rotate_f258530e_e0617363.yml b/sparameters/rotate_f258530e_e0617363.yml deleted file mode 100644 index 84860546..00000000 --- a/sparameters/rotate_f258530e_e0617363.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 30 -fiber_xoffset: 17 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 200.85374760627747 -compute_time_minutes: 3.3475624601046245 diff --git a/sparameters/rotate_f258530e_e775c147.csv b/sparameters/rotate_f258530e_e775c147.csv deleted file mode 100644 index ebf6eb1d..00000000 --- a/sparameters/rotate_f258530e_e775c147.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,2.5290280543402024,2.5290280543402024,0.4524423734904592,0.4524423734904592,-3.068102916709559,-3.068102916709559,0.002379012594886203,0.002379012594886203 -1.2023529411764706,3.226081201001051,3.226081201001051,0.4374628953685103,0.4374628953685103,-3.870716724392764,-3.870716724392764,0.0024431994672069945,0.0024431994672069945 -1.204705882352941,3.9549482238967215,3.9549482238967215,0.5070196351355862,0.5070196351355862,-4.674330340460903,-4.674330340460903,0.001966511245942549,0.001966511245942549 -1.2070588235294117,4.952139687242576,4.952139687242576,0.7840934799643193,0.7840934799643193,-5.672954046460197,-5.672954046460197,0.0011764325919801663,0.0011764325919801663 -1.2094117647058824,6.736971953019553,6.736971953019553,1.1253580432811823,1.1253580432811823,-7.418031467988149,-7.418031467988149,0.0008082689762692728,0.0008082689762692728 -1.2117647058823529,8.10933801562229,8.10933801562229,0.6966800526893018,0.6966800526893018,-8.790731141504338,-8.790731141504338,0.0013670392494347409,0.0013670392494347409 -1.2141176470588235,8.886809803095392,8.886809803095392,0.537377215937736,0.537377215937736,-9.630929746348144,-9.630929746348144,0.0018403928753119231,0.0018403928753119231 -1.216470588235294,9.524267509484556,9.524267509484556,0.5190956650483606,0.5190956650483606,-10.353737490816354,-10.353737490816354,0.0018818590189170798,0.0018818590189170798 -1.2188235294117646,10.186104577045565,10.186104577045565,0.621897609261625,0.621897609261625,-11.074046512859304,-11.074046512859304,0.001480986796694409,0.001480986796694409 -1.2211764705882353,11.066823256333336,11.066823256333336,1.084366728524635,1.084366728524635,-11.958521962357787,-11.958521962357787,0.0007995638507687112,0.0007995638507687112 -1.2235294117647058,13.117584589572774,13.117584589572774,1.9554646184280708,1.9554646184280708,-13.984422420409315,-13.984422420409315,0.0004376322415695748,0.0004376322415695748 -1.2258823529411764,14.49082166875793,14.49082166875793,0.8949507980677132,0.8949507980677132,-15.361626129573068,-15.361626129573068,0.0009867229145532992,0.0009867229145532992 -1.228235294117647,15.18291446385617,15.18291446385617,0.6447563535037051,0.6447563535037051,-16.105211136837138,-16.105211136837138,0.0014071867367887875,0.0014071867367887875 -1.2305882352941175,15.757906541216828,15.757906541216828,0.6108058739524347,0.6108058739524347,-16.7508709558185,-16.7508709558185,0.0014697871814562506,0.0014697871814562506 -1.2329411764705882,16.336297738018306,16.336297738018306,0.7314152984311282,0.7314152984311282,-17.380518414421765,-17.380518414421765,0.0011707189937159646,0.0011707189937159646 -1.2352941176470589,17.024569498587017,17.024569498587017,1.3244378900654175,1.3244378900654175,-18.078756261593853,-18.078756261593853,0.0006138381899702133,0.0006138381899702133 -1.2376470588235293,19.41146333338877,19.41146333338877,4.845246127692678,4.845246127692678,-20.450080698139057,-20.450080698139057,0.00016482518971757483,0.00016482518971757483 -1.24,20.857292530411875,20.857292530411875,1.1736217159947309,1.1736217159947309,-21.89722031485751,-21.89722031485751,0.0006933235515603165,0.0006933235515603165 -1.2423529411764704,21.454785292959603,21.454785292959603,0.7717414976427156,0.7717414976427156,-22.532842506376664,-22.532842506376664,0.0010775002129963347,0.0010775002129963347 -1.244705882352941,21.968218851735823,21.968218851735823,0.7053217298137491,0.7053217298137491,-23.10461582485204,-23.10461582485204,0.0011725589257712608,0.0011725589257712608 -1.2470588235294118,22.469921787192884,22.469921787192884,0.8207645274134691,0.8207645274134691,-23.65423454387841,-23.65423454387841,0.0009717882546022884,0.0009717882546022884 -1.2494117647058822,22.987603946041567,22.987603946041567,1.400444087841988,1.400444087841988,-24.188371205367815,-24.188371205367815,0.0005439151518692171,0.0005439151518692171 -1.251764705882353,22.847956163834414,22.847956163834414,67.15822766898529,67.15822766898529,-24.039906442694402,-24.039906442694402,1.1068304430526513e-05,1.1068304430526513e-05 -1.2541176470588236,20.942588981874867,20.942588981874867,1.506307633241139,1.506307633241139,-22.130975229685696,-22.130975229685696,0.0004970465992643246,0.0004970465992643246 -1.256470588235294,21.43089623512107,21.43089623512107,0.8950755840191076,0.8950755840191076,-22.643074374081568,-22.643074374081568,0.0008514885091018225,0.0008514885091018225 -1.2588235294117647,21.893562575388284,21.893562575388284,0.7807495267030817,0.7807495267030817,-23.15143966043584,-23.15143966043584,0.0009775822738381271,0.0009775822738381271 -1.2611764705882353,22.34515675133873,22.34515675133873,0.8682199305618453,0.8682199305618453,-23.64740514484356,-23.64740514484356,0.0008579260326680299,0.0008579260326680299 -1.2635294117647058,22.781719608116106,22.781719608116106,1.3384133084823286,1.3384133084823286,-24.107021299873647,-24.107021299873647,0.0005353104721975914,0.0005353104721975914 -1.2658823529411765,22.787565060884816,22.787565060884816,6.236604766512655,6.236604766512655,-24.110659369000476,-24.110659369000476,0.00011152867374627971,0.00011152867374627971 -1.268235294117647,20.954426255866373,20.954426255866373,1.9171504339638898,1.9171504339638898,-22.269498183269835,-22.269498183269835,0.0003613591678763807,0.0003613591678763807 -1.2705882352941176,21.35035268422948,21.35035268422948,0.9974709120972308,0.9974709120972308,-22.67501255673153,-22.67501255673153,0.0007037965356152325,0.0007037965356152325 -1.2729411764705882,21.786669276532322,21.786669276532322,0.8136230589969918,0.8136230589969918,-23.142444953690195,-23.142444953690195,0.0008702286987673368,0.0008702286987673368 -1.2752941176470587,22.220689933899443,22.220689933899443,0.8475697902163475,0.8475697902163475,-23.615050184512484,-23.615050184512484,0.0008260549690577721,0.0008260549690577721 -1.2776470588235294,22.65007070895651,22.65007070895651,1.155993615845712,1.155993615845712,-24.07150496576123,-24.07150496576123,0.0005885469452895192,0.0005885469452895192 -1.28,22.974182519215386,22.974182519215386,2.9834502414040664,2.9834502414040664,-24.40123030898584,-24.40123030898584,0.0002213813649388802,0.0002213813649388802 -1.2823529411764705,20.833790019584804,20.833790019584804,3.1334791814791467,3.1334791814791467,-22.252514865578934,-22.252514865578934,0.0002081285590177358,0.0002081285590177358 -1.2847058823529411,21.14984695699854,21.14984695699854,1.1565480864248674,1.1565480864248674,-22.56589688708377,-22.56589688708377,0.0005681228291792994,0.0005681228291792994 -1.2870588235294118,21.583365221098486,21.583365221098486,0.8329285144195465,0.8329285144195465,-23.014639928586284,-23.014639928586284,0.0007996115354801897,0.0007996115354801897 -1.2894117647058823,22.01953594137745,22.01953594137745,0.7860906252749326,0.7860906252749326,-23.479942949119952,-23.479942949119952,0.0008499409714657197,0.0008499409714657197 -1.291764705882353,22.456877676626668,22.456877676626668,0.9278605484009687,0.9278605484009687,-23.9454154367016,-23.9454154367016,0.000710673681285034,0.000710673681285034 -1.2941176470588236,22.89317889199974,22.89317889199974,1.554324886425189,1.554324886425189,-24.395731137894405,-24.395731137894405,0.0004149518173120902,0.0004149518173120902 -1.296470588235294,22.754400136361948,22.754400136361948,17.878057528252786,17.878057528252786,-24.254575072299037,-24.254575072299037,3.5510819088911494e-05,3.5510819088911494e-05 -1.2988235294117647,20.81714566656791,20.81714566656791,1.736833782237905,1.736833782237905,-22.309978220531796,-22.309978220531796,0.00036596020809535174,0.00036596020809535174 -1.3011764705882352,21.25555057484504,21.25555057484504,0.9456462913724223,0.9456462913724223,-22.750873845146046,-22.750873845146046,0.0006820801763459227,0.0006820801763459227 -1.3035294117647058,21.697475537409584,21.697475537409584,0.7650542440378857,0.7650542440378857,-23.210120593036354,-23.210120593036354,0.0008558970128059015,0.0008558970128059015 -1.3058823529411765,22.133532835350874,22.133532835350874,0.7721086649705436,0.7721086649705436,-23.671580276120242,-23.671580276120242,0.0008520101976097271,0.0008520101976097271 -1.308235294117647,22.57151120534369,22.57151120534369,0.9719666943361088,0.9719666943361088,-24.130952982625406,-24.130952982625406,0.0006720243157531797,0.0006720243157531797 -1.3105882352941176,23.012169616435383,23.012169616435383,1.8296623739645228,1.8296623739645228,-24.580882278996892,-24.580882278996892,0.00035328312577804615,0.00035328312577804615 -1.3129411764705883,20.555392757757897,20.555392757757897,15.820248787303829,15.820248787303829,-22.122876884740386,-22.122876884740386,4.0761351755123684e-05,4.0761351755123684e-05 -1.3152941176470587,20.831736604878092,20.831736604878092,1.5197190341327707,1.5197190341327707,-22.39778416696202,-22.39778416696202,0.0004292735983359588,0.0004292735983359588 -1.3176470588235294,21.26941819675769,21.26941819675769,0.9017275411603837,0.9017275411603837,-22.84392568094425,-22.84392568094425,0.000738231952940468,0.000738231952940468 -1.32,21.697686964407236,21.697686964407236,0.7477304851001082,0.7477304851001082,-23.292499323114946,-23.292499323114946,0.0009071296643598347,0.0009071296643598347 -1.3223529411764705,22.117295289590537,22.117295289590537,0.7582011738421373,0.7582011738421373,-23.737906892216486,-23.737906892216486,0.0009036475521331382,0.0009036475521331382 -1.3247058823529412,22.53247619130734,22.53247619130734,0.9418914529939778,0.9418914529939778,-24.175562293060885,-24.175562293060885,0.000728537375494985,0.000728537375494985 -1.3270588235294118,22.930924366102964,22.930924366102964,1.6532806922926522,1.6532806922926522,-24.58794313249945,-24.58794313249945,0.00041493378477295493,0.00041493378477295493 -1.3294117647058823,22.41602836952613,22.41602836952613,18.895417109931522,18.895417109931522,-24.080220707482265,-24.080220707482265,3.652662352426e-05,3.652662352426e-05 -1.331764705882353,20.812750630516526,20.812750630516526,1.8188928116461,1.8188928116461,-22.48498557307491,-22.48498557307491,0.0003855112872489255,0.0003855112872489255 -1.3341176470588234,21.194723768930857,21.194723768930857,0.9903994244044582,0.9903994244044582,-22.882896843933132,-22.882896843933132,0.0007236647070023433,0.0007236647070023433 -1.336470588235294,21.590008410486853,21.590008410486853,0.7805969794781983,0.7805969794781983,-23.303416017727717,-23.303416017727717,0.0009372684179699109,0.0009372684179699109 -1.3388235294117647,21.98004692808124,21.98004692808124,0.7504965401662207,0.7504965401662207,-23.723687443838948,-23.723687443838948,0.0009885238846073158,0.0009885238846073158 -1.3411764705882352,22.361558613267707,22.361558613267707,0.8597756919932713,0.8597756919932713,-24.134118988028362,-24.134118988028362,0.0008688615642281906,0.0008688615642281906 -1.3435294117647059,22.718180032128423,22.718180032128423,1.2498239399810323,1.2498239399810323,-24.513960051239827,-24.513960051239827,0.0006001695786185887,0.0006001695786185887 -1.3458823529411765,22.89654562078138,22.89654562078138,3.2054861910880357,3.2054861910880357,-24.710445739305563,-24.710445739305563,0.00023569094324479077,0.00023569094324479077 -1.348235294117647,20.938119307239326,20.938119307239326,3.6060410383798005,3.6060410383798005,-22.769660307191543,-22.769660307191543,0.00021238423094376667,0.00021238423094376667 -1.3505882352941176,21.06624095166183,21.06624095166183,1.3307351738684872,1.3307351738684872,-22.920295040077946,-22.920295040077946,0.0005862175039520215,0.0005862175039520215 -1.3529411764705883,21.3990408208157,21.3990408208157,0.906047464604472,0.906047464604472,-23.282716973599197,-23.282716973599197,0.0008770059405851299,0.0008770059405851299 -1.3552941176470588,21.751475264079634,21.751475264079634,0.7824709505041015,0.7824709505041015,-23.66990564093764,-23.66990564093764,0.0010296195296711956,0.0010296195296711956 -1.3576470588235294,22.102430099950155,22.102430099950155,0.7960782511881581,0.7960782511881581,-24.05621800143828,-24.05621800143828,0.0010197555371336342,0.0010197555371336342 -1.3599999999999999,22.438725780102565,22.438725780102565,0.9571388288941428,0.9571388288941428,-24.424506540348116,-24.424506540348116,0.0008510627197260196,0.0008510627197260196 -1.3623529411764705,22.716944575896527,22.716944575896527,1.4723410855375976,1.4723410855375976,-24.73000825006687,-24.73000825006687,0.0005551098452744398,0.0005551098452744398 -1.3647058823529412,22.57896191090268,22.57896191090268,3.920124329643406,3.920124329643406,-24.616915544975583,-24.616915544975583,0.0002099131780226279,0.0002099131780226279 -1.3670588235294117,21.111627461781737,21.111627461781737,2.7778333991518065,2.7778333991518065,-23.175929827344206,-23.175929827344206,0.000299516118493313,0.000299516118493313 -1.3694117647058823,21.18826467067335,21.18826467067335,1.3050559159300386,1.3050559159300386,-23.28360580527476,-23.28360580527476,0.0006457143770135183,0.0006457143770135183 -1.371764705882353,21.470274069334533,21.470274069334533,0.9329882753062602,0.9329882753062602,-23.601348322583917,-23.601348322583917,0.0009129513622593451,0.0009129513622593451 -1.3741176470588234,21.78505369477324,21.78505369477324,0.8172897592918938,0.8172897592918938,-23.954196534292564,-23.954196534292564,0.0010484565030614344,0.0010484565030614344 -1.3764705882352941,22.102756368389024,22.102756368389024,0.8308216275858467,0.8308216275858467,-24.308861855387114,-24.308861855387114,0.0010325836928823965,0.0010325836928823965 -1.3788235294117648,22.403922144513405,22.403922144513405,0.9832832798962073,0.9832832798962073,-24.64333683036965,-24.64333683036965,0.000871296755313956,0.000871296755313956 -1.3811764705882352,22.639331852843622,22.639331852843622,1.4361393961009234,1.4361393961009234,-24.908251997363116,-24.908251997363116,0.0005962082560573239,0.0005962082560573239 -1.383529411764706,22.534614755707505,22.534614755707505,3.037197730854818,3.037197730854818,-24.8315645140066,-24.8315645140066,0.00028260754342767893,0.00028260754342767893 -1.3858823529411763,21.359935577634744,21.359935577634744,3.0883517438224346,3.0883517438224346,-23.68652440440528,-23.68652440440528,0.0002794495877638641,0.0002794495877638641 -1.388235294117647,21.239591476854336,21.239591476854336,1.4886407114337066,1.4886407114337066,-23.599461047202073,-23.599461047202073,0.0005832910347594735,0.0005832910347594735 -1.3905882352941177,21.454325912378163,21.454325912378163,1.0318345444901198,1.0318345444901198,-23.850829517505208,-23.850829517505208,0.0008447931110820724,0.0008447931110820724 -1.3929411764705881,21.730417589914005,21.730417589914005,0.8748416805008316,0.8748416805008316,-24.164655110033905,-24.164655110033905,0.0009961719432718954,0.0009961719432718954 -1.3952941176470588,22.019406166534843,22.019406166534843,0.8553129614573434,0.8553129614573434,-24.489736461674863,-24.489736461674863,0.0010147921870702996,0.0010147921870702996 -1.3976470588235295,22.297932213954162,22.297932213954162,0.9567147070997077,0.9567147070997077,-24.800824270289905,-24.800824270289905,0.0009019481746662964,0.0009019481746662964 -1.4,22.527688736453754,22.527688736453754,1.2604244029630731,1.2604244029630731,-25.05975222167864,-25.05975222167864,0.000681285590526103,0.000681285590526103 -1.4023529411764706,22.57277557212837,22.57277557212837,2.112336626352086,2.112336626352086,-25.132683097026106,-25.132683097026106,0.0004056904164541552,0.0004056904164541552 -1.4047058823529412,21.874783680003524,21.874783680003524,3.4571762536054247,3.4571762536054247,-24.463778631654172,-24.463778631654172,0.0002480258400534412,0.0002480258400534412 -1.4070588235294117,21.327384255800656,21.327384255800656,1.9567143672945593,1.9567143672945593,-23.94842612728777,-23.94842612728777,0.00043879389357424903,0.00043879389357424903 -1.4094117647058824,21.406322501777574,21.406322501777574,1.2462976136208612,1.2462976136208612,-24.062252324860225,-24.062252324860225,0.0006885812326098584,0.0006885812326098584 -1.4117647058823528,21.624618619659955,21.624618619659955,0.9855241888905885,0.9855241888905885,-24.31645620107848,-24.31645620107848,0.0008673819966093411,0.0008673819966093411 -1.4141176470588235,21.879130210573233,21.879130210573233,0.9020715376079811,0.9020715376079811,-24.605422616070914,-24.605422616070914,0.0009406900842949081,0.0009406900842949081 -1.4164705882352941,22.136177642666986,22.136177642666986,0.9336233711694335,0.9336233711694335,-24.89372995278483,-24.89372995278483,0.0009007075729046926,0.0009007075729046926 -1.4188235294117646,22.36638217026438,22.36638217026438,1.0984081482488945,1.0984081482488945,-25.15197600640283,-25.15197600640283,0.0007591984192166287,0.0007591984192166287 -1.4211764705882353,22.507645063517497,22.507645063517497,1.5125611549585676,1.5125611549585676,-25.319560116282048,-25.319560116282048,0.0005480985805691972,0.0005480985805691972 -1.423529411764706,22.35640458393972,22.35640458393972,2.447573105280319,2.447573105280319,-25.195297265497224,-25.195297265497224,0.0003376368229123242,0.0003376368229123242 -1.4258823529411764,21.696731965930727,21.696731965930727,2.6827469506226027,2.6827469506226027,-24.56510208581991,-24.56510208581991,0.00030743634395090564,0.00030743634395090564 -1.428235294117647,21.437002295078834,21.437002295078834,1.702598757586923,1.702598757586923,-24.337557233003263,-24.337557233003263,0.0004829635278603925,0.0004829635278603925 -1.4305882352941177,21.526282543795507,21.526282543795507,1.2222602128009854,1.2222602128009854,-24.460412100382456,-24.460412100382456,0.0006688372504640607,0.0006688372504640607 -1.4329411764705882,21.718415779811426,21.718415779811426,1.024097843794281,1.024097843794281,-24.68539798543719,-24.68539798543719,0.0007910179882078173,0.0007910179882078173 -1.4352941176470588,21.94015816361754,21.94015816361754,0.9685537973321231,0.9685537973321231,-24.9373376177154,-24.9373376177154,0.0008270468868840335,0.0008270468868840335 -1.4376470588235293,22.1579959334559,22.1579959334559,1.0214825568755765,1.0214825568755765,-25.182097354928878,-25.182097354928878,0.0007754130591688605,0.0007754130591688605 -1.44,22.336893801596545,22.336893801596545,1.2056873487099737,1.2056873487099737,-25.385641364426803,-25.385641364426803,0.0006508862646503244,0.0006508862646503244 -1.4423529411764706,22.408272194462437,22.408272194462437,1.604994287873267,1.604994287873267,-25.48140701243293,-25.48140701243293,0.0004857926365596874,0.0004857926365596874 -1.444705882352941,22.22020794141775,22.22020794141775,2.2481692699030877,2.2481692699030877,-25.31954879040803,-25.31954879040803,0.00034524973733277085,0.00034524973733277085 -1.4470588235294117,21.775498606513366,21.775498606513366,2.2915703285300197,2.2915703285300197,-24.903763308819645,-24.903763308819645,0.000337168878233514,0.000337168878233514 -1.4494117647058824,21.572096430531396,21.572096430531396,1.692238775724919,1.692238775724919,-24.73140572690594,-24.73140572690594,0.0004535977549667901,0.0004535977549667901 -1.4517647058823528,21.61722087609238,21.61722087609238,1.3039510889737391,1.3039510889737391,-24.80788135982563,-24.80788135982563,0.0005829678762115749,0.0005829678762115749 -1.4541176470588235,21.761684736351455,21.761684736351455,1.121123853679553,1.121123853679553,-24.98188592093787,-24.98188592093787,0.0006696126662119389,0.0006696126662119389 -1.4564705882352942,21.938486700992495,21.938486700992495,1.0655025380990368,1.0655025380990368,-25.185184551907128,-25.185184551907128,0.0006949999514278602,0.0006949999514278602 -1.4588235294117646,22.111346747331382,22.111346747331382,1.1101492466920257,1.1101492466920257,-25.381529466487272,-25.381529466487272,0.0006585927630685206,0.0006585927630685206 -1.4611764705882353,22.245368526743448,22.245368526743448,1.263115519012587,1.263115519012587,-25.53750107982778,-25.53750107982778,0.0005729737071770592,0.0005729737071770592 -1.4635294117647057,22.288926530155134,22.288926530155134,1.5494104407101654,1.5494104407101654,-25.603608407348286,-25.603608407348286,0.0004635757093117518,0.0004635757093117518 -1.4658823529411764,22.172122030085745,22.172122030085745,1.915808397563497,1.915808397563497,-25.51165030098243,-25.51165030098243,0.0003725971323977742,0.0003725971323977742 -1.468235294117647,21.917838303936367,21.917838303936367,2.0201715203927275,2.0201715203927275,-25.284856851609767,-25.284856851609767,0.0003508983576723049,0.0003508983576723049 -1.4705882352941178,21.738956123191066,21.738956123191066,1.7443341250288382,1.7443341250288382,-25.135077775282877,-25.135077775282877,0.00040254806895772193,0.00040254806895772193 -1.4729411764705882,21.718241589707333,21.718241589707333,1.4524674671976436,1.4524674671976436,-25.143117851126114,-25.143117851126114,0.0004773336527261553,0.0004773336527261553 -1.4752941176470589,21.794173670653322,21.794173670653322,1.2767501324790744,1.2767501324790744,-25.245479415483498,-25.245479415483498,0.0005348282498547835,0.0005348282498547835 -1.4776470588235295,21.910640076820805,21.910640076820805,1.2052063435619642,1.2052063435619642,-25.385040256126075,-25.385040256126075,0.0005576619494290923,0.0005576619494290923 -1.48,22.030867910659623,22.030867910659623,1.2191531874879442,1.2191531874879442,-25.525434040144663,-25.525434040144663,0.0005433837385050978,0.0005433837385050978 -1.4823529411764707,22.124774306945426,22.124774306945426,1.3106722736388778,1.3106722736388778,-25.638217628879623,-25.638217628879623,0.0004996084025389889,0.0004996084025389889 -1.484705882352941,22.162600131444787,22.162600131444787,1.4696751430917678,1.4696751430917678,-25.695889891606907,-25.695889891606907,0.00044156661747256516,0.00044156661747256516 -1.4870588235294118,22.122101981446058,22.122101981446058,1.651240430960992,1.651240430960992,-25.67774495689439,-25.67774495689439,0.00038994419774767477,0.00038994419774767477 -1.4894117647058822,22.016876240484237,22.016876240484237,1.7528036876220097,1.7528036876220097,-25.597552905141086,-25.597552905141086,0.0003641062783499973,0.0003641062783499973 -1.4917647058823529,21.910520116164264,21.910520116164264,1.7081856733190348,1.7081856733190348,-25.517675694786757,-25.517675694786757,0.0003692752722732829,0.0003692752722732829 -1.4941176470588236,21.858410217773045,21.858410217773045,1.582988342916879,1.582988342916879,-25.491477742378937,-25.491477742378937,0.0003925434212191963,0.0003925434212191963 -1.4964705882352942,21.864648103294403,21.864648103294403,1.4673493476027375,1.4673493476027375,-25.52100466847049,-25.52100466847049,0.00041607674942392356,0.00041607674942392356 -1.4988235294117647,21.90706739480315,21.90706739480315,1.3985793918978546,1.3985793918978546,-25.582997161143517,-25.582997161143517,0.0004286231205022536,0.0004286231205022536 -1.5011764705882353,21.961287744267075,21.961287744267075,1.380533837189277,1.380533837189277,-25.65342641081108,-25.65342641081108,0.00042701861257235697,0.00042701861257235697 -1.5035294117647058,22.007683398076896,22.007683398076896,1.404607098864218,1.404607098864218,-25.71450486259361,-25.71450486259361,0.0004140016634831323,0.0004140016634831323 -1.5058823529411764,22.03399176038996,22.03399176038996,1.4551231212135831,1.4551231212135831,-25.756254067368072,-25.756254067368072,0.00039541279540889564,0.00039541279540889564 -1.5082352941176471,22.037403301958477,22.037403301958477,1.5114464209797545,1.5114464209797545,-25.77765690589366,-25.77765690589366,0.0003772281945061924,0.0003772281945061924 -1.5105882352941176,22.02468800355208,22.02468800355208,1.5552591898221115,1.5552591898221115,-25.78578428328512,-25.78578428328512,0.0003630125163617404,0.0003630125163617404 -1.5129411764705882,22.00651176217214,22.00651176217214,1.580231543656066,1.580231543656066,-25.790196126547826,-25.790196126547826,0.0003527908337456974,0.0003527908337456974 -1.5152941176470587,21.98989931092745,21.98989931092745,1.5922569734403567,1.5922569734403567,-25.79576896117719,-25.79576896117719,0.00034448099991655725,0.00034448099991655725 -1.5176470588235293,21.974971244221354,21.974971244221354,1.599333002681901,1.599333002681901,-25.80032017556703,-25.80032017556703,0.0003364022969248673,0.0003364022969248673 -1.52,21.958279655330102,21.958279655330102,1.6021036393721941,1.6021036393721941,-25.798950076392238,-25.798950076392238,0.0003290583037036153,0.0003290583037036153 -1.5223529411764707,21.939012020527066,21.939012020527066,1.593148032529369,1.593148032529369,-25.790867891704544,-25.790867891704544,0.0003247061434960306,0.0003247061434960306 -1.5247058823529411,21.92307729016015,21.92307729016015,1.5652419684104286,1.5652419684104286,-25.783571962721187,-25.783571962721187,0.0003254037675903938,0.0003254037675903938 -1.5270588235294118,21.920667474782785,21.920667474782785,1.5229618058530463,1.5229618058530463,-25.789985643445377,-25.789985643445377,0.00033058485110539957,0.00033058485110539957 -1.5294117647058822,21.937960156564156,21.937960156564156,1.4830565800018913,1.4830565800018913,-25.81831428272445,-25.81831428272445,0.00033644004297151125,0.00033644004297151125 -1.531764705882353,21.972911338623824,21.972911338623824,1.4646354441213503,1.4646354441213503,-25.867716323385586,-25.867716323385586,0.0003376991761187207,0.0003376991761187207 -1.5341176470588236,22.015391982206033,22.015391982206033,1.4821373403508225,1.4821373403508225,-25.92701119619225,-25.92701119619225,0.0003300530003323261,0.0003300530003323261 -1.536470588235294,22.049815778739493,22.049815778739493,1.5435884396309225,1.5435884396309225,-25.978741043700786,-25.978741043700786,0.00031229062498096044,0.00031229062498096044 -1.5388235294117647,22.056040611261746,22.056040611261746,1.646302103432195,1.646302103432195,-25.999961035601924,-25.999961035601924,0.00028751475776296907,0.00028751475776296907 -1.5411764705882351,22.015369862267995,22.015369862267995,1.7591298516511504,1.7591298516511504,-25.970031624554938,-25.970031624554938,0.00026368781940873663,0.00026368781940873663 -1.5435294117647058,21.93002032969975,21.93002032969975,1.8079342531884026,1.8079342531884026,-25.890337943934593,-25.890337943934593,0.00025168364162373125,0.00025168364162373125 -1.5458823529411767,21.843700354048035,21.843700354048035,1.7348186561896861,1.7348186561896861,-25.805842043279384,-25.805842043279384,0.0002581838237759909,0.0002581838237759909 -1.5482352941176472,21.809533353366934,21.809533353366934,1.5876965018783569,1.5876965018783569,-25.77220524260056,-25.77220524260056,0.00027905284792376214,0.00027905284792376214 -1.5505882352941176,21.84072760849732,21.84072760849732,1.4559328170044061,1.4559328170044061,-25.805707303659258,-25.805707303659258,0.00030235552562714514,0.00030235552562714514 -1.5529411764705883,21.918568698833997,21.918568698833997,1.3859553297481246,1.3859553297481246,-25.889503068653593,-25.889503068653593,0.00031625701087442475,0.00031625701087442475 -1.5552941176470587,22.016715593837773,22.016715593837773,1.3930733186638888,1.3930733186638888,-25.997310133454324,-25.997310133454324,0.0003130540039617578,0.0003130540039617578 -1.5576470588235294,22.10721705764004,22.10721705764004,1.4906370021838637,1.4906370021838637,-26.09943562434085,-26.09943562434085,0.00029019493360205094,0.00029019493360205094 -1.5599999999999998,22.152858670847216,22.152858670847216,1.7016602075285014,1.7016602075285014,-26.156106124679887,-26.156106124679887,0.00025115300244075647,0.00025115300244075647 -1.5623529411764705,22.094021404662897,22.094021404662897,2.0246792015277393,2.0246792015277393,-26.104796866745406,-26.104796866745406,0.00020795590179122374,0.00020795590179122374 -1.5647058823529412,21.881900491640938,21.881900491640938,2.2479861069385905,2.2479861069385905,-25.895059955720885,-25.895059955720885,0.00018447760311832205,0.00018447760311832205 -1.5670588235294118,21.64393343239445,21.64393343239445,2.0173627227883415,2.0173627227883415,-25.654644143734934,-25.654644143734934,0.0002030417699058522,0.0002030417699058522 -1.5694117647058823,21.567485276731105,21.567485276731105,1.6070684108272708,1.6070684108272708,-25.573168537666803,-25.573168537666803,0.0002531043061306459,0.0002531043061306459 -1.571764705882353,21.63751454168417,21.63751454168417,1.3201721781768405,1.3201721781768405,-25.638717189116708,-25.638717189116708,0.0003077676438947969,0.0003077676438947969 -1.5741176470588236,21.785979546659718,21.785979546659718,1.1720100669956799,1.1720100669956799,-25.786312993244934,-25.786312993244934,0.00034777760870350965,0.00034777760870350965 -1.576470588235294,21.970462686874793,21.970462686874793,1.1316228828816455,1.1316228828816455,-25.975054889964532,-25.975054889964532,0.00036182404382838435,0.00036182404382838435 -1.5788235294117647,22.166413432173574,22.166413432173574,1.193167069540185,1.193167069540185,-26.179360904008732,-26.179360904008732,0.0003441349427960416,0.0003441349427960416 -1.5811764705882352,22.352342397735896,22.352342397735896,1.396773849654179,1.396773849654179,-26.375775232444028,-26.375775232444028,0.00029371393009802266,0.00029371393009802266 -1.5835294117647059,22.484301900251793,22.484301900251793,1.8993706233475178,1.8993706233475178,-26.517130843827992,-26.517130843827992,0.00021495421734440506,0.00021495421734440506 -1.5858823529411765,22.378757860766044,22.378757860766044,3.288308845303081,3.288308845303081,-26.417310908961124,-26.417310908961124,0.00012325186891354312,0.00012325186891354312 -1.5882352941176474,21.456022331368214,21.456022331368214,4.211920105069807,4.211920105069807,-25.495398527084237,-25.495398527084237,9.555736762944951e-05,9.555736762944951e-05 -1.5905882352941176,21.066643274742862,21.066643274742862,2.108505622462305,2.108505622462305,-25.102870501144796,-25.102870501144796,0.0001902602068873273,0.0001902602068873273 -1.592941176470588,21.174215754480493,21.174215754480493,1.320986941242641,1.320986941242641,-25.205588594696184,-25.205588594696184,0.0003043978788203896,0.0003043978788203896 -1.5952941176470588,21.396588250085117,21.396588250085117,1.0045084766273729,1.0045084766273729,-25.425166126014393,-25.425166126014393,0.00040357911333302915,0.00040357911333302915 -1.5976470588235294,21.657328957141484,21.657328957141484,0.8668244350576391,0.8668244350576391,-25.687692625201304,-25.687692625201304,0.0004733436701497332,0.0004733436701497332 -1.6,21.93512548253378,21.93512548253378,0.8243673170044874,0.8243673170044874,-25.973052397630354,-25.973052397630354,0.0005041232256895129,0.0005041232256895129 -1.6023529411764705,22.224866348737404,22.224866348737404,0.8564323581846998,0.8564323581846998,-26.275138094729964,-26.275138094729964,0.0004903407109083128,0.0004903407109083128 -1.6047058823529412,22.530217450927356,22.530217450927356,0.9812826460553076,0.9812826460553076,-26.595295208739085,-26.595295208739085,0.00043060782510352474,0.00043060782510352474 -1.6070588235294117,22.866906406486613,22.866906406486613,1.2898038966739092,1.2898038966739092,-26.946286660864004,-26.946286660864004,0.00032814297837181316,0.00032814297837181316 -1.6094117647058825,23.301299126558188,23.301299126558188,2.203290014849548,2.203290014849548,-27.391960089945258,-27.391960089945258,0.00019181584911525786,0.00019181584911525786 -1.611764705882353,24.6102951506877,24.6102951506877,6.737167347844069,6.737167347844069,-28.707589378662046,-28.707589378662046,6.260796287211705e-05,6.260796287211705e-05 -1.6141176470588237,26.386376467138064,26.386376467138064,2.408018763281449,2.408018763281449,-30.486309443392884,-30.486309443392884,0.00017527724462383084,0.00017527724462383084 -1.616470588235294,26.883919213941542,26.883919213941542,1.221777988045023,1.221777988045023,-30.984680939584454,-30.984680939584454,0.0003473317548307749,0.0003473317548307749 -1.6188235294117648,27.262391945548558,27.262391945548558,0.847844726474119,0.847844726474119,-31.365056577776077,-31.365056577776077,0.0005058939948936595,0.0005058939948936595 -1.6211764705882352,27.612012424659625,27.612012424659625,0.6869728717121703,0.6869728717121703,-31.720727144637518,-31.720727144637518,0.0006335650834952659,0.0006335650834952659 -1.6235294117647059,27.951848160127117,27.951848160127117,0.6160669738400539,0.6160669738400539,-32.072079224018765,-32.072079224018765,0.0007177828744826545,0.0007177828744826545 -1.6258823529411766,28.2917475169226,28.2917475169226,0.5982018003473291,0.5982018003473291,-32.42871778272083,-32.42871778272083,0.0007496848577142055,0.0007496848577142055 -1.6282352941176468,28.642791457631354,28.642791457631354,0.6245963314236875,0.6245963314236875,-32.79979240902856,-32.79979240902856,0.0007252447800479612,0.0007252447800479612 -1.630588235294118,29.022648104559675,29.022648104559675,0.7045232395314402,0.7045232395314402,-33.20041690431772,-33.20041690431772,0.0006462283881158212,0.0006462283881158212 -1.6329411764705881,29.46760791869899,29.46760791869899,0.8719232482230411,0.8719232482230411,-33.664144174200665,-33.664144174200665,0.0005226041645705924,0.0005226041645705924 -1.6352941176470588,30.069901742952528,30.069901742952528,1.1972292979204442,1.1972292979204442,-34.28113710730201,-34.28113710730201,0.000380040749056437,0.000380040749056437 -1.6376470588235295,31.01722714687705,31.01722714687705,1.5654715278267473,1.5654715278267473,-35.23862393035258,-35.23862393035258,0.0002903706133270013,0.0002903706133270013 -1.6400000000000001,32.07024218489684,32.07024218489684,1.267203842562457,1.267203842562457,-36.29833308954879,-36.29833308954879,0.00035948876707384074,0.00035948876707384074 -1.6423529411764706,32.77030761814001,32.77030761814001,0.8572002060530326,0.8572002060530326,-37.00403095220856,-37.00403095220856,0.0005351793402614825,0.0005351793402614825 -1.6447058823529415,33.27091449483974,33.27091449483974,0.638027357185419,0.638027357185419,-37.51231613791942,-37.51231613791942,0.0007274511306394985,0.0007274511306394985 -1.6470588235294117,33.69239791218756,33.69239791218756,0.5257132513447823,0.5257132513447823,-37.94570500933525,-37.94570500933525,0.0008959155101482473,0.0008959155101482473 -1.6494117647058824,34.07991390924332,34.07991390924332,0.46915197028476513,0.46915197028476513,-38.35054322794057,-38.35054322794057,0.0010190125265635568,0.0010190125265635568 -1.651764705882353,34.455472823428224,34.455472823428224,0.44663242810968856,0.44663242810968856,-38.74783218311213,-38.74783218311213,0.001083807195883044,0.001083807195883044 -1.6541176470588237,34.83499654124549,34.83499654124549,0.45005871916457546,0.45005871916457546,-39.15198278182756,-39.15198278182756,0.0010841718201070787,0.0010841718201070787 -1.6564705882352944,35.2361983526021,35.2361983526021,0.47905162856500644,0.47905162856500644,-39.57786018902234,-39.57786018902234,0.001021605764132501,0.001021605764132501 -1.6588235294117644,35.684070112800754,35.684070112800754,0.5387045425495912,0.5387045425495912,-40.04802893545391,-40.04802893545391,0.0009073326788851087,0.0009073326788851087 -1.6611764705882353,36.21937663865289,36.21937663865289,0.634790539874856,0.634790539874856,-40.60142230014804,-40.60142230014804,0.0007671912109178186,0.0007671912109178186 -1.663529411764706,36.89628949241777,36.89628949241777,0.7443886225235079,0.7443886225235079,-41.291475354706385,-41.291475354706385,0.0006520390327522718,0.0006520390327522718 -1.6658823529411766,37.698949896017446,37.698949896017446,0.7624180592278993,0.7624180592278993,-42.10339264372082,-42.10339264372082,0.0006364846719226655,0.0006364846719226655 -1.668235294117647,38.45410770198571,38.45410770198571,0.648216753221008,0.648216753221008,-42.86649040559742,-42.86649040559742,0.0007520310569435831,0.0007520310569435831 -1.670588235294118,39.06325405944899,39.06325405944899,0.5201188074681455,0.5201188074681455,-43.485032655137545,-43.485032655137545,0.0009462271433138592,0.0009462271433138592 -1.672941176470588,39.56354606229855,39.56354606229855,0.4312990613670208,0.4312990613670208,-43.998662095918164,-43.998662095918164,0.0011557371099967218,0.0011557371099967218 -1.6752941176470588,40.00284948954325,40.00284948954325,0.377314149682139,0.377314149682139,-44.456433740774514,-44.456433740774514,0.0013392508257019787,0.0013392508257019787 -1.6776470588235295,40.41118307999422,40.41118307999422,0.3473209699569966,0.3473209699569966,-44.88816102019959,-44.88816102019959,0.0014716397193734953,0.0014716397193734953 -1.68,40.808589362737486,40.808589362737486,0.3345971220138889,0.3345971220138889,-45.3122846432352,-45.3122846432352,0.001538805119216366,0.001538805119216366 -1.6823529411764706,41.21189333039009,41.21189333039009,0.33600725564649647,0.33600725564649647,-45.742815435627655,-45.742815435627655,0.0015359633021556627,0.0015359633021556627 -1.684705882352941,41.63771079251494,41.63771079251494,0.35054988189086866,0.35054988189086866,-46.194382855798764,-46.194382855798764,0.0014680962922670722,0.0014680962922670722 -1.6870588235294117,42.106819976041635,42.106819976041635,0.3783011543694485,0.3783011543694485,-46.68492435536917,-46.68492435536917,0.0013523306191251551,0.0013523306191251551 -1.6894117647058824,42.64253059868363,42.64253059868363,0.41607363863784136,0.41607363863784136,-47.23692458972706,-47.23692458972706,0.0012213655086077508,0.0012213655086077508 -1.6917647058823528,43.26070838031029,43.26070838031029,0.44920688815304494,0.44920688815304494,-47.866497104483926,-47.866497104483926,0.001125960923485198,0.001125960923485198 -1.6941176470588235,43.936230567079406,43.936230567079406,0.4505419109003211,0.4505419109003211,-48.55037680548766,-48.55037680548766,0.0011223991016292999,0.0011223991016292999 -1.6964705882352942,44.59448563700473,44.59448563700473,0.4122180295511904,0.4122180295511904,-49.21687455824014,-49.21687455824014,0.0012332984202253724,0.0012332984202253724 -1.6988235294117644,45.17966978695206,45.17966978695206,0.3596395549191776,0.3596395549191776,-49.813271326921196,-49.813271326921196,0.0014278128912808157,0.0014278128912808157 -1.7011764705882353,45.69043017465634,45.69043017465634,0.31445917306464966,0.31445917306464966,-50.34000641311332,-50.34000641311332,0.0016534734297286747,0.0016534734297286747 -1.7035294117647062,46.147761761655644,46.147761761655644,0.2821873203412497,0.2821873203412497,-50.81909790518658,-50.81909790518658,0.0018652129559933032,0.0018652129559933032 -1.7058823529411766,46.573590260335635,46.573590260335635,0.26140472845565743,0.26140472845565743,-51.2711768261146,-51.2711768261146,0.002032038209865564,0.002032038209865564 -1.7082352941176469,46.985525941218796,46.985525941218796,0.24981215834188217,0.24981215834188217,-51.71203585227468,-51.71203585227468,0.002135034691513399,0.002135034691513399 -1.7105882352941175,47.39884247978203,47.39884247978203,0.24580500863269758,0.24580500863269758,-52.15412265789991,-52.15412265789991,0.0021665106172686233,0.0021665106172686233 -1.7129411764705882,47.82773749172122,47.82773749172122,0.24844084812013897,0.24844084812013897,-52.60921967435941,-52.60921967435941,0.002130141050550463,0.002130141050550463 -1.7152941176470589,48.286805175287476,48.286805175287476,0.25676195365473353,0.25676195365473353,-53.089370529788575,-53.089370529788575,0.002041323568517693,0.002041323568517693 -1.7176470588235295,48.78862452075215,48.78862452075215,0.26896415834767007,0.26896415834767007,-53.6065507728692,-53.6065507728692,0.0019298401853851063,0.0019298401853851063 -1.72,49.34012853934925,49.34012853934925,0.2804354463475982,0.2804354463475982,-54.16804083020172,-54.16804083020172,0.001837998225735362,0.001837998225735362 -1.7223529411764709,49.931238514050975,49.931238514050975,0.2838970697455154,0.2838970697455154,-54.76612068563065,-54.76612068563065,0.001812956587975173,0.001812956587975173 -1.7247058823529409,50.53038646220656,50.53038646220656,0.2741300633145663,0.2741300633145663,-55.37225294775478,-55.37225294775478,0.0018861877895916303,0.0018861877895916303 -1.7270588235294118,51.10060753233194,51.10060753233194,0.25426223707388773,0.25426223707388773,-55.952736215352125,-55.952736215352125,0.0020537835419403997,0.0020537835419403997 -1.7294117647058824,51.62288593778135,51.62288593778135,0.23178139988556679,0.23178139988556679,-56.491197155518506,-56.491197155518506,0.002281487169612447,0.002281487169612447 -1.731764705882353,52.099703652102434,52.099703652102434,0.21196113454581159,0.21196113454581159,-56.990250925052,-56.990250925052,0.0025257942862038133,0.0025257942862038133 -1.7341176470588235,52.54286007941771,52.54286007941771,0.1965301004687585,0.1965301004687585,-57.460730770089974,-57.460730770089974,0.002748498738771839,0.002748498738771839 -1.7364705882352938,52.965663298358585,52.965663298358585,0.18552286225903433,0.18552286225903433,-57.91435368179734,-57.91435368179734,0.0029216876321316626,0.0029216876321316626 -1.7388235294117647,53.38203691286592,53.38203691286592,0.17841327520554154,0.17841327520554154,-58.36156274093112,-58.36156274093112,0.0030295552692676036,0.0030295552692676036 -1.7411764705882353,53.80405734171029,53.80405734171029,0.17471155962975463,0.17471155962975463,-58.81154394497489,-58.81154394497489,0.0030676359758284497,0.0030676359758284497 -1.743529411764706,54.24242308949774,54.24242308949774,0.1739092106075348,0.1739092106075348,-59.272862434838224,-59.272862434838224,0.003043408663709253,0.003043408663709253 -1.7458823529411764,54.706567086481485,54.706567086481485,0.17540527707342227,0.17540527707342227,-59.75315422881367,-59.75315422881367,0.0029767193307016506,0.0029767193307016506 -1.748235294117647,55.20189498802225,55.20189498802225,0.17809481692912876,0.17809481692912876,-60.25821248742884,-60.25821248742884,0.0028990899003481408,0.0028990899003481408 -1.7505882352941176,55.72712547998663,55.72712547998663,0.18021929188808292,0.18021929188808292,-60.78854921674369,-60.78854921674369,0.0028495540201354187,0.0028495540201354187 -1.7529411764705882,56.27131009730462,56.27131009730462,0.1794863922468768,0.1794863922468768,-61.33660330780603,-61.33660330780603,0.0028657052293738507,0.0028657052293738507 -1.7552941176470591,56.81469750593962,56.81469750593962,0.17472116900774767,0.17472116900774767,-61.886816222925255,-61.886816222925255,0.00296921003496869,0.00296921003496869 -1.7576470588235293,57.33807580652873,57.33807580652873,0.16649174935973804,0.16649174935973804,-62.422801963589556,-62.422801963589556,0.0031568000142726976,0.0031568000142726976 -1.76,57.830652294668184,57.830652294668184,0.15667078776095006,0.15667078776095006,-62.93500278520361,-62.93500278520361,0.0034026469388557905,0.0034026469388557905 -1.7623529411764705,58.29140272126996,58.29140272126996,0.14692210293992863,0.14692210293992863,-63.42244797934701,-63.42244797934701,0.003670771024076128,0.003670771024076128 -1.7647058823529411,58.727055155110776,58.727055155110776,0.13826636885361804,0.13826636885361804,-63.889754177983875,-63.889754177983875,0.003926016018107634,0.003926016018107634 -1.7670588235294116,59.14709497975263,59.14709497975263,0.13100709555434273,0.13100709555434273,-64.34352424316621,-64.34352424316621,0.004140176383632103,0.004140176383632103 -1.7694117647058827,59.56207084365001,59.56207084365001,0.12528398805384208,0.12528398805384208,-64.79076295028604,-64.79076295028604,0.0042959326087132505,0.0042959326087132505 -1.7717647058823531,59.98109838819906,59.98109838819906,0.12100914018451109,0.12100914018451109,-65.2378662290321,-65.2378662290321,0.00438596221250553,0.00438596221250553 -1.7741176470588236,60.413320507305926,60.413320507305926,0.1181192409026986,0.1181192409026986,-65.69075940576889,-65.69075940576889,0.004415463268413217,0.004415463268413217 -1.776470588235294,60.86435961798728,60.86435961798728,0.11647608845621701,0.11647608845621701,-66.15443535931972,-66.15443535931972,0.004400300168037097,0.004400300168037097 -1.7788235294117647,61.336925119830745,61.336925119830745,0.11580676268426267,0.11580676268426267,-66.6323708823495,-66.6323708823495,0.004366920864890193,0.004366920864890193 -1.7811764705882354,61.828867825744545,61.828867825744545,0.11565667962065039,0.11565667962065039,-67.12511737651876,-67.12511737651876,0.004347730508099009,0.004347730508099009 -1.7835294117647063,62.332755307794265,62.332755307794265,0.11532123852885393,0.11532123852885393,-67.6295892375629,-67.6295892375629,0.0043752649643092716,0.0043752649643092716 -1.7858823529411765,62.8370205742817,62.8370205742817,0.11404928373618715,0.11404928373618715,-68.13880901905345,-68.13880901905345,0.00447340271442962,0.00447340271442962 -1.7882352941176471,63.32985929801663,63.32985929801663,0.11149958863028207,0.11149958863028207,-68.64403284688777,-68.64403284688777,0.004649301819930176,0.004649301819930176 -1.7905882352941174,63.80245165585274,63.80245165585274,0.10773355347783223,0.10773355347783223,-69.13804991319658,-69.13804991319658,0.004891708501935063,0.004891708501935063 -1.7929411764705883,64.25207185449412,64.25207185449412,0.10316035840965038,0.10316035840965038,-69.61715424212706,-69.61715424212706,0.005175645002936969,0.005175645002936969 -1.795294117647059,64.68145670472434,64.68145670472434,0.09824229425564662,0.09824229425564662,-70.08153000621435,-70.08153000621435,0.005470580113775743,0.005470580113775743 -1.7976470588235294,65.09635104155281,65.09635104155281,0.09330895853106068,0.09330895853106068,-70.53375312015535,-70.53375312015535,0.005747000509933604,0.005747000509933604 -1.8,65.50489110141856,65.50489110141856,0.08869463450871118,0.08869463450871118,-70.9777706716826,-70.9777706716826,0.005982086286886555,0.005982086286886555 diff --git a/sparameters/rotate_f258530e_e775c147.yml b/sparameters/rotate_f258530e_e775c147.yml deleted file mode 100644 index 2cd7e353..00000000 --- a/sparameters/rotate_f258530e_e775c147.yml +++ /dev/null @@ -1,27 +0,0 @@ -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: 0 -compute_time_seconds: 77.03322386741638 -compute_time_minutes: 1.2838870644569398 diff --git a/sparameters/rotate_f258530e_f6081c2d.csv b/sparameters/rotate_f258530e_f6081c2d.csv deleted file mode 100644 index c40c0af6..00000000 --- a/sparameters/rotate_f258530e_f6081c2d.csv +++ /dev/null @@ -1,51 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.5,-2.9808600188892864,-2.9808600188892864,0.00013921275909827647,0.00013921275909827647,0.7460732512438748,0.7460732512438748,0.09104662428401561,0.09104662428401561 -1.5020408163265306,-3.1016657615998136,-3.1016657615998136,0.00013610528575030588,0.00013610528575030588,0.34985473212756485,0.34985473212756485,0.09732575926778766,0.09732575926778766 -1.5040816326530613,-3.1289748151938057,-3.1289748151938057,0.0001228686708300225,0.0001228686708300225,-0.0471171788599074,-0.0471171788599074,0.10316274745328798,0.10316274745328798 -1.506122448979592,-3.037538269911368,-3.037538269911368,0.00011725513591916488,0.00011725513591916488,-0.4409729219830088,-0.4409729219830088,0.10867597784830856,0.10867597784830856 -1.5081632653061225,-3.0059477935719263,-3.0059477935719263,0.00011741974423018618,0.00011741974423018618,-0.8297706902470576,-0.8297706902470576,0.11425339889794701,0.11425339889794701 -1.510204081632653,-2.9873834790172964,-2.9873834790172964,0.00012191571552565927,0.00012191571552565927,-1.2144793908128817,-1.2144793908128817,0.1203905305186922,0.1203905305186922 -1.5122448979591836,-3.14721309680127,-3.14721309680127,0.000128025188632857,0.000128025188632857,-1.5986887321008139,-1.5986887321008139,0.12749072407196882,0.12749072407196882 -1.5142857142857142,-3.256289597835655,-3.256289597835655,0.00012565384363973873,0.00012565384363973873,-1.9867907091316341,-1.9867907091316341,0.13563025168249096,0.13563025168249096 -1.5163265306122449,-3.1004232035042065,-3.1004232035042065,0.00012007228552450382,0.00012007228552450382,-2.3818115094954075,-2.3818115094954075,0.1445052233914886,0.1445052233914886 -1.5183673469387755,-3.252088913351823,-3.252088913351823,0.00011525682877675082,0.00011525682877675082,-2.7841958705633503,-2.7841958705633503,0.15354097183813112,0.15354097183813112 -1.5204081632653061,-3.2043615300294315,-3.2043615300294315,0.00010192924290934191,0.00010192924290934191,-3.1918932516826275,-3.1918932516826275,0.1621106439579257,0.1621106439579257 -1.5224489795918368,-3.1754858675448396,-3.1754858675448396,0.0001220222223474313,0.0001220222223474313,-3.6012019592218807,-3.6012019592218807,0.16977948649858718,0.16977948649858718 -1.5244897959183674,-3.2467661178658704,-3.2467661178658704,0.0001182381647343973,0.0001182381647343973,-4.008259034250546,-4.008259034250546,0.17645216670263406,0.17645216670263406 -1.5265306122448983,-3.339498921886676,-3.339498921886676,0.0001174390485277508,0.0001174390485277508,-4.410053052612138,-4.410053052612138,0.18243176048547186,0.18243176048547186 -1.5285714285714287,-3.420029084257204,-3.420029084257204,0.00011880202520981505,0.00011880202520981505,-4.805285986627165,-4.805285986627165,0.18830346178144858,0.18830346178144858 -1.530612244897959,-3.4537721729625677,-3.4537721729625677,0.00011756106621611317,0.00011756106621611317,-5.195012277511552,-5.195012277511552,0.1947576211892499,0.1947576211892499 -1.5326530612244897,-3.469808058228045,-3.469808058228045,0.00011459498327306129,0.00011459498327306129,-5.582024929532418,-5.582024929532418,0.20230284327607453,0.20230284327607453 -1.5346938775510204,-3.4677651481851477,-3.4677651481851477,0.00011526603615414485,0.00011526603615414485,-5.969852163859216,-5.969852163859216,0.211085368008137,0.211085368008137 -1.536734693877551,-3.490600270813586,-3.490600270813586,0.00011328917538265223,0.00011328917538265223,-6.3612076436337714,-6.3612076436337714,0.22083212879219616,0.22083212879219616 -1.5387755102040817,-3.5013077698581645,-3.5013077698581645,0.00011864787275999418,0.00011864787275999418,-6.757163440692409,-6.757163440692409,0.23098137749766356,0.23098137749766356 -1.5408163265306123,-3.5539082329295386,-3.5539082329295386,0.00012060594428330152,0.00012060594428330152,-7.157007650694858,-7.157007650694858,0.24089275597504958,0.24089275597504958 -1.542857142857143,-3.584299087093064,-3.584299087093064,0.00011833106058592715,0.00011833106058592715,-7.558865568431475,-7.558865568431475,0.2500639556348296,0.2500639556348296 -1.5448979591836736,-3.625573259554591,-3.625573259554591,0.00012080576935276893,0.00012080576935276893,-7.960387933571738,-7.960387933571738,0.258260724476568,0.258260724476568 -1.546938775510204,-3.6649885782347464,-3.6649885782347464,0.0001135357851910742,0.0001135357851910742,-8.359571299342248,-8.359571299342248,0.26555465328943956,0.26555465328943956 -1.5489795918367348,-3.6466588651372955,-3.6466588651372955,0.0001100219613393943,0.0001100219613393943,-8.755017276220672,-8.755017276220672,0.27228471844591134,0.27228471844591134 -1.5510204081632653,-3.5673585454255625,-3.5673585454255625,0.00011566568670381287,0.00011566568670381287,-9.14639982671537,-9.14639982671537,0.2789152577470233,0.2789152577470233 -1.5530612244897959,-3.6582371002503558,-3.6582371002503558,0.00011520814075383404,0.00011520814075383404,-9.53432227839461,-9.53432227839461,0.2859097100174511,0.2859097100174511 -1.5551020408163265,-3.643659056863083,-3.643659056863083,0.000114661361973889,0.000114661361973889,-9.920036615302202,-9.920036615302202,0.2935889641513691,0.2935889641513691 -1.5571428571428572,-3.7228218309379124,-3.7228218309379124,0.0001166242713332231,0.0001166242713332231,-10.305028583317268,-10.305028583317268,0.30206653990250165,0.30206653990250165 -1.5591836734693876,-3.792650577058486,-3.792650577058486,0.0001144911906506735,0.0001144911906506735,-10.690512925060766,-10.690512925060766,0.31123750560690755,0.31123750560690755 -1.5612244897959184,-3.82580844159455,-3.82580844159455,0.00010791682939308884,0.00010791682939308884,-11.077226150763579,-11.077226150763579,0.3208427862523664,0.3208427862523664 -1.563265306122449,-3.8656742531442925,-3.8656742531442925,0.00010670908724587674,0.00010670908724587674,-11.465300543571788,-11.465300543571788,0.33055089249695147,0.33055089249695147 -1.5653061224489797,-3.871605621409015,-3.871605621409015,0.00010477271007197635,0.00010477271007197635,-11.854350132054119,-11.854350132054119,0.3400532373183411,0.3400532373183411 -1.5673469387755101,-3.8750454055941272,-3.8750454055941272,0.0001004891582812481,0.0001004891582812481,-12.243705105525631,-12.243705105525631,0.3491204086572734,0.3491204086572734 -1.569387755102041,-3.9182095704959217,-3.9182095704959217,9.944696859826955e-05,9.944696859826955e-05,-12.63260828610023,-12.63260828610023,0.35764500945139166,0.35764500945139166 -1.5714285714285714,-3.9524150349734115,-3.9524150349734115,0.00010358359961565556,0.00010358359961565556,-13.020308122151846,-13.020308122151846,0.3656530428330164,0.3656530428330164 -1.573469387755102,-4.0188145375385,-4.0188145375385,0.00010221980982652847,0.00010221980982652847,-13.406288720136068,-13.406288720136068,0.3732743836047871,0.3732743836047871 -1.5755102040816327,-4.033151228938593,-4.033151228938593,9.588823654252881e-05,9.588823654252881e-05,-13.790394930168686,-13.790394930168686,0.3807076565605977,0.3807076565605977 -1.577551020408163,-4.168433795268369,-4.168433795268369,9.967667658115163e-05,9.967667658115163e-05,-14.172635591089655,-14.172635591089655,0.38817067559660656,0.38817067559660656 -1.579591836734694,-4.151976005636888,-4.151976005636888,9.65502399346587e-05,9.65502399346587e-05,-14.553365130066545,-14.553365130066545,0.39584040001210347,0.39584040001210347 -1.5816326530612246,-4.184911479398733,-4.184911479398733,9.854076746254572e-05,9.854076746254572e-05,-14.933071778039025,-14.933071778039025,0.4038169554024904,0.4038169554024904 -1.5836734693877552,-4.195506330437961,-4.195506330437961,9.835973605141738e-05,9.835973605141738e-05,-15.312194736277906,-15.312194736277906,0.4121140450128342,0.4121140450128342 -1.5857142857142859,-4.199118134153396,-4.199118134153396,9.794125729852831e-05,9.794125729852831e-05,-15.691146201199999,-15.691146201199999,0.4206510954795743,0.4206510954795743 -1.5877551020408165,-4.25855402042291,-4.25855402042291,0.0001020373520247778,0.0001020373520247778,-16.07009786374876,-16.07009786374876,0.4293020325529678,0.4293020325529678 -1.5897959183673471,-4.305126688238726,-4.305126688238726,0.000104853518234532,0.000104853518234532,-16.44911938956539,-16.44911938956539,0.43791615413664414,0.43791615413664414 -1.5918367346938775,-4.350522068194679,-4.350522068194679,0.00010225830892093035,0.00010225830892093035,-16.82810953087696,-16.82810953087696,0.44635963053164107,0.44635963053164107 -1.593877551020408,-4.372180704820115,-4.372180704820115,9.618948165143369e-05,9.618948165143369e-05,-17.206888406687263,-17.206888406687263,0.4545323132540121,0.4545323132540121 -1.5959183673469388,-4.3830231378993405,-4.3830231378993405,9.703922094485225e-05,9.703922094485225e-05,-17.58527795846144,-17.58527795846144,0.46237094236050297,0.46237094236050297 -1.5979591836734695,-4.410614440130168,-4.410614440130168,0.00010086458465025383,0.00010086458465025383,-17.96301656339483,-17.96301656339483,0.4698519913679256,0.4698519913679256 -1.6,-4.4132848343246245,-4.4132848343246245,9.879762999405732e-05,9.879762999405732e-05,-18.340032792815702,-18.340032792815702,0.4769839669870305,0.4769839669870305 diff --git a/sparameters/rotate_f258530e_f6081c2d.yml b/sparameters/rotate_f258530e_f6081c2d.yml deleted file mode 100644 index 3a5854f2..00000000 --- a/sparameters/rotate_f258530e_f6081c2d.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: 17 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 242.19604539871216 -compute_time_minutes: 4.0366007566452025 diff --git a/sparameters/rotate_f258530e_f85668d1.csv b/sparameters/rotate_f258530e_f85668d1.csv deleted file mode 100644 index 17d818ad..00000000 --- a/sparameters/rotate_f258530e_f85668d1.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,3.000295534669867,3.000295534669867,0.05244760904320032,0.05244760904320032,-2.9332836934661275,-2.9332836934661275,0.0024761312001085846,0.0024761312001085846 -1.2023529411764706,2.9973255503546232,2.9973255503546232,0.0522255329601237,0.0522255329601237,-4.040286353953474,-4.040286353953474,0.0023305239708931473,0.0023305239708931473 -1.204705882352941,3.00304269600886,3.00304269600886,0.05256295505630077,0.05256295505630077,-5.143927158544313,-5.143927158544313,0.0021921078741878866,0.0021921078741878866 -1.2070588235294117,3.0099946617176845,3.0099946617176845,0.052520732908998155,0.052520732908998155,-6.244252157536926,-6.244252157536926,0.002062230522913564,0.002062230522913564 -1.2094117647058824,3.0041113433610147,3.0041113433610147,0.05262276962437976,0.05262276962437976,-7.3419154576643635,-7.3419154576643635,0.0019404465194745053,0.0019404465194745053 -1.2117647058823529,3.0137520200793073,3.0137520200793073,0.05303992356453324,0.05303992356453324,-8.436770840099982,-8.436770840099982,0.0018248536479906128,0.0018248536479906128 -1.2141176470588235,3.018681201242736,3.018681201242736,0.05287420285585013,0.05287420285585013,-9.528929536841826,-9.528929536841826,0.0017183690561451525,0.0017183690561451525 -1.216470588235294,3.0235652608552264,3.0235652608552264,0.05410855571945061,0.05410855571945061,-10.618569009917152,-10.618569009917152,0.0016191992077717835,0.0016191992077717835 -1.2188235294117646,3.0374387063956494,3.0374387063956494,0.05396184465729623,0.05396184465729623,-11.70591263592086,-11.70591263592086,0.0015267194386897305,0.0015267194386897305 -1.2211764705882353,3.0557044323064515,3.0557044323064515,0.05383079940551444,0.05383079940551444,-12.79151843091547,-12.79151843091547,0.0014414011300618284,0.0014414011300618284 -1.2235294117647058,3.0642358382084893,3.0642358382084893,0.05388051749074446,0.05388051749074446,-13.874523891078045,-13.874523891078045,0.0013630385162011246,0.0013630385162011246 -1.2258823529411764,3.074576155167435,3.074576155167435,0.05442977659372399,0.05442977659372399,-14.95595647704061,-14.95595647704061,0.0012909040201329557,0.0012909040201329557 -1.228235294117647,3.0921155054888714,3.0921155054888714,0.05458379145316845,0.05458379145316845,-16.03508055981269,-16.03508055981269,0.0012265635515711598,0.0012265635515711598 -1.2305882352941175,3.118758344954947,3.118758344954947,0.05494623116434874,0.05494623116434874,-17.111112835795623,-17.111112835795623,0.0011676889208436872,0.0011676889208436872 -1.2329411764705882,3.1450861235803482,3.1450861235803482,0.05450605636396227,0.05450605636396227,-18.185433791412844,-18.185433791412844,0.0011145099276320344,0.0011145099276320344 -1.2352941176470589,3.165615063947085,3.165615063947085,0.05414821516958561,0.05414821516958561,-19.256670769877335,-19.256670769877335,0.0010672599649756925,0.0010672599649756925 -1.2376470588235293,3.1892495244179693,3.1892495244179693,0.053293257494227454,0.053293257494227454,-20.32596282187508,-20.32596282187508,0.0010251228825482821,0.0010251228825482821 -1.24,3.2054526505989407,3.2054526505989407,0.053277398078981304,0.053277398078981304,-21.392118992953634,-21.392118992953634,0.0009883498478257334,0.0009883498478257334 -1.2423529411764704,3.232843175842648,3.232843175842648,0.05263134307438422,0.05263134307438422,-22.455602800873532,-22.455602800873532,0.00095749593204761,0.00095749593204761 -1.244705882352941,3.2664539028131223,3.2664539028131223,0.05198529531957357,0.05198529531957357,-23.51490756926016,-23.51490756926016,0.0009313094942110313,0.0009313094942110313 -1.2470588235294118,3.292852770525753,3.292852770525753,0.050655751951297796,0.050655751951297796,-24.57038815277475,-24.57038815277475,0.0009106289548554731,0.0009106289548554731 -1.2494117647058822,3.322085395905733,3.322085395905733,0.04931847427148492,0.04931847427148492,-25.620883470573666,-25.620883470573666,0.0008943477017047723,0.0008943477017047723 -1.251764705882353,3.3448331731236696,3.3448331731236696,0.047400489008764785,0.047400489008764785,-26.66571910690184,-26.66571910690184,0.0008837073649924731,0.0008837073649924731 -1.2541176470588236,3.3657510536375037,3.3657510536375037,0.04583421206192946,0.04583421206192946,-27.70428948411274,-27.70428948411274,0.0008775748738509783,0.0008775748738509783 -1.256470588235294,3.3748462712756684,3.3748462712756684,0.04434240389240063,0.04434240389240063,-28.734688722451438,-28.734688722451438,0.0008756061023486978,0.0008756061023486978 -1.2588235294117647,3.3986316055420573,3.3986316055420573,0.042241524809650655,0.042241524809650655,-29.756915571664273,-29.756915571664273,0.0008772701936069387,0.0008772701936069387 -1.2611764705882353,3.4069380076271973,3.4069380076271973,0.04039627758280202,0.04039627758280202,-30.769794421933977,-30.769794421933977,0.0008820693642677283,0.0008820693642677283 -1.2635294117647058,3.410964364862765,3.410964364862765,0.03870754085138745,0.03870754085138745,-31.772721557108152,-31.772721557108152,0.0008882396751195055,0.0008882396751195055 -1.2658823529411765,3.4052821039440078,3.4052821039440078,0.03669666337318529,0.03669666337318529,-32.76619436074735,-32.76619436074735,0.0008956901174638947,0.0008956901174638947 -1.268235294117647,3.386165849268527,3.386165849268527,0.03466268406361304,0.03466268406361304,-33.74931634310236,-33.74931634310236,0.0009035434235854063,0.0009035434235854063 -1.2705882352941176,3.3690363777375505,3.3690363777375505,0.0332722494393054,0.0332722494393054,-34.722857358193636,-34.722857358193636,0.0009103531115405442,0.0009103531115405442 -1.2729411764705882,3.341173491302843,3.341173491302843,0.032348555918019835,0.032348555918019835,-35.68703355392674,-35.68703355392674,0.000915690138560284,0.000915690138560284 -1.2752941176470587,3.3126207280297817,3.3126207280297817,0.031080577851802117,0.031080577851802117,-36.64211865417791,-36.64211865417791,0.0009181283482506545,0.0009181283482506545 -1.2776470588235294,3.2940322629335106,3.2940322629335106,0.029963083335500382,0.029963083335500382,-37.58890446204077,-37.58890446204077,0.0009173829190665652,0.0009173829190665652 -1.28,3.2582906463073864,3.2582906463073864,0.028860817982142836,0.028860817982142836,-38.52850095416421,-38.52850095416421,0.0009126674859608279,0.0009126674859608279 -1.2823529411764705,3.210576089287665,3.210576089287665,0.027877396905304035,0.027877396905304035,-39.46145522513725,-39.46145522513725,0.0009036760459919663,0.0009036760459919663 -1.2847058823529411,3.1642552881123307,3.1642552881123307,0.027444550732855278,0.027444550732855278,-40.388659895379234,-40.388659895379234,0.0008903572798584873,0.0008903572798584873 -1.2870588235294118,3.112344053758521,3.112344053758521,0.027237135390328345,0.027237135390328345,-41.31045678142683,-41.31045678142683,0.000872739821280568,0.000872739821280568 -1.2894117647058823,3.079460407246352,3.079460407246352,0.027174146699932906,0.027174146699932906,-42.227942300448234,-42.227942300448234,0.0008503454797599561,0.0008503454797599561 -1.291764705882353,3.0398987531835076,3.0398987531835076,0.02732990940405948,0.02732990940405948,-43.1421717930471,-43.1421717930471,0.0008237757427247417,0.0008237757427247417 -1.2941176470588236,2.9955187495972853,2.9955187495972853,0.027093470189384107,0.027093470189384107,-44.054050740420294,-44.054050740420294,0.0007933719819462413,0.0007933719819462413 -1.296470588235294,2.953525737102529,2.953525737102529,0.02714679550790987,0.02714679550790987,-44.964734815781156,-44.964734815781156,0.0007595264654686568,0.0007595264654686568 -1.2988235294117647,2.908551575279844,2.908551575279844,0.02757386921997953,0.02757386921997953,-45.875331623137065,-45.875331623137065,0.0007231804936990121,0.0007231804936990121 -1.3011764705882352,2.866480270959906,2.866480270959906,0.028348321817154177,0.028348321817154177,-46.78680070585026,-46.78680070585026,0.000685197521764682,0.000685197521764682 -1.3035294117647058,2.8411921948705463,2.8411921948705463,0.029399874247368854,0.029399874247368854,-47.700187502650216,-47.700187502650216,0.0006462753166173117,0.0006462753166173117 -1.3058823529411765,2.8223017710063187,2.8223017710063187,0.030812266059457683,0.030812266059457683,-48.61691484205033,-48.61691484205033,0.0006073666215307204,0.0006073666215307204 -1.308235294117647,2.8166437177963606,2.8166437177963606,0.03189576879515851,0.03189576879515851,-49.53754211505271,-49.53754211505271,0.0005696372059465918,0.0005696372059465918 -1.3105882352941176,2.819548496374734,2.819548496374734,0.032722913032897046,0.032722913032897046,-50.46350318411554,-50.46350318411554,0.0005338207766740352,0.0005338207766740352 -1.3129411764705883,2.820380197077025,2.820380197077025,0.033768188900015025,0.033768188900015025,-51.394842404370436,-51.394842404370436,0.0005008839472116354,0.0005008839472116354 -1.3152941176470587,2.8246501304985197,2.8246501304985197,0.034522909698994485,0.034522909698994485,-52.3317712203721,-52.3317712203721,0.0004719593341086813,0.0004719593341086813 -1.3176470588235294,2.8337315991646808,2.8337315991646808,0.03581581411946043,0.03581581411946043,-53.27230681716867,-53.27230681716867,0.0004476405950933242,0.0004476405950933242 -1.32,2.8582261842285677,2.8582261842285677,0.03694794201452851,0.03694794201452851,-54.214475259167386,-54.214475259167386,0.00042791296884788063,0.00042791296884788063 -1.3223529411764705,2.8888166942777636,2.8888166942777636,0.037420292628848585,0.037420292628848585,-55.15578258730498,-55.15578258730498,0.00041295379924193845,0.00041295379924193845 -1.3247058823529412,2.9259257408750248,2.9259257408750248,0.03796655802757211,0.03796655802757211,-56.092857366922,-56.092857366922,0.0004018278104937082,0.0004018278104937082 -1.3270588235294118,2.9500600619251234,2.9500600619251234,0.037232870717692046,0.037232870717692046,-57.023519481192196,-57.023519481192196,0.00039366763808331264,0.00039366763808331264 -1.3294117647058823,2.970968711847029,2.970968711847029,0.035988616780414956,0.035988616780414956,-57.94640288065341,-57.94640288065341,0.00038764524319072596,0.00038764524319072596 -1.331764705882353,2.974925205975405,2.974925205975405,0.035901311678138724,0.035901311678138724,-58.86125426735672,-58.86125426735672,0.0003830400183484289,0.0003830400183484289 -1.3341176470588234,2.9723248672568685,2.9723248672568685,0.03547266016069578,0.03547266016069578,-59.767540848136484,-59.767540848136484,0.0003786786318540701,0.0003786786318540701 -1.336470588235294,2.9696672046997534,2.9696672046997534,0.03570700263196022,0.03570700263196022,-60.66626901737668,-60.66626901737668,0.00037371986166635806,0.00037371986166635806 -1.3388235294117647,2.983444575864253,2.983444575864253,0.035575108844704884,0.035575108844704884,-61.55935762152446,-61.55935762152446,0.0003676043570443694,0.0003676043570443694 -1.3411764705882352,2.9798545473444102,2.9798545473444102,0.03575167879710552,0.03575167879710552,-62.44843530206778,-62.44843530206778,0.00036014683867408167,0.00036014683867408167 -1.3435294117647059,3.0019918108917625,3.0019918108917625,0.03549794890433209,0.03549794890433209,-63.336844677112715,-63.336844677112715,0.0003515347661040372,0.0003515347661040372 -1.3458823529411765,3.0144254587222994,3.0144254587222994,0.03553783409271728,0.03553783409271728,-64.22635777214961,-64.22635777214961,0.0003418667392965228,0.0003418667392965228 -1.348235294117647,3.010884115735911,3.010884115735911,0.03553278372957794,0.03553278372957794,-65.11990850612098,-65.11990850612098,0.00033198965082040525,0.00033198965082040525 -1.3505882352941176,3.027986577705438,3.027986577705438,0.035677726191417264,0.035677726191417264,-66.01877238092383,-66.01877238092383,0.00032287898657142364,0.00032287898657142364 -1.3529411764705883,3.0419845363391955,3.0419845363391955,0.0362974674149125,0.0362974674149125,-66.92385427273177,-66.92385427273177,0.000315553520752329,0.000315553520752329 -1.3552941176470588,3.083837787833856,3.083837787833856,0.036616376213280385,0.036616376213280385,-67.83347091249256,-67.83347091249256,0.00031153201328816435,0.00031153201328816435 -1.3576470588235294,3.1432408280909385,3.1432408280909385,0.03628520835172719,0.03628520835172719,-68.74581630580838,-68.74581630580838,0.0003116324955643336,0.0003116324955643336 -1.3599999999999999,3.1987569904666358,3.1987569904666358,0.03483603660422591,0.03483603660422591,-69.65574753207534,-69.65574753207534,0.00031669362249781946,0.00031669362249781946 -1.3623529411764705,3.2441912139500357,3.2441912139500357,0.03249275489051156,0.03249275489051156,-70.55686986468862,-70.55686986468862,0.00032725305723212323,0.00032725305723212323 -1.3647058823529412,3.2686255781734177,3.2686255781734177,0.030123786341934803,0.030123786341934803,-71.444706678588,-71.444706678588,0.0003431091331339923,0.0003431091331339923 -1.3670588235294117,3.2671317196662386,3.2671317196662386,0.02784058409192434,0.02784058409192434,-72.31487489932529,-72.31487489932529,0.00036365563054621247,0.00036365563054621247 -1.3694117647058823,3.2489306975747683,3.2489306975747683,0.025887688800119064,0.025887688800119064,-73.16550684870874,-73.16550684870874,0.0003877117678107044,0.0003877117678107044 -1.371764705882353,3.228441846050824,3.228441846050824,0.02429566616479559,0.02429566616479559,-73.99646402468237,-73.99646402468237,0.0004140816337268271,0.0004140816337268271 -1.3741176470588234,3.204245316747354,3.204245316747354,0.022797875787068236,0.022797875787068236,-74.80914858844667,-74.80914858844667,0.0004415049189372508,0.0004415049189372508 -1.3764705882352941,3.171882658402729,3.171882658402729,0.021209934462479058,0.021209934462479058,-75.60453380081968,-75.60453380081968,0.0004688011219011027,0.0004688011219011027 -1.3788235294117648,3.1236291275547816,3.1236291275547816,0.019502424834569883,0.019502424834569883,-76.38450074680979,-76.38450074680979,0.0004950751255871019,0.0004950751255871019 -1.3811764705882352,3.0569537151106663,3.0569537151106663,0.017854111224537596,0.017854111224537596,-77.15078046452845,-77.15078046452845,0.0005193556541956604,0.0005193556541956604 -1.383529411764706,2.962979822114639,2.962979822114639,0.016816236899631798,0.016816236899631798,-77.90382029534865,-77.90382029534865,0.0005410209308009641,0.0005410209308009641 -1.3858823529411763,2.8512756550518943,2.8512756550518943,0.015983353388616423,0.015983353388616423,-78.64483807878885,-78.64483807878885,0.0005594447794081554,0.0005594447794081554 -1.388235294117647,2.7350963526400127,2.7350963526400127,0.015560823188234112,0.015560823188234112,-79.37420633825407,-79.37420633825407,0.0005742044176041444,0.0005742044176041444 -1.3905882352941177,2.6286189309003682,2.6286189309003682,0.015273417342211321,0.015273417342211321,-80.09222632655532,-80.09222632655532,0.000584955461293531,0.000584955461293531 -1.3929411764705881,2.5189731263391915,2.5189731263391915,0.015215687071191749,0.015215687071191749,-80.79892196470153,-80.79892196470153,0.0005914088077208536,0.0005914088077208536 -1.3952941176470588,2.4107960341618924,2.4107960341618924,0.014999926059341613,0.014999926059341613,-81.49396528741062,-81.49396528741062,0.0005935886193141193,0.0005935886193141193 -1.3976470588235295,2.2834775627951185,2.2834775627951185,0.014683996708356167,0.014683996708356167,-82.17708830245816,-82.17708830245816,0.0005915351330207095,0.0005915351330207095 -1.4,2.141290684924456,2.141290684924456,0.014483525934474427,0.014483525934474427,-82.84764777101131,-82.84764777101131,0.0005856682148238966,0.0005856682148238966 -1.4023529411764706,1.9735428246726205,1.9735428246726205,0.014308670992638509,0.014308670992638509,-83.5046932941188,-83.5046932941188,0.0005766639673329772,0.0005766639673329772 -1.4047058823529412,1.7893694331516694,1.7893694331516694,0.014447135448841311,0.014447135448841311,-84.14700973590679,-84.14700973590679,0.0005653466119285895,0.0005653466119285895 -1.4070588235294117,1.5919043509203732,1.5919043509203732,0.01480491131800802,0.01480491131800802,-84.77343381786952,-84.77343381786952,0.0005529909361844169,0.0005529909361844169 -1.4094117647058824,1.4014064674641782,1.4014064674641782,0.015247529641758871,0.015247529641758871,-85.38304835555442,-85.38304835555442,0.0005410015904231904,0.0005410015904231904 -1.4117647058823528,1.198539851490034,1.198539851490034,0.015503908808005111,0.015503908808005111,-85.97538248092333,-85.97538248092333,0.0005312283537121444,0.0005312283537121444 -1.4141176470588235,0.9922087800885222,0.9922087800885222,0.0155868377722053,0.0155868377722053,-86.55098355678481,-86.55098355678481,0.0005257755052242766,0.0005257755052242766 -1.4164705882352941,0.7651940446475146,0.7651940446475146,0.015301212311686019,0.015301212311686019,-87.11251395914829,-87.11251395914829,0.0005266033068546667,0.0005266033068546667 -1.4188235294117646,0.5208827002521162,0.5208827002521162,0.014520938164426915,0.014520938164426915,-87.6642619860367,-87.6642619860367,0.0005356042073877819,0.0005356042073877819 -1.4211764705882353,0.2605597657588855,0.2605597657588855,0.013762050731290087,0.013762050731290087,-88.21161394398123,-88.21161394398123,0.0005540380164057275,0.0005540380164057275 -1.423529411764706,0.001348580125319984,0.001348580125319984,0.013064388635475497,0.013064388635475497,-88.76034807576404,-88.76034807576404,0.0005823756498548603,0.0005823756498548603 -1.4258823529411764,-0.24642900849353466,-0.24642900849353466,0.012272162370379942,0.012272162370379942,-89.3153904344552,-89.3153904344552,0.000620261913722186,0.000620261913722186 -1.428235294117647,-0.4605763671299455,-0.4605763671299455,0.011590461357776544,0.011590461357776544,-89.87928520940031,-89.87928520940031,0.0006668416969152935,0.0006668416969152935 -1.4305882352941177,-0.6679359283036584,-0.6679359283036584,0.010787486764442708,0.010787486764442708,-90.45318554214704,-90.45318554214704,0.000720503884867498,0.000720503884867498 -1.4329411764705882,-0.8445763058518246,-0.8445763058518246,0.01007069450578814,0.01007069450578814,-91.03690085410776,-91.03690085410776,0.0007798674602290109,0.0007798674602290109 -1.4352941176470588,-1.0170590603215082,-1.0170590603215082,0.009106113772346058,0.009106113772346058,-91.62936343718935,-91.62936343718935,0.0008432785456242498,0.0008432785456242498 -1.4376470588235293,-1.186506543609599,-1.186506543609599,0.008328240272332428,0.008328240272332428,-92.22904911644306,-92.22904911644306,0.0009092245451856202,0.0009092245451856202 -1.44,-1.3538262850545701,-1.3538262850545701,0.007565769929298037,0.007565769929298037,-92.83468676125014,-92.83468676125014,0.0009761446633152256,0.0009761446633152256 -1.4423529411764706,-1.525230566418587,-1.525230566418587,0.007029488000775788,0.007029488000775788,-93.44491029265414,-93.44491029265414,0.0010427249374232173,0.0010427249374232173 -1.444705882352941,-1.6945195628894718,-1.6945195628894718,0.00665230390907346,0.00665230390907346,-94.05861969439556,-94.05861969439556,0.0011076960395046318,0.0011076960395046318 -1.4470588235294117,-1.847054053078098,-1.847054053078098,0.00636767283532803,0.00636767283532803,-94.67473155849186,-94.67473155849186,0.0011698593071622855,0.0011698593071622855 -1.4494117647058824,-1.9869337547846693,-1.9869337547846693,0.006117023741850425,0.006117023741850425,-95.29247229144038,-95.29247229144038,0.0012281595382208255,0.0012281595382208255 -1.4517647058823528,-2.1133532079705897,-2.1133532079705897,0.00589796133430369,0.00589796133430369,-95.91123587321128,-95.91123587321128,0.001281554768686565,0.001281554768686565 -1.4541176470588235,-2.2345189985016822,-2.2345189985016822,0.005657395141059844,0.005657395141059844,-96.53035761172752,-96.53035761172752,0.0013291892811993994,0.0013291892811993994 -1.4564705882352942,-2.3586162606287853,-2.3586162606287853,0.005369176423610167,0.005369176423610167,-97.14941265053847,-97.14941265053847,0.0013700905972239621,0.0013700905972239621 -1.4588235294117646,-2.49300759943976,-2.49300759943976,0.005199057428319615,0.005199057428319615,-97.76798521359136,-97.76798521359136,0.0014038132925230321,0.0014038132925230321 -1.4611764705882353,-2.6307131760652918,-2.6307131760652918,0.00503466975654255,0.00503466975654255,-98.38567667765439,-98.38567667765439,0.0014294127479977997,0.0014294127479977997 -1.4635294117647057,-2.774985743407182,-2.774985743407182,0.005005436744904149,0.005005436744904149,-99.0021965151082,-99.0021965151082,0.0014464203996868731,0.0014464203996868731 -1.4658823529411764,-2.913451543005733,-2.913451543005733,0.004975150343320889,0.004975150343320889,-99.61721438360522,-99.61721438360522,0.0014543821689924148,0.0014543821689924148 -1.468235294117647,-3.039376465784749,-3.039376465784749,0.005026614388005976,0.005026614388005976,-100.23050918421139,-100.23050918421139,0.0014526725650122062,0.0014526725650122062 -1.4705882352941178,-3.153666975650374,-3.153666975650374,0.005154577005232513,0.005154577005232513,-100.8418209864843,-100.8418209864843,0.0014412071076381743,0.0014412071076381743 -1.4729411764705882,-3.268208282677644,-3.268208282677644,0.005229295815634931,0.005229295815634931,-101.45095892165196,-101.45095892165196,0.0014196320428561983,0.0014196320428561983 -1.4752941176470589,-3.3865646298807954,-3.3865646298807954,0.005298851329073675,0.005298851329073675,-102.05756943753984,-102.05756943753984,0.0013878771319045988,0.0013878771319045988 -1.4776470588235295,-3.501723773926266,-3.501723773926266,0.005394125544208352,0.005394125544208352,-102.66145892425394,-102.66145892425394,0.0013459156437775849,0.0013459156437775849 -1.48,-3.6358134341122077,-3.6358134341122077,0.0054970781662839535,0.0054970781662839535,-103.26233202469395,-103.26233202469395,0.0012940110932139147,0.0012940110932139147 -1.4823529411764707,-3.7767393544173404,-3.7767393544173404,0.005721159439183237,0.005721159439183237,-103.85960470337847,-103.85960470337847,0.0012322671651596726,0.0012322671651596726 -1.484705882352941,-3.920887053939252,-3.920887053939252,0.006053533111265171,0.006053533111265171,-104.45292246928516,-104.45292246928516,0.0011610765911046874,0.0011610765911046874 -1.4870588235294118,-4.065683830758353,-4.065683830758353,0.0065628326125055985,0.0065628326125055985,-105.04146026839271,-105.04146026839271,0.0010810355872699602,0.0010810355872699602 -1.4894117647058822,-4.212020730150142,-4.212020730150142,0.007214925594787494,0.007214925594787494,-105.62413717243993,-105.62413717243993,0.000992649416782503,0.000992649416782503 -1.4917647058823529,-4.343940752470414,-4.343940752470414,0.008057112795777902,0.008057112795777902,-106.19937349662759,-106.19937349662759,0.0008966278354586869,0.0008966278354586869 -1.4941176470588236,-4.484868297626191,-4.484868297626191,0.009147221588743672,0.009147221588743672,-106.76479629390258,-106.76479629390258,0.0007940197958552798,0.0007940197958552798 -1.4964705882352942,-4.636404315001157,-4.636404315001157,0.01054296486582306,0.01054296486582306,-107.31625420938386,-107.31625420938386,0.0006860417365836542,0.0006860417365836542 -1.4988235294117647,-4.81841877725966,-4.81841877725966,0.012566329701669774,0.012566329701669774,-107.84651298674643,-107.84651298674643,0.0005742908098119263,0.0005742908098119263 -1.5011764705882353,-5.037348818772306,-5.037348818772306,0.015335267740143283,0.015335267740143283,-108.34104782530898,-108.34104782530898,0.0004614056776609806,0.0004614056776609806 -1.5035294117647058,-5.330516442911368,-5.330516442911368,0.02003690695692625,0.02003690695692625,-108.76868101501015,-108.76868101501015,0.0003521963589217645,0.0003521963589217645 -1.5058823529411764,-5.758137067375823,-5.758137067375823,0.027458787562510995,0.027458787562510995,-109.05906898314169,-109.05906898314169,0.00025766936554059625,0.00025766936554059625 -1.5082352941176471,-6.415442294926468,-6.415442294926468,0.03491123632558323,0.03491123632558323,-109.11437240277704,-109.11437240277704,0.0002050411502719483,0.0002050411502719483 -1.5105882352941176,-7.140846600794436,-7.140846600794436,0.03184359067841413,0.03184359067841413,-109.08781957607226,-109.08781957607226,0.00022777705818116399,0.00022777705818116399 -1.5129411764705882,-7.6505502107407946,-7.6505502107407946,0.02379326484578982,0.02379326484578982,-109.27979968151244,-109.27979968151244,0.0003089546676129886,0.0003089546676129886 -1.5152941176470587,-7.9610092149621785,-7.9610092149621785,0.01790836395690003,0.01790836395690003,-109.64892088041202,-109.64892088041202,0.0004136830571798078,0.0004136830571798078 -1.5176470588235293,-8.196332768455,-8.196332768455,0.01414358112549509,0.01414358112549509,-110.10294072560117,-110.10294072560117,0.0005251720287819812,0.0005251720287819812 -1.52,-8.390248841350175,-8.390248841350175,0.011588242493277112,0.011588242493277112,-110.59740736657787,-110.59740736657787,0.0006367194539097875,0.0006367194539097875 -1.5223529411764707,-8.569980078131913,-8.569980078131913,0.009873107360435882,0.009873107360435882,-111.11239284783763,-111.11239284783763,0.0007447101662976327,0.0007447101662976327 -1.5247058823529411,-8.742395808803785,-8.742395808803785,0.008686599846906673,0.008686599846906673,-111.63802712452832,-111.63802712452832,0.0008469155969525912,0.0008469155969525912 -1.5270588235294118,-8.904418083835054,-8.904418083835054,0.007855417494381442,0.007855417494381442,-112.16887438581158,-112.16887438581158,0.0009415897875714987,0.0009415897875714987 -1.5294117647058822,-9.062269477252961,-9.062269477252961,0.007317364606019386,0.007317364606019386,-112.70157919772592,-112.70157919772592,0.0010274482705247465,0.0010274482705247465 -1.531764705882353,-9.209359573645457,-9.209359573645457,0.006905339344303621,0.006905339344303621,-113.23418314030339,-113.23418314030339,0.0011032121611328828,0.0011032121611328828 -1.5341176470588236,-9.353275538354964,-9.353275538354964,0.006624345182443428,0.006624345182443428,-113.76465635962958,-113.76465635962958,0.0011679579640090586,0.0011679579640090586 -1.536470588235294,-9.493548159293468,-9.493548159293468,0.00638925118903327,0.00638925118903327,-114.2917525125502,-114.2917525125502,0.0012209230951154137,0.0012209230951154137 -1.5388235294117647,-9.636738124855924,-9.636738124855924,0.0062167429275151445,0.0062167429275151445,-114.81413624007365,-114.81413624007365,0.0012617784136427818,0.0012617784136427818 -1.5411764705882351,-9.785550576682343,-9.785550576682343,0.006090647902994489,0.006090647902994489,-115.33045670097799,-115.33045670097799,0.001290227787728743,0.001290227787728743 -1.5435294117647058,-9.943994038917838,-9.943994038917838,0.005954736365284015,0.005954736365284015,-115.83912356709556,-115.83912356709556,0.0013065832785616948,0.0013065832785616948 -1.5458823529411767,-10.116949895057886,-10.116949895057886,0.005936121008516933,0.005936121008516933,-116.33846633685954,-116.33846633685954,0.001311726235706973,0.001311726235706973 -1.5482352941176472,-10.305586032774643,-10.305586032774643,0.006001472001715898,0.006001472001715898,-116.82646563681801,-116.82646563681801,0.0013070719767294212,0.0013070719767294212 -1.5505882352941176,-10.499141227742607,-10.499141227742607,0.006095584789753451,0.006095584789753451,-117.30085915583001,-117.30085915583001,0.0012951010330872492,0.0012951010330872492 -1.5529411764705883,-10.709138840956149,-10.709138840956149,0.0062552618439071506,0.0062552618439071506,-117.75938780281471,-117.75938780281471,0.0012793849170252957,0.0012793849170252957 -1.5552941176470587,-10.9292041420924,-10.9292041420924,0.006391442519455734,0.006391442519455734,-118.19997928330982,-118.19997928330982,0.001265113914653676,0.001265113914653676 -1.5576470588235294,-11.15591814344201,-11.15591814344201,0.006480814401661034,0.006480814401661034,-118.62160150960896,-118.62160150960896,0.0012585833094122267,0.0012585833094122267 -1.5599999999999998,-11.395852442236947,-11.395852442236947,0.0065087556798320385,0.0065087556798320385,-119.02540395969174,-119.02540395969174,0.001268117732224652,0.001268117732224652 -1.5623529411764705,-11.657867268787065,-11.657867268787065,0.0063151161385704094,0.0063151161385704094,-119.41549179459203,-119.41549179459203,0.0013024350453083235,0.0013024350453083235 -1.5647058823529412,-11.92053439481421,-11.92053439481421,0.00598902107194205,0.00598902107194205,-119.79918201368723,-119.79918201368723,0.0013692659656926202,0.0013692659656926202 -1.5670588235294118,-12.19006371089991,-12.19006371089991,0.005559039278376663,0.005559039278376663,-120.18516914318279,-120.18516914318279,0.0014744139321978256,0.0014744139321978256 -1.5694117647058823,-12.441223370395035,-12.441223370395035,0.005038632973772316,0.005038632973772316,-120.58114241068044,-120.58114241068044,0.0016203696039657895,0.0016203696039657895 -1.571764705882353,-12.692312683026291,-12.692312683026291,0.004538138318978823,0.004538138318978823,-120.99174020548273,-120.99174020548273,0.0018067577453932259,0.0018067577453932259 -1.5741176470588236,-12.917425836857895,-12.917425836857895,0.004062331791397473,0.004062331791397473,-121.41864864069062,-121.41864864069062,0.0020315175197772356,0.0020315175197772356 -1.576470588235294,-13.126456468962035,-13.126456468962035,0.0036425739218914365,0.0036425739218914365,-121.86104875526512,-121.86104875526512,0.002291464589086274,0.002291464589086274 -1.5788235294117647,-13.309814475239325,-13.309814475239325,0.0032747174937417223,0.0032747174937417223,-122.31710998538193,-122.31710998538193,0.00258347046027349,0.00258347046027349 -1.5811764705882352,-13.487094024729435,-13.487094024729435,0.002934512890893393,0.002934512890893393,-122.78467415503634,-122.78467415503634,0.002904182913134418,0.002904182913134418 -1.5835294117647059,-13.64951034687479,-13.64951034687479,0.002634239912242036,0.002634239912242036,-123.26141618866002,-123.26141618866002,0.0032510147746490814,0.0032510147746490814 -1.5858823529411765,-13.791322265287858,-13.791322265287858,0.0023855160798061906,0.0023855160798061906,-123.7455874353669,-123.7455874353669,0.0036212516295887377,0.0036212516295887377 -1.5882352941176474,-13.94265959049009,-13.94265959049009,0.0021455703671596016,0.0021455703671596016,-124.2356203570319,-124.2356203570319,0.004012486901214483,0.004012486901214483 -1.5905882352941176,-14.084989118130624,-14.084989118130624,0.001953311750823952,0.001953311750823952,-124.73017852214285,-124.73017852214285,0.004422690403173056,0.004422690403173056 -1.592941176470588,-14.235091707479704,-14.235091707479704,0.001797080067090239,0.001797080067090239,-125.22826191017634,-125.22826191017634,0.004849576441788725,0.004849576441788725 -1.5952941176470588,-14.378715060332302,-14.378715060332302,0.001662994014435178,0.001662994014435178,-125.72904631107826,-125.72904631107826,0.005291123543502524,0.005291123543502524 -1.5976470588235294,-14.515100050791943,-14.515100050791943,0.0015542438005626557,0.0015542438005626557,-126.23188341638316,-126.23188341638316,0.005745455657513438,0.005745455657513438 -1.6,-14.64243116983573,-14.64243116983573,0.001463948218981031,0.001463948218981031,-126.73619956593416,-126.73619956593416,0.006210452418313991,0.006210452418313991 -1.6023529411764705,-14.759432558864596,-14.759432558864596,0.0013965638712788349,0.0013965638712788349,-127.24153406324585,-127.24153406324585,0.006684280413744576,0.006684280413744576 -1.6047058823529412,-14.872408010874477,-14.872408010874477,0.0013278792650816848,0.0013278792650816848,-127.74762927632322,-127.74762927632322,0.007164995542516984,0.007164995542516984 -1.6070588235294117,-14.981574737352608,-14.981574737352608,0.001268294456468272,0.001268294456468272,-128.2540820977683,-128.2540820977683,0.00765059091399481,0.00765059091399481 -1.6094117647058825,-15.087492278363852,-15.087492278363852,0.0011966490548522139,0.0011966490548522139,-128.76074064584344,-128.76074064584344,0.00813927642323805,0.00813927642323805 -1.611764705882353,-15.20080599365884,-15.20080599365884,0.0011422430490687968,0.0011422430490687968,-129.26738827666088,-129.26738827666088,0.008628995369262999,0.008628995369262999 -1.6141176470588237,-15.309109755845467,-15.309109755845467,0.0010877522158543192,0.0010877522158543192,-129.77381432418127,-129.77381432418127,0.009117953332791244,0.009117953332791244 -1.616470588235294,-15.421059993737996,-15.421059993737996,0.001042783105983026,0.001042783105983026,-130.2799146278788,-130.2799146278788,0.009604205340277543,0.009604205340277543 -1.6188235294117648,-15.53459445096516,-15.53459445096516,0.0010070719131710173,0.0010070719131710173,-130.7855888484472,-130.7855888484472,0.01008598391401288,0.01008598391401288 -1.6211764705882352,-15.64273362152936,-15.64273362152936,0.0009805960730601524,0.0009805960730601524,-131.2906694158445,-131.2906694158445,0.010561383593151036,0.010561383593151036 -1.6235294117647059,-15.755708421185549,-15.755708421185549,0.0009589966053811674,0.0009589966053811674,-131.7951582599443,-131.7951582599443,0.011028514352148399,0.011028514352148399 -1.6258823529411766,-15.856522548281069,-15.856522548281069,0.000942213411821205,0.000942213411821205,-132.2989204365161,-132.2989204365161,0.011485763265286268,0.011485763265286268 -1.6282352941176468,-15.952792910530247,-15.952792910530247,0.0009222316072824227,0.0009222316072824227,-132.80191704468083,-132.80191704468083,0.011931324796146298,0.011931324796146298 -1.630588235294118,-16.052814602868455,-16.052814602868455,0.0009116881804062888,0.0009116881804062888,-133.304088752309,-133.304088752309,0.01236356967637977,0.01236356967637977 -1.6329411764705881,-16.148333072169834,-16.148333072169834,0.0008977410079658582,0.0008977410079658582,-133.8054196131696,-133.8054196131696,0.01278085164939604,0.01278085164939604 -1.6352941176470588,-16.23742659074284,-16.23742659074284,0.0008823059429217587,0.0008823059429217587,-134.3058274211911,-134.3058274211911,0.013181721019526645,0.013181721019526645 -1.6376470588235295,-16.33748788944447,-16.33748788944447,0.0008695890172213007,0.0008695890172213007,-134.80527303267652,-134.80527303267652,0.013564672576278579,0.013564672576278579 -1.6400000000000001,-16.434890398698865,-16.434890398698865,0.0008617978046483475,0.0008617978046483475,-135.3037975665442,-135.3037975665442,0.013928395714322112,0.013928395714322112 -1.6423529411764706,-16.531168206783082,-16.531168206783082,0.0008519456730734055,0.0008519456730734055,-135.80133256998383,-135.80133256998383,0.014271534573954504,0.014271534573954504 -1.6447058823529415,-16.62823502714665,-16.62823502714665,0.0008507705181787699,0.0008507705181787699,-136.29787385478312,-136.29787385478312,0.014593023495800236,0.014593023495800236 -1.6470588235294117,-16.723452175401405,-16.723452175401405,0.0008478243097064737,0.0008478243097064737,-136.7933401974004,-136.7933401974004,0.014891732383463852,0.014891732383463852 -1.6494117647058824,-16.816225961095203,-16.816225961095203,0.0008544048377030627,0.0008544048377030627,-137.2878049944174,-137.2878049944174,0.015166651468611065,0.015166651468611065 -1.651764705882353,-16.905459179561692,-16.905459179561692,0.0008631549756768981,0.0008631549756768981,-137.78118127285342,-137.78118127285342,0.015416943191125486,0.015416943191125486 -1.6541176470588237,-16.98983552935379,-16.98983552935379,0.0008685562741946285,0.0008685562741946285,-138.27352472001053,-138.27352472001053,0.015641818169171175,0.015641818169171175 -1.6564705882352944,-17.068885803317688,-17.068885803317688,0.0008718233218355563,0.0008718233218355563,-138.7647710877013,-138.7647710877013,0.01584062319099545,0.01584062319099545 -1.6588235294117644,-17.15351011951058,-17.15351011951058,0.0008714267530829983,0.0008714267530829983,-139.25492062320777,-139.25492062320777,0.016012869080018862,0.016012869080018862 -1.6611764705882353,-17.23545456934745,-17.23545456934745,0.000881124324964053,0.000881124324964053,-139.74397800950968,-139.74397800950968,0.016158065672125625,0.016158065672125625 -1.663529411764706,-17.31982390778341,-17.31982390778341,0.0008846564117864031,0.0008846564117864031,-140.23194794875414,-140.23194794875414,0.016275970053926777,0.016275970053926777 -1.6658823529411766,-17.40807031456362,-17.40807031456362,0.0008881816314243798,0.0008881816314243798,-140.71877618564082,-140.71877618564082,0.016366359759328264,0.016366359759328264 -1.668235294117647,-17.49755800287622,-17.49755800287622,0.0008952367791055539,0.0008952367791055539,-141.204522539881,-141.204522539881,0.016429275435136913,0.016429275435136913 -1.670588235294118,-17.58538247628234,-17.58538247628234,0.0009029948874428909,0.0009029948874428909,-141.68917603126448,-141.68917603126448,0.016464792812091823,0.016464792812091823 -1.672941176470588,-17.670465717286927,-17.670465717286927,0.0009191096890198114,0.0009191096890198114,-142.17268995891396,-142.17268995891396,0.01647303857257978,0.01647303857257978 -1.6752941176470588,-17.76089868701424,-17.76089868701424,0.0009384567353532098,0.0009384567353532098,-142.65505288093465,-142.65505288093465,0.016454453765455887,0.016454453765455887 -1.6776470588235295,-17.847196586577297,-17.847196586577297,0.0009581911088279384,0.0009581911088279384,-143.13633273444987,-143.13633273444987,0.01640948032834434,0.01640948032834434 -1.68,-17.927303984150605,-17.927303984150605,0.0009830893935040014,0.0009830893935040014,-143.6164756153241,-143.6164756153241,0.016338629991818687,0.016338629991818687 -1.6823529411764706,-18.00832087092597,-18.00832087092597,0.0010027091071357407,0.0010027091071357407,-144.0954753844913,-144.0954753844913,0.016242614457076292,0.016242614457076292 -1.684705882352941,-18.086362755632177,-18.086362755632177,0.0010268971228725532,0.0010268971228725532,-144.57331497109493,-144.57331497109493,0.016122328225952744,0.016122328225952744 -1.6870588235294117,-18.168182482585326,-18.168182482585326,0.001054430741649126,0.001054430741649126,-145.05002197245625,-145.05002197245625,0.01597848901014578,0.01597848901014578 -1.6894117647058824,-18.245928078072676,-18.245928078072676,0.0010780527478301805,0.0010780527478301805,-145.5255785967474,-145.5255785967474,0.015812235614431357,0.015812235614431357 -1.6917647058823528,-18.329115706164032,-18.329115706164032,0.00110327968724645,0.00110327968724645,-145.99997703465672,-145.99997703465672,0.015624649127430121,0.015624649127430121 -1.6941176470588235,-18.411978283465597,-18.411978283465597,0.0011338883191504457,0.0011338883191504457,-146.4731981895947,-146.4731981895947,0.015416971172296212,0.015416971172296212 -1.6964705882352942,-18.49751383940387,-18.49751383940387,0.0011667158061054758,0.0011667158061054758,-146.94522114282705,-146.94522114282705,0.01519048445385151,0.01519048445385151 -1.6988235294117644,-18.578546857613226,-18.578546857613226,0.0012026000630129137,0.0012026000630129137,-147.41605809587182,-147.41605809587182,0.014946592292862361,0.014946592292862361 -1.7011764705882353,-18.66105246274491,-18.66105246274491,0.0012440031965530443,0.0012440031965530443,-147.8856569161272,-147.8856569161272,0.014686764159919182,0.014686764159919182 -1.7035294117647062,-18.7427489275208,-18.7427489275208,0.001290330431222313,0.001290330431222313,-148.3540275318483,-148.3540275318483,0.014412546822697249,0.014412546822697249 -1.7058823529411766,-18.822979002635428,-18.822979002635428,0.001342072667063665,0.001342072667063665,-148.82113281774048,-148.82113281774048,0.014125604561844413,0.014125604561844413 -1.7082352941176469,-18.900883073815233,-18.900883073815233,0.0013968117860532856,0.0013968117860532856,-149.2869782771463,-149.2869782771463,0.013827522232886675,0.013827522232886675 -1.7105882352941175,-18.980137657387996,-18.980137657387996,0.0014548294961510997,0.0014548294961510997,-149.7514415905511,-149.7514415905511,0.013520246294992775,0.013520246294992775 -1.7129411764705882,-19.05844763226802,-19.05844763226802,0.0015087713142438992,0.0015087713142438992,-150.21455771106696,-150.21455771106696,0.013205363686839451,0.013205363686839451 -1.7152941176470589,-19.133667076762936,-19.133667076762936,0.0015673526512888568,0.0015673526512888568,-150.67625607305453,-150.67625607305453,0.012884710232971682,0.012884710232971682 -1.7176470588235295,-19.21317483528242,-19.21317483528242,0.0016250699106351327,0.0016250699106351327,-151.13649393957672,-151.13649393957672,0.012560192737619772,0.012560192737619772 -1.72,-19.293438438016132,-19.293438438016132,0.0016938393038802096,0.0016938393038802096,-151.59515297850572,-151.59515297850572,0.012233782577228965,0.012233782577228965 -1.7223529411764709,-19.38512595513849,-19.38512595513849,0.001762004555509253,0.001762004555509253,-152.0522271721643,-152.0522271721643,0.011907348250800481,0.011907348250800481 -1.7247058823529409,-19.459120111173217,-19.459120111173217,0.0018364526549851628,0.0018364526549851628,-152.50759180447253,-152.50759180447253,0.011582557787157619,0.011582557787157619 -1.7270588235294118,-19.54620576297925,-19.54620576297925,0.0019215275158051327,0.0019215275158051327,-152.96115151678788,-152.96115151678788,0.011261620891676179,0.011261620891676179 -1.7294117647058824,-19.6273345238659,-19.6273345238659,0.0020097494182476487,0.0020097494182476487,-153.41282743938243,-153.41282743938243,0.010946345904647763,0.010946345904647763 -1.731764705882353,-19.71217699501015,-19.71217699501015,0.0021087183772581465,0.0021087183772581465,-153.86246169247,-153.86246169247,0.010638823814946336,0.010638823814946336 -1.7341176470588235,-19.79332926597414,-19.79332926597414,0.0022119766974777184,0.0022119766974777184,-154.3100194374754,-154.3100194374754,0.010340951277124793,0.010340951277124793 -1.7364705882352938,-19.875252108956268,-19.875252108956268,0.002320198060304093,0.002320198060304093,-154.75528008193382,-154.75528008193382,0.010054655475026555,0.010054655475026555 -1.7388235294117647,-19.96175481203456,-19.96175481203456,0.0024192208430418075,0.0024192208430418075,-155.19815429767294,-155.19815429767294,0.009781824484826578,0.009781824484826578 -1.7411764705882353,-20.047702119803436,-20.047702119803436,0.0025216170363345516,0.0025216170363345516,-155.63849416169907,-155.63849416169907,0.009524627307064052,0.009524627307064052 -1.743529411764706,-20.13259286736437,-20.13259286736437,0.0026292461166965977,0.0026292461166965977,-156.07619924120795,-156.07619924120795,0.00928491555575632,0.00928491555575632 -1.7458823529411764,-20.220895379016476,-20.220895379016476,0.002745392265963791,0.002745392265963791,-156.51108959864604,-156.51108959864604,0.009064727393367718,0.009064727393367718 -1.748235294117647,-20.312060069370816,-20.312060069370816,0.0028380246879732246,0.0028380246879732246,-156.94314190038787,-156.94314190038787,0.008866121519890163,0.008866121519890163 -1.7505882352941176,-20.405598910716186,-20.405598910716186,0.002947859953294577,0.002947859953294577,-157.37219159427616,-157.37219159427616,0.008690993042164913,0.008690993042164913 -1.7529411764705882,-20.5001274261843,-20.5001274261843,0.0030464864096751663,0.0030464864096751663,-157.79822343513496,-157.79822343513496,0.008541576172828814,0.008541576172828814 -1.7552941176470591,-20.6008945611815,-20.6008945611815,0.003140607232487974,0.003140607232487974,-158.22126142564596,-158.22126142564596,0.008419606147195113,0.008419606147195113 -1.7576470588235293,-20.698987127378388,-20.698987127378388,0.003225687988852702,0.003225687988852702,-158.6413316304443,-158.6413316304443,0.008327254274507128,0.008327254274507128 -1.76,-20.799624413783125,-20.799624413783125,0.0033199350454615395,0.0033199350454615395,-159.0585355317662,-159.0585355317662,0.008266361506432979,0.008266361506432979 -1.7623529411764705,-20.896999203741284,-20.896999203741284,0.003389933097688324,0.003389933097688324,-159.4730872241768,-159.4730872241768,0.00823883150771154,0.00823883150771154 -1.7647058823529411,-21.00383395110256,-21.00383395110256,0.003455263579145656,0.003455263579145656,-159.88517352408,-159.88517352408,0.008246256934306891,0.008246256934306891 -1.7670588235294116,-21.096024260634874,-21.096024260634874,0.0035145244292919156,0.0035145244292919156,-160.29508605233715,-160.29508605233715,0.008290256837963044,0.008290256837963044 -1.7694117647058827,-21.19581720842639,-21.19581720842639,0.003549156162450461,0.003549156162450461,-160.70316605047535,-160.70316605047535,0.008372197200245794,0.008372197200245794 -1.7717647058823531,-21.302852003369875,-21.302852003369875,0.003550522582404654,0.003550522582404654,-161.1097137128957,-161.1097137128957,0.00849298875908562,0.00849298875908562 -1.7741176470588236,-21.402668037757763,-21.402668037757763,0.0035406449919169573,0.0035406449919169573,-161.51509367323675,-161.51509367323675,0.008653699124185522,0.008653699124185522 -1.776470588235294,-21.50652859987933,-21.50652859987933,0.003496735286165151,0.003496735286165151,-161.91959155863603,-161.91959155863603,0.008854801615723731,0.008854801615723731 -1.7788235294117647,-21.60588409293617,-21.60588409293617,0.003480674896070196,0.003480674896070196,-162.32361541470868,-162.32361541470868,0.009096477486376034,0.009096477486376034 -1.7811764705882354,-21.705943669911747,-21.705943669911747,0.0034340116491885487,0.0034340116491885487,-162.72733879075534,-162.72733879075534,0.009378903921280013,0.009378903921280013 -1.7835294117647063,-21.804352091360037,-21.804352091360037,0.003368293281800529,0.003368293281800529,-163.13101101214735,-163.13101101214735,0.009701639859411764,0.009701639859411764 -1.7858823529411765,-21.903443623529725,-21.903443623529725,0.003313364119959282,0.003313364119959282,-163.53476941564605,-163.53476941564605,0.010064303382836745,0.010064303382836745 -1.7882352941176471,-22.0048904586469,-22.0048904586469,0.003252254339821791,0.003252254339821791,-163.9387254867013,-163.9387254867013,0.010466029027639141,0.010466029027639141 -1.7905882352941174,-22.09455337510563,-22.09455337510563,0.0031779465627606476,0.0031779465627606476,-164.34299996147885,-164.34299996147885,0.010905871537599669,0.010905871537599669 -1.7929411764705883,-22.190883164417656,-22.190883164417656,0.0031018335106215286,0.0031018335106215286,-164.74754285088858,-164.74754285088858,0.011382858702877429,0.011382858702877429 -1.795294117647059,-22.281677071883802,-22.281677071883802,0.0030345016153307132,0.0030345016153307132,-165.1523767749638,-165.1523767749638,0.011895641074152944,0.011895641074152944 -1.7976470588235294,-22.37143787486287,-22.37143787486287,0.002953582659182977,0.002953582659182977,-165.5574756869852,-165.5574756869852,0.012442875047358705,0.012442875047358705 -1.8,-22.45826194660262,-22.45826194660262,0.002866269279222105,0.002866269279222105,-165.9627564793487,-165.9627564793487,0.013023020336771043,0.013023020336771043 diff --git a/sparameters/rotate_f258530e_f85668d1.yml b/sparameters/rotate_f258530e_f85668d1.yml deleted file mode 100644 index b37cc983..00000000 --- a/sparameters/rotate_f258530e_f85668d1.yml +++ /dev/null @@ -1,27 +0,0 @@ -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: 8 -compute_time_seconds: 76.30805277824402 -compute_time_minutes: 1.2718008796374003 diff --git a/sparameters/rotate_f258530e_f918bc72.csv b/sparameters/rotate_f258530e_f918bc72.csv deleted file mode 100644 index 7dc8b4e9..00000000 --- a/sparameters/rotate_f258530e_f918bc72.csv +++ /dev/null @@ -1,51 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.5,-2.496820777281416,-2.496820777281416,0.00014334612174522496,0.00014334612174522496,1.6242943136328805,1.6242943136328805,0.01402213503782526,0.01402213503782526 -1.5020408163265306,-2.743986038651424,-2.743986038651424,0.00020351482759205548,0.00020351482759205548,0.890318445116837,0.890318445116837,0.014319232679625328,0.014319232679625328 -1.5040816326530613,-2.5448732366166738,-2.5448732366166738,0.00018082032284091006,0.00018082032284091006,0.14694663351708287,0.14694663351708287,0.014518788919158244,0.014518788919158244 -1.506122448979592,-2.828975126076089,-2.828975126076089,0.00025015792148549195,0.00025015792148549195,-0.6082229650959431,-0.6082229650959431,0.014621131272086325,0.014621131272086325 -1.5081632653061225,-2.916475701504802,-2.916475701504802,0.00016457202648309584,0.00016457202648309584,-1.3775231345858643,-1.3775231345858643,0.014630680704255624,0.014630680704255624 -1.510204081632653,-3.478493683352849,-3.478493683352849,0.00019711901576492078,0.00019711901576492078,-2.1632211465078797,-2.1632211465078797,0.014587443468011056,0.014587443468011056 -1.5122448979591836,-3.5759481709596597,-3.5759481709596597,0.00014927173823750956,0.00014927173823750956,-2.967028151093182,-2.967028151093182,0.014551082967773148,0.014551082967773148 -1.5142857142857142,-3.7162347669121196,-3.7162347669121196,7.777490161199809e-05,7.777490161199809e-05,-3.789168705164505,-3.789168705164505,0.014613150257438846,0.014613150257438846 -1.5163265306122449,-3.1133211523428246,-3.1133211523428246,2.5740763678580315e-05,2.5740763678580315e-05,-4.62691812774187,-4.62691812774187,0.01490253100039618,0.01490253100039618 -1.5183673469387755,-3.5099508272850106,-3.5099508272850106,5.341149421293307e-05,5.341149421293307e-05,-5.473230697522752,-5.473230697522752,0.015550276690940917,0.015550276690940917 -1.5204081632653061,-1.677253030157534,-1.677253030157534,1.597351517121316e-05,1.597351517121316e-05,-6.317645288675753,-6.317645288675753,0.01667277663713653,0.01667277663713653 -1.5224489795918368,-2.366255370297709,-2.366255370297709,4.43464986143374e-05,4.43464986143374e-05,-7.1490163452657205,-7.1490163452657205,0.01834364494992045,0.01834364494992045 -1.5244897959183674,-2.8872908451659027,-2.8872908451659027,7.126516845932803e-05,7.126516845932803e-05,-7.959816448950469,-7.959816448950469,0.02058128406547626,0.02058128406547626 -1.5265306122448983,-3.097380478572841,-3.097380478572841,0.00013195546028964728,0.00013195546028964728,-8.746582884033337,-8.746582884033337,0.023365753873333978,0.023365753873333978 -1.5285714285714287,-3.062238026276535,-3.062238026276535,0.00013492096952306696,0.00013492096952306696,-9.509653261688053,-9.509653261688053,0.026648515361258004,0.026648515361258004 -1.530612244897959,-3.1520617692229305,-3.1520617692229305,0.0001408490162505018,0.0001408490162505018,-10.251266847100233,-10.251266847100233,0.03037244501594364,0.03037244501594364 -1.5326530612244897,-3.37141793415006,-3.37141793415006,0.00013810032924947254,0.00013810032924947254,-10.974133583966777,-10.974133583966777,0.03447688265549655,0.03447688265549655 -1.5346938775510204,-3.470266738278926,-3.470266738278926,0.00015775723062291612,0.00015775723062291612,-11.680937819378348,-11.680937819378348,0.03889332057093339,0.03889332057093339 -1.536734693877551,-3.6462590435160203,-3.6462590435160203,0.00012402967133828092,0.00012402967133828092,-12.373734270211518,-12.373734270211518,0.0435624880735686,0.0435624880735686 -1.5387755102040817,-3.776811503900932,-3.776811503900932,0.00011720897085083077,0.00011720897085083077,-13.05431014482225,-13.05431014482225,0.04842700518030628,0.04842700518030628 -1.5408163265306123,-3.4885010585748257,-3.4885010585748257,0.00010409648912542827,0.00010409648912542827,-13.723904838164101,-13.723904838164101,0.05343844621401139,0.05343844621401139 -1.542857142857143,-3.664969555134961,-3.664969555134961,0.00011503159486160215,0.00011503159486160215,-14.383566012938118,-14.383566012938118,0.05855895907532591,0.05855895907532591 -1.5448979591836736,-3.5610041545630646,-3.5610041545630646,9.757621492797937e-05,9.757621492797937e-05,-15.034122830808805,-15.034122830808805,0.06375821226212264,0.06375821226212264 -1.546938775510204,-3.512593491446865,-3.512593491446865,9.908255220546812e-05,9.908255220546812e-05,-15.676500296229426,-15.676500296229426,0.06902008560748983,0.06902008560748983 -1.5489795918367348,-3.5321795618784924,-3.5321795618784924,0.00011065771266612149,0.00011065771266612149,-16.311346821468703,-16.311346821468703,0.07432506651390366,0.07432506651390366 -1.5510204081632653,-3.710547099613896,-3.710547099613896,0.00013214523552422357,0.00013214523552422357,-16.939431308173724,-16.939431308173724,0.07966411714522922,0.07966411714522922 -1.5530612244897959,-3.715871034153765,-3.715871034153765,0.00012315682315801088,0.00012315682315801088,-17.56142174942666,-17.56142174942666,0.08501625800942858,0.08501625800942858 -1.5551020408163265,-3.7330231784471506,-3.7330231784471506,0.00012930792973877563,0.00012930792973877563,-18.177919658038583,-18.177919658038583,0.09036033722194788,0.09036033722194788 -1.5571428571428572,-3.8062771528640593,-3.8062771528640593,0.00012495747935449656,0.00012495747935449656,-18.7894236729428,-18.7894236729428,0.0956614584713146,0.0956614584713146 -1.5591836734693876,-3.787139868631141,-3.787139868631141,0.00011931683760024556,0.00011931683760024556,-19.396216025965682,-19.396216025965682,0.10088304802602974,0.10088304802602974 -1.5612244897959184,-3.8689675646077517,-3.8689675646077517,0.00010326219706899047,0.00010326219706899047,-19.998574308208763,-19.998574308208763,0.10598053614257623,0.10598053614257623 -1.563265306122449,-3.8391426774694657,-3.8391426774694657,0.00010234329183626105,0.00010234329183626105,-20.596564424140773,-20.596564424140773,0.11091330260281766,0.11091330260281766 -1.5653061224489797,-3.8806530082185002,-3.8806530082185002,0.00010810723439740848,0.00010810723439740848,-21.19018689329221,-21.19018689329221,0.11564731890847305,0.11564731890847305 -1.5673469387755101,-3.84802395015763,-3.84802395015763,9.716464361872211e-05,9.716464361872211e-05,-21.77940981766617,-21.77940981766617,0.12015665253817476,0.12015665253817476 -1.569387755102041,-3.8193797365595588,-3.8193797365595588,9.877757829571938e-05,9.877757829571938e-05,-22.364188676362556,-22.364188676362556,0.12442685301344582,0.12442685301344582 -1.5714285714285714,-3.8407365937585567,-3.8407365937585567,0.0001043082923026112,0.0001043082923026112,-22.94448426444139,-22.94448426444139,0.12846040314856408,0.12846040314856408 -1.573469387755102,-3.8880139411570056,-3.8880139411570056,0.00010365127133538698,0.00010365127133538698,-23.52031923875768,-23.52031923875768,0.13226552215973014,0.13226552215973014 -1.5755102040816327,-4.022795106574271,-4.022795106574271,9.397457906197448e-05,9.397457906197448e-05,-24.091859685533393,-24.091859685533393,0.13586109580891964,0.13586109580891964 -1.577551020408163,-4.115651775458317,-4.115651775458317,0.00010415121893765407,0.00010415121893765407,-24.65922364265132,-24.65922364265132,0.1392632234324924,0.1392632234324924 -1.579591836734694,-4.223782073797262,-4.223782073797262,0.00010565200757599823,0.00010565200757599823,-25.222683682382353,-25.222683682382353,0.14248194124305646,0.14248194124305646 -1.5816326530612246,-4.250458210109984,-4.250458210109984,9.699753648688098e-05,9.699753648688098e-05,-25.78252350795208,-25.78252350795208,0.1455207991314768,0.1455207991314768 -1.5836734693877552,-4.271804082653535,-4.271804082653535,9.698691847600502e-05,9.698691847600502e-05,-26.338935334895798,-26.338935334895798,0.1483684975408634,0.1483684975408634 -1.5857142857142859,-4.274379076073558,-4.274379076073558,9.62252187543546e-05,9.62252187543546e-05,-26.892145213188602,-26.892145213188602,0.15100464548252346,0.15100464548252346 -1.5877551020408165,-4.216402973996335,-4.216402973996335,8.73336634076308e-05,8.73336634076308e-05,-27.44216376491641,-27.44216376491641,0.15339847783913035,0.15339847783913035 -1.5897959183673471,-4.244944487749185,-4.244944487749185,9.78451202756362e-05,9.78451202756362e-05,-27.989021338502337,-27.989021338502337,0.1555281106104331,0.1555281106104331 -1.5918367346938775,-4.218013116923332,-4.218013116923332,9.814133020386469e-05,9.814133020386469e-05,-28.532623695656127,-28.532623695656127,0.15737102548251292,0.15737102548251292 -1.593877551020408,-4.34338755967077,-4.34338755967077,0.00010396022838532553,0.00010396022838532553,-29.072812889774184,-29.072812889774184,0.15892442086754294,0.15892442086754294 -1.5959183673469388,-4.384315790692375,-4.384315790692375,0.00011011147507260695,0.00011011147507260695,-29.609496260250776,-29.609496260250776,0.16019949677057443,0.16019949677057443 -1.5979591836734695,-4.435714062189135,-4.435714062189135,0.00010572985592406992,0.00010572985592406992,-30.142469582280654,-30.142469582280654,0.16121671421035605,0.16121671421035605 -1.6,-4.432341953838537,-4.432341953838537,9.96908650908058e-05,9.96908650908058e-05,-30.67183664571337,-30.67183664571337,0.16201244819992167,0.16201244819992167 diff --git a/sparameters/rotate_f258530e_f918bc72.yml b/sparameters/rotate_f258530e_f918bc72.yml deleted file mode 100644 index 0f1b5d69..00000000 --- a/sparameters/rotate_f258530e_f918bc72.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: 29 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 318.39105200767517 -compute_time_minutes: 5.306517533461252 diff --git a/sparameters/rotate_f258530e_fa707732.csv b/sparameters/rotate_f258530e_fa707732.csv deleted file mode 100644 index 04abfb1e..00000000 --- a/sparameters/rotate_f258530e_fa707732.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,1.8329914111017307,1.8329914111017307,1.1918357945323519,1.1918357945323519,-2.1417067528001046,-2.1417067528001046,0.001348593061442226,0.001348593061442226 -1.2023529411764706,2.5793228792371363,2.5793228792371363,0.7079702689075313,0.7079702689075313,-2.9019335119110705,-2.9019335119110705,0.0022751742317135898,0.0022751742317135898 -1.204705882352941,3.179131919154318,3.179131919154318,0.6253208480353901,0.6253208480353901,-3.5418016645404085,-3.5418016645404085,0.0025977813577140085,0.0025977813577140085 -1.2070588235294117,3.739213910331508,3.739213910331508,0.7133871916279205,0.7133871916279205,-4.156688773314416,-4.156688773314416,0.002253991089495524,0.002253991089495524 -1.2094117647058824,4.328724318911027,4.328724318911027,1.1288770039640967,1.1288770039640967,-4.79331242527474,-4.79331242527474,0.0013795437203214475,0.0013795437203214475 -1.2117647058823529,5.467753682571352,5.467753682571352,5.2299048593381245,5.2299048593381245,-5.9568357829502645,-5.9568357829502645,0.0002868619347565055,0.0002868619347565055 -1.2141176470588235,8.220051315877752,8.220051315877752,1.5919325817521552,1.5919325817521552,-8.717981809114182,-8.717981809114182,0.0009237543649155995,0.0009237543649155995 -1.216470588235294,8.855298835217473,8.855298835217473,0.8551088116547836,0.8551088116547836,-9.36984225389677,-9.36984225389677,0.0017205568902641537,0.0017205568902641537 -1.2188235294117646,9.385371932320705,9.385371932320705,0.7228962808525983,0.7228962808525983,-9.936347292925065,-9.936347292925065,0.002040412077004533,0.002040412077004533 -1.2211764705882353,9.873516918990122,9.873516918990122,0.7909494424182305,0.7909494424182305,-10.472099165256491,-10.472099165256491,0.00184130763901838,0.00184130763901838 -1.2235294117647058,10.33124495343664,10.33124495343664,1.1601678794848904,1.1601678794848904,-10.970093344975366,-10.970093344975366,0.0012179781352808722,0.0012179781352808722 -1.2258823529411764,10.595314221564367,10.595314221564367,3.667722470944839,3.667722470944839,-11.25530543347805,-11.25530543347805,0.00037262072620600635,0.00037262072620600635 -1.228235294117647,8.532989047146263,8.532989047146263,2.543975450051008,2.543975450051008,-9.20278770630134,-9.20278770630134,0.0005266851367953425,0.0005266851367953425 -1.2305882352941175,8.882531524076217,8.882531524076217,1.1351493543499156,1.1351493543499156,-9.567078604413446,-9.567078604413446,0.0011772237601949927,0.0011772237601949927 -1.2329411764705882,9.30239410708228,9.30239410708228,0.8949346034450879,0.8949346034450879,-10.017725410145529,-10.017725410145529,0.0014920225499298874,0.0014920225499298874 -1.2352941176470589,9.695813198235584,9.695813198235584,0.9220628943756645,0.9220628943756645,-10.451558345750536,-10.451558345750536,0.0014292766618308294,0.0014292766618308294 -1.2376470588235293,10.01724032179159,10.01724032179159,1.211674106903015,1.211674106903015,-10.808231886299108,-10.808231886299108,0.001058297903354434,0.001058297903354434 -1.24,10.046375506434686,10.046375506434686,2.199457628088182,2.199457628088182,-10.857046956182291,-10.857046956182291,0.0005649390083546727,0.0005649390083546727 -1.2423529411764704,9.231544600504257,9.231544600504257,2.611327308627628,2.611327308627628,-10.050424250922557,-10.050424250922557,0.00046594675259650423,0.00046594675259650423 -1.244705882352941,9.099353159463277,9.099353159463277,1.4860499061922614,1.4860499061922614,-9.92901897565574,-9.92901897565574,0.0008132874309477071,0.0008132874309477071 -1.2470588235294118,9.334068616467643,9.334068616467643,1.1669235355943817,1.1669235355943817,-10.186852930383473,-10.186852930383473,0.0010330887963140884,0.0010330887963140884 -1.2494117647058822,9.59286329326286,9.59286329326286,1.172711823207703,1.172711823207703,-10.478238385627144,-10.478238385627144,0.0010166663014270919,0.0010166663014270919 -1.251764705882353,9.75210199108127,9.75210199108127,1.424942293726508,1.424942293726508,-10.667535224396355,-10.667535224396355,0.0008169993105390633,0.0008169993105390633 -1.2541176470588236,9.64204701363726,9.64204701363726,1.8501646722451917,1.8501646722451917,-10.575233887147618,-10.575233887147618,0.0006109921243192797,0.0006109921243192797 -1.256470588235294,9.361921548869436,9.361921548869436,1.7429949954429995,1.7429949954429995,-10.301001285573435,-10.301001285573435,0.0006339404590748914,0.0006339404590748914 -1.2588235294117647,9.367878460223766,9.367878460223766,1.3817348303527321,1.3817348303527321,-10.311412506013314,-10.311412506013314,0.0007918447967035664,0.0007918447967035664 -1.2611764705882353,9.556482120280723,9.556482120280723,1.2780673107823264,1.2780673107823264,-10.513558760934002,-10.513558760934002,0.0008535097657570825,0.0008535097657570825 -1.2635294117647058,9.747773293240794,9.747773293240794,1.4563548824510621,1.4563548824510621,-10.727912499304496,-10.727912499304496,0.0007437223019658939,0.0007437223019658939 -1.2658823529411765,9.737862855864478,9.737862855864478,2.0336993916687987,2.0336993916687987,-10.74183948468442,-10.74183948468442,0.0005231740878031832,0.0005231740878031832 -1.268235294117647,9.260379544143914,9.260379544143914,2.2975839788833357,2.2975839788833357,-10.2791341714373,-10.2791341714373,0.00045172026437557,0.00045172026437557 -1.2705882352941176,9.062946528059658,9.062946528059658,1.4884457826478217,1.4884457826478217,-10.084496612929934,-10.084496612929934,0.0006821826072077582,0.0006821826072077582 -1.2729411764705882,9.272091714039727,9.272091714039727,1.0938591856058202,1.0938591856058202,-10.291497341700834,-10.291497341700834,0.0009182895059919514,0.0009182895059919514 -1.2752941176470587,9.606008823430416,9.606008823430416,1.0145827083794552,1.0145827083794552,-10.628468955770682,-10.628468955770682,0.000988966544788203,0.000988966544788203 -1.2776470588235294,9.9631188117454,9.9631188117454,1.1915942636194563,1.1915942636194563,-10.997695488663341,-10.997695488663341,0.0008414101215247275,0.0008414101215247275 -1.28,10.25819613595355,10.25819613595355,2.0000256195733987,2.0000256195733987,-11.30911762895491,-11.30911762895491,0.0004973657821268574,0.0004973657821268574 -1.2823529411764705,9.360239764687346,9.360239764687346,7.258641932580503,7.258641932580503,-10.422688947583934,-10.422688947583934,0.00013498653498004813,0.00013498653498004813 -1.2847058823529411,8.52834784167268,8.52834784167268,1.8195481343323248,1.8195481343323248,-9.592263294346802,-9.592263294346802,0.0005302117064716351,0.0005302117064716351 -1.2870588235294118,8.87744482721144,8.87744482721144,1.017313056130061,1.017313056130061,-9.935341122028078,-9.935341122028078,0.0009411721878964373,0.0009411721878964373 -1.2894117647058823,9.313295949995304,9.313295949995304,0.8208038075395879,0.8208038075395879,-10.36636086522184,-10.36636086522184,0.0011703402408593305,0.0011703402408593305 -1.291764705882353,9.771136899855055,9.771136899855055,0.838761683295075,0.838761683295075,-10.826862953576466,-10.826862953576466,0.0011551742707115367,0.0011551742707115367 -1.2941176470588236,10.249382820976928,10.249382820976928,1.0963863793333672,1.0963863793333672,-11.314650726860698,-11.314650726860698,0.0008892192431387419,0.0008892192431387419 -1.296470588235294,10.819483550223634,10.819483550223634,2.3021202675880708,2.3021202675880708,-11.894864684031866,-11.894864684031866,0.00042356347062000175,0.00042356347062000175 -1.2988235294117647,13.718941119167932,13.718941119167932,5.105814323420898,5.105814323420898,-14.798827144105969,-14.798827144105969,0.00019042461205201887,0.00019042461205201887 -1.3011764705882352,14.56675090180712,14.56675090180712,1.3013490042375189,1.3013490042375189,-15.64412377725202,-15.64412377725202,0.0007477721013642226,0.0007477721013642226 -1.3035294117647058,15.093995027730486,15.093995027730486,0.8227071475876176,0.8227071475876176,-16.16679535487063,-16.16679535487063,0.0011942846603312806,0.0011942846603312806 -1.3058823529411765,15.59110220549169,15.59110220549169,0.7038114873196343,0.7038114873196343,-16.66392349829523,-16.66392349829523,0.0014206946886795484,0.0014206946886795484 -1.308235294117647,16.082438345335795,16.082438345335795,0.7422732456951002,0.7422732456951002,-17.16301251391554,-17.16301251391554,0.0013735102738856753,0.0013735102738856753 -1.3105882352941176,16.595197237925603,16.595197237925603,0.981822327511199,0.981822327511199,-17.688645190330117,-17.688645190330117,0.0010553926991364918,0.0010553926991364918 -1.3129411764705883,17.248898130287863,17.248898130287863,1.970011740155376,1.970011740155376,-18.35532301387478,-18.35532301387478,0.000532316623794788,0.000532316623794788 -1.3152941176470587,19.61593706427726,19.61593706427726,4.095676278820159,4.095676278820159,-20.731488584266117,-20.731488584266117,0.00025887935264092536,0.00025887935264092536 -1.3176470588235294,20.710746868592253,20.710746868592253,1.2613482992718965,1.2613482992718965,-21.832194023683687,-21.832194023683687,0.0008530281410817388,0.0008530281410817388 -1.32,21.267264755121413,21.267264755121413,0.7973031164895523,0.7973031164895523,-22.39547382110473,-22.39547382110473,0.001378119016284292,0.001378119016284292 -1.3223529411764705,21.760269980638203,21.760269980638203,0.6714224773205947,0.6714224773205947,-22.900535483808532,-22.900535483808532,0.0016785807018361624,0.0016785807018361624 -1.3247058823529412,22.23454536887176,22.23454536887176,0.6849506513150025,0.6849506513150025,-23.39335565533098,-23.39335565533098,0.001687968947149118,0.001687968947149118 -1.3270588235294118,22.71315031068678,22.71315031068678,0.8465947834048589,0.8465947834048589,-23.894826493283386,-23.894826493283386,0.0013962272495773673,0.0013962272495773673 -1.3294117647058823,23.24912601123051,23.24912601123051,1.413367192157351,1.413367192157351,-24.454056287883052,-24.454056287883052,0.0008518061761293357,0.0008518061761293357 -1.331764705882353,24.52545481149692,24.52545481149692,5.49293327149677,5.49293327149677,-25.751688564267088,-25.751688564267088,0.00022289745459875564,0.00022289745459875564 -1.3341176470588234,26.754907787314608,26.754907787314608,1.8141104942950086,1.8141104942950086,-28.00072288164438,-28.00072288164438,0.0006875732121432239,0.0006875732121432239 -1.336470588235294,27.336819395970235,27.336819395970235,0.9410207750044669,0.9410207750044669,-28.603218986525466,-28.603218986525466,0.001355021166474614,0.001355021166474614 -1.3388235294117647,27.810284506298977,27.810284506298977,0.7142818019483873,0.7142818019483873,-29.101025291484785,-29.101025291484785,0.0018291708143600134,0.0018291708143600134 -1.3411764705882352,28.255516255749864,28.255516255749864,0.6634212916823675,0.6634212916823675,-29.575531587272707,-29.575531587272707,0.0020170212775445146,0.0020170212775445146 -1.3435294117647059,28.691733355815106,28.691733355815106,0.7267610260799312,0.7267610260799312,-30.044577258082708,-30.044577258082708,0.001880045229292215,0.001880045229292215 -1.3458823529411765,29.135513769197928,29.135513769197928,0.968835936560777,0.968835936560777,-30.52203543100394,-30.52203543100394,0.0014346874380002982,0.0014346874380002982 -1.348235294117647,29.63904977989921,29.63904977989921,1.8775172585338653,1.8775172585338653,-31.05813304439626,-31.05813304439626,0.0007513321682317633,0.0007513321682317633 -1.3505882352941176,32.00805978108837,32.00805978108837,8.934715274954067,8.934715274954067,-33.458114552316275,-33.458114552316275,0.00016019086308599362,0.00016019086308599362 -1.3529411764705883,33.280403593550446,33.280403593550446,1.5691792899616983,1.5691792899616983,-34.76121424631437,-34.76121424631437,0.0009268670711922903,0.0009268670711922903 -1.3552941176470588,33.753018972794706,33.753018972794706,0.908133128074998,0.908133128074998,-35.2664786089869,-35.2664786089869,0.0016297331991100607,0.0016297331991100607 -1.3576470588235294,34.17741372616959,34.17741372616959,0.7169606287961414,0.7169606287961414,-35.72672580112324,-35.72672580112324,0.002100282224777319,0.002100282224777319 -1.3599999999999999,34.58652197699141,34.58652197699141,0.6759600545264364,0.6759600545264364,-36.17455727847449,-36.17455727847449,0.0022616515548683045,0.0022616515548683045 -1.3623529411764705,34.99052243054535,34.99052243054535,0.7414507138955353,0.7414507138955353,-36.61850398713888,-36.61850398713888,0.002086359978711331,0.002086359978711331 -1.3647058823529412,35.39799812051545,35.39799812051545,0.9762174477961111,0.9762174477961111,-37.06528262085627,-37.06528262085627,0.0015985646815860483,0.0015985646815860483 -1.3670588235294117,35.83230553785432,35.83230553785432,1.805904862544887,1.805904862544887,-37.53716675133699,-37.53716675133699,0.0008703811918979712,0.0008703811918979712 -1.3694117647058823,37.67147225806718,37.67147225806718,20.777596090689972,20.777596090689972,-39.41247975519016,-39.41247975519016,7.62068883787615e-05,7.62068883787615e-05 -1.371764705882353,39.58309978857687,39.58309978857687,1.8285804462432715,1.8285804462432715,-41.36012689094829,-41.36012689094829,0.0008731704030572968,0.0008731704030572968 -1.3741176470588234,40.011544725721095,40.011544725721095,0.9905711986701861,0.9905711986701861,-41.82600724247121,-41.82600724247121,0.0016262364016101723,0.0016262364016101723 -1.3764705882352941,40.407989241772455,40.407989241772455,0.7538882374424933,0.7538882374424933,-42.261938124689884,-42.261938124689884,0.002154300459118714,0.002154300459118714 -1.3788235294117648,40.794640672854555,40.794640672854555,0.6858929674007443,0.6858929674007443,-42.68959076417168,-42.68959076417168,0.0023819856570871526,0.0023819856570871526 -1.3811764705882352,41.17785583408583,41.17785583408583,0.719362381162316,0.719362381162316,-43.11395610350831,-43.11395610350831,0.0022784408789349934,0.0022784408789349934 -1.383529411764706,41.562097039249245,41.562097039249245,0.8819497125661697,0.8819497125661697,-43.538144032799785,-43.538144032799785,0.0018600090928092658,0.0018600090928092658 -1.3858823529411763,41.95486673737796,41.95486673737796,1.3815319103339687,1.3815319103339687,-43.96895513278448,-43.96895513278448,0.0011871970105463174,0.0011871970105463174 -1.388235294117647,42.42320513387334,42.42320513387334,4.602973797583559,4.602973797583559,-44.47385592342263,-44.47385592342263,0.0003563795570347151,0.0003563795570347151 -1.3905882352941177,39.44198573575337,39.44198573575337,3.1218030674955703,3.1218030674955703,-41.52892661458631,-41.52892661458631,0.000526015004224746,0.000526015004224746 -1.3929411764705881,39.868664932629706,39.868664932629706,1.2388559623215336,1.2388559623215336,-41.992769742029026,-41.992769742029026,0.0013275591762134556,0.0013275591762134556 -1.3952941176470588,40.25096717526115,40.25096717526115,0.8448429473335344,0.8448429473335344,-42.4136609712462,-42.4136609712462,0.0019484372322182229,0.0019484372322182229 -1.3976470588235295,40.62413374572016,40.62413374572016,0.7126597915805695,0.7126597915805695,-42.82632735956428,-42.82632735956428,0.0023076762993175354,0.0023076762993175354 -1.4,40.994144295084546,40.994144295084546,0.6941763043161674,0.6941763043161674,-43.23559681013018,-43.23559681013018,0.002361640894857526,0.002361640894857526 -1.4023529411764706,41.364182717950754,41.364182717950754,0.7737415562552132,0.7737415562552132,-43.643528021800854,-43.643528021800854,0.002108200949066791,0.002108200949066791 -1.4047058823529412,41.737176133424995,41.737176133424995,1.0227411879880055,1.0227411879880055,-44.05247161118604,-44.05247161118604,0.0015858971104133048,0.0015858971104133048 -1.4070588235294117,42.12220480453361,42.12220480453361,1.8600241350319098,1.8600241350319098,-44.47190117295569,-44.47190117295569,0.0008674875549364948,0.0008674875549364948 -1.4094117647058824,43.06799960423919,43.06799960423919,27.21269792970585,27.21269792970585,-45.451597691379476,-45.451597691379476,5.9050483790882306e-05,5.9050483790882306e-05 -1.4117647058823528,45.908642748997885,45.908642748997885,2.093735151560166,2.093735151560166,-48.32675398128553,-48.32675398128553,0.0007649169137666415,0.0007649169137666415 -1.4141176470588235,46.290865664658234,46.290865664658234,1.0874130519769143,1.0874130519769143,-48.74474705546651,-48.74474705546651,0.0014674786495297968,0.0014674786495297968 -1.4164705882352941,46.65539606079653,46.65539606079653,0.8039636996487723,0.8039636996487723,-49.14594540213466,-49.14594540213466,0.0019750930193446355,0.0019750930193446355 -1.4188235294117646,47.01483473778082,47.01483473778082,0.7075524002804713,0.7075524002804713,-49.54203626546778,-49.54203626546778,0.002228774177942328,0.002228774177942328 -1.4211764705882353,47.37265105580969,47.37265105580969,0.7095552602792284,0.7095552602792284,-49.93536164295483,-49.93536164295483,0.002203524051256027,0.002203524051256027 -1.423529411764706,47.73052814195788,47.73052814195788,0.8110931297462742,0.8110931297462742,-50.32688911202214,-50.32688911202214,0.0019096677806431561,0.0019096677806431561 -1.4258823529411764,48.08935868508913,48.08935868508913,1.1038065577384286,1.1038065577384286,-50.71768486089368,-50.71768486089368,0.0013906437733411541,0.0013906437733411541 -1.428235294117647,48.45230501177635,48.45230501177635,2.1269129645993203,2.1269129645993203,-51.111798427927,-51.111798427927,0.0007160217972136839,0.0007160217972136839 -1.4305882352941177,51.56569953175624,51.56569953175624,50.1296374926919,50.1296374926919,-47.973485937333734,-47.973485937333734,3.0172143878197217e-05,3.0172143878197217e-05 -1.4329411764705882,52.268449908220624,52.268449908220624,2.002687593086281,2.002687593086281,-48.70881549221635,-48.70881549221635,0.0007502543067128663,0.0007502543067128663 -1.4352941176470588,52.62270842778081,52.62270842778081,1.0928650882563293,1.0928650882563293,-49.09673724736551,-49.09673724736551,0.0013646148221794186,0.0013646148221794186 -1.4376470588235293,52.97014905799692,52.97014905799692,0.8201136100293889,0.8201136100293889,-49.47821024969669,-49.47821024969669,0.0018019010785688444,0.0018019010785688444 -1.44,53.31505572949092,53.31505572949092,0.7249172177421503,0.7249172177421503,-49.856404045840016,-49.856404045840016,0.002016379791251211,0.002016379791251211 -1.4423529411764706,53.65860905971567,53.65860905971567,0.7255379197305618,0.7255379197305618,-50.23165181932543,-50.23165181932543,0.0019905727961842877,0.0019905727961842877 -1.444705882352941,54.00042933115385,54.00042933115385,0.8220120612364763,0.8220120612364763,-50.60334603442835,-50.60334603442835,0.0017358718798740503,0.0017358718798740503 -1.4470588235294117,54.33754025986,54.33754025986,1.0937594457687367,1.0937594457687367,-50.969067412048126,-50.969067412048126,0.0012901667798883517,0.0012901667798883517 -1.4494117647058824,54.65786062672661,54.65786062672661,1.962366638966359,1.962366638966359,-51.31782618268489,-51.31782618268489,0.0007120490039135065,0.0007120490039135065 -1.4517647058823528,54.58452821452447,54.58452821452447,17.399432428704685,17.399432428704685,-51.27376960425447,-51.27376960425447,7.958157114182085e-05,7.958157114182085e-05 -1.4541176470588235,52.307128627883785,52.307128627883785,2.4671885399445674,2.4671885399445674,-49.02690610752467,-49.02690610752467,0.0005560322296776988,0.0005560322296776988 -1.4564705882352942,52.6090614658616,52.6090614658616,1.2368684243302084,1.2368684243302084,-49.36031998464325,-49.36031998464325,0.0010974031869698348,0.0010974031869698348 -1.4588235294117646,52.93121268611547,52.93121268611547,0.8951861331780067,0.8951861331780067,-49.71387900414984,-49.71387900414984,0.0014974194146326124,0.0014974194146326124 -1.4611764705882353,53.2567081072608,53.2567081072608,0.7697614099510997,0.7697614099510997,-50.06964058968018,-50.06964058968018,0.0017169834195788526,0.0017169834195788526 -1.4635294117647057,53.58210965955679,53.58210965955679,0.7486065802806419,0.7486065802806419,-50.42346752879311,-50.42346752879311,0.001739298328854382,0.001739298328854382 -1.4658823529411764,53.904299750060986,53.904299750060986,0.817000810837637,0.817000810837637,-50.772262982196196,-50.772262982196196,0.0015706309308236158,0.0015706309308236158 -1.468235294117647,54.216911669085064,54.216911669085064,1.022394927635678,1.022394927635678,-51.11048832529649,-51.11048832529649,0.0012383455279518425,0.0012383455279518425 -1.4705882352941178,54.50000305269339,54.50000305269339,1.5885216932865442,1.5885216932865442,-51.4193046033038,-51.4193046033038,0.0007873775903235609,0.0007873775903235609 -1.4729411764705882,54.59598256988148,54.59598256988148,4.409267957205929,4.409267957205929,-51.54205903168252,-51.54205903168252,0.00028039171517179115,0.00028039171517179115 -1.4752941176470589,52.485459074666636,52.485459074666636,4.3893858277576205,4.3893858277576205,-49.45962966036829,-49.45962966036829,0.00027825830691380224,0.00027825830691380224 -1.4776470588235295,52.579625018436374,52.579625018436374,1.6279853378583344,1.6279853378583344,-49.58262803389916,-49.58262803389916,0.000739958657027805,0.000739958657027805 -1.48,52.85106439112136,52.85106439112136,1.0671512796930982,1.0671512796930982,-49.88256685618277,-49.88256685618277,0.0011110996388532775,0.0011110996388532775 -1.4823529411764707,53.14782712804403,53.14782712804403,0.8635657200593039,0.8635657200593039,-50.20627656108216,-50.20627656108216,0.001349173793848462,0.001349173793848462 -1.484705882352941,53.45101330032051,53.45101330032051,0.7973475100862876,0.7973475100862876,-50.53429730265339,-50.53429730265339,0.0014348118815504529,0.0014348118815504529 -1.4870588235294118,53.75298859407416,53.75298859407416,0.8223615158430059,0.8223615158430059,-50.85911954919966,-50.85911954919966,0.0013667778374723786,0.0013667778374723786 -1.4894117647058822,54.04531195193328,54.04531195193328,0.9526051252734318,0.9526051252734318,-51.1731304988533,-51.1731304988533,0.0011607602937407076,0.0011607602937407076 -1.4917647058823529,54.309919309764354,54.309919309764354,1.2857742963285494,1.2857742963285494,-51.459623660911106,-51.459623660911106,0.000847256335283189,0.000847256335283189 -1.4941176470588236,54.47584395182182,54.47584395182182,2.28161598089095,2.28161598089095,-51.64857285553416,-51.64857285553416,0.00047066994476800423,0.00047066994476800423 -1.4964705882352942,53.75286041975243,53.75286041975243,6.947745764007814,6.947745764007814,-50.949977815900006,-50.949977815900006,0.00015225434044388245,0.00015225434044388245 -1.4988235294117647,52.65792127800087,52.65792127800087,2.657888757710879,2.657888757710879,-49.88021720471143,-49.88021720471143,0.00039132469524056024,0.00039132469524056024 -1.5011764705882353,52.77951043287648,52.77951043287648,1.428470328295517,1.428470328295517,-50.026429833953394,-50.026429833953394,0.0007142136327346234,0.0007142136327346234 -1.5035294117647058,53.024068579053655,53.024068579053655,1.043856500855483,1.043856500855483,-50.2937773150658,-50.2937773150658,0.0009567651174327737,0.0009567651174327737 -1.5058823529411764,53.2981647306026,53.2981647306026,0.8947665946413665,0.8947665946413665,-50.587953934096554,-50.587953934096554,0.0010916889656312782,0.0010916889656312782 -1.5082352941176471,53.58053514666248,53.58053514666248,0.8611130892061388,0.8611130892061388,-50.88770349771322,-50.88770349771322,0.001110018180588328,0.001110018180588328 -1.5105882352941176,53.859642606115706,53.859642606115706,0.9215654887986587,0.9215654887986587,-51.182501860636776,-51.182501860636776,0.0010167072147441725,0.0010167072147441725 -1.5129411764705882,54.12144925748301,54.12144925748301,1.110664145948363,1.110664145948363,-51.45970507243438,-51.45970507243438,0.0008283974733685596,0.0008283974733685596 -1.5152941176470587,54.332849544652674,54.332849544652674,1.5794956140283343,1.5794956140283343,-51.68747767839371,-51.68747767839371,0.0005726518632453929,0.0005726518632453929 -1.5176470588235293,54.342619488823885,54.342619488823885,3.0347082046699634,3.0347082046699634,-51.715053510833165,-51.715053510833165,0.0002928948561876021,0.0002928948561876021 -1.52,53.246280720978824,53.246280720978824,5.164149200967486,5.164149200967486,-50.63748880833313,-50.63748880833313,0.00016884207379468702,0.00016884207379468702 -1.5223529411764707,52.77240632308691,52.77240632308691,2.2257070477720036,2.2257070477720036,-50.18179068359684,-50.18179068359684,0.00038327743555488254,0.00038327743555488254 -1.5247058823529411,52.90366626325826,52.90366626325826,1.3753038502351616,1.3753038502351616,-50.329015113608534,-50.329015113608534,0.0006053455971087585,0.0006053455971087585 -1.5270588235294118,53.13662196897101,53.13662196897101,1.0626491266196905,1.0626491266196905,-50.574457758788846,-50.574457758788846,0.0007637093664620463,0.0007637093664620463 -1.5294117647058822,53.40055406238471,53.40055406238471,0.9417048856657241,0.9417048856657241,-50.84696867809725,-50.84696867809725,0.0008405407121480344,0.0008405407121480344 -1.531764705882353,53.67449991839833,53.67449991839833,0.93052954932926,0.93052954932926,-51.126637575664304,-51.126637575664304,0.0008314778410109281,0.0008314778410109281 -1.5341176470588236,53.94573067375324,53.94573067375324,1.0224164839649519,1.0224164839649519,-51.40227143198546,-51.40227143198546,0.0007419689696615958,0.0007419689696615958 -1.536470588235294,54.19859711023149,54.19859711023149,1.2732507016674992,1.2732507016674992,-51.66009550215976,-51.66009550215976,0.0005856316806183405,0.0005856316806183405 -1.5388235294117647,54.39390656475467,54.39390656475467,1.9128439286424406,1.9128439286424406,-51.86208611378415,-51.86208611378415,0.0003835191470750571,0.0003835191470750571 -1.5411764705882351,54.30632110327092,54.30632110327092,4.223598606426616,4.223598606426616,-51.78254832806554,-51.78254832806554,0.00017072277727030457,0.00017072277727030457 -1.5435294117647058,52.90651359902805,52.90651359902805,4.918627908606179,4.918627908606179,-50.39088058040413,-50.39088058040413,0.00014375422598753723,0.00014375422598753723 -1.5458823529411767,52.709805218145824,52.709805218145824,2.0836698361178048,2.0836698361178048,-50.20022811259087,-50.20022811259087,0.0003318931469883699,0.0003318931469883699 -1.5482352941176472,52.89090974386628,52.89090974386628,1.3458874787095831,1.3458874787095831,-50.38337208346674,-50.38337208346674,0.0005018132453257098,0.0005018132453257098 -1.5505882352941176,53.142205518483955,53.142205518483955,1.0633510199791267,1.0633510199791267,-50.63186470791434,-50.63186470791434,0.0006207706052566453,0.0006207706052566453 -1.5529411764705883,53.41834282246479,53.41834282246479,0.9554401522886863,0.9554401522886863,-50.90095582469201,-50.90095582469201,0.000677340360260881,0.000677340360260881 -1.5552941176470587,53.704580791708835,53.704580791708835,0.9541131652207872,0.9541131652207872,-51.17780891019158,-51.17780891019158,0.0006681988750560946,0.0006681988750560946 -1.5576470588235294,53.99279875291667,53.99279875291667,1.0584802903361965,1.0584802903361965,-51.4568116478458,-51.4568116478458,0.0005962300278900287,0.0005962300278900287 -1.5599999999999998,54.27695742071072,54.27695742071072,1.333847474996253,1.333847474996253,-51.734055562472506,-51.734055562472506,0.0004699256642221126,0.0004699256642221126 -1.5623529411764705,54.54812652572759,54.54812652572759,2.0630131749639835,2.0630131749639835,-52.00103586726959,-52.00103586726959,0.00030210496587020037,0.00030210496587020037 -1.5647058823529412,54.747281777048606,54.747281777048606,5.679744139410459,5.679744139410459,-52.19787261625346,-52.19787261625346,0.00010899500809432473,0.00010899500809432473 -1.5670588235294118,52.18821108875484,52.18821108875484,6.432131108012065,6.432131108012065,-49.636283043440976,-49.636283043440976,9.541161220855871e-05,9.541161220855871e-05 -1.5694117647058823,52.37253390566458,52.37253390566458,2.1101576804351896,2.1101576804351896,-49.81561325239704,-49.81561325239704,0.0002879094423510515,0.0002879094423510515 -1.571764705882353,52.64723155618318,52.64723155618318,1.3198446451019326,1.3198446451019326,-50.08133508018386,-50.08133508018386,0.000456004439449503,0.000456004439449503 -1.5741176470588236,52.938077171568835,52.938077171568835,1.0220414793056065,1.0220414793056065,-50.35946220799941,-50.35946220799941,0.0005852490371081359,0.0005852490371081359 -1.576470588235294,53.23616288786505,53.23616288786505,0.898704198321269,0.898704198321269,-50.64285298032903,-50.64285298032903,0.0006650147333290445,0.0006650147333290445 -1.5788235294117647,53.537918421601866,53.537918421601866,0.8723639708891097,0.8723639708891097,-50.93073130231732,-50.93073130231732,0.0006886065485584099,0.0006886065485584099 -1.5811764705882352,53.842407487431146,53.842407487431146,0.9281550184402141,0.9281550184402141,-51.22477335661178,-51.22477335661178,0.0006536581094598784,0.0006536581094598784 -1.5835294117647059,54.15315831607377,54.15315831607377,1.0924168934108547,1.0924168934108547,-51.5299556598585,-51.5299556598585,0.0005621368889123317,0.0005621368889123317 -1.5858823529411765,54.485357979540595,54.485357979540595,1.4773290384559632,1.4773290384559632,-51.86094832139249,-51.86094832139249,0.00042055496202395,0.00042055496202395 -1.5882352941176474,54.90525211355295,54.90525211355295,2.599988326644485,2.599988326644485,-52.28231947117664,-52.28231947117664,0.00024123753976917182,0.00024123753976917182 -1.5905882352941176,56.2228527365994,56.2228527365994,8.299834174151618,8.299834174151618,-53.60184389849208,-53.60184389849208,7.608669211597663e-05,7.608669211597663e-05 -1.592941176470588,57.96720472299897,57.96720472299897,2.872214109192999,2.872214109192999,-55.34622402343536,-55.34622402343536,0.0002210435882768243,0.0002210435882768243 -1.5952941176470588,58.43243032719102,58.43243032719102,1.4652297378467238,1.4652297378467238,-55.80881975097633,-55.80881975097633,0.00043579050190411823,0.00043579050190411823 -1.5976470588235294,58.78617148779941,58.78617148779941,1.0163970978132766,1.0163970978132766,-56.15766885384886,-56.15766885384886,0.0006337215853508377,0.0006337215853508377 -1.6,59.11511647799899,59.11511647799899,0.8207326863188261,0.8207326863188261,-56.48149835605905,-56.48149835605905,0.0007950386116469282,0.0007950386116469282 -1.6023529411764705,59.436057952730636,59.436057952730636,0.7337515289815192,0.7337515289815192,-56.7994694890361,-56.7994694890361,0.0009049658584861691,0.0009049658584861691 -1.6047058823529412,59.755167623223024,59.755167623223024,0.711751937255923,0.711751937255923,-57.11993940419494,-57.11993940419494,0.0009520941554625296,0.0009520941554625296 -1.6070588235294117,60.07869880781093,60.07869880781093,0.7441564581189536,0.7441564581189536,-57.4498846109872,-57.4498846109872,0.0009298668975695782,0.0009298668975695782 -1.6094117647058825,60.41765339591283,60.41765339591283,0.8425289532615171,0.8425289532615171,-57.79971939557448,-57.79971939557448,0.0008372310263914985,0.0008372310263914985 -1.611764705882353,60.7965315365922,60.7965315365922,1.0533422325352277,1.0533422325352277,-58.192229545577625,-58.192229545577625,0.0006804998491462406,0.0006804998491462406 -1.6141176470588237,61.286767948684705,61.286767948684705,1.5167505837165995,1.5167505837165995,-58.696555973190186,-58.696555973190186,0.00047849948841877685,0.00047849948841877685 -1.616470588235294,62.15065332835638,62.15065332835638,2.478165097136727,2.478165097136727,-59.57322566039758,-59.57322566039758,0.00029570104948320084,0.00029570104948320084 -1.6188235294117648,63.470174636501554,63.470174636501554,2.2105158297680423,2.2105158297680423,-60.90290401503482,-60.90290401503482,0.0003343842582598688,0.0003343842582598688 -1.6211764705882352,64.23984674702612,64.23984674702612,1.2881043842537412,1.2881043842537412,-61.68038987398038,-61.68038987398038,0.0005794750031026619,0.0005794750031026619 -1.6235294117647059,64.71877842649917,64.71877842649917,0.8795390986933105,0.8795390986933105,-62.16580233244656,-62.16580233244656,0.0008592997549079952,0.0008592997549079952 -1.6258823529411766,65.11123082614388,65.11123082614388,0.6887009477879554,0.6887009477879554,-62.565653236205236,-62.565653236205236,0.0011148968971512727,0.0011148968971512727 -1.6282352941176468,65.47146811870307,65.47146811870307,0.5938418667037897,0.5938418667037897,-62.93600257715821,-62.93600257715821,0.0013170340800215715,0.0013170340800215715 -1.630588235294118,65.81917197249291,65.81917197249291,0.551684255571551,0.551684255571551,-63.29778553448401,-63.29778553448401,0.0014452987908442636,0.0014452987908442636 -1.6329411764705881,66.16617546180868,66.16617546180868,0.5462976556217574,0.5462976556217574,-63.66288636518468,-63.66288636518468,0.0014864825480564697,0.0014864825480564697 -1.6352941176470588,66.52459190496764,66.52459190496764,0.5746377258785941,0.5746377258785941,-64.04240549893592,-64.04240549893592,0.0014352349162233544,0.0014352349162233544 -1.6376470588235295,66.91249303315776,66.91249303315776,0.6438337187221671,0.6438337187221671,-64.45256051509274,-64.45256051509274,0.001296207378473462,0.001296207378473462 -1.6400000000000001,67.36293565489184,67.36293565489184,0.772769871651672,0.772769871651672,-64.92460343511303,-64.92460343511303,0.0010889102682933932,0.0010889102682933932 -1.6423529411764706,67.94341285146952,67.94341285146952,0.9832839235976352,0.9832839235976352,-65.52445504300357,-65.52445504300357,0.0008608217308593203,0.0008608217308593203 -1.6447058823529415,68.7459456776832,68.7459456776832,1.1830439078594601,1.1830439078594601,-66.34343020010775,-66.34343020010775,0.0007191787494464827,0.0007191787494464827 -1.6470588235294117,69.64217649633869,69.64217649633869,1.067459023141331,1.067459023141331,-67.25335244189479,-67.25335244189479,0.0008022628244331029,0.0008022628244331029 -1.6494117647058824,70.34261796468446,70.34261796468446,0.8001584972020165,0.8001584972020165,-67.96635006002785,-67.96635006002785,0.0010799914635454583,0.0010799914635454583 -1.651764705882353,70.8671433840633,70.8671433840633,0.6143676288801146,0.6143676288801146,-68.50392536627389,-68.50392536627389,0.0014237754383592733,0.0014237754383592733 -1.6541176470588237,71.30361452345603,71.30361452345603,0.5065625342898812,0.5065625342898812,-68.9558636828722,-68.9558636828722,0.001751894903391031,0.001751894903391031 -1.6564705882352944,71.69811991784916,71.69811991784916,0.44648737044336034,0.44648737044336034,-69.36930792029443,-69.36930792029443,0.002018054783033815,0.002018054783033815 -1.6588235294117644,72.07411601222763,72.07411601222763,0.41665580099048405,0.41665580099048405,-69.76770856455775,-69.76770856455775,0.002193291988677791,0.002193291988677791 -1.6611764705882353,72.4469786810435,72.4469786810435,0.4088466333426207,0.4088466333426207,-70.16559383309823,-70.16559383309823,0.0022607120854102633,0.0022607120854102633 -1.663529411764706,72.83090316572671,72.83090316572671,0.42040975473464054,0.42040975473464054,-70.57546911950911,-70.57546911950911,0.0022158530700093597,0.0022158530700093597 -1.6658823529411766,73.24274650408694,73.24274650408694,0.45233296885628704,0.45233296885628704,-71.01247815482766,-71.01247815482766,0.0020683921951125672,0.0020683921951125672 -1.668235294117647,73.7064457072185,73.7064457072185,0.50729028347205,0.50729028347205,-71.49902832443709,-71.49902832443709,0.0018475609897882772,0.0018475609897882772 -1.670588235294118,74.25544080247396,74.25544080247396,0.5820867607722008,0.5820867607722008,-72.06766739162188,-72.06766739162188,0.0016113922105814786,0.0016113922105814786 -1.672941176470588,74.91524821886527,74.91524821886527,0.6448311413264831,0.6448311413264831,-72.74388766918658,-72.74388766918658,0.0014571267578370624,0.0014571267578370624 -1.6752941176470588,75.6385216036045,75.6385216036045,0.6323827352876259,0.6323827352876259,-73.48163512011311,-73.48163512011311,0.0014921360691814913,0.0014921360691814913 -1.6776470588235295,76.30674967284452,76.30674967284452,0.5479767443496161,0.5479767443496161,-74.16410840950796,-74.16410840950796,0.001734783553266359,0.001734783553266359 -1.68,76.8685731031714,76.8685731031714,0.4574061016910629,0.4574061016910629,-74.74184186192184,-74.74184186192184,0.0020997771894571303,0.0020997771894571303 -1.6823529411764706,77.34730759595338,77.34730759595338,0.39029570542170544,0.39029570542170544,-75.23954875388036,-75.23954875388036,0.002490295547973201,0.002490295547973201 -1.684705882352941,77.77542837697467,77.77542837697467,0.3465801642661485,0.3465801642661485,-75.69026155556682,-75.69026155556682,0.002837039352658829,0.002837039352658829 -1.6870588235294117,78.17670575313385,78.17670575313385,0.3207320750153489,0.3207320750153489,-76.11713737196516,-76.11713737196516,0.0030953836623907097,0.0030953836623907097 -1.6894117647058824,78.56788365798936,78.56788365798936,0.3084809329220752,0.3084809329220752,-76.53571401347111,-76.53571401347111,0.0032384311716902683,0.0032384311716902683 -1.6917647058823528,78.96318722070187,78.96318722070187,0.3075852937180255,0.3075852937180255,-76.95827073756863,-76.95827073756863,0.0032558258835971503,0.0032558258835971503 -1.6941176470588235,79.37632442879332,79.37632442879332,0.3172286414749305,0.3172286414749305,-77.39688610159253,-77.39688610159253,0.003154196796199577,0.003154196796199577 -1.6964705882352942,79.8227559379985,79.8227559379985,0.33712856018998755,0.33712856018998755,-77.8655960154208,-77.8655960154208,0.002959786833260234,0.002959786833260234 -1.6988235294117644,80.31959843759152,80.31959843759152,0.36536819867857534,0.36536819867857534,-78.38105228410409,-78.38105228410409,0.0027233084013412014,0.0027233084013412014 -1.7011764705882353,80.88009600449712,80.88009600449712,0.3939610427702205,0.3939610427702205,-78.95688954745839,-78.95688954745839,0.0025229277270734417,0.0025229277270734417 -1.7035294117647062,81.49531194142604,81.49531194142604,0.4061358350388677,0.4061358350388677,-79.5858374664145,-79.5858374664145,0.002452694946409466,0.002452694946409466 -1.7058823529411766,82.12001689864395,82.12001689864395,0.389097252065418,0.389097252065418,-80.22450057873057,-80.22450057873057,0.002575305529362251,0.002575305529362251 -1.7082352941176469,82.70098366888755,82.70098366888755,0.3516517593868548,0.3516517593868548,-80.82174576655117,-80.82174576655117,0.002874790152223148,0.002874790152223148 -1.7105882352941175,83.21887795938305,83.21887795938305,0.3118773808520662,0.3118773808520662,-81.35926908243117,-81.35926908243117,0.0032747164090032293,0.0032747164090032293 -1.7129411764705882,83.68274224930063,83.68274224930063,0.2795085179696753,0.2795085179696753,-81.84689037626113,-81.84689037626113,0.003689785460339834,0.003689785460339834 -1.7152941176470589,84.11043101868853,84.11043101868853,0.2562930561914031,0.2562930561914031,-82.30129860988696,-82.30129860988696,0.004053094018108044,0.004053094018108044 -1.7176470588235295,84.51801063776833,84.51801063776833,0.24139097607872337,0.24139097607872337,-82.73741101694281,-82.73741101694281,0.004318558114879866,0.004318558114879866 -1.72,84.91954211854144,84.91954211854144,0.23359415263476305,0.23359415263476305,-83.16700380998597,-83.16700380998597,0.004459875001962793,0.004459875001962793 -1.7223529411764709,85.32713516372203,85.32713516372203,0.23212729576167718,0.23212729576167718,-83.60052283855806,-83.60052283855806,0.004469934453466431,0.004469934453466431 -1.7247058823529409,85.7521607963491,85.7521607963491,0.23647788305540757,0.23647788305540757,-84.04788149045508,-84.04788149045508,0.004360755340075861,0.004360755340075861 -1.7270588235294118,86.20575171750278,86.20575171750278,0.24600539004956648,0.24600539004956648,-84.51947169138597,-84.51947169138597,0.004165823136201329,0.004165823136201329 -1.7294117647058824,86.69711522098713,86.69711522098713,0.25893642690249136,0.25893642690249136,-85.02519839829655,-85.02519839829655,0.0039415057245082465,0.0039415057245082465 -1.731764705882353,87.22965134325558,87.22965134325558,0.2710711677547854,0.2710711677547854,-85.56984639443306,-85.56984639443306,0.0037636467553388278,0.0037636467553388278 -1.7341176470588235,87.79298036409449,87.79298036409449,0.2759170312969731,0.2759170312969731,-86.14530792879799,-86.14530792879799,0.003712125668989099,0.003712125668989099 -1.7364705882352938,88.35975079055055,88.35975079055055,0.26902576657541233,0.26902576657541233,-86.72679116403678,-86.72679116403678,0.0038364657801747267,0.0038364657801747267 -1.7388235294117647,88.90068879505947,88.90068879505947,0.2524967384956551,0.2524967384956551,-87.28621478815116,-87.28621478815116,0.004127633843602774,0.004127633843602774 -1.7411764705882353,89.4002493334586,89.4002493334586,0.23244116804796489,0.23244116804796489,-87.80877680475875,-87.80877680475875,0.004526719129587284,0.004526719129587284 -1.743529411764706,89.85990411282954,89.85990411282954,0.21381449268554148,0.21381449268554148,-88.29540554584939,-88.29540554584939,0.004957325426720961,0.004957325426720961 -1.7458823529411764,90.28977179835844,90.28977179835844,0.19873378147119394,0.19873378147119394,-88.7546220705041,-88.7546220705041,0.005350991319154013,0.005350991319154013 -1.748235294117647,90.70203106576139,90.70203106576139,0.18772521346440943,0.18772521346440943,-89.19658827850469,-89.19658827850469,0.005656558822414178,0.005656558822414178 -1.7505882352941176,91.10821736370254,91.10821736370254,0.1807140081374519,0.1807140081374519,-89.63060419487715,-89.63060419487715,0.005842893378917486,0.005842893378917486 -1.7529411764705882,91.51853968242648,91.51853968242648,0.17742712953599576,0.17742712953599576,-90.06511498734123,-90.06511498734123,0.005898204973247381,0.005898204973247381 -1.7552941176470591,91.94227039694245,91.94227039694245,0.17769341473176944,0.17769341473176944,-90.50806552913016,-90.50806552913016,0.005830928532180298,0.005830928532180298 -1.7576470588235293,92.38687954939734,92.38687954939734,0.1811631874360316,0.1811631874360316,-90.9670192636835,-90.9670192636835,0.00567039496882135,0.00567039496882135 -1.76,92.85777767450139,92.85777767450139,0.187046415812323,0.187046415812323,-91.44856923903275,-91.44856923903275,0.005466192697339168,0.005466192697339168 -1.7623529411764705,93.35618780630988,93.35618780630988,0.19352628925267343,0.19352628925267343,-91.95631827045301,-91.95631827045301,0.005284382379827172,0.005284382379827172 -1.7647058823529411,93.87601435312598,93.87601435312598,0.19790816640390815,0.19790816640390815,-92.48700271319684,-92.48700271319684,0.005196084510553515,0.005196084510553515 -1.7670588235294116,94.40290547846605,94.40290547846605,0.19744999467681718,0.19744999467681718,-93.02859032993044,-93.02859032993044,0.005255908077663177,0.005255908077663177 -1.7694117647058827,94.91818988008637,94.91818988008637,0.1915256687800762,0.1915256687800762,-93.5638645172194,-93.5638645172194,0.005477616710346407,0.005477616710346407 -1.7717647058823531,95.4078959861445,95.4078959861445,0.18167292723131534,0.18167292723131534,-94.07874496861949,-94.07874496861949,0.005830731623359289,0.005830731623359289 -1.7741176470588236,95.86764690269077,95.86764690269077,0.17041501193617858,0.17041501193617858,-94.56788628577986,-94.56788628577986,0.00625458069055269,0.00625458069055269 -1.776470588235294,96.30128266413858,96.30128266413858,0.15965795522250348,0.15965795522250348,-95.03325304210297,-95.03325304210297,0.006681875353973913,0.006681875353973913 -1.7788235294117647,96.71738082767683,96.71738082767683,0.15052697330861978,0.15052697330861978,-95.48072554955584,-95.48072554955584,0.0070540404838539544,0.0070540404838539544 -1.7811764705882354,97.12503037525019,97.12503037525019,0.14347382403651182,0.14347382403651182,-95.91711465600103,-95.91711465600103,0.007329024312275459,0.007329024312275459 -1.7835294117647063,97.53331944095798,97.53331944095798,0.13869728327709244,0.13869728327709244,-96.34919489866094,-96.34919489866094,0.007483327248581731,0.007483327248581731 -1.7858823529411765,97.94966399933605,97.94966399933605,0.1362340613328612,0.1362340613328612,-96.78337307613862,-96.78337307613862,0.007512462212009252,0.007512462212009252 -1.7882352941176471,98.38002841370101,98.38002841370101,0.13607378565786943,0.13607378565786943,-97.22560621464943,-97.22560621464943,0.007432126442910929,0.007432126442910929 -1.7905882352941174,98.82827670538543,98.82827670538543,0.1379893838058691,0.1379893838058691,-97.68120224186936,-97.68120224186936,0.007276850064168715,0.007276850064168715 -1.7929411764705883,99.29506800576169,99.29506800576169,0.14139959728832951,0.14139959728832951,-98.15394097284386,-98.15394097284386,0.007098430808934852,0.007098430808934852 -1.795294117647059,99.77788021245802,99.77788021245802,0.14511592216764121,0.14511592216764121,-98.64460647169022,-98.64460647169022,0.006958204862891806,0.006958204862891806 -1.7976470588235294,100.26980564717611,100.26980564717611,0.14757860187293856,0.14757860187293856,-99.149318308488,-99.149318308488,0.006916107621440597,0.006916107621440597 -1.8,100.76060053501708,100.76060053501708,0.1474257569246805,0.1474257569246805,-99.65931020648037,-99.65931020648037,0.007012178551456425,0.007012178551456425 diff --git a/sparameters/rotate_f258530e_fa707732.yml b/sparameters/rotate_f258530e_fa707732.yml deleted file mode 100644 index 050b93ab..00000000 --- a/sparameters/rotate_f258530e_fa707732.yml +++ /dev/null @@ -1,27 +0,0 @@ -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: -8 -compute_time_seconds: 111.01514720916748 -compute_time_minutes: 1.8502524534861247 diff --git a/sparameters/rotate_f258530e_fa7eb155.csv b/sparameters/rotate_f258530e_fa7eb155.csv deleted file mode 100644 index 5630b693..00000000 --- a/sparameters/rotate_f258530e_fa7eb155.csv +++ /dev/null @@ -1,51 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.5,-2.842542736103234,-2.842542736103234,0.00011180685143844132,0.00011180685143844132,1.2577984403367801,1.2577984403367801,0.03134681749913426,0.03134681749913426 -1.5020408163265306,-2.8605590347002985,-2.8605590347002985,0.00014961351932418074,0.00014961351932418074,0.5468006433868551,0.5468006433868551,0.03412094057254409,0.03412094057254409 -1.5040816326530613,-2.8481005875588714,-2.8481005875588714,0.00013443732895116958,0.00013443732895116958,-0.16359436942823202,-0.16359436942823202,0.03706746125159684,0.03706746125159684 -1.506122448979592,-2.8892576530559095,-2.8892576530559095,0.00016776052786696182,0.00016776052786696182,-0.8736521724953715,-0.8736521724953715,0.04018093135289688,0.04018093135289688 -1.5081632653061225,-3.0113195495183325,-3.0113195495183325,0.00014790738848306477,0.00014790738848306477,-1.583287472637511,-1.583287472637511,0.043438550928352214,0.043438550928352214 -1.510204081632653,-3.1623818431614494,-3.1623818431614494,0.00014642091759093376,0.00014642091759093376,-2.292359131299431,-2.292359131299431,0.046809206070625886,0.046809206070625886 -1.5122448979591836,-3.150500230803789,-3.150500230803789,0.00013551544965970685,0.00013551544965970685,-3.0003989974025753,-3.0003989974025753,0.0502514153399239,0.0502514153399239 -1.5142857142857142,-3.1547628722921446,-3.1547628722921446,0.00011087645140140707,0.00011087645140140707,-3.706771423231809,-3.706771423231809,0.05371859303559809,0.05371859303559809 -1.5163265306122449,-3.2041889567763278,-3.2041889567763278,9.542201553586439e-05,9.542201553586439e-05,-4.410752749225593,-4.410752749225593,0.05717472517195321,0.05717472517195321 -1.5183673469387755,-3.134929325061912,-3.134929325061912,0.00010487577597771638,0.00010487577597771638,-5.1116413846487205,-5.1116413846487205,0.06058959647363048,0.06058959647363048 -1.5204081632653061,-3.094633440158296,-3.094633440158296,9.735651050539369e-05,9.735651050539369e-05,-5.808819165405674,-5.808819165405674,0.0639463927988837,0.0639463927988837 -1.5224489795918368,-3.1423933267264976,-3.1423933267264976,0.00010414706022041487,0.00010414706022041487,-6.50181219358808,-6.50181219358808,0.06723990865580672,0.06723990865580672 -1.5244897959183674,-3.2472199588222295,-3.2472199588222295,0.00010907460710575681,0.00010907460710575681,-7.190436879521502,-7.190436879521502,0.07047023679925135,0.07047023679925135 -1.5265306122448983,-3.331251065044981,-3.331251065044981,0.00012318093190829285,0.00012318093190829285,-7.874698042190003,-7.874698042190003,0.07364318889598334,0.07364318889598334 -1.5285714285714287,-3.4121747795618997,-3.4121747795618997,0.00013218750520781476,0.00013218750520781476,-8.554558423666766,-8.554558423666766,0.07675737836605061,0.07675737836605061 -1.530612244897959,-3.3778252087956058,-3.3778252087956058,0.00012688416449617332,0.00012688416449617332,-9.230292941913712,-9.230292941913712,0.07980709554155102,0.07980709554155102 -1.5326530612244897,-3.4905808760102173,-3.4905808760102173,0.00012933088460350797,0.00012933088460350797,-9.901983837898992,-9.901983837898992,0.0827753594277847,0.0827753594277847 -1.5346938775510204,-3.5738203954433043,-3.5738203954433043,0.00012877509386008623,0.00012877509386008623,-10.569769073535044,-10.569769073535044,0.08563628006613112,0.08563628006613112 -1.536734693877551,-3.5525337533786314,-3.5525337533786314,0.00011959959466234908,0.00011959959466234908,-11.233539703516872,-11.233539703516872,0.08835931171119896,0.08835931171119896 -1.5387755102040817,-3.467506917052815,-3.467506917052815,0.00010432938843824841,0.00010432938843824841,-11.893255135950639,-11.893255135950639,0.09091738920195569,0.09091738920195569 -1.5408163265306123,-3.424751017992415,-3.424751017992415,0.00011444205542875378,0.00011444205542875378,-12.548623037707852,-12.548623037707852,0.09328609483628461,0.09328609483628461 -1.542857142857143,-3.5102470095084666,-3.5102470095084666,0.00010957012943343895,0.00010957012943343895,-13.19940254637469,-13.19940254637469,0.09546099098324728,0.09546099098324728 -1.5448979591836736,-3.4402858139519803,-3.4402858139519803,0.00011059016244267086,0.00011059016244267086,-13.84532671614409,-13.84532671614409,0.09744537967263323,0.09744537967263323 -1.546938775510204,-3.4936719425881813,-3.4936719425881813,0.0001138554293231179,0.0001138554293231179,-14.486369412792344,-14.486369412792344,0.09926003191631862,0.09926003191631862 -1.5489795918367348,-3.5816087675040658,-3.5816087675040658,0.00011608400147852883,0.00011608400147852883,-15.122405205518174,-15.122405205518174,0.1009311214325714,0.1009311214325714 -1.5510204081632653,-3.7559595186755215,-3.7559595186755215,0.00011246775856622738,0.00011246775856622738,-15.753643769316861,-15.753643769316861,0.10248903972439062,0.10248903972439062 -1.5530612244897959,-3.7497686740285014,-3.7497686740285014,0.00011468451507801183,0.00011468451507801183,-16.3803303064665,-16.3803303064665,0.1039558727165857,0.1039558727165857 -1.5551020408163265,-3.80690406949862,-3.80690406949862,0.0001074489287324424,0.0001074489287324424,-17.00281335525553,-17.00281335525553,0.1053414722405478,0.1053414722405478 -1.5571428571428572,-3.8841428800132287,-3.8841428800132287,0.00010903672518246274,0.00010903672518246274,-17.62145569950947,-17.62145569950947,0.10664137698796183,0.10664137698796183 -1.5591836734693876,-3.8879472024043804,-3.8879472024043804,0.00011062105103712454,0.00011062105103712454,-18.23648317695523,-18.23648317695523,0.10783707611465831,0.10783707611465831 -1.5612244897959184,-3.8246350904437434,-3.8246350904437434,0.00010307735962699888,0.00010307735962699888,-18.84805829120669,-18.84805829120669,0.10889835531419144,0.10889835531419144 -1.563265306122449,-3.8885350775096326,-3.8885350775096326,0.00010255633894829016,0.00010255633894829016,-19.456159796892102,-19.456159796892102,0.10979763026572731,0.10979763026572731 -1.5653061224489797,-3.8878819227507955,-3.8878819227507955,0.00010660109451870852,0.00010660109451870852,-20.06063122829082,-20.06063122829082,0.1105113802791715,0.1105113802791715 -1.5673469387755101,-3.851744895929357,-3.851744895929357,0.00011010378051609266,0.00011010378051609266,-20.66124223285286,-20.66124223285286,0.11102946737477387,0.11102946737477387 -1.569387755102041,-3.833014733173716,-3.833014733173716,0.00011379833310805427,0.00011379833310805427,-21.257768016902457,-21.257768016902457,0.11136365340640926,0.11136365340640926 -1.5714285714285714,-3.9214292608993224,-3.9214292608993224,0.0001179573102634609,0.0001179573102634609,-21.849983678278093,-21.849983678278093,0.11153455335903167,0.11153455335903167 -1.573469387755102,-3.973412975739456,-3.973412975739456,0.0001183487833437479,0.0001183487833437479,-22.4378162596286,-22.4378162596286,0.11157975510832346,0.11157975510832346 -1.5755102040816327,-3.9430969841810826,-3.9430969841810826,9.595977319590839e-05,9.595977319590839e-05,-23.021405899242833,-23.021405899242833,0.1115375724085076,0.1115375724085076 -1.577551020408163,-4.082399768607444,-4.082399768607444,0.00010171940345290733,0.00010171940345290733,-23.600883990729905,-23.600883990729905,0.11143815328972224,0.11143815328972224 -1.579591836734694,-4.203806806758605,-4.203806806758605,9.189151769692186e-05,9.189151769692186e-05,-24.176585026511212,-24.176585026511212,0.11130136212872734,0.11130136212872734 -1.5816326530612246,-4.134202867499453,-4.134202867499453,8.770191608138346e-05,8.770191608138346e-05,-24.748886037040904,-24.748886037040904,0.11112958750442235,0.11112958750442235 -1.5836734693877552,-4.2072675151105905,-4.2072675151105905,8.708216311244631e-05,8.708216311244631e-05,-25.317987047141248,-25.317987047141248,0.1109092325538689,0.1109092325538689 -1.5857142857142859,-4.186458334188073,-4.186458334188073,9.034463747496825e-05,9.034463747496825e-05,-25.884093506194635,-25.884093506194635,0.11061673719464496,0.11061673719464496 -1.5877551020408165,-4.138366069321313,-4.138366069321313,9.387476201210587e-05,9.387476201210587e-05,-26.447125986656665,-26.447125986656665,0.11022821661105214,0.11022821661105214 -1.5897959183673471,-4.254911745832011,-4.254911745832011,9.857570316477586e-05,9.857570316477586e-05,-27.007018222692743,-27.007018222692743,0.109728559833852,0.109728559833852 -1.5918367346938775,-4.2333084416120865,-4.2333084416120865,0.00010636590594840077,0.00010636590594840077,-27.56355690230499,-27.56355690230499,0.10911181987503049,0.10911181987503049 -1.593877551020408,-4.329938083131179,-4.329938083131179,0.0001045778087379173,0.0001045778087379173,-28.116528940271774,-28.116528940271774,0.10839053187613666,0.10839053187613666 -1.5959183673469388,-4.484221668625777,-4.484221668625777,0.00010267295087867153,0.00010267295087867153,-28.665830977436475,-28.665830977436475,0.1075857144267537,0.1075857144267537 -1.5979591836734695,-4.527012187709885,-4.527012187709885,0.00010599558583159664,0.00010599558583159664,-29.211296796664787,-29.211296796664787,0.10672654898508428,0.10672654898508428 -1.6,-4.541733651258401,-4.541733651258401,9.98486899116174e-05,9.98486899116174e-05,-29.753143312493414,-29.753143312493414,0.1058388660797397,0.1058388660797397 diff --git a/sparameters/rotate_f258530e_fa7eb155.yml b/sparameters/rotate_f258530e_fa7eb155.yml deleted file mode 100644 index f7738454..00000000 --- a/sparameters/rotate_f258530e_fa7eb155.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 31 -fiber_xoffset: 31 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 258.89413619041443 -compute_time_minutes: 4.314902269840241 diff --git a/sparameters/rotate_f258530e_ff85c8d5.csv b/sparameters/rotate_f258530e_ff85c8d5.csv deleted file mode 100644 index 4443a6a6..00000000 --- a/sparameters/rotate_f258530e_ff85c8d5.csv +++ /dev/null @@ -1,257 +0,0 @@ -wavelengths,s11a,s22a,s11m,s22m,s12a,s21a,s12m,s21m -1.2,-1.6315781765729502,-1.6315781765729502,0.018694732218192272,0.018694732218192272,1.9872581276703571,1.9872581276703571,0.0004659783753170722,0.0004659783753170722 -1.2023529411764706,-1.4072808557388095,-1.4072808557388095,0.0035997288670583257,0.0035997288670583257,4.38364356166981,4.38364356166981,0.0011514028066866987,0.0011514028066866987 -1.204705882352941,1.58344596471085,1.58344596471085,0.0012675314626267608,0.0012675314626267608,2.6479313767383608,2.6479313767383608,0.002811518242421449,0.002811518242421449 -1.2070588235294117,4.440877724857225,4.440877724857225,0.001502197669700772,0.001502197669700772,1.083658377685325,1.083658377685325,0.003903469814270659,0.003903469814270659 -1.2094117647058824,7.132096245852493,7.132096245852493,0.0010714884553692545,0.0010714884553692545,-0.37431209707863233,-0.37431209707863233,0.004013230153522385,0.004013230153522385 -1.2117647058823529,9.38322550435062,9.38322550435062,0.0011199676662103104,0.0011199676662103104,-1.6305732307623872,-1.6305732307623872,0.0033650966928202666,0.0033650966928202666 -1.2141176470588235,11.723952405387198,11.723952405387198,0.006169474905966172,0.006169474905966172,-2.599668624692445,-2.599668624692445,0.0030329208190635615,0.0030329208190635615 -1.216470588235294,9.728786644714997,9.728786644714997,0.0032826279046838723,0.0032826279046838723,-3.6678843438333044,-3.6678843438333044,0.0037484568514523126,0.0037484568514523126 -1.2188235294117646,12.034882157636748,12.034882157636748,0.001500775847278072,0.001500775847278072,-5.059412215408135,-5.059412215408135,0.004575374174529524,0.004575374174529524 -1.2211764705882353,14.14328101291828,14.14328101291828,0.0009258544589963817,0.0009258544589963817,-6.6612445371525935,-6.6612445371525935,0.004824709640837403,0.004824709640837403 -1.2235294117647058,13.922228879746575,13.922228879746575,0.0036155376400812864,0.0036155376400812864,-8.412667614280197,-8.412667614280197,0.0046139854873206015,0.0046139854873206015 -1.2258823529411764,16.19653531915178,16.19653531915178,0.002810744947622913,0.002810744947622913,-10.255080154741563,-10.255080154741563,0.00449457210702505,0.00449457210702505 -1.228235294117647,15.84071622486612,15.84071622486612,0.0020267429935077273,0.0020267429935077273,-12.027653845957197,-12.027653845957197,0.00465684355350158,0.00465684355350158 -1.2305882352941175,16.38917278179246,16.38917278179246,0.0004995500700192441,0.0004995500700192441,-13.63127732258268,-13.63127732258268,0.004861970325940393,0.004861970325940393 -1.2329411764705882,18.303115241133263,18.303115241133263,0.00043296333529415704,0.00043296333529415704,-15.05537745757014,-15.05537745757014,0.00512635911017031,0.00512635911017031 -1.2352941176470589,17.355146226153746,17.355146226153746,0.0015279690032321913,0.0015279690032321913,-16.387839335900747,-16.387839335900747,0.005768835679757937,0.005768835679757937 -1.2376470588235293,17.482679993547347,17.482679993547347,0.0008429309409540848,0.0008429309409540848,-17.767541303740064,-17.767541303740064,0.006993287038086237,0.006993287038086237 -1.24,18.926130750766347,18.926130750766347,0.0009100584880826225,0.0009100584880826225,-19.25968238932741,-19.25968238932741,0.008480903475796574,0.008480903475796574 -1.2423529411764704,20.508505705925533,20.508505705925533,0.000275856416856991,0.000275856416856991,-20.84824893860545,-20.84824893860545,0.009882033175249728,0.009882033175249728 -1.244705882352941,21.114753401436925,21.114753401436925,0.0007281853101118784,0.0007281853101118784,-22.498685232596973,-22.498685232596973,0.011027211818430147,0.011027211818430147 -1.2470588235294118,21.15120525763236,21.15120525763236,0.0007319648968279359,0.0007319648968279359,-24.180681372064537,-24.180681372064537,0.01178183089862051,0.01178183089862051 -1.2494117647058822,21.605492214570543,21.605492214570543,0.0008982583655384756,0.0008982583655384756,-25.873646744553735,-25.873646744553735,0.011965017690142285,0.011965017690142285 -1.251764705882353,22.239370687327913,22.239370687327913,0.0003437164700574265,0.0003437164700574265,-27.57542999457642,-27.57542999457642,0.011418610247637543,0.011418610247637543 -1.2541176470588236,22.777263453053514,22.777263453053514,0.0005524974542484872,0.0005524974542484872,-29.303242603727902,-29.303242603727902,0.010134268136164892,0.010134268136164892 -1.256470588235294,24.268686499780408,24.268686499780408,0.0004166072507485723,0.0004166072507485723,-31.09086436018814,-31.09086436018814,0.008447286947543962,0.008447286947543962 -1.2588235294117647,26.568022325924538,26.568022325924538,0.0004846574881350318,0.0004846574881350318,-32.96821738252907,-32.96821738252907,0.00695789055209993,0.00695789055209993 -1.2611764705882353,27.03083008667326,27.03083008667326,0.000790626391280298,0.000790626391280298,-34.895733457529865,-34.895733457529865,0.006143608607034997,0.006143608607034997 -1.2635294117647058,27.17451891661816,27.17451891661816,0.0006961989961509183,0.0006961989961509183,-36.76293733104523,-36.76293733104523,0.0058077631742887844,0.0058077631742887844 -1.2658823529411765,28.14544673624009,28.14544673624009,0.0007898469309676127,0.0007898469309676127,-38.521246325374044,-38.521246325374044,0.00531418870214154,0.00531418870214154 -1.268235294117647,31.140718829632867,31.140718829632867,0.0004144548289163238,0.0004144548289163238,-40.20862503462646,-40.20862503462646,0.004317451909592899,0.004317451909592899 -1.2705882352941176,30.682185148071763,30.682185148071763,0.0021248442751008547,0.0021248442751008547,-41.89403534594211,-41.89403534594211,0.0029130141002300133,0.0029130141002300133 -1.2729411764705882,30.692671372868382,30.692671372868382,0.004200245511730286,0.004200245511730286,-43.728742038393456,-43.728742038393456,0.001490139474255566,0.001490139474255566 -1.2752941176470587,31.966771435337918,31.966771435337918,0.004071535141875005,0.004071535141875005,-46.30035363589178,-46.30035363589178,0.0007373972784467738,0.0007373972784467738 -1.2776470588235294,34.34187957670191,34.34187957670191,0.0043113125563598205,0.0043113125563598205,-48.717406494203644,-48.717406494203644,0.0010072026174429143,0.0010072026174429143 -1.28,35.232292684920765,35.232292684920765,0.0037159785336511853,0.0037159785336511853,-50.530952064288485,-50.530952064288485,0.00111573351644823,0.00111573351644823 -1.2823529411764705,36.6183951136938,36.6183951136938,0.0038741690191091186,0.0038741690191091186,-52.30065983529539,-52.30065983529539,0.0008751737911185396,0.0008751737911185396 -1.2847058823529411,37.10660871721786,37.10660871721786,0.00432676425000714,0.00432676425000714,-54.363228923086865,-54.363228923086865,0.0005505318192410921,0.0005505318192410921 -1.2870588235294118,36.52889469661196,36.52889469661196,0.004002519156694917,0.004002519156694917,-56.76349983380478,-56.76349983380478,0.0005017716491312938,0.0005017716491312938 -1.2894117647058823,33.475466641378624,33.475466641378624,0.003293387594788619,0.003293387594788619,-58.761801309067216,-58.761801309067216,0.0005945125368648692,0.0005945125368648692 -1.291764705882353,35.48550130046226,35.48550130046226,0.004081025152149418,0.004081025152149418,-60.5486013450878,-60.5486013450878,0.0005514108320098217,0.0005514108320098217 -1.2941176470588236,36.95164164447405,36.95164164447405,0.007402840246011843,0.007402840246011843,-62.4559591091895,-62.4559591091895,0.0003943447527783126,0.0003943447527783126 -1.296470588235294,37.870668431062086,37.870668431062086,0.0070888813595011415,0.0070888813595011415,-64.75042789170968,-64.75042789170968,0.00030551107751676743,0.00030551107751676743 -1.2988235294117647,38.78182063450403,38.78182063450403,0.004793225545019878,0.004793225545019878,-66.89505448180238,-66.89505448180238,0.0003709721153878627,0.0003709721153878627 -1.3011764705882352,36.22148393751839,36.22148393751839,0.0020507041930816435,0.0020507041930816435,-68.69195179079833,-68.69195179079833,0.00040682746240878695,0.00040682746240878695 -1.3035294117647058,35.542524495518904,35.542524495518904,0.004279366884138236,0.004279366884138236,-70.43001861950624,-70.43001861950624,0.0003419042887216121,0.0003419042887216121 -1.3058823529411765,35.88600454609876,35.88600454609876,0.00382014326066927,0.00382014326066927,-72.38625458650766,-72.38625458650766,0.00022560998687021826,0.00022560998687021826 -1.308235294117647,36.856791067555726,36.856791067555726,0.007791674565360615,0.007791674565360615,-74.7953494790319,-74.7953494790319,0.0001941997515507105,0.0001941997515507105 -1.3105882352941176,38.77415808294584,38.77415808294584,0.0072716364518484854,0.0072716364518484854,-76.84941346045464,-76.84941346045464,0.00026345581156592916,0.00026345581156592916 -1.3129411764705883,38.62281742410886,38.62281742410886,0.003051954857154049,0.003051954857154049,-78.57247624905655,-78.57247624905655,0.00030053137413174624,0.00030053137413174624 -1.3152941176470587,40.18871220771572,40.18871220771572,0.0041926284296075434,0.0041926284296075434,-80.2133292508741,-80.2133292508741,0.00026256909631785694,0.00026256909631785694 -1.3176470588235294,43.279524567661944,43.279524567661944,0.016604088231799225,0.016604088231799225,-81.98058186023366,-81.98058186023366,0.00016812705087792772,0.00016812705087792772 -1.32,41.781730162657716,41.781730162657716,0.0056883665254055995,0.0056883665254055995,-84.47008505016132,-84.47008505016132,0.00010082306094977574,0.00010082306094977574 -1.3223529411764705,44.72809143172346,44.72809143172346,0.008809487894821978,0.008809487894821978,-86.80911758904182,-86.80911758904182,0.00017802293485697003,0.00017802293485697003 -1.3247058823529412,44.128255442816624,44.128255442816624,0.003280838169179233,0.003280838169179233,-88.4254448014108,-88.4254448014108,0.0002571520461418367,0.0002571520461418367 -1.3270588235294118,43.32050487425049,43.32050487425049,0.0022555748032516442,0.0022555748032516442,-89.88018464377693,-89.88018464377693,0.00026300174213777155,0.00026300174213777155 -1.3294117647058823,45.388698690777275,45.388698690777275,0.00388459468933675,0.00388459468933675,-91.24198378038334,-91.24198378038334,0.00018353579076857114,0.00018353579076857114 -1.331764705882353,47.596345798659215,47.596345798659215,0.03253471759671216,0.03253471759671216,-92.27058758737478,-92.27058758737478,3.578942768943342e-05,3.578942768943342e-05 -1.3341176470588234,50.68923609364816,50.68923609364816,0.0073364086791990685,0.0073364086791990685,-90.83677317494781,-90.83677317494781,0.00014082710070858467,0.00014082710070858467 -1.336470588235294,53.58682758155343,53.58682758155343,0.0046475958046830424,0.0046475958046830424,-92.02216632024758,-92.02216632024758,0.00028054902435617517,0.00028054902435617517 -1.3388235294117647,55.57198341207937,55.57198341207937,0.003682141104406034,0.003682141104406034,-93.1674311681686,-93.1674311681686,0.0003392279735151778,0.0003392279735151778 -1.3411764705882352,56.924259251592915,56.924259251592915,0.004228858839007471,0.004228858839007471,-94.17755866128982,-94.17755866128982,0.00029494938214636525,0.00029494938214636525 -1.3435294117647059,54.88512733827903,54.88512733827903,0.000952766896203495,0.000952766896203495,-94.75522318688618,-94.75522318688618,0.00020169221635244158,0.00020169221635244158 -1.3458823529411765,53.593941449164674,53.593941449164674,0.004292539343432115,0.004292539343432115,-94.88117952032158,-94.88117952032158,0.00024819954401311635,0.00024819954401311635 -1.348235294117647,50.49303958501541,50.49303958501541,0.0040542331722168,0.0040542331722168,-95.56016004592911,-95.56016004592911,0.00040997881162619954,0.00040997881162619954 -1.3505882352941176,48.02400443069461,48.02400443069461,0.0010868124699485828,0.0010868124699485828,-96.44595457873626,-96.44595457873626,0.0005255803093868355,0.0005255803093868355 -1.3529411764705883,50.06768032665863,50.06768032665863,0.0006993052679831325,0.0006993052679831325,-97.30077002673177,-97.30077002673177,0.0005484336560657954,0.0005484336560657954 -1.3552941176470588,50.93872858134259,50.93872858134259,0.0017785074012272714,0.0017785074012272714,-97.98583628669533,-97.98583628669533,0.0005183452792886232,0.0005183452792886232 -1.3576470588235294,52.81652290093333,52.81652290093333,0.0016756649689882758,0.0016756649689882758,-98.4958313443808,-98.4958313443808,0.0005533476770908884,0.0005533476770908884 -1.3599999999999999,51.35226862431632,51.35226862431632,0.003932470837025285,0.003932470837025285,-99.09123834311697,-99.09123834311697,0.0007078182886833634,0.0007078182886833634 -1.3623529411764705,50.37441317292952,50.37441317292952,0.0006778640848337519,0.0006778640848337519,-99.83830805727318,-99.83830805727318,0.0008881263977079411,0.0008881263977079411 -1.3647058823529412,49.49326332468613,49.49326332468613,0.000312770099812963,0.000312770099812963,-100.62824018967119,-100.62824018967119,0.001006363751469774,0.001006363751469774 -1.3670588235294117,48.486736165686466,48.486736165686466,0.0005544334503781436,0.0005544334503781436,-101.37854747578433,-101.37854747578433,0.001059065012857998,0.001059065012857998 -1.3694117647058823,48.29256593422783,48.29256593422783,0.0005035532537393204,0.0005035532537393204,-102.05895502828007,-102.05895502828007,0.001109842132953821,0.001109842132953821 -1.371764705882353,46.22301625415786,46.22301625415786,0.001215832123757436,0.001215832123757436,-102.71744438887858,-102.71744438887858,0.0012309334671314288,0.0012309334671314288 -1.3741176470588234,44.80136932360274,44.80136932360274,0.0005326151031657477,0.0005326151031657477,-103.42241522505297,-103.42241522505297,0.0014157925217844563,0.0014157925217844563 -1.3764705882352941,44.35410093546267,44.35410093546267,0.0005981109133497099,0.0005981109133497099,-104.18181961062119,-104.18181961062119,0.0015910653129169396,0.0015910653129169396 -1.3788235294117648,43.199543061944446,43.199543061944446,0.0006091433768260941,0.0006091433768260941,-104.95867040341805,-104.95867040341805,0.0016992245258716772,0.0016992245258716772 -1.3811764705882352,41.37319390018728,41.37319390018728,0.0003732577152844006,0.0003732577152844006,-105.71622926678975,-105.71622926678975,0.001739362877895144,0.001739362877895144 -1.383529411764706,41.577092021877704,41.577092021877704,0.0003768096314972602,0.0003768096314972602,-106.43981862114082,-106.43981862114082,0.0017590957041773159,0.0017590957041773159 -1.3858823529411763,44.6622648022328,44.6622648022328,0.00010179799830031729,0.00010179799830031729,-107.14462291786313,-107.14462291786313,0.0018081810795612086,0.0018081810795612086 -1.388235294117647,44.83782247638554,44.83782247638554,0.00022159842450411625,0.00022159842450411625,-107.8620843493856,-107.8620843493856,0.0018900700355862425,0.0018900700355862425 -1.3905882352941177,43.888926995977286,43.888926995977286,0.00018928382017014596,0.00018928382017014596,-108.60465305065988,-108.60465305065988,0.0019563882355068942,0.0019563882355068942 -1.3929411764705881,44.370346272109266,44.370346272109266,0.0002587804501018375,0.0002587804501018375,-109.35889551492798,-109.35889551492798,0.001964187301386979,0.001964187301386979 -1.3952941176470588,47.220082304597454,47.220082304597454,0.0005975169203108505,0.0005975169203108505,-110.10100977142233,-110.10100977142233,0.0019063590712036789,0.0019063590712036789 -1.3976470588235295,47.76982161105185,47.76982161105185,0.00036311794127248675,0.00036311794127248675,-110.81160347401136,-110.81160347401136,0.0018213165247664993,0.0018213165247664993 -1.4,45.149782454093526,45.149782454093526,0.00015651110639724905,0.00015651110639724905,-111.4954082309362,-111.4954082309362,0.0017574799891428646,0.0017574799891428646 -1.4023529411764706,46.263068586489936,46.263068586489936,0.00019435205948108947,0.00019435205948108947,-112.17698731805693,-112.17698731805693,0.001731086875499504,0.001731086875499504 -1.4047058823529412,43.78195119639461,43.78195119639461,0.000344166098327924,0.000344166098327924,-112.87644062392296,-112.87644062392296,0.00171210183695696,0.00171210183695696 -1.4070588235294117,42.93264357900372,42.93264357900372,0.00034540115151896676,0.00034540115151896676,-113.58974872325597,-113.58974872325597,0.0016608782793010035,0.0016608782793010035 -1.4094117647058824,42.625319292768424,42.625319292768424,0.00035501483377060915,0.00035501483377060915,-114.29373617632442,-114.29373617632442,0.0015625707860826682,0.0015625707860826682 -1.4117647058823528,42.06277770807171,42.06277770807171,0.0005349964411837071,0.0005349964411837071,-114.96476190762684,-114.96476190762684,0.0014445538749200168,0.0014445538749200168 -1.4141176470588235,40.509851353783134,40.509851353783134,0.00032807819587243913,0.00032807819587243913,-115.59870820509411,-115.59870820509411,0.0013542075326543805,0.0013542075326543805 -1.4164705882352941,40.15874081829645,40.15874081829645,0.0002746378950479841,0.0002746378950479841,-116.22033745413937,-116.22033745413937,0.0013145605582485674,0.0013145605582485674 -1.4188235294117646,37.787212380613205,37.787212380613205,0.0005010815485888167,0.0005010815485888167,-116.86229032185804,-116.86229032185804,0.001305444387385526,0.001305444387385526 -1.4211764705882353,36.90237330386613,36.90237330386613,0.0004592963604215588,0.0004592963604215588,-117.52686069293185,-117.52686069293185,0.0012861786236661775,0.0012861786236661775 -1.423529411764706,36.51830547114221,36.51830547114221,0.0008478918530451446,0.0008478918530451446,-118.19080471435497,-118.19080471435497,0.0012371256806454295,0.0012371256806454295 -1.4258823529411764,35.84378180385407,35.84378180385407,0.0003381925042438031,0.0003381925042438031,-118.8273899867042,-118.8273899867042,0.0011739859778806473,0.0011739859778806473 -1.428235294117647,35.7996106447463,35.7996106447463,0.0006757408338497204,0.0006757408338497204,-119.43237079241679,-119.43237079241679,0.0011360809188125723,0.0011360809188125723 -1.4305882352941177,38.624217554361756,38.624217554361756,0.0011336710518639133,0.0011336710518639133,-120.03607907556486,-120.03607907556486,0.0011458678590634856,0.0011458678590634856 -1.4329411764705882,36.36885407852282,36.36885407852282,0.0004146120944875716,0.0004146120944875716,-120.66986545965963,-120.66986545965963,0.0011839365468145479,0.0011839365468145479 -1.4352941176470588,38.699214635229644,38.699214635229644,0.0002707233088853288,0.0002707233088853288,-121.3382679426535,-121.3382679426535,0.001212384114335192,0.001212384114335192 -1.4376470588235293,40.47884330375466,40.47884330375466,0.0009542326117597704,0.0009542326117597704,-122.01992357895286,-122.01992357895286,0.0012080929996784273,0.0012080929996784273 -1.44,41.623469152807544,41.623469152807544,0.0004683622122800508,0.0004683622122800508,-122.69096266820807,-122.69096266820807,0.001176910055401769,0.001176910055401769 -1.4423529411764706,40.69211024473979,40.69211024473979,0.0005637991698628582,0.0005637991698628582,-123.34077798526876,-123.34077798526876,0.001144922242659891,0.001144922242659891 -1.444705882352941,40.34220652332249,40.34220652332249,0.00031000928453183096,0.00031000928453183096,-123.98321501815694,-123.98321501815694,0.001136163514444714,0.001136163514444714 -1.4470588235294117,40.22834870439058,40.22834870439058,0.0004609590026953138,0.0004609590026953138,-124.64440609354857,-124.64440609354857,0.001150345189607695,0.001150345189607695 -1.4494117647058824,43.15325915714988,43.15325915714988,0.0007197494530894958,0.0007197494530894958,-125.33981986810501,-125.33981986810501,0.0011644166080479253,0.0011644166080479253 -1.4517647058823528,42.52897190173187,42.52897190173187,0.0006272501839183355,0.0006272501839183355,-126.06293716927345,-126.06293716927345,0.0011527843611036654,0.0011527843611036654 -1.4541176470588235,42.44947051029759,42.44947051029759,0.0006177101197175717,0.0006177101197175717,-126.79935822439998,-126.79935822439998,0.0011112905927147022,0.0011112905927147022 -1.4564705882352942,42.74744457454034,42.74744457454034,0.001251516355946426,0.001251516355946426,-127.53340300211639,-127.53340300211639,0.0010526962808411508,0.0010526962808411508 -1.4588235294117646,41.98709929163587,41.98709929163587,0.00024864847125604213,0.00024864847125604213,-128.26388834403343,-128.26388834403343,0.0009998470338499958,0.0009998470338499958 -1.4611764705882353,40.56893820460019,40.56893820460019,0.00038425868699545895,0.00038425868699545895,-129.00244684142075,-129.00244684142075,0.000975811355379064,0.000975811355379064 -1.4635294117647057,39.95952341307113,39.95952341307113,0.0003372899899086028,0.0003372899899086028,-129.77095085866415,-129.77095085866415,0.0009902702060798842,0.0009902702060798842 -1.4658823529411764,38.23063091183115,38.23063091183115,0.0009576136627749825,0.0009576136627749825,-130.57778032454388,-130.57778032454388,0.0010427051174907555,0.0010427051174907555 -1.468235294117647,38.15039148378969,38.15039148378969,0.0007357622374851563,0.0007357622374851563,-131.41061336897283,-131.41061336897283,0.0011290370857800112,0.0011290370857800112 -1.4705882352941178,37.92504488238782,37.92504488238782,0.00030752884740164576,0.00030752884740164576,-132.24593223987503,-132.24593223987503,0.0012517563212577048,0.0012517563212577048 -1.4729411764705882,35.25203914602266,35.25203914602266,0.0003432039178242887,0.0003432039178242887,-133.0578158818047,-133.0578158818047,0.0014125367467493922,0.0014125367467493922 -1.4752941176470589,35.30416507227781,35.30416507227781,0.00020626118493833454,0.00020626118493833454,-133.83267246405708,-133.83267246405708,0.001619542002453087,0.001619542002453087 -1.4776470588235295,34.95634532652666,34.95634532652666,0.0006277193206770699,0.0006277193206770699,-134.57124178965813,-134.57124178965813,0.001885731671357302,0.001885731671357302 -1.48,35.11139499105149,35.11139499105149,0.00021337036353317982,0.00021337036353317982,-135.28315785044268,-135.28315785044268,0.0022253447505772455,0.0022253447505772455 -1.4823529411764707,34.140066978433694,34.140066978433694,0.00025497890822761535,0.00025497890822761535,-135.9806421413299,-135.9806421413299,0.0026403624684437728,0.0026403624684437728 -1.484705882352941,32.890468541980404,32.890468541980404,4.8489876393534833e-05,4.8489876393534833e-05,-136.67026608778687,-136.67026608778687,0.0031192185689999726,0.0031192185689999726 -1.4870588235294118,35.45782490915347,35.45782490915347,0.00020821745684017578,0.00020821745684017578,-137.35251948398687,-137.35251948398687,0.003642377143409678,0.003642377143409678 -1.4894117647058822,37.159461399373924,37.159461399373924,9.423851373332978e-05,9.423851373332978e-05,-138.0245700173477,-138.0245700173477,0.004189584982614053,0.004189584982614053 -1.4917647058823529,35.63108079725887,35.63108079725887,0.00028110458822480893,0.00028110458822480893,-138.6828366773594,-138.6828366773594,0.004752127567969968,0.004752127567969968 -1.4941176470588236,35.896268715029784,35.896268715029784,6.507236878702275e-05,6.507236878702275e-05,-139.32693641169223,-139.32693641169223,0.005336550985660356,0.005336550985660356 -1.4964705882352942,34.676926668412435,34.676926668412435,0.00022402816537449242,0.00022402816537449242,-139.95776412686652,-139.95776412686652,0.0059523584343402075,0.0059523584343402075 -1.4988235294117647,33.704270491511096,33.704270491511096,0.00036652924177043547,0.00036652924177043547,-140.57815709637168,-140.57815709637168,0.006602820747018014,0.006602820747018014 -1.5011764705882353,34.26230982221363,34.26230982221363,9.985384347533672e-05,9.985384347533672e-05,-141.18899208062325,-141.18899208062325,0.0072813681706531495,0.0072813681706531495 -1.5035294117647058,33.68328902017431,33.68328902017431,6.232923483335817e-05,6.232923483335817e-05,-141.78927614812238,-141.78927614812238,0.00797596052431778,0.00797596052431778 -1.5058823529411764,34.9577054702209,34.9577054702209,0.00011297687168874465,0.00011297687168874465,-142.37615989350672,-142.37615989350672,0.008689181402071129,0.008689181402071129 -1.5082352941176471,34.98500323170352,34.98500323170352,0.00013290066974097864,0.00013290066974097864,-142.94739117654703,-142.94739117654703,0.009456242638656106,0.009456242638656106 -1.5105882352941176,34.824855820333866,34.824855820333866,0.00017005462282914462,0.00017005462282914462,-143.50333900642087,-143.50333900642087,0.010341868534219895,0.010341868534219895 -1.5129411764705882,34.576131798925864,34.576131798925864,0.00019046121011634054,0.00019046121011634054,-144.04839780994314,-144.04839780994314,0.011430181786487215,0.011430181786487215 -1.5152941176470587,34.32930405802984,34.32930405802984,0.00015878395867779596,0.00015878395867779596,-144.589178410739,-144.589178410739,0.012786060104389674,0.012786060104389674 -1.5176470588235293,34.32073519626706,34.32073519626706,0.00012964187910915028,0.00012964187910915028,-145.13127175674754,-145.13127175674754,0.014454698526415882,0.014454698526415882 -1.52,34.60437683685495,34.60437683685495,9.991398952729528e-05,9.991398952729528e-05,-145.677538336319,-145.677538336319,0.01645469173117278,0.01645469173117278 -1.5223529411764707,34.77359405214078,34.77359405214078,0.00011227901296735897,0.00011227901296735897,-146.22847283552744,-146.22847283552744,0.01880905596928904,0.01880905596928904 -1.5247058823529411,34.83493806073498,34.83493806073498,0.00013153041636678936,0.00013153041636678936,-146.78400525071086,-146.78400525071086,0.021561728137653596,0.021561728137653596 -1.5270588235294118,34.55116571636266,34.55116571636266,0.00014361486222668106,0.00014361486222668106,-147.34467176394637,-147.34467176394637,0.02477091419805464,0.02477091419805464 -1.5294117647058822,34.36532760069347,34.36532760069347,0.0001390008090591278,0.0001390008090591278,-147.9116781515506,-147.9116781515506,0.028487369882165797,0.028487369882165797 -1.531764705882353,34.31458347138679,34.31458347138679,0.00013647288813706016,0.00013647288813706016,-148.48603591971985,-148.48603591971985,0.03272797940170696,0.03272797940170696 -1.5341176470588236,34.26876384851743,34.26876384851743,0.00011778774730257166,0.00011778774730257166,-149.06775554043435,-149.06775554043435,0.03746550332957034,0.03746550332957034 -1.536470588235294,34.30064547632632,34.30064547632632,0.00010148928447362746,0.00010148928447362746,-149.65562528710453,-149.65562528710453,0.04263006668927331,0.04263006668927331 -1.5388235294117647,34.45832078184038,34.45832078184038,0.00011264545781598856,0.00011264545781598856,-150.24752551348794,-150.24752551348794,0.048135994764969894,0.048135994764969894 -1.5411764705882351,34.29613277069536,34.29613277069536,0.00011007360494368392,0.00011007360494368392,-150.84123164404542,-150.84123164404542,0.05391338955362105,0.05391338955362105 -1.5435294117647058,34.31328886259872,34.31328886259872,0.00011883739746564837,0.00011883739746564837,-151.4347340538539,-151.4347340538539,0.05992002022615365,0.05992002022615365 -1.5458823529411767,34.173090376804794,34.173090376804794,0.00012324932836864656,0.00012324932836864656,-152.02677495029755,-152.02677495029755,0.06614791593371118,0.06614791593371118 -1.5482352941176472,34.128375344947884,34.128375344947884,0.00010952733436130097,0.00010952733436130097,-152.6166866200507,-152.6166866200507,0.07261121745315234,0.07261121745315234 -1.5505882352941176,34.03942479360269,34.03942479360269,0.00011651243218733899,0.00011651243218733899,-153.20441366002538,-153.20441366002538,0.07932517224344215,0.07932517224344215 -1.5529411764705883,34.02941974242334,34.02941974242334,0.00010801423700486286,0.00010801423700486286,-153.7900944133365,-153.7900944133365,0.0862837153247365,0.0862837153247365 -1.5552941176470587,34.055048577247995,34.055048577247995,0.00010709624603007147,0.00010709624603007147,-154.373910942755,-154.373910942755,0.09346096434520895,0.09346096434520895 -1.5576470588235294,34.065363867091556,34.065363867091556,0.00010355448877070489,0.00010355448877070489,-154.9557678647769,-154.9557678647769,0.10080570590984143,0.10080570590984143 -1.5599999999999998,34.06697176681119,34.06697176681119,0.00011174262969189037,0.00011174262969189037,-155.53542678978312,-155.53542678978312,0.10826198699449943,0.10826198699449943 -1.5623529411764705,33.985114280846375,33.985114280846375,0.00011310698837369946,0.00011310698837369946,-156.1124808076925,-156.1124808076925,0.1157814845906091,0.1157814845906091 -1.5647058823529412,33.923106482537605,33.923106482537605,0.00011099922334119807,0.00011099922334119807,-156.68651185391755,-156.68651185391755,0.12333677774699982,0.12333677774699982 -1.5670588235294118,33.85953186270717,33.85953186270717,0.00010709697948776481,0.00010709697948776481,-157.25720408215074,-157.25720408215074,0.13092631887854927,0.13092631887854927 -1.5694117647058823,33.75152620788537,33.75152620788537,0.00010341623486082941,0.00010341623486082941,-157.82443293101278,-157.82443293101278,0.1385695954076186,0.1385695954076186 -1.571764705882353,33.73685477630098,33.73685477630098,9.643824692764371e-05,9.643824692764371e-05,-158.3881691377331,-158.3881691377331,0.14629578632092016,0.14629578632092016 -1.5741176470588236,33.67551628930918,33.67551628930918,9.715305066981574e-05,9.715305066981574e-05,-158.94865500187427,-158.94865500187427,0.154142429605957,0.154142429605957 -1.576470588235294,33.66098717594084,33.66098717594084,9.37522014215165e-05,9.37522014215165e-05,-159.5061111283055,-159.5061111283055,0.16214132141968832,0.16214132141968832 -1.5788235294117647,33.66307304420758,33.66307304420758,9.41142168843151e-05,9.41142168843151e-05,-160.06087753470834,-160.06087753470834,0.17031356646823753,0.17031356646823753 -1.5811764705882352,33.65213846795206,33.65213846795206,9.588611905474672e-05,9.588611905474672e-05,-160.61338602915214,-160.61338602915214,0.17866089581637393,0.17866089581637393 -1.5835294117647059,33.589190127737986,33.589190127737986,0.0001027342760223021,0.0001027342760223021,-161.16391259499366,-161.16391259499366,0.1871629624572827,0.1871629624572827 -1.5858823529411765,33.47297722474281,33.47297722474281,9.481643574482172e-05,9.481643574482172e-05,-161.71276261226373,-161.71276261226373,0.19577150594146325,0.19577150594146325 -1.5882352941176474,33.42975364454621,33.42975364454621,9.562647495865102e-05,9.562647495865102e-05,-162.2601225114634,-162.2601225114634,0.20441427541968116,0.20441427541968116 -1.5905882352941176,33.40715293216931,33.40715293216931,9.296818606937664e-05,9.296818606937664e-05,-162.80596693315877,-162.80596693315877,0.21300648473612355,0.21300648473612355 -1.592941176470588,33.37294697920662,33.37294697920662,8.9281085202312e-05,8.9281085202312e-05,-163.3502117887864,-163.3502117887864,0.22146273307164607,0.22146273307164607 -1.5952941176470588,33.362936438523356,33.362936438523356,9.089754599878699e-05,9.089754599878699e-05,-163.89267033319416,-163.89267033319416,0.2297131635904295,0.2297131635904295 -1.5976470588235294,33.337220930925504,33.337220930925504,9.352274453857586e-05,9.352274453857586e-05,-164.4331706983564,-164.4331706983564,0.23771245079194697,0.23771245079194697 -1.6,33.322390270243474,33.322390270243474,9.304425460456394e-05,9.304425460456394e-05,-164.9715249547794,-164.9715249547794,0.2454365509787611,0.2454365509787611 -1.6023529411764705,33.26221404368868,33.26221404368868,9.265297465495205e-05,9.265297465495205e-05,-165.50765683984434,-165.50765683984434,0.25287249431484715,0.25287249431484715 -1.6047058823529412,33.221262676925406,33.221262676925406,9.465505130279591e-05,9.465505130279591e-05,-166.0416612669381,-166.0416612669381,0.260009578755467,0.260009578755467 -1.6070588235294117,33.169694577860916,33.169694577860916,8.962101259246752e-05,8.962101259246752e-05,-166.573496014669,-166.573496014669,0.26681967096730647,0.26681967096730647 -1.6094117647058825,33.108539992878825,33.108539992878825,8.979789642569532e-05,8.979789642569532e-05,-167.1032745483823,-167.1032745483823,0.273260629260642,0.273260629260642 -1.611764705882353,33.10193647008659,33.10193647008659,8.515972108910218e-05,8.515972108910218e-05,-167.630965837867,-167.630965837867,0.27927889254638316,0.27927889254638316 -1.6141176470588237,33.07237190224272,33.07237190224272,8.22762394331905e-05,8.22762394331905e-05,-168.15643084521582,-168.15643084521582,0.28482278626524904,0.28482278626524904 -1.616470588235294,33.06028594231913,33.06028594231913,8.132326450268686e-05,8.132326450268686e-05,-168.67955387354465,-168.67955387354465,0.28985718357678697,0.28985718357678697 -1.6188235294117648,33.02059534564833,33.02059534564833,8.159890099117591e-05,8.159890099117591e-05,-169.2002039449404,-169.2002039449404,0.2943689666767322,0.2943689666767322 -1.6211764705882352,32.988829168492195,32.988829168492195,7.673348180050593e-05,7.673348180050593e-05,-169.71816709612787,-169.71816709612787,0.2983664942361049,0.2983664942361049 -1.6235294117647059,32.95072205419104,32.95072205419104,7.858663561451253e-05,7.858663561451253e-05,-170.23346020650476,-170.23346020650476,0.30187388930389186,0.30187388930389186 -1.6258823529411766,32.85494711716263,32.85494711716263,7.969427996949892e-05,7.969427996949892e-05,-170.74596371825382,-170.74596371825382,0.3049184233060822,0.3049184233060822 -1.6282352941176468,32.80190219976571,32.80190219976571,7.60995836109196e-05,7.60995836109196e-05,-171.25568094484277,-171.25568094484277,0.3075254416478232,0.3075254416478232 -1.630588235294118,32.73438419450001,32.73438419450001,7.736297526017539e-05,7.736297526017539e-05,-171.7625900031817,-171.7625900031817,0.30971806234468285,0.30971806234468285 -1.6329411764705881,32.69007550291636,32.69007550291636,7.365772194473991e-05,7.365772194473991e-05,-172.26666903129907,-172.26666903129907,0.31152820162632366,0.31152820162632366 -1.6352941176470588,32.61298181705717,32.61298181705717,7.04989455551859e-05,7.04989455551859e-05,-172.76783178084017,-172.76783178084017,0.31299746083046814,0.31299746083046814 -1.6376470588235295,32.612262372438146,32.612262372438146,7.26726646912277e-05,7.26726646912277e-05,-173.26605348601007,-173.26605348601007,0.31418570697299836,0.31418570697299836 -1.6400000000000001,32.60163575131826,32.60163575131826,7.212209464015121e-05,7.212209464015121e-05,-173.76144631387635,-173.76144631387635,0.3151647437710782,0.3151647437710782 -1.6423529411764706,32.51910455657382,32.51910455657382,7.310770686254021e-05,7.310770686254021e-05,-174.25407790512085,-174.25407790512085,0.31600369013357443,0.31600369013357443 -1.6447058823529415,32.45801797573411,32.45801797573411,7.581162042306017e-05,7.581162042306017e-05,-174.74415979155114,-174.74415979155114,0.3167559742744526,0.3167559742744526 -1.6470588235294117,32.396712741535,32.396712741535,7.64308723604864e-05,7.64308723604864e-05,-175.2318342191169,-175.2318342191169,0.31745239306533146,0.31745239306533146 -1.6494117647058824,32.31424126318207,32.31424126318207,7.350304290820038e-05,7.350304290820038e-05,-175.71737757280232,-175.71737757280232,0.3180979371892406,0.3180979371892406 -1.651764705882353,32.27838596907161,32.27838596907161,7.339541935991653e-05,7.339541935991653e-05,-176.20084206392264,-176.20084206392264,0.3186857944698001,0.3186857944698001 -1.6541176470588237,32.26541593289561,32.26541593289561,7.197875952482732e-05,7.197875952482732e-05,-176.6823623422368,-176.6823623422368,0.31921396725115603,0.31921396725115603 -1.6564705882352944,32.2414349272501,32.2414349272501,7.203423167627351e-05,7.203423167627351e-05,-177.16193858672398,-177.16193858672398,0.31969065707223276,0.31969065707223276 -1.6588235294117644,32.25423314616977,32.25423314616977,7.062042337270732e-05,7.062042337270732e-05,-177.63963385212082,-177.63963385212082,0.3201433415993947,0.3201433415993947 -1.6611764705882353,32.218518265821544,32.218518265821544,7.179357802572012e-05,7.179357802572012e-05,-178.11557086504686,-178.11557086504686,0.3206020593563306,0.3206020593563306 -1.663529411764706,32.19602683006104,32.19602683006104,7.601894305713397e-05,7.601894305713397e-05,-178.58994007495565,-178.58994007495565,0.3210871465155393,0.3210871465155393 -1.6658823529411766,32.138494865101784,32.138494865101784,7.8182417733415e-05,7.8182417733415e-05,-179.0629068470101,-179.0629068470101,0.32159458322070356,0.32159458322070356 -1.668235294117647,32.07464402712399,32.07464402712399,7.59588684349823e-05,7.59588684349823e-05,-179.53468677133975,-179.53468677133975,0.32209473406462485,0.32209473406462485 -1.670588235294118,31.97359869488379,31.97359869488379,7.389891095656976e-05,7.389891095656976e-05,-180.00536495881116,-180.00536495881116,0.32254296016180406,0.32254296016180406 -1.672941176470588,31.936118294030248,31.936118294030248,7.064783458689608e-05,7.064783458689608e-05,-180.47489374286897,-180.47489374286897,0.3229033669904465,0.3229033669904465 -1.6752941176470588,31.942980689997686,31.942980689997686,6.575455388267988e-05,6.575455388267988e-05,-180.94320742459362,-180.94320742459362,0.32316731785121877,0.32316731785121877 -1.6776470588235295,31.921900084238636,31.921900084238636,6.495205522899947e-05,6.495205522899947e-05,-181.41033256066765,-181.41033256066765,0.32335940444691974,0.32335940444691974 -1.68,31.931348436094797,31.931348436094797,6.739880841917358e-05,6.739880841917358e-05,-181.87629578250093,-181.87629578250093,0.3235199606157364,0.3235199606157364 -1.6823529411764706,31.884323576570434,31.884323576570434,6.524205082292831e-05,6.524205082292831e-05,-182.34128233416365,-182.34128233416365,0.32368406259355487,0.32368406259355487 -1.684705882352941,31.8206506261164,31.8206506261164,6.562456417454787e-05,6.562456417454787e-05,-182.80555875659124,-182.80555875659124,0.32384361655951877,0.32384361655951877 -1.6870588235294117,31.782676808259758,31.782676808259758,7.016196388029517e-05,7.016196388029517e-05,-183.2694354753165,-183.2694354753165,0.3239253124247542,0.3239253124247542 -1.6894117647058824,31.72698955714754,31.72698955714754,6.774382569613057e-05,6.774382569613057e-05,-183.733006846724,-183.733006846724,0.3238089229732384,0.3238089229732384 -1.6917647058823528,31.600033467326284,31.600033467326284,6.926554400735003e-05,6.926554400735003e-05,-184.19611162403265,-184.19611162403265,0.3233568459113129,0.3233568459113129 -1.6941176470588235,31.537606468760522,31.537606468760522,6.422926015743048e-05,6.422926015743048e-05,-184.6583017635212,-184.6583017635212,0.3224693330346116,0.3224693330346116 -1.6964705882352942,31.449992596231873,31.449992596231873,6.467921516866887e-05,6.467921516866887e-05,-185.11893667637867,-185.11893667637867,0.32115351670720954,0.32115351670720954 -1.6988235294117644,31.447803376396784,31.447803376396784,5.9216355795937976e-05,5.9216355795937976e-05,-185.5773825968482,-185.5773825968482,0.31954997253720513,0.31954997253720513 -1.7011764705882353,31.48605207607713,31.48605207607713,5.926566299419178e-05,5.926566299419178e-05,-186.033206402873,-186.033206402873,0.3179363885266915,0.3179363885266915 -1.7035294117647062,31.41825612904165,31.41825612904165,6.15425438262516e-05,6.15425438262516e-05,-186.48652468242042,-186.48652468242042,0.3166659554053599,0.3166659554053599 -1.7058823529411766,31.381812254006967,31.381812254006967,6.436081243157164e-05,6.436081243157164e-05,-186.93804532062435,-186.93804532062435,0.31607950503420584,0.31607950503420584 -1.7082352941176469,31.341147495149702,31.341147495149702,6.834178901366121e-05,6.834178901366121e-05,-187.38910876726118,-187.38910876726118,0.31639643970047776,0.31639643970047776 -1.7105882352941175,31.243644049536538,31.243644049536538,7.208994990607374e-05,7.208994990607374e-05,-187.84123078573478,-187.84123078573478,0.3176280677714831,0.3176280677714831 -1.7129411764705882,31.111642688266485,31.111642688266485,7.161882843114639e-05,7.161882843114639e-05,-188.2959944696517,-188.2959944696517,0.3195442294982223,0.3195442294982223 -1.7152941176470589,31.100906993095553,31.100906993095553,7.26677459931299e-05,7.26677459931299e-05,-188.75442810332896,-188.75442810332896,0.32172305367902115,0.32172305367902115 -1.7176470588235295,31.045689208666616,31.045689208666616,7.091622765429863e-05,7.091622765429863e-05,-189.21688466556944,-189.21688466556944,0.3236441275182315,0.3236441275182315 -1.72,31.04554820295421,31.04554820295421,6.754130438878297e-05,6.754130438878297e-05,-189.68297552606077,-189.68297552606077,0.3247968238162049,0.3247968238162049 -1.7223529411764709,30.931712368504925,30.931712368504925,7.087427832224748e-05,7.087427832224748e-05,-190.1518781959054,-190.1518781959054,0.324788554835296,0.324788554835296 -1.7247058823529409,31.054758324244574,31.054758324244574,6.883405616619856e-05,6.883405616619856e-05,-190.62239359194044,-190.62239359194044,0.32340493686993144,0.32340493686993144 -1.7270588235294118,31.022936308219414,31.022936308219414,7.47105141823224e-05,7.47105141823224e-05,-191.09330648794875,-191.09330648794875,0.32062822917119227,0.32062822917119227 -1.7294117647058824,31.04649162664045,31.04649162664045,7.747740547816944e-05,7.747740547816944e-05,-191.563659278445,-191.563659278445,0.3166002850670265,0.3166002850670265 -1.731764705882353,31.000828444277662,31.000828444277662,8.133776839530879e-05,8.133776839530879e-05,-192.03276499430814,-192.03276499430814,0.31157470914513474,0.31157470914513474 -1.7341176470588235,30.920612785409794,30.920612785409794,8.185658409965423e-05,8.185658409965423e-05,-192.50049729978298,-192.50049729978298,0.3058289790469126,0.3058289790469126 -1.7364705882352938,30.9271876182236,30.9271876182236,8.624841672674208e-05,8.624841672674208e-05,-192.96697009543385,-192.96697009543385,0.2995893365601232,0.2995893365601232 -1.7388235294117647,30.79705562440481,30.79705562440481,7.757683195859219e-05,7.757683195859219e-05,-193.43270705925673,-193.43270705925673,0.2929863672345029,0.2929863672345029 -1.7411764705882353,30.760438945601788,30.760438945601788,7.261568726749454e-05,7.261568726749454e-05,-193.8982178887196,-193.8982178887196,0.28603898842778686,0.28603898842778686 -1.743529411764706,30.6809160859626,30.6809160859626,7.332591759322279e-05,7.332591759322279e-05,-194.36392974455828,-194.36392974455828,0.27867358779245427,0.27867358779245427 -1.7458823529411764,30.71450000016694,30.71450000016694,6.958879401974771e-05,6.958879401974771e-05,-194.8299299394765,-194.8299299394765,0.2707640021479356,0.2707640021479356 -1.748235294117647,30.782526753162465,30.782526753162465,6.489646036021307e-05,6.489646036021307e-05,-195.29608746324078,-195.29608746324078,0.2621991378817998,0.2621991378817998 -1.7505882352941176,30.777131601216052,30.777131601216052,7.36080758753593e-05,7.36080758753593e-05,-195.7617865164943,-195.7617865164943,0.2529257829131961,0.2529257829131961 -1.7529411764705882,30.80194777654079,30.80194777654079,7.571880423284133e-05,7.571880423284133e-05,-196.22633476675458,-196.22633476675458,0.24297655296719337,0.24297655296719337 -1.7552941176470591,30.696762646063398,30.696762646063398,7.679785888380703e-05,7.679785888380703e-05,-196.68896456643736,-196.68896456643736,0.23246359977763575,0.23246359977763575 -1.7576470588235293,30.626332417435616,30.626332417435616,8.294085741819782e-05,8.294085741819782e-05,-197.14890374728418,-197.14890374728418,0.22157967785827826,0.22157967785827826 -1.76,30.48102342322719,30.48102342322719,8.314960552811527e-05,8.314960552811527e-05,-197.6056482591181,-197.6056482591181,0.21054090072904055,0.21054090072904055 -1.7623529411764705,30.35871025721487,30.35871025721487,8.727828728857543e-05,8.727828728857543e-05,-198.05897050424522,-198.05897050424522,0.1995656807489426,0.1995656807489426 -1.7647058823529411,30.365059743263988,30.365059743263988,7.744794259797589e-05,7.744794259797589e-05,-198.50892315323492,-198.50892315323492,0.18882122671036464,0.18882122671036464 -1.7670588235294116,30.495344121342242,30.495344121342242,7.182620930640711e-05,7.182620930640711e-05,-198.95574469687136,-198.95574469687136,0.17842307341094266,0.17842307341094266 -1.7694117647058827,30.328099939377584,30.328099939377584,7.92657587188642e-05,7.92657587188642e-05,-199.3998269503791,-199.3998269503791,0.16842296762338732,0.16842296762338732 -1.7717647058823531,30.3412659005274,30.3412659005274,5.75020613806987e-05,5.75020613806987e-05,-199.84142058644076,-199.84142058644076,0.15883294858714725,0.15883294858714725 -1.7741176470588236,30.489153718090378,30.489153718090378,6.516885913039791e-05,6.516885913039791e-05,-200.28071830500193,-200.28071830500193,0.1496294021139198,0.1496294021139198 -1.776470588235294,30.61396309963286,30.61396309963286,7.026453096502622e-05,7.026453096502622e-05,-200.7176424747519,-200.7176424747519,0.14078950367299764,0.14078950367299764 -1.7788235294117647,30.4211931741581,30.4211931741581,9.250041431063449e-05,9.250041431063449e-05,-201.15209252632866,-201.15209252632866,0.1323145988858682,0.1323145988858682 -1.7811764705882354,30.334658968194844,30.334658968194844,9.994732253777762e-05,9.994732253777762e-05,-201.583705385144,-201.583705385144,0.12422491440994188,0.12422491440994188 -1.7835294117647063,30.245961187372103,30.245961187372103,9.206941243421211e-05,9.206941243421211e-05,-202.01231482668481,-202.01231482668481,0.1165541946323208,0.1165541946323208 -1.7858823529411765,30.139561261354714,30.139561261354714,0.00010792039975315333,0.00010792039975315333,-202.43791840381536,-202.43791840381536,0.10934004088099969,0.10934004088099969 -1.7882352941176471,29.758186677932922,29.758186677932922,9.986789598586818e-05,9.986789598586818e-05,-202.86064828893535,-202.86064828893535,0.10260356760931139,0.10260356760931139 -1.7905882352941174,29.72670420198676,29.72670420198676,7.975159424425218e-05,7.975159424425218e-05,-203.28096073839382,-203.28096073839382,0.09635444677558139,0.09635444677558139 -1.7929411764705883,29.858644551347854,29.858644551347854,6.847848005923561e-05,6.847848005923561e-05,-203.69920771784965,-203.69920771784965,0.0905682867036379,0.0905682867036379 -1.795294117647059,29.650485414903837,29.650485414903837,4.8930363289081944e-05,4.8930363289081944e-05,-204.1159029034349,-204.1159029034349,0.08520351300022705,0.08520351300022705 -1.7976470588235294,30.273667063920282,30.273667063920282,4.797183494949755e-05,4.797183494949755e-05,-204.5312422904312,-204.5312422904312,0.0802215576742069,0.0802215576742069 -1.8,30.485000277752647,30.485000277752647,6.04867849425449e-05,6.04867849425449e-05,-204.94535258299734,-204.94535258299734,0.07558051471077372,0.07558051471077372 diff --git a/sparameters/rotate_f258530e_ff85c8d5.yml b/sparameters/rotate_f258530e_ff85c8d5.yml deleted file mode 100644 index 925a98d0..00000000 --- a/sparameters/rotate_f258530e_ff85c8d5.yml +++ /dev/null @@ -1,27 +0,0 @@ -is_3d: false -fiber_angle_deg: 30 -fiber_xoffset: 25 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -material_name_to_tidy3d: - si: 3.47 - sio2: 1.44 - sin: 2 -fiber_port_name: o1 -compute_time_seconds: 294.79233622550964 -compute_time_minutes: 4.913205603758494 diff --git a/sparameters/straight_73688cd2_strai_c537327e_9b8b3405.csv b/sparameters/straight_73688cd2_strai_c537327e_9b8b3405.csv deleted file mode 100644 index 84b2cc51..00000000 --- a/sparameters/straight_73688cd2_strai_c537327e_9b8b3405.csv +++ /dev/null @@ -1,51 +0,0 @@ -s11a,s11m,s21a,s21m,s22m,s22a,s12m,s12a,wavelengths,freqs --3.140158154171617,0.014999085066760528,-1.5982108886740394,1.0000062120633058,0.014999085066760528,-3.140158154171617,1.0000062120633058,-1.5982108886740394,1.5,0.6666666666666666 --3.1400819014673207,0.014961138938567547,-1.652705870084743,1.0000050388637363,0.014961138938567547,-3.1400819014673207,1.0000050388637363,-1.652705870084743,1.5020408163265306,0.6657608695652174 --3.140009829268091,0.014923334278211782,-1.7070506608399278,1.0000038876288064,0.014923334278211782,-3.140009829268091,1.0000038876288064,-1.7070506608399278,1.5040816326530613,0.6648575305291723 --3.1399415702131535,0.014885662674878524,-1.761245883910089,1.0000027624105274,0.014885662674878524,-3.1399415702131535,1.0000027624105274,-1.761245883910089,1.506122448979592,0.6639566395663956 --3.139876707268269,0.014848116539517797,-1.8152921585094917,1.0000016671800098,0.014848116539517797,-3.139876707268269,1.0000016671800098,-1.8152921585094917,1.5081632653061225,0.6630581867388362 --3.139814778077265,0.01481068918540473,-1.869190100427388,1.000000605722477,0.01481068918540473,-3.139814778077265,1.000000605722477,-1.869190100427388,1.510204081632653,0.6621621621621622 --3.1397552806192417,0.014773374903771976,-1.9229403222915014,0.9999995815394778,0.014773374903771976,-3.1397552806192417,0.9999995815394778,-1.9229403222915014,1.5122448979591836,0.6612685560053981 --3.1396976802613006,0.014736169025146335,-1.9765434337659882,0.999998597776236,0.014736169025146335,-3.1396976802613006,0.999998597776236,-1.9765434337659882,1.5142857142857142,0.6603773584905661 --3.1396414179130216,0.014699067957562503,-2.030000041696005,0.9999976571865502,0.014699067957562503,-3.1396414179130216,0.9999976571865502,-2.030000041696005,1.5163265306122449,0.6594885598923285 --3.139585918709436,0.01466206919744222,-2.0833107502160293,0.9999967621358653,0.01466206919744222,-3.139585918709436,0.9999967621358653,-2.0833107502160293,1.5183673469387755,0.6586021505376344 --3.139530600573553,0.014625171313085885,-2.136476160837678,0.9999959146368975,0.014625171313085885,-3.139530600573553,0.9999959146368975,-2.136476160837678,1.5204081632653061,0.6577181208053691 --3.139474882110184,0.014588373906452583,-2.1894968725277075,0.9999951164009694,0.014588373906452583,-3.139474882110184,0.9999951164009694,-2.1894968725277075,1.5224489795918368,0.6568364611260054 --3.139418189550314,0.014551677560819709,-2.2423734817782623,0.9999943688903793,0.014551677560819709,-3.139418189550314,0.9999943688903793,-2.2423734817782623,1.5244897959183674,0.6559571619812583 --3.1393599627507576,0.014515083782452122,-2.2951065826642383,0.9999936733570776,0.014515083782452122,-3.1393599627507576,0.9999936733570776,-2.2951065826642383,1.526530612244898,0.6550802139037433 --3.1392996605118135,0.014478594941652967,-2.347696766877704,0.9999930308616489,0.014478594941652967,-3.1392996605118135,0.9999930308616489,-2.347696766877704,1.5285714285714287,0.6542056074766355 --3.139236765586149,0.014442214216626729,-2.40014462372953,0.999992442271254,0.014442214216626729,-3.139236765586149,0.999992442271254,-2.40014462372953,1.530612244897959,0.6533333333333333 --3.139170789720965,0.014405945536713689,-2.452450740110377,0.9999919082468334,0.014405945536713689,-3.139170789720965,0.9999919082468334,-2.452450740110377,1.5326530612244897,0.6524633821571239 --3.1391012789102675,0.014369793523032881,-2.504615700411471,0.999991429229903,0.014369793523032881,-3.1391012789102675,0.999991429229903,-2.504615700411471,1.5346938775510204,0.6515957446808511 --3.1390278204016213,0.014333761077967551,-2.556640086384077,0.9999910054320058,0.014333761077967551,-3.1390278204016213,0.9999910054320058,-2.556640086384077,1.536734693877551,0.650730411686587 --3.138950041714672,0.014297858661387967,-2.6085244771137823,0.9999906368842126,0.014297858661387967,-3.138950041714672,0.9999906368842126,-2.6085244771137823,1.5387755102040817,0.649867374005305 --3.138867624872377,0.014262090186164198,-2.660269448719147,0.9999903234292171,0.014262090186164198,-3.138867624872377,0.9999903234292171,-2.660269448719147,1.5408163265306123,0.6490066225165563 --3.138780303414234,0.01422646295297993,-2.7118755743525482,0.9999900647728303,0.01422646295297993,-3.138780303414234,0.9999900647728303,-2.7118755743525482,1.542857142857143,0.6481481481481481 --3.138687870447983,0.014190981660556755,-2.7633434239221057,0.9999898607419243,0.014190981660556755,-3.138687870447983,0.9999898607419243,-2.7633434239221057,1.5448979591836736,0.6472919418758256 --3.1385901727676493,0.014155655405453098,-2.8146735642741083,0.999989710960671,0.014155655405453098,-3.1385901727676493,0.999989710960671,-2.8146735642741083,1.5469387755102042,0.646437994722955 --3.1384871175873528,0.01412049138808707,-2.8658665590111045,0.999989615006188,0.01412049138808707,-3.1384871175873528,0.999989615006188,-2.8658665590111045,1.5489795918367348,0.6455862977602107 --3.1383786736468937,0.014085493787600474,-2.9169229680677398,0.9999895731082101,0.014085493787600474,-3.1383786736468937,0.9999895731082101,-2.9169229680677398,1.5510204081632653,0.6447368421052632 --3.1382648602061467,0.014050672167724168,-2.967843348389284,0.9999895850026137,0.014050672167724168,-3.1382648602061467,0.9999895850026137,-2.967843348389284,1.5530612244897959,0.6438896189224704 --3.1381457564373645,0.014016032186717368,-3.0186282533150006,0.9999896507629649,0.014016032186717368,-3.1381457564373645,0.9999896507629649,-3.0186282533150006,1.5551020408163265,0.6430446194225722 --3.138021494677507,0.013981580154351504,-3.069278232763112,0.9999897704712775,0.013981580154351504,-3.138021494677507,0.9999897704712775,-3.069278232763112,1.5571428571428572,0.6422018348623854 --3.1378922589917932,0.01394732284195957,-3.119793833184843,0.9999899442023916,0.01394732284195957,-3.1378922589917932,0.9999899442023916,-3.119793833184843,1.5591836734693878,0.6413612565445026 --3.137758288899461,0.013913263433381359,-3.170175597328048,0.9999901721889001,0.013913263433381359,-3.137758288899461,0.9999901721889001,-3.170175597328048,1.5612244897959184,0.6405228758169934 --3.1376198665475163,0.013879409438712522,-3.2204240645892774,0.9999904544601943,0.013879409438712522,-3.1376198665475163,0.9999904544601943,-3.2204240645892774,1.563265306122449,0.639686684073107 --3.13747732425467,0.013845764924520568,-3.2705397706320154,0.9999907912022693,0.013845764924520568,-3.13747732425467,0.9999907912022693,-3.2705397706320154,1.5653061224489797,0.6388526727509778 --3.1373310360201403,0.013812334032897703,-3.3205232475763853,0.9999911826161771,0.013812334032897703,-3.1373310360201403,0.9999911826161771,-3.3205232475763853,1.5673469387755103,0.6380208333333333 --3.13718141698638,0.013779118167928497,-3.3703750238547894,0.9999916291304748,0.013779118167928497,-3.13718141698638,0.9999916291304748,-3.3703750238547894,1.569387755102041,0.6371911573472041 --3.1370289081901186,0.013746122568019376,-3.420095624882549,0.9999921307640286,0.013746122568019376,-3.1370289081901186,0.9999921307640286,-3.420095624882549,1.5714285714285714,0.6363636363636364 --3.136873982498128,0.01371334833201119,-3.4696855722772257,0.9999926882004577,0.01371334833201119,-3.136873982498128,0.9999926882004577,-3.4696855722772257,1.573469387755102,0.6355382619974059 --3.1367171317164235,0.013680797034501627,-3.519145384688049,0.999993301829307,0.013680797034501627,-3.1367171317164235,0.999993301829307,-3.519145384688049,1.5755102040816327,0.6347150259067358 --3.136558863088728,0.013648469208386034,-3.5684755775540307,0.9999939722287199,0.013648469208386034,-3.136558863088728,0.9999939722287199,-3.5684755775540307,1.5775510204081633,0.6338939197930142 --3.1363996951890303,0.013616363629260116,-3.617676663514413,0.9999946996236105,0.013616363629260116,-3.1363996951890303,0.9999946996236105,-3.617676663514413,1.579591836734694,0.6330749354005167 --3.136240146587973,0.013584481261737742,-3.6667491521932414,0.9999954845619914,0.013584481261737742,-3.136240146587973,0.9999954845619914,-3.6667491521932414,1.5816326530612246,0.632258064516129 --3.136080739877207,0.013552820121886973,-3.715693550520479,0.9999963272433661,0.013552820121886973,-3.136080739877207,0.9999963272433661,-3.715693550520479,1.5836734693877552,0.6314432989690721 --3.1359219926460233,0.013521378246600532,-3.7645103629386814,0.9999972274915132,0.013521378246600532,-3.1359219926460233,0.9999972274915132,-3.7645103629386814,1.5857142857142859,0.6306306306306306 --3.13576441427733,0.01349015307300355,-3.813200091089378,0.9999981853006824,0.01349015307300355,-3.13576441427733,0.9999981853006824,-3.813200091089378,1.5877551020408165,0.6298200514138816 --3.1356084999528973,0.013459142289950494,-3.8617632343405086,0.9999992002554581,0.013459142289950494,-3.1356084999528973,0.9999992002554581,-3.8617632343405086,1.5897959183673471,0.6290115532734274 --3.1354547332458744,0.013428339697126885,-3.9102002896908408,1.0000002715732919,0.013428339697126885,-3.1354547332458744,1.0000002715732919,-3.9102002896908408,1.5918367346938775,0.6282051282051282 --3.135303566064492,0.013397743561550591,-3.9585117518503843,1.0000013987007206,0.013397743561550591,-3.135303566064492,1.0000013987007206,-3.9585117518503843,1.5938775510204082,0.6274007682458387 --3.1351554266079122,0.01336734926643339,-4.006698113697116,1.0000025803943011,0.01336734926643339,-3.1351554266079122,1.0000025803943011,-4.006698113697116,1.5959183673469388,0.6265984654731458 --3.135010715694837,0.01333714884878095,-4.054759865738894,1.000003815586158,0.01333714884878095,-3.135010715694837,1.000003815586158,-4.054759865738894,1.5979591836734695,0.6257982120051085 --3.13486978479416,0.013307140511352865,-4.102697496993832,1.0000051029688262,0.013307140511352865,-3.13486978479416,1.0000051029688262,-4.102697496993832,1.6,0.625 diff --git a/sparameters/straight_73688cd2_strai_c537327e_9b8b3405.yml b/sparameters/straight_73688cd2_strai_c537327e_9b8b3405.yml deleted file mode 100644 index 927aab21..00000000 --- a/sparameters/straight_73688cd2_strai_c537327e_9b8b3405.yml +++ /dev/null @@ -1,96 +0,0 @@ -resolution: 30 -port_symmetries: - o1: - s11: - - s22 - s21: - - s12 -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3 -ymargin_bot: 3 -xmargin_left: 0 -xmargin_right: 0 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -component: - version: 0.0.1 - settings: - name: straight_73688cd2_strai_c537327e - module: ubcpdk.components.straight - function_name: straight - info: - width: 0.5 - info_version: 2 - full: - length: 3 - width: 0.5 - layer: - - 1 - - 0 - with_pins: true - cross_section: strip - changed: - length: 3 - default: - length: 10 - width: 0.5 - layer: - - 1 - - 0 - with_pins: true - cross_section: strip - child: - name: straight_73688cd2 - module: gdsfactory.components.straight - function_name: straight - info: - length: 3.0 - width: 0.5 - info_version: 2 - full: - length: 3 - npoints: 2 - with_bbox: false - cross_section: strip - width: 0.5 - layer: - - 1 - - 0 - changed: - cross_section: strip - layer: - - 1 - - 0 - length: 3 - width: 0.5 - default: - length: 10 - npoints: 2 - with_bbox: false - cross_section: - function: cross_section - settings: {} - child: null -compute_time_seconds: 3.907060146331787 -compute_time_minutes: 0.06511766910552978 diff --git a/sparameters/straight_93c28777_strai_ff74a9ef_624baa49.csv b/sparameters/straight_93c28777_strai_ff74a9ef_624baa49.csv deleted file mode 100644 index e0120d69..00000000 --- a/sparameters/straight_93c28777_strai_ff74a9ef_624baa49.csv +++ /dev/null @@ -1,51 +0,0 @@ -s11a,s11m,s21a,s21m,s22m,s22a,s12m,s12a,wavelengths,freqs --3.1401746951119565,0.014993127083214658,-1.5982108759169835,1.0000063902863874,0.014993127083214658,-3.1401746951119565,1.0000063902863874,-1.5982108759169835,1.5,0.6666666666666666 --3.1400531599443506,0.014955209131279974,-1.6527058679848272,1.0000052160929083,0.014955209131279974,-3.1400531599443506,1.0000052160929083,-1.6527058679848272,1.5020408163265306,0.6657608695652174 --3.139936342386994,0.014917508925004723,-1.70705066921679,1.0000040626882984,0.014917508925004723,-3.139936342386994,1.0000040626882984,-1.70705066921679,1.5040816326530613,0.6648575305291723 --3.1398244478448505,0.014880015630837021,-1.7612459024249514,1.000002934153751,0.014880015630837021,-3.1398244478448505,1.000002934153751,-1.7612459024249514,1.506122448979592,0.6639566395663956 --3.1397176090747014,0.014842718318091787,-1.8152921866723166,1.0000018345250625,0.014842718318091787,-3.1397176090747014,1.0000018345250625,-1.8152921866723166,1.5081632653061225,0.6630581867388362 --3.1396158833498578,0.014805606111050352,-1.8691901376175457,1.0000007676815763,0.014805606111050352,-3.1396158833498578,1.0000007676815763,-1.8691901376175457,1.510204081632653,0.6621621621621622 --3.1395192518381116,0.014768668348617122,-1.9229403677863885,0.9999997372367496,0.014768668348617122,-3.1395192518381116,0.9999997372367496,-1.9229403677863885,1.5122448979591836,0.6612685560053981 --3.1394276214024,0.014731894737127644,-1.9765434867703395,0.9999987464524539,0.014731894737127644,-3.1394276214024,0.9999987464524539,-1.9765434867703395,1.5142857142857142,0.6603773584905661 --3.1393408284931414,0.014695275482819101,-2.0300001013655105,0.9999977981934671,0.014695275482819101,-3.1393408284931414,0.9999977981934671,-2.0300001013655105,1.5163265306122449,0.6594885598923285 --3.1392586444061745,0.014658801396519953,-2.0833108156716866,0.9999968949255336,0.014658801396519953,-3.1392586444061745,0.9999968949255336,-2.0833108156716866,1.5183673469387755,0.6586021505376344 --3.1391807810645904,0.014622463969223587,-2.1364762311709375,0.9999960387519778,0.014622463969223587,-3.1391807810645904,0.9999960387519778,-2.1364762311709375,1.5204081632653061,0.6577181208053691 --3.139106896619074,0.014586255424671039,-2.1894969467996193,0.9999952314706524,0.014586255424671039,-3.139106896619074,0.9999952314706524,-2.1894969467996193,1.5224489795918368,0.6568364611260054 --3.139036600518594,0.01455016875800131,-2.2423735590175773,0.9999944746337611,0.01455016875800131,-3.139036600518594,0.9999944746337611,-2.2423735590175773,1.5244897959183674,0.6559571619812583 --3.1389694580946648,0.014514197770053373,-2.295106661869319,0.999993769592733,0.014514197770053373,-3.1389694580946648,0.999993769592733,-2.295106661869319,1.526530612244898,0.6550802139037433 --3.1389049950437546,0.014478337103328373,-2.3476968470253574,0.9999931175197971,0.014478337103328373,-3.1389049950437546,0.9999931175197971,-2.3476968470253574,1.5285714285714287,0.6542056074766355 --3.1388427023359338,0.01444258228226092,-2.400144703791289,0.9999925194039195,0.01444258228226092,-3.1388427023359338,0.9999925194039195,-2.400144703791289,1.530612244897959,0.6533333333333333 --3.1387820420213792,0.014406929752276396,-2.452450819074138,0.9999919760320248,0.014406929752276396,-3.1387820420213792,0.9999919760320248,-2.452450819074138,1.5326530612244897,0.6524633821571239 --3.1387224541653365,0.014371376912645995,-2.5046157773046756,0.9999914879677141,0.014371376912645995,-3.1387224541653365,0.9999914879677141,-2.5046157773046756,1.5346938775510204,0.6515957446808511 --3.138663366353989,0.014335919791413793,-2.55664016029418,0.9999910555329404,0.014335919791413793,-3.138663366353989,0.9999910555329404,-2.55664016029418,1.536734693877551,0.650730411686587 --3.138604196255699,0.014300562397780707,-2.608524547202806,0.9999906788522267,0.014300562397780707,-3.138604196255699,0.9999906788522267,-2.608524547202806,1.5387755102040817,0.649867374005305 --3.1385443693416004,0.01426530268296076,-2.660269514230776,0.9999903578430913,0.01426530268296076,-3.1385443693416004,0.9999903578430913,-2.660269514230776,1.5408163265306123,0.6490066225165563 --3.1384833203695353,0.014230142529604908,-2.7118756346126887,0.9999900922696652,0.014230142529604908,-3.1384833203695353,0.9999900922696652,-2.7118756346126887,1.542857142857143,0.6481481481481481 --3.138420505706104,0.014195081806789458,-2.7633434783353303,0.999989882005284,0.014195081806789458,-3.138420505706104,0.999989882005284,-2.7633434783353303,1.5448979591836736,0.6472919418758256 --3.138355402106514,0.014160125406456357,-2.814673612319401,0.9999897267140966,0.014160125406456357,-3.138355402106514,0.9999897267140966,-2.814673612319401,1.5469387755102042,0.646437994722955 --3.1382875179116185,0.014125276979435704,-2.8658666002398734,0.9999896260109306,0.014125276979435704,-3.1382875179116185,0.9999896260109306,-2.8658666002398734,1.5489795918367348,0.6455862977602107 --3.1382163988925718,0.014090537834736457,-2.9169230021059342,0.9999895801626802,0.014090537834736457,-3.1382163988925718,0.9999895801626802,-2.9169230021059342,1.5510204081632653,0.6447368421052632 --3.13814162228951,0.014055915364357068,-2.9678433749436715,0.9999895889404021,0.014055915364357068,-3.13814162228951,0.9999895889404021,-2.9678433749436715,1.5530612244897959,0.6438896189224704 --3.1380628112387714,0.014021413765803884,-3.0186282721819646,0.9999896524471084,0.014021413765803884,-3.1380628112387714,0.9999896524471084,-3.0186282721819646,1.5551020408163265,0.6430446194225722 --3.1379796335018764,0.013987038604013303,-3.069278243837304,0.9999897707835502,0.013987038604013303,-3.1379796335018764,0.9999897707835502,-3.069278243837304,1.5571428571428572,0.6422018348623854 --3.137891805597193,0.013952796617207218,-3.119793836464859,0.9999899440281578,0.013952796617207218,-3.137891805597193,0.9999899440281578,-3.119793836464859,1.5591836734693878,0.6413612565445026 --3.137799102146037,0.013918691653527115,-3.1701755929170012,0.9999901723995176,0.013918691653527115,-3.137799102146037,0.9999901723995176,-3.1701755929170012,1.5612244897959184,0.6405228758169934 --3.137701348546941,0.013884732560236283,-3.22042405268955,0.9999904558956949,0.013884732560236283,-3.137701348546941,0.9999904558956949,-3.22042405268955,1.563265306122449,0.639686684073107 --3.137598433712615,0.01385092537999969,-3.2705397515350394,0.9999907946571186,0.01385092537999969,-3.137598433712615,0.9999907946571186,-3.2705397515350394,1.5653061224489797,0.6388526727509778 --3.1374903063504704,0.013817276828335213,-3.3205232216495726,0.9999911888298968,0.013817276828335213,-3.1374903063504704,0.9999911888298968,-3.3205232216495726,1.5673469387755103,0.6380208333333333 --3.1373769787162966,0.013783791433004618,-3.370374991528352,0.9999916387836191,0.013783791433004618,-3.1373769787162966,0.9999916387836191,-3.370374991528352,1.569387755102041,0.6371911573472041 --3.1372585150348202,0.013750478055929388,-3.420095586638664,0.9999921444783915,0.013750478055929388,-3.1372585150348202,0.9999921444783915,-3.420095586638664,1.5714285714285714,0.6363636363636364 --3.1371350408166014,0.013717341867322265,-3.469685528643108,0.999992706541501,0.013717341867322265,-3.1371350408166014,0.999992706541501,-3.469685528643108,1.573469387755102,0.6355382619974059 --3.137006732825954,0.013684388908234781,-3.519145336232996,0.9999933253080971,0.013684388908234781,-3.137006732825954,0.9999933253080971,-3.519145336232996,1.5755102040816327,0.6347150259067358 --3.136873818217872,0.013651624519663274,-3.56847552488917,0.9999940013013006,0.013651624519663274,-3.136873818217872,0.9999940013013006,-3.56847552488917,1.5775510204081633,0.6338939197930142 --3.136736572818636,0.01361905257218518,-3.6176766072929145,0.9999947346866631,0.01361905257218518,-3.136736572818636,0.9999947346866631,-3.6176766072929145,1.579591836734694,0.6330749354005167 --3.136595311805823,0.013586679355278146,-3.6667490931085007,0.9999955259451733,0.013586679355278146,-3.136595311805823,0.9999955259451733,-3.6667490931085007,1.5816326530612246,0.632258064516129 --3.1364503956340872,0.01355450837995737,-3.715693489300391,0.9999963751998816,0.01355450837995737,-3.1364503956340872,0.9999963751998816,-3.715693489300391,1.5836734693877552,0.6314432989690721 --3.1363022222937156,0.013522543285357375,-3.7645103003352336,0.9999972821894334,0.013522543285357375,-3.1363022222937156,0.9999972821894334,-3.7645103003352336,1.5857142857142859,0.6306306306306306 --3.136151224919082,0.013490787153228366,-3.8132000278642906,0.9999982468175411,0.013490787153228366,-3.136151224919082,0.9999982468175411,-3.8132000278642906,1.5877551020408165,0.6298200514138816 --3.135997865921894,0.013459243293980171,-3.8617631712488887,0.999999268577911,0.013459243293980171,-3.135997865921894,0.999999268577911,-3.8617631712488887,1.5897959183673471,0.6290115532734274 --3.135842639169865,0.013427911041973634,-3.9102002274655696,1.0000003466023855,0.013427911041973634,-3.135842639169865,1.0000003466023855,-3.9102002274655696,1.5918367346938775,0.6282051282051282 --3.1356860484995375,0.013396794051965644,-3.958511691189818,1.0000014802618624,0.013396794051965644,-3.1356860484995375,1.0000014802618624,-3.958511691189818,1.5938775510204082,0.6274007682458387 --3.1355286141403362,0.013365892893788317,-4.006698055257955,1.0000026682496228,0.013365892893788317,-3.1355286141403362,1.0000026682496228,-4.006698055257955,1.5959183673469388,0.6265984654731458 --3.135370866899377,0.013335204542504637,-4.054759810134578,1.0000039094465045,0.013335204542504637,-3.135370866899377,1.0000039094465045,-4.054759810134578,1.5979591836734695,0.6257982120051085 --3.1352133235280815,0.013304731849712282,-4.1026974447972755,1.0000052025027075,0.013304731849712282,-3.1352133235280815,1.0000052025027075,-4.1026974447972755,1.6,0.625 diff --git a/sparameters/straight_93c28777_strai_ff74a9ef_624baa49.yml b/sparameters/straight_93c28777_strai_ff74a9ef_624baa49.yml deleted file mode 100644 index 3f447ec0..00000000 --- a/sparameters/straight_93c28777_strai_ff74a9ef_624baa49.yml +++ /dev/null @@ -1,92 +0,0 @@ -resolution: 30 -port_symmetries: - o1: - s11: - - s22 - s21: - - s12 -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3 -ymargin_bot: 3 -xmargin_left: 0 -xmargin_right: 0 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -component: - version: 0.0.1 - settings: - name: straight_93c28777_strai_ff74a9ef - module: ubcpdk.components.straight - function_name: straight - info: {} - info_version: 2 - full: - length: 3 - width: 0.5 - layer: - - 1 - - 0 - with_pins: true - changed: - length: 3 - default: - length: 10 - width: 0.5 - layer: - - 1 - - 0 - with_pins: true - child: - name: straight_93c28777 - module: gdsfactory.components.straight - function_name: straight - info: - length: 3.0 - width: 0.5 - info_version: 2 - full: - length: 3 - npoints: 2 - with_cladding_box: true - cross_section: - function: cross_section - width: 0.5 - layer: - - 1 - - 0 - changed: - layer: - - 1 - - 0 - length: 3 - width: 0.5 - default: - length: 10 - npoints: 2 - with_cladding_box: true - cross_section: - function: cross_section - child: null -compute_time_seconds: 4.665724039077759 -compute_time_minutes: 0.07776206731796265 diff --git a/sparameters/straight_93c28777_strai_ff74a9ef_9b8b3405.csv b/sparameters/straight_93c28777_strai_ff74a9ef_9b8b3405.csv deleted file mode 100644 index 84b2cc51..00000000 --- a/sparameters/straight_93c28777_strai_ff74a9ef_9b8b3405.csv +++ /dev/null @@ -1,51 +0,0 @@ -s11a,s11m,s21a,s21m,s22m,s22a,s12m,s12a,wavelengths,freqs --3.140158154171617,0.014999085066760528,-1.5982108886740394,1.0000062120633058,0.014999085066760528,-3.140158154171617,1.0000062120633058,-1.5982108886740394,1.5,0.6666666666666666 --3.1400819014673207,0.014961138938567547,-1.652705870084743,1.0000050388637363,0.014961138938567547,-3.1400819014673207,1.0000050388637363,-1.652705870084743,1.5020408163265306,0.6657608695652174 --3.140009829268091,0.014923334278211782,-1.7070506608399278,1.0000038876288064,0.014923334278211782,-3.140009829268091,1.0000038876288064,-1.7070506608399278,1.5040816326530613,0.6648575305291723 --3.1399415702131535,0.014885662674878524,-1.761245883910089,1.0000027624105274,0.014885662674878524,-3.1399415702131535,1.0000027624105274,-1.761245883910089,1.506122448979592,0.6639566395663956 --3.139876707268269,0.014848116539517797,-1.8152921585094917,1.0000016671800098,0.014848116539517797,-3.139876707268269,1.0000016671800098,-1.8152921585094917,1.5081632653061225,0.6630581867388362 --3.139814778077265,0.01481068918540473,-1.869190100427388,1.000000605722477,0.01481068918540473,-3.139814778077265,1.000000605722477,-1.869190100427388,1.510204081632653,0.6621621621621622 --3.1397552806192417,0.014773374903771976,-1.9229403222915014,0.9999995815394778,0.014773374903771976,-3.1397552806192417,0.9999995815394778,-1.9229403222915014,1.5122448979591836,0.6612685560053981 --3.1396976802613006,0.014736169025146335,-1.9765434337659882,0.999998597776236,0.014736169025146335,-3.1396976802613006,0.999998597776236,-1.9765434337659882,1.5142857142857142,0.6603773584905661 --3.1396414179130216,0.014699067957562503,-2.030000041696005,0.9999976571865502,0.014699067957562503,-3.1396414179130216,0.9999976571865502,-2.030000041696005,1.5163265306122449,0.6594885598923285 --3.139585918709436,0.01466206919744222,-2.0833107502160293,0.9999967621358653,0.01466206919744222,-3.139585918709436,0.9999967621358653,-2.0833107502160293,1.5183673469387755,0.6586021505376344 --3.139530600573553,0.014625171313085885,-2.136476160837678,0.9999959146368975,0.014625171313085885,-3.139530600573553,0.9999959146368975,-2.136476160837678,1.5204081632653061,0.6577181208053691 --3.139474882110184,0.014588373906452583,-2.1894968725277075,0.9999951164009694,0.014588373906452583,-3.139474882110184,0.9999951164009694,-2.1894968725277075,1.5224489795918368,0.6568364611260054 --3.139418189550314,0.014551677560819709,-2.2423734817782623,0.9999943688903793,0.014551677560819709,-3.139418189550314,0.9999943688903793,-2.2423734817782623,1.5244897959183674,0.6559571619812583 --3.1393599627507576,0.014515083782452122,-2.2951065826642383,0.9999936733570776,0.014515083782452122,-3.1393599627507576,0.9999936733570776,-2.2951065826642383,1.526530612244898,0.6550802139037433 --3.1392996605118135,0.014478594941652967,-2.347696766877704,0.9999930308616489,0.014478594941652967,-3.1392996605118135,0.9999930308616489,-2.347696766877704,1.5285714285714287,0.6542056074766355 --3.139236765586149,0.014442214216626729,-2.40014462372953,0.999992442271254,0.014442214216626729,-3.139236765586149,0.999992442271254,-2.40014462372953,1.530612244897959,0.6533333333333333 --3.139170789720965,0.014405945536713689,-2.452450740110377,0.9999919082468334,0.014405945536713689,-3.139170789720965,0.9999919082468334,-2.452450740110377,1.5326530612244897,0.6524633821571239 --3.1391012789102675,0.014369793523032881,-2.504615700411471,0.999991429229903,0.014369793523032881,-3.1391012789102675,0.999991429229903,-2.504615700411471,1.5346938775510204,0.6515957446808511 --3.1390278204016213,0.014333761077967551,-2.556640086384077,0.9999910054320058,0.014333761077967551,-3.1390278204016213,0.9999910054320058,-2.556640086384077,1.536734693877551,0.650730411686587 --3.138950041714672,0.014297858661387967,-2.6085244771137823,0.9999906368842126,0.014297858661387967,-3.138950041714672,0.9999906368842126,-2.6085244771137823,1.5387755102040817,0.649867374005305 --3.138867624872377,0.014262090186164198,-2.660269448719147,0.9999903234292171,0.014262090186164198,-3.138867624872377,0.9999903234292171,-2.660269448719147,1.5408163265306123,0.6490066225165563 --3.138780303414234,0.01422646295297993,-2.7118755743525482,0.9999900647728303,0.01422646295297993,-3.138780303414234,0.9999900647728303,-2.7118755743525482,1.542857142857143,0.6481481481481481 --3.138687870447983,0.014190981660556755,-2.7633434239221057,0.9999898607419243,0.014190981660556755,-3.138687870447983,0.9999898607419243,-2.7633434239221057,1.5448979591836736,0.6472919418758256 --3.1385901727676493,0.014155655405453098,-2.8146735642741083,0.999989710960671,0.014155655405453098,-3.1385901727676493,0.999989710960671,-2.8146735642741083,1.5469387755102042,0.646437994722955 --3.1384871175873528,0.01412049138808707,-2.8658665590111045,0.999989615006188,0.01412049138808707,-3.1384871175873528,0.999989615006188,-2.8658665590111045,1.5489795918367348,0.6455862977602107 --3.1383786736468937,0.014085493787600474,-2.9169229680677398,0.9999895731082101,0.014085493787600474,-3.1383786736468937,0.9999895731082101,-2.9169229680677398,1.5510204081632653,0.6447368421052632 --3.1382648602061467,0.014050672167724168,-2.967843348389284,0.9999895850026137,0.014050672167724168,-3.1382648602061467,0.9999895850026137,-2.967843348389284,1.5530612244897959,0.6438896189224704 --3.1381457564373645,0.014016032186717368,-3.0186282533150006,0.9999896507629649,0.014016032186717368,-3.1381457564373645,0.9999896507629649,-3.0186282533150006,1.5551020408163265,0.6430446194225722 --3.138021494677507,0.013981580154351504,-3.069278232763112,0.9999897704712775,0.013981580154351504,-3.138021494677507,0.9999897704712775,-3.069278232763112,1.5571428571428572,0.6422018348623854 --3.1378922589917932,0.01394732284195957,-3.119793833184843,0.9999899442023916,0.01394732284195957,-3.1378922589917932,0.9999899442023916,-3.119793833184843,1.5591836734693878,0.6413612565445026 --3.137758288899461,0.013913263433381359,-3.170175597328048,0.9999901721889001,0.013913263433381359,-3.137758288899461,0.9999901721889001,-3.170175597328048,1.5612244897959184,0.6405228758169934 --3.1376198665475163,0.013879409438712522,-3.2204240645892774,0.9999904544601943,0.013879409438712522,-3.1376198665475163,0.9999904544601943,-3.2204240645892774,1.563265306122449,0.639686684073107 --3.13747732425467,0.013845764924520568,-3.2705397706320154,0.9999907912022693,0.013845764924520568,-3.13747732425467,0.9999907912022693,-3.2705397706320154,1.5653061224489797,0.6388526727509778 --3.1373310360201403,0.013812334032897703,-3.3205232475763853,0.9999911826161771,0.013812334032897703,-3.1373310360201403,0.9999911826161771,-3.3205232475763853,1.5673469387755103,0.6380208333333333 --3.13718141698638,0.013779118167928497,-3.3703750238547894,0.9999916291304748,0.013779118167928497,-3.13718141698638,0.9999916291304748,-3.3703750238547894,1.569387755102041,0.6371911573472041 --3.1370289081901186,0.013746122568019376,-3.420095624882549,0.9999921307640286,0.013746122568019376,-3.1370289081901186,0.9999921307640286,-3.420095624882549,1.5714285714285714,0.6363636363636364 --3.136873982498128,0.01371334833201119,-3.4696855722772257,0.9999926882004577,0.01371334833201119,-3.136873982498128,0.9999926882004577,-3.4696855722772257,1.573469387755102,0.6355382619974059 --3.1367171317164235,0.013680797034501627,-3.519145384688049,0.999993301829307,0.013680797034501627,-3.1367171317164235,0.999993301829307,-3.519145384688049,1.5755102040816327,0.6347150259067358 --3.136558863088728,0.013648469208386034,-3.5684755775540307,0.9999939722287199,0.013648469208386034,-3.136558863088728,0.9999939722287199,-3.5684755775540307,1.5775510204081633,0.6338939197930142 --3.1363996951890303,0.013616363629260116,-3.617676663514413,0.9999946996236105,0.013616363629260116,-3.1363996951890303,0.9999946996236105,-3.617676663514413,1.579591836734694,0.6330749354005167 --3.136240146587973,0.013584481261737742,-3.6667491521932414,0.9999954845619914,0.013584481261737742,-3.136240146587973,0.9999954845619914,-3.6667491521932414,1.5816326530612246,0.632258064516129 --3.136080739877207,0.013552820121886973,-3.715693550520479,0.9999963272433661,0.013552820121886973,-3.136080739877207,0.9999963272433661,-3.715693550520479,1.5836734693877552,0.6314432989690721 --3.1359219926460233,0.013521378246600532,-3.7645103629386814,0.9999972274915132,0.013521378246600532,-3.1359219926460233,0.9999972274915132,-3.7645103629386814,1.5857142857142859,0.6306306306306306 --3.13576441427733,0.01349015307300355,-3.813200091089378,0.9999981853006824,0.01349015307300355,-3.13576441427733,0.9999981853006824,-3.813200091089378,1.5877551020408165,0.6298200514138816 --3.1356084999528973,0.013459142289950494,-3.8617632343405086,0.9999992002554581,0.013459142289950494,-3.1356084999528973,0.9999992002554581,-3.8617632343405086,1.5897959183673471,0.6290115532734274 --3.1354547332458744,0.013428339697126885,-3.9102002896908408,1.0000002715732919,0.013428339697126885,-3.1354547332458744,1.0000002715732919,-3.9102002896908408,1.5918367346938775,0.6282051282051282 --3.135303566064492,0.013397743561550591,-3.9585117518503843,1.0000013987007206,0.013397743561550591,-3.135303566064492,1.0000013987007206,-3.9585117518503843,1.5938775510204082,0.6274007682458387 --3.1351554266079122,0.01336734926643339,-4.006698113697116,1.0000025803943011,0.01336734926643339,-3.1351554266079122,1.0000025803943011,-4.006698113697116,1.5959183673469388,0.6265984654731458 --3.135010715694837,0.01333714884878095,-4.054759865738894,1.000003815586158,0.01333714884878095,-3.135010715694837,1.000003815586158,-4.054759865738894,1.5979591836734695,0.6257982120051085 --3.13486978479416,0.013307140511352865,-4.102697496993832,1.0000051029688262,0.013307140511352865,-3.13486978479416,1.0000051029688262,-4.102697496993832,1.6,0.625 diff --git a/sparameters/straight_93c28777_strai_ff74a9ef_9b8b3405.yml b/sparameters/straight_93c28777_strai_ff74a9ef_9b8b3405.yml deleted file mode 100644 index 8bc59732..00000000 --- a/sparameters/straight_93c28777_strai_ff74a9ef_9b8b3405.yml +++ /dev/null @@ -1,92 +0,0 @@ -resolution: 30 -port_symmetries: - o1: - s11: - - s22 - s21: - - s12 -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3 -ymargin_bot: 3 -xmargin_left: 0 -xmargin_right: 0 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -component: - version: 0.0.1 - settings: - name: straight_93c28777_strai_ff74a9ef - module: ubcpdk.components.straight - function_name: straight - info: {} - info_version: 2 - full: - length: 3 - width: 0.5 - layer: - - 1 - - 0 - with_pins: true - changed: - length: 3 - default: - length: 10 - width: 0.5 - layer: - - 1 - - 0 - with_pins: true - child: - name: straight_93c28777 - module: gdsfactory.components.straight - function_name: straight - info: - length: 3.0 - width: 0.5 - info_version: 2 - full: - length: 3 - npoints: 2 - with_cladding_box: true - cross_section: - function: cross_section - width: 0.5 - layer: - - 1 - - 0 - changed: - layer: - - 1 - - 0 - length: 3 - width: 0.5 - default: - length: 10 - npoints: 2 - with_cladding_box: true - cross_section: - function: cross_section - child: null -compute_time_seconds: 3.5554819107055664 -compute_time_minutes: 0.059258031845092776 diff --git a/sparameters/straight_abbbb3de_strai_a6b995e4_74751e6d.csv b/sparameters/straight_abbbb3de_strai_a6b995e4_74751e6d.csv deleted file mode 100644 index c78f08a3..00000000 --- a/sparameters/straight_abbbb3de_strai_a6b995e4_74751e6d.csv +++ /dev/null @@ -1,51 +0,0 @@ -s11a,s11m,s21a,s21m,s22m,s22a,s12m,s12a,wavelengths,freqs -3.0045846565662435,0.03533604400203097,-1.2535312350855476,1.0000447868197893,0.03533604400203097,3.0045846565662435,1.0000447868197893,-1.2535312350855476,1.5,0.6666666666666666 -2.9960218581988225,0.034703005581352746,-1.309888820603532,1.0000643174256933,0.034703005581352746,2.9960218581988225,1.0000643174256933,-1.309888820603532,1.5020408163265306,0.6657608695652174 -2.9890211092032835,0.034043241334303025,-1.366086812104934,1.0000841114929062,0.034043241334303025,2.9890211092032835,1.0000841114929062,-1.366086812104934,1.5040816326530613,0.6648575305291723 -2.98374044132031,0.033363075453925535,-1.4221259211429604,1.0001039179776465,0.033363075453925535,2.98374044132031,1.0001039179776465,-1.4221259211429604,1.506122448979592,0.6639566395663956 -2.980335866245795,0.0326692879570925,-1.4780068288771537,1.00012349056609,0.0326692879570925,2.980335866245795,1.00012349056609,-1.4780068288771537,1.5081632653061225,0.6630581867388362 -2.9789579715485384,0.03196910469218367,-1.5337301870192541,1.0001425900986305,0.03196910469218367,2.9789579715485384,1.0001425900986305,-1.5337301870192541,1.510204081632653,0.6621621621621622 -2.97974723918062,0.031270175873348474,-1.5892966189125242,1.0001609868964714,0.031270175873348474,2.97974723918062,1.0001609868964714,-1.5892966189125242,1.5122448979591836,0.6612685560053981 -2.9828279322814195,0.030580537806081696,-1.644706720756192,1.0001784629997987,0.030580537806081696,2.9828279322814195,1.0001784629997987,-1.644706720756192,1.5142857142857142,0.6603773584905661 -2.9883004806192823,0.029908551820107817,-1.6999610629917008,1.0001948143168227,0.029908551820107817,2.9883004806192823,1.0001948143168227,-1.6999610629917008,1.5163265306122449,0.6594885598923285 -2.996232445253426,0.02926281415168529,-1.7550601918677629,1.0002098526726877,0.02926281415168529,2.996232445253426,1.0002098526726877,-1.7550601918677629,1.5183673469387755,0.6586021505376344 -3.006648372126024,0.028652030932117094,-1.8100046311982187,1.0002234077370167,0.028652030932117094,3.006648372126024,1.0002234077370167,-1.8100046311982187,1.5204081632653061,0.6577181208053691 -3.0195191523293237,0.028084853918746027,-1.864794884319575,1.0002353288025245,0.028084853918746027,3.0195191523293237,1.0002353288025245,-1.864794884319575,1.5224489795918368,0.6568364611260054 -3.034751868573145,0.027569675523907128,-1.9194314362471416,1.0002454863809165,0.027569675523907128,3.034751868573145,1.0002454863809165,-1.9194314362471416,1.5244897959183674,0.6559571619812583 -3.052181460947861,0.027114386269709218,-1.9739147560503034,1.0002537734505064,0.027114386269709218,3.052181460947861,1.0002537734505064,-1.9739147560503034,1.526530612244898,0.6550802139037433 -3.071565788239713,0.026726103895927885,-2.028245299206046,1.0002601072439246,0.026726103895927885,3.071565788239713,1.0002601072439246,-2.028245299206046,1.5285714285714287,0.6542056074766355 -3.0925856656939503,0.026410890290959808,-2.082423510567031,1.0002644287819509,0.026410890290959808,3.0925856656939503,1.0002644287819509,-2.082423510567031,1.530612244897959,0.6533333333333333 -3.114851110983864,0.026173478722622563,-2.136449826797287,1.0002667047510418,0.026173478722622563,3.114851110983864,1.0002667047510418,-2.136449826797287,1.5326530612244897,0.6524633821571239 -3.1379142879751347,0.02601703933390292,-2.1903246793870723,1.000266927004433,0.02601703933390292,3.1379142879751347,1.000266927004433,-2.1903246793870723,1.5346938775510204,0.6515957446808511 -3.16128857418619,0.025943006520991713,-2.2440484974126504,1.0002651127236282,0.025943006520991713,3.16128857418619,1.0002651127236282,-2.2440484974126504,1.536734693877551,0.650730411686587 -3.1844720576258614,0.025950995869527368,-2.2976217104330843,1.0002613038416863,0.025950995869527368,3.1844720576258614,1.0002613038416863,-2.2976217104330843,1.5387755102040817,0.649867374005305 -3.20697284121862,0.026038817337956422,-2.3510447512344137,1.0002555663332227,0.026038817337956422,3.20697284121862,1.0002555663332227,-2.3510447512344137,1.5408163265306123,0.6490066225165563 -3.2283331605167316,0.02620258770969322,-2.404318058503782,1.0002479890965792,0.02620258770969322,3.2283331605167316,1.0002479890965792,-2.404318058503782,1.542857142857143,0.6481481481481481 -3.248149567399545,0.026436928131134175,-2.4574420793471634,1.0002386825365415,0.026436928131134175,3.248149567399545,1.0002386825365415,-2.4574420793471634,1.5448979591836736,0.6472919418758256 -3.266087250450894,0.02673522402682001,-2.5104172716126407,1.000227776856913,0.02673522402682001,3.266087250450894,1.000227776856913,-2.5104172716126407,1.5469387755102042,0.646437994722955 -3.2818876774168615,0.027089919547148546,-2.563244105979548,1.0002154200918043,0.027089919547148546,3.2818876774168615,1.0002154200918043,-2.563244105979548,1.5489795918367348,0.6455862977602107 -3.295369840527397,0.02749281893856995,-2.6159230677770045,1.0002017759136472,0.02749281893856995,3.295369840527397,1.0002017759136472,-2.6159230677770045,1.5510204081632653,0.6447368421052632 -3.30642620795815,0.027935371646388266,-2.6684546585031836,1.0001870212607897,0.027935371646388266,3.30642620795815,1.0001870212607897,-2.6684546585031836,1.5530612244897959,0.6438896189224704 -3.315014917582276,0.028408924730655025,-2.7208393970246902,1.0001713438334423,0.028408924730655025,3.315014917582276,1.0001713438334423,-2.7208393970246902,1.5551020408163265,0.6430446194225722 -3.3211498115271136,0.028904933431295122,-2.7730778204453577,1.0001549395095686,0.028904933431295122,3.3211498115271136,1.0001549395095686,-2.7730778204453577,1.5571428571428572,0.6422018348623854 -3.3248897066718555,0.029415127065607304,-2.825170484644002,1.0001380097319974,0.029415127065607304,3.3248897066718555,1.0001380097319974,-2.825170484644002,1.5591836734693878,0.6413612565445026 -3.3263279565647843,0.029931632154645144,-2.8771179644913536,1.0001207589145775,0.029931632154645144,3.3263279565647843,1.0001207589145775,-2.8771179644913536,1.5612244897959184,0.6405228758169934 -3.325582993993335,0.03044705761314588,-2.928920853763635,1.0001033919105466,0.03044705761314588,3.325582993993335,1.0001033919105466,-2.928920853763635,1.563265306122449,0.639686684073107 -3.322790221234754,0.030954548246005385,-2.98057976477731,1.0000861115783821,0.030954548246005385,3.322790221234754,1.0000861115783821,-2.98057976477731,1.5653061224489797,0.6388526727509778 -3.3180953690091206,0.03144781307233686,-3.032095327772083,1.0000691164725388,0.03144781307233686,3.3180953690091206,1.0000691164725388,-3.032095327772083,1.5673469387755103,0.6380208333333333 -3.3116492854411796,0.031921133434546646,-3.0834681900132037,1.0000525987967477,0.031921133434546646,3.3116492854411796,1.0000525987967477,-3.0834681900132037,1.569387755102041,0.6371911573472041 -3.303603973411121,0.03236936405864881,-3.1346990150397134,1.000036741807129,0.03236936405864881,3.303603973411121,1.000036741807129,-3.1346990150397134,1.5714285714285714,0.6363636363636364 -3.294109813030501,0.03278790772677697,-3.185788480881586,1.0000217191519833,0.03278790772677697,3.294109813030501,1.0000217191519833,-3.185788480881586,1.573469387755102,0.6355382619974059 -3.283313570783491,0.03317270643285711,-3.236737279267207,1.0000076920245202,0.03317270643285711,3.283313570783491,1.0000076920245202,-3.236737279267207,1.5755102040816327,0.6347150259067358 -3.271357215268221,0.03352021216078889,-3.2875461138382946,0.9999948082644207,0.03352021216078889,3.271357215268221,0.9999948082644207,-3.2875461138382946,1.5775510204081633,0.6338939197930142 -3.2583772558399913,0.03382736286789554,-3.3382156985893343,0.9999832009364075,0.03382736286789554,3.2583772558399913,0.9999832009364075,-3.3382156985893343,1.579591836734694,0.6330749354005167 -3.244504509166677,0.03409155714072907,-3.3887467561484432,0.999972987218795,0.03409155714072907,3.244504509166677,0.999972987218795,-3.3887467561484432,1.5816326530612246,0.632258064516129 -3.229864177876995,0.03431062958177568,-3.4391400159754157,0.9999642674910937,0.03431062958177568,3.229864177876995,0.9999642674910937,-3.4391400159754157,1.5836734693877552,0.6314432989690721 -3.2145761546108957,0.03448282753620588,-3.48939621249793,0.9999571246262371,0.03448282753620588,3.2145761546108957,0.9999571246262371,-3.48939621249793,1.5857142857142859,0.6306306306306306 -3.1987554847887694,0.0346067895313454,-3.539516083208713,0.9999516234915024,0.0346067895313454,3.1987554847887694,0.9999516234915024,-3.539516083208713,1.5877551020408165,0.6298200514138816 -3.1825129379143355,0.034681525632187016,-3.5895003667487657,0.9999478106560128,0.034681525632187016,3.1825129379143355,0.9999478106560128,-3.5895003667487657,1.5897959183673471,0.6290115532734274 -3.165955650430522,0.03470639979872709,-3.63934980100042,0.9999457143009322,0.03470639979872709,3.165955650430522,0.9999457143009322,-3.63934980100042,1.5918367346938775,0.6282051282051282 -3.149187813419454,0.03468111425236904,-3.6890651212127885,0.9999453443218174,0.03468111425236904,3.149187813419454,0.9999453443218174,-3.6890651212127885,1.5938775510204082,0.6274007682458387 -3.1323113862373257,0.034605695808791095,-3.738647058178585,0.9999466926101933,0.034605695808791095,3.1323113862373257,0.9999466926101933,-3.738647058178585,1.5959183673469388,0.6265984654731458 -3.115426822879458,0.03448048410597109,-3.7880963364767233,0.9999497334994604,0.03448048410597109,3.115426822879458,0.9999497334994604,-3.7880963364767233,1.5979591836734695,0.6257982120051085 -3.0986338018485386,0.034306121642117965,-3.8374136727909223,0.9999544243603178,0.034306121642117965,3.0986338018485386,0.9999544243603178,-3.8374136727909223,1.6,0.625 diff --git a/sparameters/straight_abbbb3de_strai_a6b995e4_74751e6d.yml b/sparameters/straight_abbbb3de_strai_a6b995e4_74751e6d.yml deleted file mode 100644 index 3a3e71f4..00000000 --- a/sparameters/straight_abbbb3de_strai_a6b995e4_74751e6d.yml +++ /dev/null @@ -1,190 +0,0 @@ -resolution: 20 -port_symmetries: - o1: - s11: - - s22 - s21: - - s12 -wl_min: 1.5 -wl_max: 1.6 -wl_steps: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3.0 -ymargin_bot: 3.0 -xmargin_left: 0 -xmargin_right: 0 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0.0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0.0 -component: - ports: - o1: - name: o1 - midpoint: - - 0 - - 0 - width: 0.5 - orientation: 180 - layer: - - 1 - - 0 - port_type: optical - o2: - name: o2 - midpoint: - - 3 - - 0 - width: 0.5 - orientation: 0 - layer: - - 1 - - 0 - port_type: optical - info: - child: - length: 3 - width: 0.5 - name: straight_abbbb3de - module: gdsfactory.components.straight - function_name: straight - info_version: 1 - changed: - length: 3 - width: 0.5 - layer: - - 1 - - 0 - default: - length: 10 - npoints: 2 - with_cladding_box: true - cross_section: - function: cross_section - full: - length: 3 - npoints: 2 - with_cladding_box: true - cross_section: - function: cross_section - width: 0.5 - layer: - - 1 - - 0 - name: straight_abbbb3de_strai_a6b995e4 - module: ubcpdk.components.straight - function_name: straight - info_version: 1 - changed: - length: 3 - default: - length: 10 - width: 0.5 - layer: - - 1 - - 0 - with_pins: true - full: - length: 3 - width: 0.5 - layer: - - 1 - - 0 - with_pins: true - cells: - straight_abbbb3de_strai_a6b995e4: - child: - length: 3 - width: 0.5 - name: straight_abbbb3de - module: gdsfactory.components.straight - function_name: straight - info_version: 1 - changed: - length: 3 - width: 0.5 - layer: - - 1 - - 0 - default: - length: 10 - npoints: 2 - with_cladding_box: true - cross_section: - function: cross_section - full: - length: 3 - npoints: 2 - with_cladding_box: true - cross_section: - function: cross_section - width: 0.5 - layer: - - 1 - - 0 - name: straight_abbbb3de_strai_a6b995e4 - module: ubcpdk.components.straight - function_name: straight - info_version: 1 - changed: - length: 3 - default: - length: 10 - width: 0.5 - layer: - - 1 - - 0 - with_pins: true - full: - length: 3 - width: 0.5 - layer: - - 1 - - 0 - with_pins: true - straight_abbbb3de: - length: 3 - width: 0.5 - name: straight_abbbb3de - module: gdsfactory.components.straight - function_name: straight - info_version: 1 - changed: - length: 3 - width: 0.5 - layer: - - 1 - - 0 - default: - length: 10 - npoints: 2 - with_cladding_box: true - cross_section: - function: cross_section - full: - length: 3 - npoints: 2 - with_cladding_box: true - cross_section: - function: cross_section - width: 0.5 - layer: - - 1 - - 0 - version: 0.0.1 diff --git a/sparameters/straight_f1777396_strai_554f2b19_959b39f7.csv b/sparameters/straight_f1777396_strai_554f2b19_959b39f7.csv deleted file mode 100644 index c78f08a3..00000000 --- a/sparameters/straight_f1777396_strai_554f2b19_959b39f7.csv +++ /dev/null @@ -1,51 +0,0 @@ -s11a,s11m,s21a,s21m,s22m,s22a,s12m,s12a,wavelengths,freqs -3.0045846565662435,0.03533604400203097,-1.2535312350855476,1.0000447868197893,0.03533604400203097,3.0045846565662435,1.0000447868197893,-1.2535312350855476,1.5,0.6666666666666666 -2.9960218581988225,0.034703005581352746,-1.309888820603532,1.0000643174256933,0.034703005581352746,2.9960218581988225,1.0000643174256933,-1.309888820603532,1.5020408163265306,0.6657608695652174 -2.9890211092032835,0.034043241334303025,-1.366086812104934,1.0000841114929062,0.034043241334303025,2.9890211092032835,1.0000841114929062,-1.366086812104934,1.5040816326530613,0.6648575305291723 -2.98374044132031,0.033363075453925535,-1.4221259211429604,1.0001039179776465,0.033363075453925535,2.98374044132031,1.0001039179776465,-1.4221259211429604,1.506122448979592,0.6639566395663956 -2.980335866245795,0.0326692879570925,-1.4780068288771537,1.00012349056609,0.0326692879570925,2.980335866245795,1.00012349056609,-1.4780068288771537,1.5081632653061225,0.6630581867388362 -2.9789579715485384,0.03196910469218367,-1.5337301870192541,1.0001425900986305,0.03196910469218367,2.9789579715485384,1.0001425900986305,-1.5337301870192541,1.510204081632653,0.6621621621621622 -2.97974723918062,0.031270175873348474,-1.5892966189125242,1.0001609868964714,0.031270175873348474,2.97974723918062,1.0001609868964714,-1.5892966189125242,1.5122448979591836,0.6612685560053981 -2.9828279322814195,0.030580537806081696,-1.644706720756192,1.0001784629997987,0.030580537806081696,2.9828279322814195,1.0001784629997987,-1.644706720756192,1.5142857142857142,0.6603773584905661 -2.9883004806192823,0.029908551820107817,-1.6999610629917008,1.0001948143168227,0.029908551820107817,2.9883004806192823,1.0001948143168227,-1.6999610629917008,1.5163265306122449,0.6594885598923285 -2.996232445253426,0.02926281415168529,-1.7550601918677629,1.0002098526726877,0.02926281415168529,2.996232445253426,1.0002098526726877,-1.7550601918677629,1.5183673469387755,0.6586021505376344 -3.006648372126024,0.028652030932117094,-1.8100046311982187,1.0002234077370167,0.028652030932117094,3.006648372126024,1.0002234077370167,-1.8100046311982187,1.5204081632653061,0.6577181208053691 -3.0195191523293237,0.028084853918746027,-1.864794884319575,1.0002353288025245,0.028084853918746027,3.0195191523293237,1.0002353288025245,-1.864794884319575,1.5224489795918368,0.6568364611260054 -3.034751868573145,0.027569675523907128,-1.9194314362471416,1.0002454863809165,0.027569675523907128,3.034751868573145,1.0002454863809165,-1.9194314362471416,1.5244897959183674,0.6559571619812583 -3.052181460947861,0.027114386269709218,-1.9739147560503034,1.0002537734505064,0.027114386269709218,3.052181460947861,1.0002537734505064,-1.9739147560503034,1.526530612244898,0.6550802139037433 -3.071565788239713,0.026726103895927885,-2.028245299206046,1.0002601072439246,0.026726103895927885,3.071565788239713,1.0002601072439246,-2.028245299206046,1.5285714285714287,0.6542056074766355 -3.0925856656939503,0.026410890290959808,-2.082423510567031,1.0002644287819509,0.026410890290959808,3.0925856656939503,1.0002644287819509,-2.082423510567031,1.530612244897959,0.6533333333333333 -3.114851110983864,0.026173478722622563,-2.136449826797287,1.0002667047510418,0.026173478722622563,3.114851110983864,1.0002667047510418,-2.136449826797287,1.5326530612244897,0.6524633821571239 -3.1379142879751347,0.02601703933390292,-2.1903246793870723,1.000266927004433,0.02601703933390292,3.1379142879751347,1.000266927004433,-2.1903246793870723,1.5346938775510204,0.6515957446808511 -3.16128857418619,0.025943006520991713,-2.2440484974126504,1.0002651127236282,0.025943006520991713,3.16128857418619,1.0002651127236282,-2.2440484974126504,1.536734693877551,0.650730411686587 -3.1844720576258614,0.025950995869527368,-2.2976217104330843,1.0002613038416863,0.025950995869527368,3.1844720576258614,1.0002613038416863,-2.2976217104330843,1.5387755102040817,0.649867374005305 -3.20697284121862,0.026038817337956422,-2.3510447512344137,1.0002555663332227,0.026038817337956422,3.20697284121862,1.0002555663332227,-2.3510447512344137,1.5408163265306123,0.6490066225165563 -3.2283331605167316,0.02620258770969322,-2.404318058503782,1.0002479890965792,0.02620258770969322,3.2283331605167316,1.0002479890965792,-2.404318058503782,1.542857142857143,0.6481481481481481 -3.248149567399545,0.026436928131134175,-2.4574420793471634,1.0002386825365415,0.026436928131134175,3.248149567399545,1.0002386825365415,-2.4574420793471634,1.5448979591836736,0.6472919418758256 -3.266087250450894,0.02673522402682001,-2.5104172716126407,1.000227776856913,0.02673522402682001,3.266087250450894,1.000227776856913,-2.5104172716126407,1.5469387755102042,0.646437994722955 -3.2818876774168615,0.027089919547148546,-2.563244105979548,1.0002154200918043,0.027089919547148546,3.2818876774168615,1.0002154200918043,-2.563244105979548,1.5489795918367348,0.6455862977602107 -3.295369840527397,0.02749281893856995,-2.6159230677770045,1.0002017759136472,0.02749281893856995,3.295369840527397,1.0002017759136472,-2.6159230677770045,1.5510204081632653,0.6447368421052632 -3.30642620795815,0.027935371646388266,-2.6684546585031836,1.0001870212607897,0.027935371646388266,3.30642620795815,1.0001870212607897,-2.6684546585031836,1.5530612244897959,0.6438896189224704 -3.315014917582276,0.028408924730655025,-2.7208393970246902,1.0001713438334423,0.028408924730655025,3.315014917582276,1.0001713438334423,-2.7208393970246902,1.5551020408163265,0.6430446194225722 -3.3211498115271136,0.028904933431295122,-2.7730778204453577,1.0001549395095686,0.028904933431295122,3.3211498115271136,1.0001549395095686,-2.7730778204453577,1.5571428571428572,0.6422018348623854 -3.3248897066718555,0.029415127065607304,-2.825170484644002,1.0001380097319974,0.029415127065607304,3.3248897066718555,1.0001380097319974,-2.825170484644002,1.5591836734693878,0.6413612565445026 -3.3263279565647843,0.029931632154645144,-2.8771179644913536,1.0001207589145775,0.029931632154645144,3.3263279565647843,1.0001207589145775,-2.8771179644913536,1.5612244897959184,0.6405228758169934 -3.325582993993335,0.03044705761314588,-2.928920853763635,1.0001033919105466,0.03044705761314588,3.325582993993335,1.0001033919105466,-2.928920853763635,1.563265306122449,0.639686684073107 -3.322790221234754,0.030954548246005385,-2.98057976477731,1.0000861115783821,0.030954548246005385,3.322790221234754,1.0000861115783821,-2.98057976477731,1.5653061224489797,0.6388526727509778 -3.3180953690091206,0.03144781307233686,-3.032095327772083,1.0000691164725388,0.03144781307233686,3.3180953690091206,1.0000691164725388,-3.032095327772083,1.5673469387755103,0.6380208333333333 -3.3116492854411796,0.031921133434546646,-3.0834681900132037,1.0000525987967477,0.031921133434546646,3.3116492854411796,1.0000525987967477,-3.0834681900132037,1.569387755102041,0.6371911573472041 -3.303603973411121,0.03236936405864881,-3.1346990150397134,1.000036741807129,0.03236936405864881,3.303603973411121,1.000036741807129,-3.1346990150397134,1.5714285714285714,0.6363636363636364 -3.294109813030501,0.03278790772677697,-3.185788480881586,1.0000217191519833,0.03278790772677697,3.294109813030501,1.0000217191519833,-3.185788480881586,1.573469387755102,0.6355382619974059 -3.283313570783491,0.03317270643285711,-3.236737279267207,1.0000076920245202,0.03317270643285711,3.283313570783491,1.0000076920245202,-3.236737279267207,1.5755102040816327,0.6347150259067358 -3.271357215268221,0.03352021216078889,-3.2875461138382946,0.9999948082644207,0.03352021216078889,3.271357215268221,0.9999948082644207,-3.2875461138382946,1.5775510204081633,0.6338939197930142 -3.2583772558399913,0.03382736286789554,-3.3382156985893343,0.9999832009364075,0.03382736286789554,3.2583772558399913,0.9999832009364075,-3.3382156985893343,1.579591836734694,0.6330749354005167 -3.244504509166677,0.03409155714072907,-3.3887467561484432,0.999972987218795,0.03409155714072907,3.244504509166677,0.999972987218795,-3.3887467561484432,1.5816326530612246,0.632258064516129 -3.229864177876995,0.03431062958177568,-3.4391400159754157,0.9999642674910937,0.03431062958177568,3.229864177876995,0.9999642674910937,-3.4391400159754157,1.5836734693877552,0.6314432989690721 -3.2145761546108957,0.03448282753620588,-3.48939621249793,0.9999571246262371,0.03448282753620588,3.2145761546108957,0.9999571246262371,-3.48939621249793,1.5857142857142859,0.6306306306306306 -3.1987554847887694,0.0346067895313454,-3.539516083208713,0.9999516234915024,0.0346067895313454,3.1987554847887694,0.9999516234915024,-3.539516083208713,1.5877551020408165,0.6298200514138816 -3.1825129379143355,0.034681525632187016,-3.5895003667487657,0.9999478106560128,0.034681525632187016,3.1825129379143355,0.9999478106560128,-3.5895003667487657,1.5897959183673471,0.6290115532734274 -3.165955650430522,0.03470639979872709,-3.63934980100042,0.9999457143009322,0.03470639979872709,3.165955650430522,0.9999457143009322,-3.63934980100042,1.5918367346938775,0.6282051282051282 -3.149187813419454,0.03468111425236904,-3.6890651212127885,0.9999453443218174,0.03468111425236904,3.149187813419454,0.9999453443218174,-3.6890651212127885,1.5938775510204082,0.6274007682458387 -3.1323113862373257,0.034605695808791095,-3.738647058178585,0.9999466926101933,0.034605695808791095,3.1323113862373257,0.9999466926101933,-3.738647058178585,1.5959183673469388,0.6265984654731458 -3.115426822879458,0.03448048410597109,-3.7880963364767233,0.9999497334994604,0.03448048410597109,3.115426822879458,0.9999497334994604,-3.7880963364767233,1.5979591836734695,0.6257982120051085 -3.0986338018485386,0.034306121642117965,-3.8374136727909223,0.9999544243603178,0.034306121642117965,3.0986338018485386,0.9999544243603178,-3.8374136727909223,1.6,0.625 diff --git a/sparameters/straight_f1777396_strai_554f2b19_959b39f7.yml b/sparameters/straight_f1777396_strai_554f2b19_959b39f7.yml deleted file mode 100644 index 99fae643..00000000 --- a/sparameters/straight_f1777396_strai_554f2b19_959b39f7.yml +++ /dev/null @@ -1,190 +0,0 @@ -resolution: 20 -port_symmetries: - o1: - s11: - - s22 - s21: - - s12 -wl_min: 1.5 -wl_max: 1.6 -wl_steps: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3.0 -ymargin_bot: 3.0 -xmargin_left: 0 -xmargin_right: 0 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0.0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0.0 -component: - ports: - o1: - name: o1 - midpoint: - - 0 - - 0 - width: 0.5 - orientation: 180 - layer: - - 1 - - 0 - port_type: optical - o2: - name: o2 - midpoint: - - 3 - - 0 - width: 0.5 - orientation: 0 - layer: - - 1 - - 0 - port_type: optical - info: - child: - length: 3 - width: 0.5 - name: straight_f1777396 - module: gdsfactory.components.straight - function_name: straight - info_version: 1 - changed: - layer: - - 1 - - 0 - length: 3 - width: 0.5 - default: - length: 10 - npoints: 2 - with_cladding_box: true - cross_section: - function: cross_section - full: - length: 3 - npoints: 2 - with_cladding_box: true - cross_section: - function: cross_section - width: 0.5 - layer: - - 1 - - 0 - name: straight_f1777396_strai_554f2b19 - module: ubcpdk.components.straight - function_name: straight - info_version: 1 - changed: - length: 3 - default: - length: 10 - width: 0.5 - layer: - - 1 - - 0 - with_pins: true - full: - length: 3 - width: 0.5 - layer: - - 1 - - 0 - with_pins: true - cells: - straight_f1777396_strai_554f2b19: - child: - length: 3 - width: 0.5 - name: straight_f1777396 - module: gdsfactory.components.straight - function_name: straight - info_version: 1 - changed: - layer: - - 1 - - 0 - length: 3 - width: 0.5 - default: - length: 10 - npoints: 2 - with_cladding_box: true - cross_section: - function: cross_section - full: - length: 3 - npoints: 2 - with_cladding_box: true - cross_section: - function: cross_section - width: 0.5 - layer: - - 1 - - 0 - name: straight_f1777396_strai_554f2b19 - module: ubcpdk.components.straight - function_name: straight - info_version: 1 - changed: - length: 3 - default: - length: 10 - width: 0.5 - layer: - - 1 - - 0 - with_pins: true - full: - length: 3 - width: 0.5 - layer: - - 1 - - 0 - with_pins: true - straight_f1777396: - length: 3 - width: 0.5 - name: straight_f1777396 - module: gdsfactory.components.straight - function_name: straight - info_version: 1 - changed: - layer: - - 1 - - 0 - length: 3 - width: 0.5 - default: - length: 10 - npoints: 2 - with_cladding_box: true - cross_section: - function: cross_section - full: - length: 3 - npoints: 2 - with_cladding_box: true - cross_section: - function: cross_section - width: 0.5 - layer: - - 1 - - 0 - version: 0.0.1 diff --git a/sparameters/straight_length3_18b541d4.npz b/sparameters/straight_length3_18b541d4.npz deleted file mode 100644 index 834ec043..00000000 Binary files a/sparameters/straight_length3_18b541d4.npz and /dev/null differ diff --git a/sparameters/straight_length3_18b541d4.yml b/sparameters/straight_length3_18b541d4.yml deleted file mode 100644 index 23c11733..00000000 --- a/sparameters/straight_length3_18b541d4.yml +++ /dev/null @@ -1,76 +0,0 @@ -resolution: 30 -port_symmetries: - o1@0,o1@0: - - o2@0,o2@0 - o2@0,o1@0: - - o1@0,o2@0 -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3 -ymargin_bot: 3 -xmargin_left: 0 -xmargin_right: 0 -is_3d: false -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - info: {} - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - info: {} -component: - name: straight_length3 - settings: - name: straight_length3 - module: gdsfactory.components.straight - function_name: straight - info: - length: 3.0 - width: 0.5 - interconnect: - model: ebeam_wg_integral_1550 - layout_model_property_pairs: - wg_length: - - length - - 1.0e-06 - wg_width: - - width - - 1.0e-06 - layout_model_port_pairs: - o1: port 1 - o2: port 2 - properties: - annotate: false - info_version: 2 - full: - length: 3 - npoints: 2 - with_bbox: true - cross_section: strip - changed: - length: 3 - default: - length: 10.0 - npoints: 2 - with_bbox: true - cross_section: strip - child: null -compute_time_seconds: 9.359582662582397 -compute_time_minutes: 0.1559930443763733 diff --git a/sparameters/straight_length3_4f6248eb.csv b/sparameters/straight_length3_4f6248eb.csv deleted file mode 100644 index e0120d69..00000000 --- a/sparameters/straight_length3_4f6248eb.csv +++ /dev/null @@ -1,51 +0,0 @@ -s11a,s11m,s21a,s21m,s22m,s22a,s12m,s12a,wavelengths,freqs --3.1401746951119565,0.014993127083214658,-1.5982108759169835,1.0000063902863874,0.014993127083214658,-3.1401746951119565,1.0000063902863874,-1.5982108759169835,1.5,0.6666666666666666 --3.1400531599443506,0.014955209131279974,-1.6527058679848272,1.0000052160929083,0.014955209131279974,-3.1400531599443506,1.0000052160929083,-1.6527058679848272,1.5020408163265306,0.6657608695652174 --3.139936342386994,0.014917508925004723,-1.70705066921679,1.0000040626882984,0.014917508925004723,-3.139936342386994,1.0000040626882984,-1.70705066921679,1.5040816326530613,0.6648575305291723 --3.1398244478448505,0.014880015630837021,-1.7612459024249514,1.000002934153751,0.014880015630837021,-3.1398244478448505,1.000002934153751,-1.7612459024249514,1.506122448979592,0.6639566395663956 --3.1397176090747014,0.014842718318091787,-1.8152921866723166,1.0000018345250625,0.014842718318091787,-3.1397176090747014,1.0000018345250625,-1.8152921866723166,1.5081632653061225,0.6630581867388362 --3.1396158833498578,0.014805606111050352,-1.8691901376175457,1.0000007676815763,0.014805606111050352,-3.1396158833498578,1.0000007676815763,-1.8691901376175457,1.510204081632653,0.6621621621621622 --3.1395192518381116,0.014768668348617122,-1.9229403677863885,0.9999997372367496,0.014768668348617122,-3.1395192518381116,0.9999997372367496,-1.9229403677863885,1.5122448979591836,0.6612685560053981 --3.1394276214024,0.014731894737127644,-1.9765434867703395,0.9999987464524539,0.014731894737127644,-3.1394276214024,0.9999987464524539,-1.9765434867703395,1.5142857142857142,0.6603773584905661 --3.1393408284931414,0.014695275482819101,-2.0300001013655105,0.9999977981934671,0.014695275482819101,-3.1393408284931414,0.9999977981934671,-2.0300001013655105,1.5163265306122449,0.6594885598923285 --3.1392586444061745,0.014658801396519953,-2.0833108156716866,0.9999968949255336,0.014658801396519953,-3.1392586444061745,0.9999968949255336,-2.0833108156716866,1.5183673469387755,0.6586021505376344 --3.1391807810645904,0.014622463969223587,-2.1364762311709375,0.9999960387519778,0.014622463969223587,-3.1391807810645904,0.9999960387519778,-2.1364762311709375,1.5204081632653061,0.6577181208053691 --3.139106896619074,0.014586255424671039,-2.1894969467996193,0.9999952314706524,0.014586255424671039,-3.139106896619074,0.9999952314706524,-2.1894969467996193,1.5224489795918368,0.6568364611260054 --3.139036600518594,0.01455016875800131,-2.2423735590175773,0.9999944746337611,0.01455016875800131,-3.139036600518594,0.9999944746337611,-2.2423735590175773,1.5244897959183674,0.6559571619812583 --3.1389694580946648,0.014514197770053373,-2.295106661869319,0.999993769592733,0.014514197770053373,-3.1389694580946648,0.999993769592733,-2.295106661869319,1.526530612244898,0.6550802139037433 --3.1389049950437546,0.014478337103328373,-2.3476968470253574,0.9999931175197971,0.014478337103328373,-3.1389049950437546,0.9999931175197971,-2.3476968470253574,1.5285714285714287,0.6542056074766355 --3.1388427023359338,0.01444258228226092,-2.400144703791289,0.9999925194039195,0.01444258228226092,-3.1388427023359338,0.9999925194039195,-2.400144703791289,1.530612244897959,0.6533333333333333 --3.1387820420213792,0.014406929752276396,-2.452450819074138,0.9999919760320248,0.014406929752276396,-3.1387820420213792,0.9999919760320248,-2.452450819074138,1.5326530612244897,0.6524633821571239 --3.1387224541653365,0.014371376912645995,-2.5046157773046756,0.9999914879677141,0.014371376912645995,-3.1387224541653365,0.9999914879677141,-2.5046157773046756,1.5346938775510204,0.6515957446808511 --3.138663366353989,0.014335919791413793,-2.55664016029418,0.9999910555329404,0.014335919791413793,-3.138663366353989,0.9999910555329404,-2.55664016029418,1.536734693877551,0.650730411686587 --3.138604196255699,0.014300562397780707,-2.608524547202806,0.9999906788522267,0.014300562397780707,-3.138604196255699,0.9999906788522267,-2.608524547202806,1.5387755102040817,0.649867374005305 --3.1385443693416004,0.01426530268296076,-2.660269514230776,0.9999903578430913,0.01426530268296076,-3.1385443693416004,0.9999903578430913,-2.660269514230776,1.5408163265306123,0.6490066225165563 --3.1384833203695353,0.014230142529604908,-2.7118756346126887,0.9999900922696652,0.014230142529604908,-3.1384833203695353,0.9999900922696652,-2.7118756346126887,1.542857142857143,0.6481481481481481 --3.138420505706104,0.014195081806789458,-2.7633434783353303,0.999989882005284,0.014195081806789458,-3.138420505706104,0.999989882005284,-2.7633434783353303,1.5448979591836736,0.6472919418758256 --3.138355402106514,0.014160125406456357,-2.814673612319401,0.9999897267140966,0.014160125406456357,-3.138355402106514,0.9999897267140966,-2.814673612319401,1.5469387755102042,0.646437994722955 --3.1382875179116185,0.014125276979435704,-2.8658666002398734,0.9999896260109306,0.014125276979435704,-3.1382875179116185,0.9999896260109306,-2.8658666002398734,1.5489795918367348,0.6455862977602107 --3.1382163988925718,0.014090537834736457,-2.9169230021059342,0.9999895801626802,0.014090537834736457,-3.1382163988925718,0.9999895801626802,-2.9169230021059342,1.5510204081632653,0.6447368421052632 --3.13814162228951,0.014055915364357068,-2.9678433749436715,0.9999895889404021,0.014055915364357068,-3.13814162228951,0.9999895889404021,-2.9678433749436715,1.5530612244897959,0.6438896189224704 --3.1380628112387714,0.014021413765803884,-3.0186282721819646,0.9999896524471084,0.014021413765803884,-3.1380628112387714,0.9999896524471084,-3.0186282721819646,1.5551020408163265,0.6430446194225722 --3.1379796335018764,0.013987038604013303,-3.069278243837304,0.9999897707835502,0.013987038604013303,-3.1379796335018764,0.9999897707835502,-3.069278243837304,1.5571428571428572,0.6422018348623854 --3.137891805597193,0.013952796617207218,-3.119793836464859,0.9999899440281578,0.013952796617207218,-3.137891805597193,0.9999899440281578,-3.119793836464859,1.5591836734693878,0.6413612565445026 --3.137799102146037,0.013918691653527115,-3.1701755929170012,0.9999901723995176,0.013918691653527115,-3.137799102146037,0.9999901723995176,-3.1701755929170012,1.5612244897959184,0.6405228758169934 --3.137701348546941,0.013884732560236283,-3.22042405268955,0.9999904558956949,0.013884732560236283,-3.137701348546941,0.9999904558956949,-3.22042405268955,1.563265306122449,0.639686684073107 --3.137598433712615,0.01385092537999969,-3.2705397515350394,0.9999907946571186,0.01385092537999969,-3.137598433712615,0.9999907946571186,-3.2705397515350394,1.5653061224489797,0.6388526727509778 --3.1374903063504704,0.013817276828335213,-3.3205232216495726,0.9999911888298968,0.013817276828335213,-3.1374903063504704,0.9999911888298968,-3.3205232216495726,1.5673469387755103,0.6380208333333333 --3.1373769787162966,0.013783791433004618,-3.370374991528352,0.9999916387836191,0.013783791433004618,-3.1373769787162966,0.9999916387836191,-3.370374991528352,1.569387755102041,0.6371911573472041 --3.1372585150348202,0.013750478055929388,-3.420095586638664,0.9999921444783915,0.013750478055929388,-3.1372585150348202,0.9999921444783915,-3.420095586638664,1.5714285714285714,0.6363636363636364 --3.1371350408166014,0.013717341867322265,-3.469685528643108,0.999992706541501,0.013717341867322265,-3.1371350408166014,0.999992706541501,-3.469685528643108,1.573469387755102,0.6355382619974059 --3.137006732825954,0.013684388908234781,-3.519145336232996,0.9999933253080971,0.013684388908234781,-3.137006732825954,0.9999933253080971,-3.519145336232996,1.5755102040816327,0.6347150259067358 --3.136873818217872,0.013651624519663274,-3.56847552488917,0.9999940013013006,0.013651624519663274,-3.136873818217872,0.9999940013013006,-3.56847552488917,1.5775510204081633,0.6338939197930142 --3.136736572818636,0.01361905257218518,-3.6176766072929145,0.9999947346866631,0.01361905257218518,-3.136736572818636,0.9999947346866631,-3.6176766072929145,1.579591836734694,0.6330749354005167 --3.136595311805823,0.013586679355278146,-3.6667490931085007,0.9999955259451733,0.013586679355278146,-3.136595311805823,0.9999955259451733,-3.6667490931085007,1.5816326530612246,0.632258064516129 --3.1364503956340872,0.01355450837995737,-3.715693489300391,0.9999963751998816,0.01355450837995737,-3.1364503956340872,0.9999963751998816,-3.715693489300391,1.5836734693877552,0.6314432989690721 --3.1363022222937156,0.013522543285357375,-3.7645103003352336,0.9999972821894334,0.013522543285357375,-3.1363022222937156,0.9999972821894334,-3.7645103003352336,1.5857142857142859,0.6306306306306306 --3.136151224919082,0.013490787153228366,-3.8132000278642906,0.9999982468175411,0.013490787153228366,-3.136151224919082,0.9999982468175411,-3.8132000278642906,1.5877551020408165,0.6298200514138816 --3.135997865921894,0.013459243293980171,-3.8617631712488887,0.999999268577911,0.013459243293980171,-3.135997865921894,0.999999268577911,-3.8617631712488887,1.5897959183673471,0.6290115532734274 --3.135842639169865,0.013427911041973634,-3.9102002274655696,1.0000003466023855,0.013427911041973634,-3.135842639169865,1.0000003466023855,-3.9102002274655696,1.5918367346938775,0.6282051282051282 --3.1356860484995375,0.013396794051965644,-3.958511691189818,1.0000014802618624,0.013396794051965644,-3.1356860484995375,1.0000014802618624,-3.958511691189818,1.5938775510204082,0.6274007682458387 --3.1355286141403362,0.013365892893788317,-4.006698055257955,1.0000026682496228,0.013365892893788317,-3.1355286141403362,1.0000026682496228,-4.006698055257955,1.5959183673469388,0.6265984654731458 --3.135370866899377,0.013335204542504637,-4.054759810134578,1.0000039094465045,0.013335204542504637,-3.135370866899377,1.0000039094465045,-4.054759810134578,1.5979591836734695,0.6257982120051085 --3.1352133235280815,0.013304731849712282,-4.1026974447972755,1.0000052025027075,0.013304731849712282,-3.1352133235280815,1.0000052025027075,-4.1026974447972755,1.6,0.625 diff --git a/sparameters/straight_length3_4f6248eb.yml b/sparameters/straight_length3_4f6248eb.yml deleted file mode 100644 index e9a57ee0..00000000 --- a/sparameters/straight_length3_4f6248eb.yml +++ /dev/null @@ -1,83 +0,0 @@ -resolution: 30 -port_symmetries: - o1: - s11: - - s22 - s21: - - s12 -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3 -ymargin_bot: 3 -xmargin_left: 0 -xmargin_right: 0 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -component: - name: straight_length3 - version: 0.0.1 - settings: - name: straight_length3 - module: gdsfactory.components.straight - function_name: straight - info: - length: 3.0 - width: 0.5 - model: ebeam_wg_integral_1550 - library: Design kits/ebeam - layout_model_property_pairs: - - - length - - wg_length - - 1.0e-06 - - - width - - wg_width - - 1.0e-06 - layout_model_port_pairs: - - - o1 - - port 1 - - - o2 - - port 2 - spice_params: - - wg_length - - wg_width - component_type: - - optical - properties: - - - annotate - - false - info_version: 2 - full: - length: 3 - npoints: 2 - with_bbox: true - cross_section: strip - changed: - length: 3 - default: - length: 10 - npoints: 2 - with_bbox: true - cross_section: strip - child: null -compute_time_seconds: 3.8111190795898438 -compute_time_minutes: 0.0635186513264974 diff --git a/sparameters/straight_length3_8f9504cc.npz b/sparameters/straight_length3_8f9504cc.npz deleted file mode 100644 index 5ff35701..00000000 Binary files a/sparameters/straight_length3_8f9504cc.npz and /dev/null differ diff --git a/sparameters/straight_length3_8f9504cc.yml b/sparameters/straight_length3_8f9504cc.yml deleted file mode 100644 index 2ffff990..00000000 --- a/sparameters/straight_length3_8f9504cc.yml +++ /dev/null @@ -1,82 +0,0 @@ -resolution: 30 -port_symmetries: - o1@0,o1@0: - - o2@0,o2@0 - o2@0,o1@0: - - o1@0,o2@0 -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3 -ymargin_bot: 3 -xmargin_left: 0 -xmargin_right: 0 -is_3d: false -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - thickness_tolerance: null - zmin: 0.0 - material: si - sidewall_angle: 0.0 - width_to_z: 0.0 - z_to_bias: null - info: {} - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - thickness_tolerance: null - zmin: 0.0 - material: si - sidewall_angle: 0.0 - width_to_z: 0.0 - z_to_bias: null - info: {} -component: - name: straight_length3 - settings: - name: straight_length3 - module: gdsfactory.components.straight - function_name: straight - info: - length: 3.0 - width: 0.5 - interconnect: - model: ebeam_wg_integral_1550 - layout_model_property_pairs: - wg_length: - - length - - 1.0e-06 - wg_width: - - width - - 1.0e-06 - layout_model_port_pairs: - o1: port 1 - o2: port 2 - properties: - annotate: false - info_version: 2 - full: - length: 3 - npoints: 2 - with_bbox: true - cross_section: strip - changed: - length: 3 - default: - length: 10.0 - npoints: 2 - with_bbox: true - cross_section: strip - child: null -compute_time_seconds: 6.031326532363892 -compute_time_minutes: 0.10052210887273152 diff --git a/sparameters/straight_length3_d34ef86b690da3f9c50cb80b5cf3ff11.npz b/sparameters/straight_length3_d34ef86b690da3f9c50cb80b5cf3ff11.npz deleted file mode 100644 index dbf73d5e..00000000 Binary files a/sparameters/straight_length3_d34ef86b690da3f9c50cb80b5cf3ff11.npz and /dev/null differ diff --git a/sparameters/straight_length3p1_89092d4a.csv b/sparameters/straight_length3p1_89092d4a.csv deleted file mode 100644 index cdd4f61d..00000000 --- a/sparameters/straight_length3p1_89092d4a.csv +++ /dev/null @@ -1,51 +0,0 @@ -s11a,s11m,s21a,s21m,s12a,s12m,s22a,s22m,wavelengths,freqs --3.1409718491616174,0.015000709630095529,-0.2097018318446722,0.999992433228901,-0.20970183184467223,0.9999924332289012,-3.1409718491616125,0.015000709630095439,1.5,0.6666666666666666 --3.140903526468945,0.014961333323375597,-0.26629137439806744,0.9999902597448059,-0.26629137439806727,0.9999902597448062,-3.140903526468943,0.014961333323375415,1.5020408163265306,0.6657608695652174 --3.1408281643786182,0.014922100843705566,-0.3227249516363979,0.9999881988501778,-0.3227249516363979,0.9999881988501779,-3.1408281643786093,0.014922100843705427,1.5040816326530613,0.6648575305291723 --3.1407454551354768,0.014883023027045266,-0.37900321971560713,0.9999862461388813,-0.379003219715607,0.999986246138882,-3.1407454551354714,0.01488302302704502,1.506122448979592,0.6639566395663956 --3.140655193717943,0.01484411106338709,-0.43512683062609464,0.9999843960364447,-0.435126830626095,0.9999843960364452,-3.140655193717938,0.014844111063387068,1.5081632653061225,0.6630581867388362 --3.1405572791075023,0.014805376314805538,-0.4910964322006012,0.9999826421722039,-0.491096432200601,0.9999826421722038,-3.140557279107491,0.014805376314805182,1.510204081632653,0.6621621621621622 --3.1404517139666432,0.014766830133118934,-0.5469126681403272,0.9999809777369211,-0.5469126681403275,0.9999809777369212,-3.1404517139666335,0.014766830133118906,1.5122448979591836,0.6612685560053981 --3.140338602762492,0.0147284836805559,-0.6025761780587062,0.9999793958160186,-0.6025761780587064,0.9999793958160186,-3.1403386027624873,0.014728483680556051,1.5142857142857142,0.6603773584905661 --3.1402181484068286,0.014690347756348024,-0.6580875975417215,0.9999778896904743,-0.658087597541722,0.9999778896904744,-3.1402181484068237,0.014690347756348372,1.5163265306122449,0.6594885598923285 --3.1400906475022543,0.01465243263278767,-0.7134475582227994,0.9999764530992046,-0.7134475582227996,0.9999764530992046,-3.1400906475022485,0.014652432632787786,1.5183673469387755,0.6586021505376344 --3.139956484319652,0.014614747902944772,-0.7686566878699589,0.9999750804584898,-0.7686566878699588,0.9999750804584897,-3.139956484319631,0.014614747902945128,1.5204081632653061,0.6577181208053691 --3.1398161236376896,0.014577302342195333,-0.8237156104820266,0.9999737670356358,-0.8237156104820266,0.9999737670356357,-3.13981612363768,0.014577302342195198,1.5224489795918368,0.6568364611260054 --3.1396701026091907,0.014540103786325418,-0.8786249463911082,0.9999725090757836,-0.8786249463911084,0.9999725090757836,-3.1396701026091844,0.014540103786325328,1.5244897959183674,0.6559571619812583 --3.1395190218122413,0.014503159026859603,-0.9333853123676378,0.9999713038820897,-0.9333853123676381,0.9999713038820895,-3.1395190218122386,0.014503159026859684,1.526530612244898,0.6550802139037433 --3.13936353566705,0.014466473724952645,-0.9879973217249419,0.9999701498508857,-0.9879973217249421,0.9999701498508863,-3.1393635356670457,0.014466473724952598,1.5285714285714287,0.6542056074766355 --3.139204342390256,0.014430052345113851,-1.0424615844202878,0.9999690464647019,-1.0424615844202878,0.9999690464647019,-3.1392043423902503,0.01443005234511396,1.530612244897959,0.6533333333333333 --3.139042173663348,0.014393898107533143,-1.0967787071490345,0.9999679942466141,-1.0967787071490345,0.9999679942466143,-3.1390421736633427,0.014393898107533184,1.5326530612244897,0.6524633821571239 --3.138877784179019,0.014358012960495097,-1.1509492934300969,0.999966994680695,-1.1509492934300969,0.9999669946806952,-3.138877784179025,0.014358012960494883,1.5346938775510204,0.6515957446808511 --3.138711942782874,0.014322395229010567,-1.20497394363495,0.9999660500821702,-1.2049739436349503,0.9999660500821703,-3.1387119427828685,0.014322395229010656,1.536734693877551,0.650730411686587 --3.1385454160592445,0.014287048979571348,-1.2588532552283664,0.9999651635499067,-1.2588532552283669,0.999965163549907,-3.1385454160592468,0.0142870489795714,1.5387755102040817,0.649867374005305 --3.138378967651248,0.014251970034330078,-1.3125878225503724,0.9999643386910757,-1.3125878225503724,0.9999643386910758,-3.1383789676512515,0.014251970034329995,1.5408163265306123,0.6490066225165563 --3.1382133426660497,0.014217155340018056,-1.3661782370259232,0.999963579542336,-1.3661782370259232,0.9999635795423358,-3.138213342666052,0.014217155340018108,1.542857142857143,0.6481481481481481 --3.138049260262404,0.014182600696938451,-1.4196250871415326,0.9999628903811971,-1.4196250871415328,0.9999628903811969,-3.1380492602624064,0.014182600696938564,1.5448979591836736,0.6472919418758256 --3.137887405341549,0.014148300829032628,-1.4729289584517202,0.999962275556875,-1.4729289584517202,0.999962275556875,-3.137887405341553,0.01414830082903282,1.5469387755102042,0.646437994722955 --3.1377284199211197,0.01411425038097972,-1.5260904335930474,0.999961739390746,-1.5260904335930474,0.9999617393907461,-3.1377284199211246,0.014114250380979758,1.5489795918367348,0.6455862977602107 --3.1375729013968274,0.01408043942246829,-1.5791100921675119,0.9999612856914448,-1.579110092167512,0.9999612856914454,-3.137572901396842,0.014080439422468309,1.5510204081632653,0.6447368421052632 --3.1374213862231217,0.014046862775416698,-1.631988510916651,0.9999609182716732,-1.6319885109166508,0.9999609182716727,-3.137421386223125,0.014046862775416656,1.5530612244897959,0.6438896189224704 --3.1372743551536195,0.014013510758302239,-1.6847262634839149,0.9999606401497846,-1.684726263483915,0.9999606401497848,-3.1372743551536155,0.014013510758302145,1.5551020408163265,0.6430446194225722 --3.13713222248359,0.013980374961042376,-1.737323920501857,0.9999604538512393,-1.7373239205018567,0.9999604538512393,-3.137132222483584,0.013980374961042102,1.5571428571428572,0.6422018348623854 --3.1369953386975955,0.013947443382285209,-1.7897820494263532,0.9999603609432175,-1.7897820494263532,0.9999603609432176,-3.1369953386975977,0.013947443382285036,1.5591836734693878,0.6413612565445026 --3.136863978307717,0.013914708228129064,-1.842101214688775,0.9999603625606548,-1.842101214688775,0.9999603625606548,-3.13686397830772,0.01391470822812895,1.5612244897959184,0.6405228758169934 --3.1367383463932055,0.01388215941570766,-1.8942819774869786,0.9999604588588139,-1.8942819774869786,0.9999604588588142,-3.136738346393206,0.013882159415707545,1.563265306122449,0.639686684073107 --3.136618579526069,0.01384978373524841,-1.9463248957073442,0.9999606489053533,-1.9463248957073442,0.9999606489053531,-3.136618579526082,0.013849783735248105,1.5653061224489797,0.6388526727509778 --3.1365047339972936,0.013817573671348652,-1.9982305241397624,0.9999609313905006,-1.9982305241397627,0.999960931390501,-3.136504733997283,0.01381757367134836,1.5673469387755103,0.6380208333333333 --3.136396799605604,0.013785518065959916,-2.0499994141800526,0.9999613038949691,-2.0499994141800526,0.9999613038949691,-3.1363967996055946,0.013785518065959852,1.569387755102041,0.6371911573472041 --3.1362946949073103,0.013753607044348226,-2.101632113947037,0.999961763329442,-2.101632113947037,0.9999617633294416,-3.136294694907312,0.013753607044348143,1.5714285714285714,0.6363636363636364 --3.1361982717133774,0.013721830751768036,-2.153129168230329,0.9999623058938787,-2.153129168230329,0.9999623058938789,-3.13619827171337,0.013721830751767796,1.573469387755102,0.6355382619974059 --3.136107316777306,0.013690180539544074,-2.2044911185245155,0.9999629272594486,-2.2044911185245155,0.9999629272594485,-3.1361073167772973,0.01369018053954401,1.5755102040816327,0.6347150259067358 --3.1360215589091704,0.01365864704219157,-2.2557185029709164,0.9999636225013238,-2.2557185029709164,0.9999636225013236,-3.136021558909151,0.013658647042191515,1.5775510204081633,0.6338939197930142 --3.1359406693491727,0.01362722301801668,-2.30681185647138,0.9999643864546087,-2.30681185647138,0.9999643864546089,-3.1359406693491696,0.013627223018016436,1.579591836734694,0.6330749354005167 --3.1358642702195443,0.013595901329775647,-2.3577717106486418,0.9999652136632535,-2.3577717106486418,0.9999652136632534,-3.135864270219529,0.013595901329775508,1.5816326530612246,0.632258064516129 --3.1357919410745008,0.013564674570093135,-2.408598593868385,0.9999660984747887,-2.408598593868385,0.9999660984747885,-3.1357919410744852,0.013564674570093131,1.5836734693877552,0.6314432989690721 --3.135723220032427,0.013533538089078655,-2.4592930314028165,0.9999670354445847,-2.4592930314028165,0.9999670354445847,-3.1357232200324114,0.013533538089078605,1.5857142857142859,0.6306306306306306 --3.135657615530615,0.013502486827615465,-2.509855545372894,0.9999680191928558,-2.509855545372894,0.9999680191928557,-3.1356576155305915,0.013502486827615337,1.5877551020408165,0.6298200514138816 --3.13559461028765,0.013471516949650441,-2.5602866548779177,0.9999690446852473,-2.5602866548779177,0.9999690446852473,-3.1355946102876264,0.013471516949650413,1.5897959183673471,0.6290115532734274 --3.135533668434137,0.013440625621577518,-2.6105868760647053,0.9999701073448959,-2.6105868760647053,0.9999701073448961,-3.1355336684341126,0.013440625621577338,1.5918367346938775,0.6282051282051282 --3.135474241701238,0.013409811320561151,-2.660756722224381,0.9999712032042252,-2.660756722224381,0.9999712032042252,-3.1354742417012025,0.01340981132056139,1.5938775510204082,0.6274007682458387 --3.1354157795365394,0.013379071975659114,-2.7107967037999323,0.9999723288473382,-2.7107967037999323,0.9999723288473379,-3.1354157795365127,0.013379071975659143,1.5959183673469388,0.6265984654731458 --3.135357732512341,0.013348406681572996,-2.7607073285474493,0.9999734816640838,-2.7607073285474493,0.9999734816640838,-3.1353577325123148,0.013348406681573083,1.5979591836734695,0.6257982120051085 --3.135299553623261,0.013317818189253367,-2.81048910174501,0.9999746601614025,-2.81048910174501,0.9999746601614028,-3.135299553623237,0.013317818189253526,1.6,0.625 diff --git a/sparameters/straight_length3p1_89092d4a.yml b/sparameters/straight_length3p1_89092d4a.yml deleted file mode 100644 index f7a17b6f..00000000 --- a/sparameters/straight_length3p1_89092d4a.yml +++ /dev/null @@ -1,70 +0,0 @@ -resolution: 30 -port_symmetries: {} -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3.0 -ymargin_bot: 3.0 -xmargin_left: 0 -xmargin_right: 0 -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 -component: - name: straight_length3p1 - version: 0.0.1 - settings: - name: straight_length3p1 - module: gdsfactory.components.straight - function_name: straight - info: - length: 3.1 - width: 0.5 - interconnect: - model: ebeam_wg_integral_1550 - layout_model_property_pairs: - wg_length: - - length - - 1.0e-06 - wg_width: - - width - - 1.0e-06 - layout_model_port_pairs: - o1: port 1 - o2: port 2 - properties: - annotate: false - info_version: 2 - full: - length: 3.1 - npoints: 2 - with_bbox: true - cross_section: strip - changed: - length: 3.1 - default: - length: 10.0 - npoints: 2 - with_bbox: true - cross_section: strip - child: null -compute_time_seconds: 3.663620948791504 -compute_time_minutes: 0.06106034914652506 diff --git a/sparameters/straight_length3p1_bdd2f6cd.npz b/sparameters/straight_length3p1_bdd2f6cd.npz deleted file mode 100644 index 8d485410..00000000 Binary files a/sparameters/straight_length3p1_bdd2f6cd.npz and /dev/null differ diff --git a/sparameters/straight_length3p1_bdd2f6cd.yml b/sparameters/straight_length3p1_bdd2f6cd.yml deleted file mode 100644 index df95725f..00000000 --- a/sparameters/straight_length3p1_bdd2f6cd.yml +++ /dev/null @@ -1,72 +0,0 @@ -resolution: 30 -port_symmetries: {} -wavelength_start: 1.5 -wavelength_stop: 1.6 -wavelength_points: 50 -port_margin: 2 -port_monitor_offset: -0.1 -port_source_offset: -0.1 -dispersive: false -ymargin_top: 3.0 -ymargin_bot: 3.0 -xmargin_left: 0 -xmargin_right: 0 -is_3d: false -layer_stack: - strip: - layer: - - 1 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - info: {} - strip2: - layer: - - 31 - - 0 - thickness: 0.22 - zmin: 0.0 - material: si - sidewall_angle: 0 - info: {} -component: - name: straight_length3p1 - settings: - name: straight_length3p1 - module: gdsfactory.components.straight - function_name: straight - info: - length: 3.1 - width: 0.5 - interconnect: - model: ebeam_wg_integral_1550 - layout_model_property_pairs: - wg_length: - - length - - 1.0e-06 - wg_width: - - width - - 1.0e-06 - layout_model_port_pairs: - o1: port 1 - o2: port 2 - properties: - annotate: false - info_version: 2 - full: - length: 3.1 - npoints: 2 - with_bbox: true - cross_section: strip - changed: - length: 3.1 - default: - length: 10.0 - npoints: 2 - with_bbox: true - cross_section: strip - child: null -compute_time_seconds: 10.377128601074219 -compute_time_minutes: 0.172952143351237 diff --git a/tests/conftest.py b/tests/conftest.py deleted file mode 100644 index c82103a6..00000000 --- a/tests/conftest.py +++ /dev/null @@ -1,118 +0,0 @@ -"""Shared test fixtures and custom difftest with visual XOR diff output.""" - -import filecmp -import pathlib -import shutil - -import gdsfactory as gf -from gdsfactory.name import clean_name, get_name_short - -PROJECT_ROOT = pathlib.Path(__file__).parent.parent -DIFF_DIR = PROJECT_ROOT / "test_diffs" - -_config = {"update_gds_refs": False} - - -def pytest_addoption(parser): - """Add --update-gds-refs option to pytest.""" - parser.addoption( - "--update-gds-refs", - action="store_true", - default=False, - help="Update GDS reference files instead of failing on mismatch.", - ) - - -def pytest_configure(config): - """Read --update-gds-refs flag and create diff output directory.""" - - DIFF_DIR.mkdir(exist_ok=True) - _config["update_gds_refs"] = config.getoption("--update-gds-refs", default=False) - - -def _render_gds_to_png(gds_path: pathlib.Path, png_path: pathlib.Path) -> None: - """Render a GDS file to a PNG image using klayout's headless LayoutView.""" - from klayout.lay import LayoutView # noqa: PLC0415 - - view = LayoutView() - view.load_layout(str(gds_path)) - view.max_hier() - view.zoom_fit() - view.save_image(str(png_path), 1024, 1024) - - -def difftest( # noqa: C901 - component: gf.Component, - test_name: str | None = None, - dirpath: pathlib.Path = pathlib.Path.cwd(), # noqa: B008 - xor: bool = True, - dirpath_run: pathlib.Path | None = None, - ignore_sliver_differences: bool | None = None, - sliver_tolerance: int = 1, -) -> None: - """Custom difftest that saves XOR diff images on failure instead of prompting.""" - from gdsfactory.difftest import diff # noqa: PLC0415 - - if test_name is None: - test_name = component.name - - filename = get_name_short(clean_name(test_name)) - - dirpath_ref = pathlib.Path(dirpath) - dirpath_ref.mkdir(exist_ok=True, parents=True) - - if dirpath_run is None: - dirpath_run = dirpath_ref.parent / "gds_run" - dirpath_run.mkdir(exist_ok=True, parents=True) - - ref_file = dirpath_ref / f"{filename}.gds" - run_file = dirpath_run / f"{filename}.gds" - - component.write_gds(gdspath=run_file) - - if not ref_file.exists(): - shutil.copy(run_file, ref_file) - raise AssertionError( - f"Reference GDS file not found. Created new reference: {ref_file}\n" - "Run the test again to confirm it passes." - ) - - if filecmp.cmp(ref_file, run_file, shallow=False): - return - - # Files differ - generate XOR diff - diff_gds = DIFF_DIR / f"{filename}_diff.gds" - is_different = diff( - ref_file=ref_file, - run_file=run_file, - xor=xor, - test_name=test_name, - ignore_sliver_differences=ignore_sliver_differences, - out_file=diff_gds, - sliver_tolerance=sliver_tolerance, - ) - - if not is_different: - return - - if _config["update_gds_refs"]: - shutil.copy(run_file, ref_file) - print(f" Updated reference: {ref_file}") - return - - # Render diff GDS to PNG - diff_png = DIFF_DIR / f"{filename}_diff.png" - try: - _render_gds_to_png(diff_gds, diff_png) - image_msg = f"XOR diff image saved to: {diff_png}" - except Exception as e: # noqa: BLE001 - image_msg = f"Failed to render diff image: {e}" - - raise AssertionError( - f"GDS mismatch for {test_name!r}.\n" - f" Reference: {ref_file}\n" - f" Run file: {run_file}\n" - f" Diff GDS: {diff_gds}\n" - f" {image_msg}\n" - f"To update the reference, run: pytest --update-gds-refs" - ) diff --git a/tests/gds_ref_si220/ANT_MMI_1x2_te1550_3dB_BB.gds b/tests/gds_ref_si220/ANT_MMI_1x2_te1550_3dB_BB.gds deleted file mode 100644 index f1737d05..00000000 Binary files a/tests/gds_ref_si220/ANT_MMI_1x2_te1550_3dB_BB.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ANT_MMI_1x2_te1550_3dB_BB.oas b/tests/gds_ref_si220/ANT_MMI_1x2_te1550_3dB_BB.oas deleted file mode 100644 index 4901dca1..00000000 Binary files a/tests/gds_ref_si220/ANT_MMI_1x2_te1550_3dB_BB.oas and /dev/null differ diff --git a/tests/gds_ref_si220/Alignment_Marker.gds b/tests/gds_ref_si220/Alignment_Marker.gds deleted file mode 100644 index ff6c2165..00000000 Binary files a/tests/gds_ref_si220/Alignment_Marker.gds and /dev/null differ diff --git a/tests/gds_ref_si220/Alignment_Marker.oas b/tests/gds_ref_si220/Alignment_Marker.oas deleted file mode 100644 index b5482c85..00000000 Binary files a/tests/gds_ref_si220/Alignment_Marker.oas and /dev/null differ diff --git a/tests/gds_ref_si220/GC_SiN_TE_1310_8degOxide_BB.gds b/tests/gds_ref_si220/GC_SiN_TE_1310_8degOxide_BB.gds deleted file mode 100644 index 40e73d3c..00000000 Binary files a/tests/gds_ref_si220/GC_SiN_TE_1310_8degOxide_BB.gds and /dev/null differ diff --git a/tests/gds_ref_si220/GC_SiN_TE_1310_8degOxide_BB.oas b/tests/gds_ref_si220/GC_SiN_TE_1310_8degOxide_BB.oas deleted file mode 100644 index 05376f16..00000000 Binary files a/tests/gds_ref_si220/GC_SiN_TE_1310_8degOxide_BB.oas and /dev/null differ diff --git a/tests/gds_ref_si220/GC_SiN_TE_1550_8degOxide_BB.gds b/tests/gds_ref_si220/GC_SiN_TE_1550_8degOxide_BB.gds deleted file mode 100644 index 46a1db39..00000000 Binary files a/tests/gds_ref_si220/GC_SiN_TE_1550_8degOxide_BB.gds and /dev/null differ diff --git a/tests/gds_ref_si220/GC_SiN_TE_1550_8degOxide_BB.oas b/tests/gds_ref_si220/GC_SiN_TE_1550_8degOxide_BB.oas deleted file mode 100644 index ba0c1d4b..00000000 Binary files a/tests/gds_ref_si220/GC_SiN_TE_1550_8degOxide_BB.oas and /dev/null differ diff --git a/tests/gds_ref_si220/GC_TE_1310_8degOxide_BB.gds b/tests/gds_ref_si220/GC_TE_1310_8degOxide_BB.gds deleted file mode 100644 index a0660377..00000000 Binary files a/tests/gds_ref_si220/GC_TE_1310_8degOxide_BB.gds and /dev/null differ diff --git a/tests/gds_ref_si220/GC_TE_1310_8degOxide_BB.oas b/tests/gds_ref_si220/GC_TE_1310_8degOxide_BB.oas deleted file mode 100644 index d23c6fa5..00000000 Binary files a/tests/gds_ref_si220/GC_TE_1310_8degOxide_BB.oas and /dev/null differ diff --git a/tests/gds_ref_si220/GC_TE_1550_8degOxide_BB.gds b/tests/gds_ref_si220/GC_TE_1550_8degOxide_BB.gds deleted file mode 100644 index 1f80d8a0..00000000 Binary files a/tests/gds_ref_si220/GC_TE_1550_8degOxide_BB.gds and /dev/null differ diff --git a/tests/gds_ref_si220/GC_TE_1550_8degOxide_BB.oas b/tests/gds_ref_si220/GC_TE_1550_8degOxide_BB.oas deleted file mode 100644 index 2829ec52..00000000 Binary files a/tests/gds_ref_si220/GC_TE_1550_8degOxide_BB.oas and /dev/null differ diff --git a/tests/gds_ref_si220/GC_TM_1310_8degOxide_BB.gds b/tests/gds_ref_si220/GC_TM_1310_8degOxide_BB.gds deleted file mode 100644 index 576d98b2..00000000 Binary files a/tests/gds_ref_si220/GC_TM_1310_8degOxide_BB.gds and /dev/null differ diff --git a/tests/gds_ref_si220/GC_TM_1310_8degOxide_BB.oas b/tests/gds_ref_si220/GC_TM_1310_8degOxide_BB.oas deleted file mode 100644 index 16ecc5bd..00000000 Binary files a/tests/gds_ref_si220/GC_TM_1310_8degOxide_BB.oas and /dev/null differ diff --git a/tests/gds_ref_si220/GC_TM_1550_8degOxide_BB.gds b/tests/gds_ref_si220/GC_TM_1550_8degOxide_BB.gds deleted file mode 100644 index 29434a23..00000000 Binary files a/tests/gds_ref_si220/GC_TM_1550_8degOxide_BB.gds and /dev/null differ diff --git a/tests/gds_ref_si220/GC_TM_1550_8degOxide_BB.oas b/tests/gds_ref_si220/GC_TM_1550_8degOxide_BB.oas deleted file mode 100644 index 63d65728..00000000 Binary files a/tests/gds_ref_si220/GC_TM_1550_8degOxide_BB.oas and /dev/null differ diff --git a/tests/gds_ref_si220/Packaging_FibreArray_8ch.gds b/tests/gds_ref_si220/Packaging_FibreArray_8ch.gds deleted file mode 100644 index c1338f3d..00000000 Binary files a/tests/gds_ref_si220/Packaging_FibreArray_8ch.gds and /dev/null differ diff --git a/tests/gds_ref_si220/Packaging_FibreArray_8ch.oas b/tests/gds_ref_si220/Packaging_FibreArray_8ch.oas deleted file mode 100644 index 596ba3a5..00000000 Binary files a/tests/gds_ref_si220/Packaging_FibreArray_8ch.oas and /dev/null differ diff --git a/tests/gds_ref_si220/SEM_example.gds b/tests/gds_ref_si220/SEM_example.gds deleted file mode 100644 index e24e5113..00000000 Binary files a/tests/gds_ref_si220/SEM_example.gds and /dev/null differ diff --git a/tests/gds_ref_si220/SEM_example.oas b/tests/gds_ref_si220/SEM_example.oas deleted file mode 100644 index cfd41416..00000000 Binary files a/tests/gds_ref_si220/SEM_example.oas and /dev/null differ diff --git a/tests/gds_ref_si220/add_fiber_array.gds b/tests/gds_ref_si220/add_fiber_array.gds deleted file mode 100644 index b762618c..00000000 Binary files a/tests/gds_ref_si220/add_fiber_array.gds and /dev/null differ diff --git a/tests/gds_ref_si220/add_fiber_array_pads_rf.gds b/tests/gds_ref_si220/add_fiber_array_pads_rf.gds deleted file mode 100644 index abbe1dd8..00000000 Binary files a/tests/gds_ref_si220/add_fiber_array_pads_rf.gds and /dev/null differ diff --git a/tests/gds_ref_si220/add_fiber_array_pads_rf.oas b/tests/gds_ref_si220/add_fiber_array_pads_rf.oas deleted file mode 100644 index e11ab93f..00000000 Binary files a/tests/gds_ref_si220/add_fiber_array_pads_rf.oas and /dev/null differ diff --git a/tests/gds_ref_si220/add_pads.gds b/tests/gds_ref_si220/add_pads.gds deleted file mode 100644 index 84f41e69..00000000 Binary files a/tests/gds_ref_si220/add_pads.gds and /dev/null differ diff --git a/tests/gds_ref_si220/add_pads.oas b/tests/gds_ref_si220/add_pads.oas deleted file mode 100644 index 077f1fe2..00000000 Binary files a/tests/gds_ref_si220/add_pads.oas and /dev/null differ diff --git a/tests/gds_ref_si220/add_pads_rf.gds b/tests/gds_ref_si220/add_pads_rf.gds deleted file mode 100644 index 4501ece2..00000000 Binary files a/tests/gds_ref_si220/add_pads_rf.gds and /dev/null differ diff --git a/tests/gds_ref_si220/bend_euler.gds b/tests/gds_ref_si220/bend_euler.gds deleted file mode 100644 index aa9c38c9..00000000 Binary files a/tests/gds_ref_si220/bend_euler.gds and /dev/null differ diff --git a/tests/gds_ref_si220/bend_euler.oas b/tests/gds_ref_si220/bend_euler.oas deleted file mode 100644 index 70c14d8e..00000000 Binary files a/tests/gds_ref_si220/bend_euler.oas and /dev/null differ diff --git a/tests/gds_ref_si220/bend_metal.gds b/tests/gds_ref_si220/bend_metal.gds deleted file mode 100644 index 4b174d4e..00000000 Binary files a/tests/gds_ref_si220/bend_metal.gds and /dev/null differ diff --git a/tests/gds_ref_si220/bend_metal.oas b/tests/gds_ref_si220/bend_metal.oas deleted file mode 100644 index 8eb8b070..00000000 Binary files a/tests/gds_ref_si220/bend_metal.oas and /dev/null differ diff --git a/tests/gds_ref_si220/bend_s.gds b/tests/gds_ref_si220/bend_s.gds deleted file mode 100644 index dc9fed9e..00000000 Binary files a/tests/gds_ref_si220/bend_s.gds and /dev/null differ diff --git a/tests/gds_ref_si220/bend_s.oas b/tests/gds_ref_si220/bend_s.oas deleted file mode 100644 index 92487e15..00000000 Binary files a/tests/gds_ref_si220/bend_s.oas and /dev/null differ diff --git a/tests/gds_ref_si220/bend_s_metal.gds b/tests/gds_ref_si220/bend_s_metal.gds deleted file mode 100644 index a39b98f1..00000000 Binary files a/tests/gds_ref_si220/bend_s_metal.gds and /dev/null differ diff --git a/tests/gds_ref_si220/bend_s_metal.oas b/tests/gds_ref_si220/bend_s_metal.oas deleted file mode 100644 index da224ea6..00000000 Binary files a/tests/gds_ref_si220/bend_s_metal.oas and /dev/null differ diff --git a/tests/gds_ref_si220/compass.gds b/tests/gds_ref_si220/compass.gds deleted file mode 100644 index 2b8aac71..00000000 Binary files a/tests/gds_ref_si220/compass.gds and /dev/null differ diff --git a/tests/gds_ref_si220/compass.oas b/tests/gds_ref_si220/compass.oas deleted file mode 100644 index b4f3f7b7..00000000 Binary files a/tests/gds_ref_si220/compass.oas and /dev/null differ diff --git a/tests/gds_ref_si220/coupler.gds b/tests/gds_ref_si220/coupler.gds deleted file mode 100644 index 19f0ef72..00000000 Binary files a/tests/gds_ref_si220/coupler.gds and /dev/null differ diff --git a/tests/gds_ref_si220/coupler.oas b/tests/gds_ref_si220/coupler.oas deleted file mode 100644 index 99cbd2e2..00000000 Binary files a/tests/gds_ref_si220/coupler.oas and /dev/null differ diff --git a/tests/gds_ref_si220/coupler_ring.gds b/tests/gds_ref_si220/coupler_ring.gds deleted file mode 100644 index f8d36eef..00000000 Binary files a/tests/gds_ref_si220/coupler_ring.gds and /dev/null differ diff --git a/tests/gds_ref_si220/coupler_ring.oas b/tests/gds_ref_si220/coupler_ring.oas deleted file mode 100644 index 57e716bc..00000000 Binary files a/tests/gds_ref_si220/coupler_ring.oas and /dev/null differ diff --git a/tests/gds_ref_si220/crossing_SiN_1550.gds b/tests/gds_ref_si220/crossing_SiN_1550.gds deleted file mode 100644 index 54fc0bd5..00000000 Binary files a/tests/gds_ref_si220/crossing_SiN_1550.gds and /dev/null differ diff --git a/tests/gds_ref_si220/crossing_SiN_1550.oas b/tests/gds_ref_si220/crossing_SiN_1550.oas deleted file mode 100644 index aa3ce96e..00000000 Binary files a/tests/gds_ref_si220/crossing_SiN_1550.oas and /dev/null differ diff --git a/tests/gds_ref_si220/crossing_SiN_1550_extended.gds b/tests/gds_ref_si220/crossing_SiN_1550_extended.gds deleted file mode 100644 index 70989417..00000000 Binary files a/tests/gds_ref_si220/crossing_SiN_1550_extended.gds and /dev/null differ diff --git a/tests/gds_ref_si220/crossing_horizontal.gds b/tests/gds_ref_si220/crossing_horizontal.gds deleted file mode 100644 index dde5bb5a..00000000 Binary files a/tests/gds_ref_si220/crossing_horizontal.gds and /dev/null differ diff --git a/tests/gds_ref_si220/crossing_horizontal.oas b/tests/gds_ref_si220/crossing_horizontal.oas deleted file mode 100644 index c3a9e380..00000000 Binary files a/tests/gds_ref_si220/crossing_horizontal.oas and /dev/null differ diff --git a/tests/gds_ref_si220/crossing_manhattan.gds b/tests/gds_ref_si220/crossing_manhattan.gds deleted file mode 100644 index 4425b842..00000000 Binary files a/tests/gds_ref_si220/crossing_manhattan.gds and /dev/null differ diff --git a/tests/gds_ref_si220/crossing_manhattan.oas b/tests/gds_ref_si220/crossing_manhattan.oas deleted file mode 100644 index 988f627e..00000000 Binary files a/tests/gds_ref_si220/crossing_manhattan.oas and /dev/null differ diff --git a/tests/gds_ref_si220/die.gds b/tests/gds_ref_si220/die.gds deleted file mode 100644 index 8db18d08..00000000 Binary files a/tests/gds_ref_si220/die.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_BondPad.gds b/tests/gds_ref_si220/ebeam_BondPad.gds deleted file mode 100644 index ecd8c331..00000000 Binary files a/tests/gds_ref_si220/ebeam_BondPad.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_BondPad.oas b/tests/gds_ref_si220/ebeam_BondPad.oas deleted file mode 100644 index 6fd29b0e..00000000 Binary files a/tests/gds_ref_si220/ebeam_BondPad.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_BondPad_75.gds b/tests/gds_ref_si220/ebeam_BondPad_75.gds deleted file mode 100644 index 6eec9d80..00000000 Binary files a/tests/gds_ref_si220/ebeam_BondPad_75.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_BondPad_75.oas b/tests/gds_ref_si220/ebeam_BondPad_75.oas deleted file mode 100644 index 7a28cc2c..00000000 Binary files a/tests/gds_ref_si220/ebeam_BondPad_75.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_DC_2m1_te895.gds b/tests/gds_ref_si220/ebeam_DC_2m1_te895.gds deleted file mode 100644 index 764c0f8f..00000000 Binary files a/tests/gds_ref_si220/ebeam_DC_2m1_te895.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_DC_2m1_te895.oas b/tests/gds_ref_si220/ebeam_DC_2m1_te895.oas deleted file mode 100644 index d271ed38..00000000 Binary files a/tests/gds_ref_si220/ebeam_DC_2m1_te895.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_DC_te895.gds b/tests/gds_ref_si220/ebeam_DC_te895.gds deleted file mode 100644 index 214df3ac..00000000 Binary files a/tests/gds_ref_si220/ebeam_DC_te895.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_DC_te895.oas b/tests/gds_ref_si220/ebeam_DC_te895.oas deleted file mode 100644 index d03c2815..00000000 Binary files a/tests/gds_ref_si220/ebeam_DC_te895.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_MMI_2x2_5050_te1310.gds b/tests/gds_ref_si220/ebeam_MMI_2x2_5050_te1310.gds deleted file mode 100644 index 1c83bca9..00000000 Binary files a/tests/gds_ref_si220/ebeam_MMI_2x2_5050_te1310.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_MMI_2x2_5050_te1310.oas b/tests/gds_ref_si220/ebeam_MMI_2x2_5050_te1310.oas deleted file mode 100644 index 7c4866e4..00000000 Binary files a/tests/gds_ref_si220/ebeam_MMI_2x2_5050_te1310.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_Polarizer_TM_1550_UQAM.gds b/tests/gds_ref_si220/ebeam_Polarizer_TM_1550_UQAM.gds deleted file mode 100644 index a202bb89..00000000 Binary files a/tests/gds_ref_si220/ebeam_Polarizer_TM_1550_UQAM.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_YBranch_895.gds b/tests/gds_ref_si220/ebeam_YBranch_895.gds deleted file mode 100644 index 824e50d0..00000000 Binary files a/tests/gds_ref_si220/ebeam_YBranch_895.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_YBranch_895.oas b/tests/gds_ref_si220/ebeam_YBranch_895.oas deleted file mode 100644 index 2d679925..00000000 Binary files a/tests/gds_ref_si220/ebeam_YBranch_895.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_YBranch_te1310.gds b/tests/gds_ref_si220/ebeam_YBranch_te1310.gds deleted file mode 100644 index d87c6cdb..00000000 Binary files a/tests/gds_ref_si220/ebeam_YBranch_te1310.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_YBranch_te1310.oas b/tests/gds_ref_si220/ebeam_YBranch_te1310.oas deleted file mode 100644 index 6b39b28f..00000000 Binary files a/tests/gds_ref_si220/ebeam_YBranch_te1310.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_adiabatic_te1550.gds b/tests/gds_ref_si220/ebeam_adiabatic_te1550.gds deleted file mode 100644 index c91f833e..00000000 Binary files a/tests/gds_ref_si220/ebeam_adiabatic_te1550.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_adiabatic_te1550.oas b/tests/gds_ref_si220/ebeam_adiabatic_te1550.oas deleted file mode 100644 index 43cabf0b..00000000 Binary files a/tests/gds_ref_si220/ebeam_adiabatic_te1550.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_adiabatic_tm1550.gds b/tests/gds_ref_si220/ebeam_adiabatic_tm1550.gds deleted file mode 100644 index c35fb350..00000000 Binary files a/tests/gds_ref_si220/ebeam_adiabatic_tm1550.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_adiabatic_tm1550.oas b/tests/gds_ref_si220/ebeam_adiabatic_tm1550.oas deleted file mode 100644 index d459492a..00000000 Binary files a/tests/gds_ref_si220/ebeam_adiabatic_tm1550.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_bdc_te1550.gds b/tests/gds_ref_si220/ebeam_bdc_te1550.gds deleted file mode 100644 index 5b2ddb76..00000000 Binary files a/tests/gds_ref_si220/ebeam_bdc_te1550.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_bdc_te1550.oas b/tests/gds_ref_si220/ebeam_bdc_te1550.oas deleted file mode 100644 index f4caee38..00000000 Binary files a/tests/gds_ref_si220/ebeam_bdc_te1550.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_bdc_tm1550.gds b/tests/gds_ref_si220/ebeam_bdc_tm1550.gds deleted file mode 100644 index c3938143..00000000 Binary files a/tests/gds_ref_si220/ebeam_bdc_tm1550.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_bdc_tm1550.oas b/tests/gds_ref_si220/ebeam_bdc_tm1550.oas deleted file mode 100644 index 56615382..00000000 Binary files a/tests/gds_ref_si220/ebeam_bdc_tm1550.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_crossing4.gds b/tests/gds_ref_si220/ebeam_crossing4.gds deleted file mode 100644 index 6e3b50cc..00000000 Binary files a/tests/gds_ref_si220/ebeam_crossing4.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_crossing4.oas b/tests/gds_ref_si220/ebeam_crossing4.oas deleted file mode 100644 index 1a14173b..00000000 Binary files a/tests/gds_ref_si220/ebeam_crossing4.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_dream_FAVE_SiN_1310_BB.gds b/tests/gds_ref_si220/ebeam_dream_FAVE_SiN_1310_BB.gds deleted file mode 100644 index 525cc5e0..00000000 Binary files a/tests/gds_ref_si220/ebeam_dream_FAVE_SiN_1310_BB.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_dream_FAVE_SiN_1310_BB.oas b/tests/gds_ref_si220/ebeam_dream_FAVE_SiN_1310_BB.oas deleted file mode 100644 index 0b465e02..00000000 Binary files a/tests/gds_ref_si220/ebeam_dream_FAVE_SiN_1310_BB.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_dream_FAVE_SiN_1550_BB.gds b/tests/gds_ref_si220/ebeam_dream_FAVE_SiN_1550_BB.gds deleted file mode 100644 index 22c036c5..00000000 Binary files a/tests/gds_ref_si220/ebeam_dream_FAVE_SiN_1550_BB.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_dream_FAVE_SiN_1550_BB.oas b/tests/gds_ref_si220/ebeam_dream_FAVE_SiN_1550_BB.oas deleted file mode 100644 index 6594b13a..00000000 Binary files a/tests/gds_ref_si220/ebeam_dream_FAVE_SiN_1550_BB.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_dream_FAVE_Si_1310_BB.gds b/tests/gds_ref_si220/ebeam_dream_FAVE_Si_1310_BB.gds deleted file mode 100644 index 3bcab184..00000000 Binary files a/tests/gds_ref_si220/ebeam_dream_FAVE_Si_1310_BB.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_dream_FAVE_Si_1310_BB.oas b/tests/gds_ref_si220/ebeam_dream_FAVE_Si_1310_BB.oas deleted file mode 100644 index 1617b6f7..00000000 Binary files a/tests/gds_ref_si220/ebeam_dream_FAVE_Si_1310_BB.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_dream_FAVE_Si_1550_BB.gds b/tests/gds_ref_si220/ebeam_dream_FAVE_Si_1550_BB.gds deleted file mode 100644 index a671093f..00000000 Binary files a/tests/gds_ref_si220/ebeam_dream_FAVE_Si_1550_BB.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_dream_FAVE_Si_1550_BB.oas b/tests/gds_ref_si220/ebeam_dream_FAVE_Si_1550_BB.oas deleted file mode 100644 index 7ecd21dd..00000000 Binary files a/tests/gds_ref_si220/ebeam_dream_FAVE_Si_1550_BB.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_dream_FaML_SiN_1550_BB.gds b/tests/gds_ref_si220/ebeam_dream_FaML_SiN_1550_BB.gds deleted file mode 100644 index 6728856c..00000000 Binary files a/tests/gds_ref_si220/ebeam_dream_FaML_SiN_1550_BB.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_dream_FaML_SiN_1550_BB.oas b/tests/gds_ref_si220/ebeam_dream_FaML_SiN_1550_BB.oas deleted file mode 100644 index bbb1b27c..00000000 Binary files a/tests/gds_ref_si220/ebeam_dream_FaML_SiN_1550_BB.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_dream_FaML_Si_1310_BB.gds b/tests/gds_ref_si220/ebeam_dream_FaML_Si_1310_BB.gds deleted file mode 100644 index 40b9cae6..00000000 Binary files a/tests/gds_ref_si220/ebeam_dream_FaML_Si_1310_BB.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_dream_FaML_Si_1310_BB.oas b/tests/gds_ref_si220/ebeam_dream_FaML_Si_1310_BB.oas deleted file mode 100644 index 7a7efb73..00000000 Binary files a/tests/gds_ref_si220/ebeam_dream_FaML_Si_1310_BB.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_dream_FaML_Si_1550_BB.gds b/tests/gds_ref_si220/ebeam_dream_FaML_Si_1550_BB.gds deleted file mode 100644 index 46bd7416..00000000 Binary files a/tests/gds_ref_si220/ebeam_dream_FaML_Si_1550_BB.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_dream_FaML_Si_1550_BB.oas b/tests/gds_ref_si220/ebeam_dream_FaML_Si_1550_BB.oas deleted file mode 100644 index 20c3455e..00000000 Binary files a/tests/gds_ref_si220/ebeam_dream_FaML_Si_1550_BB.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_dream_splitter_1x2_te1550_BB.gds b/tests/gds_ref_si220/ebeam_dream_splitter_1x2_te1550_BB.gds deleted file mode 100644 index ae3fea82..00000000 Binary files a/tests/gds_ref_si220/ebeam_dream_splitter_1x2_te1550_BB.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_dream_splitter_1x2_te1550_BB.oas b/tests/gds_ref_si220/ebeam_dream_splitter_1x2_te1550_BB.oas deleted file mode 100644 index 920507cf..00000000 Binary files a/tests/gds_ref_si220/ebeam_dream_splitter_1x2_te1550_BB.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_dream_splitter_1x_e19967b2.gds b/tests/gds_ref_si220/ebeam_dream_splitter_1x_e19967b2.gds deleted file mode 100644 index 7106b063..00000000 Binary files a/tests/gds_ref_si220/ebeam_dream_splitter_1x_e19967b2.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_gc_te1310.gds b/tests/gds_ref_si220/ebeam_gc_te1310.gds deleted file mode 100644 index 05521532..00000000 Binary files a/tests/gds_ref_si220/ebeam_gc_te1310.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_gc_te1310.oas b/tests/gds_ref_si220/ebeam_gc_te1310.oas deleted file mode 100644 index f0ce3cd7..00000000 Binary files a/tests/gds_ref_si220/ebeam_gc_te1310.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_gc_te1310_broadband.gds b/tests/gds_ref_si220/ebeam_gc_te1310_broadband.gds deleted file mode 100644 index 5ea6e735..00000000 Binary files a/tests/gds_ref_si220/ebeam_gc_te1310_broadband.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_gc_te1310_broadband.oas b/tests/gds_ref_si220/ebeam_gc_te1310_broadband.oas deleted file mode 100644 index 1c5980fc..00000000 Binary files a/tests/gds_ref_si220/ebeam_gc_te1310_broadband.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_gc_te1550.gds b/tests/gds_ref_si220/ebeam_gc_te1550.gds deleted file mode 100644 index ecaf491e..00000000 Binary files a/tests/gds_ref_si220/ebeam_gc_te1550.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_gc_te1550.oas b/tests/gds_ref_si220/ebeam_gc_te1550.oas deleted file mode 100644 index 28c3c9b3..00000000 Binary files a/tests/gds_ref_si220/ebeam_gc_te1550.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_gc_te1550_90nmSlab.gds b/tests/gds_ref_si220/ebeam_gc_te1550_90nmSlab.gds deleted file mode 100644 index 33bdf9cf..00000000 Binary files a/tests/gds_ref_si220/ebeam_gc_te1550_90nmSlab.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_gc_te1550_90nmSlab.oas b/tests/gds_ref_si220/ebeam_gc_te1550_90nmSlab.oas deleted file mode 100644 index 5154aec3..00000000 Binary files a/tests/gds_ref_si220/ebeam_gc_te1550_90nmSlab.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_gc_te1550_broadband.gds b/tests/gds_ref_si220/ebeam_gc_te1550_broadband.gds deleted file mode 100644 index 5f956db3..00000000 Binary files a/tests/gds_ref_si220/ebeam_gc_te1550_broadband.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_gc_te1550_broadband.oas b/tests/gds_ref_si220/ebeam_gc_te1550_broadband.oas deleted file mode 100644 index 2e5b6827..00000000 Binary files a/tests/gds_ref_si220/ebeam_gc_te1550_broadband.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_gc_te895.gds b/tests/gds_ref_si220/ebeam_gc_te895.gds deleted file mode 100644 index 339bc8ef..00000000 Binary files a/tests/gds_ref_si220/ebeam_gc_te895.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_gc_te895.oas b/tests/gds_ref_si220/ebeam_gc_te895.oas deleted file mode 100644 index 45305ee2..00000000 Binary files a/tests/gds_ref_si220/ebeam_gc_te895.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_gc_tm1550.gds b/tests/gds_ref_si220/ebeam_gc_tm1550.gds deleted file mode 100644 index 4f23debb..00000000 Binary files a/tests/gds_ref_si220/ebeam_gc_tm1550.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_gc_tm1550.oas b/tests/gds_ref_si220/ebeam_gc_tm1550.oas deleted file mode 100644 index 7a733e81..00000000 Binary files a/tests/gds_ref_si220/ebeam_gc_tm1550.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_routing_taper_te1550_w500nm_to_w3000nm_L20um.gds b/tests/gds_ref_si220/ebeam_routing_taper_te1550_w500nm_to_w3000nm_L20um.gds deleted file mode 100644 index d3f1e012..00000000 Binary files a/tests/gds_ref_si220/ebeam_routing_taper_te1550_w500nm_to_w3000nm_L20um.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_routing_taper_te1550_w500nm_to_w3000nm_L20um.oas b/tests/gds_ref_si220/ebeam_routing_taper_te1550_w500nm_to_w3000nm_L20um.oas deleted file mode 100644 index 5c05779d..00000000 Binary files a/tests/gds_ref_si220/ebeam_routing_taper_te1550_w500nm_to_w3000nm_L20um.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_routing_taper_te1550_w500nm_to_w3000nm_L40um.gds b/tests/gds_ref_si220/ebeam_routing_taper_te1550_w500nm_to_w3000nm_L40um.gds deleted file mode 100644 index a9c6a1df..00000000 Binary files a/tests/gds_ref_si220/ebeam_routing_taper_te1550_w500nm_to_w3000nm_L40um.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_routing_taper_te1550_w500nm_to_w3000nm_L40um.oas b/tests/gds_ref_si220/ebeam_routing_taper_te1550_w500nm_to_w3000nm_L40um.oas deleted file mode 100644 index 2b881d03..00000000 Binary files a/tests/gds_ref_si220/ebeam_routing_taper_te1550_w500nm_to_w3000nm_L40um.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_routing_taper_te1_02b37528.gds b/tests/gds_ref_si220/ebeam_routing_taper_te1_02b37528.gds deleted file mode 100644 index 205b3cb4..00000000 Binary files a/tests/gds_ref_si220/ebeam_routing_taper_te1_02b37528.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_routing_taper_te1_a74f69b9.gds b/tests/gds_ref_si220/ebeam_routing_taper_te1_a74f69b9.gds deleted file mode 100644 index 78aa1f88..00000000 Binary files a/tests/gds_ref_si220/ebeam_routing_taper_te1_a74f69b9.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_sin_dream_splitte_154fe4c3.gds b/tests/gds_ref_si220/ebeam_sin_dream_splitte_154fe4c3.gds deleted file mode 100644 index 42716630..00000000 Binary files a/tests/gds_ref_si220/ebeam_sin_dream_splitte_154fe4c3.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_sin_dream_splitter1x2_te1550_BB.gds b/tests/gds_ref_si220/ebeam_sin_dream_splitter1x2_te1550_BB.gds deleted file mode 100644 index f3c8bbc7..00000000 Binary files a/tests/gds_ref_si220/ebeam_sin_dream_splitter1x2_te1550_BB.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_sin_dream_splitter1x2_te1550_BB.oas b/tests/gds_ref_si220/ebeam_sin_dream_splitter1x2_te1550_BB.oas deleted file mode 100644 index 81922e11..00000000 Binary files a/tests/gds_ref_si220/ebeam_sin_dream_splitter1x2_te1550_BB.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_splitter_adiabati_f8376e78.gds b/tests/gds_ref_si220/ebeam_splitter_adiabati_f8376e78.gds deleted file mode 100644 index 17b738d8..00000000 Binary files a/tests/gds_ref_si220/ebeam_splitter_adiabati_f8376e78.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_splitter_adiabatic_swg_te1550.gds b/tests/gds_ref_si220/ebeam_splitter_adiabatic_swg_te1550.gds deleted file mode 100644 index fc9f31df..00000000 Binary files a/tests/gds_ref_si220/ebeam_splitter_adiabatic_swg_te1550.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_splitter_adiabatic_swg_te1550.oas b/tests/gds_ref_si220/ebeam_splitter_adiabatic_swg_te1550.oas deleted file mode 100644 index 181e26a2..00000000 Binary files a/tests/gds_ref_si220/ebeam_splitter_adiabatic_swg_te1550.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_splitter_swg_assi_b179db72.gds b/tests/gds_ref_si220/ebeam_splitter_swg_assi_b179db72.gds deleted file mode 100644 index aa76b124..00000000 Binary files a/tests/gds_ref_si220/ebeam_splitter_swg_assi_b179db72.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_splitter_swg_assi_ef78924a.gds b/tests/gds_ref_si220/ebeam_splitter_swg_assi_ef78924a.gds deleted file mode 100644 index 401f7601..00000000 Binary files a/tests/gds_ref_si220/ebeam_splitter_swg_assi_ef78924a.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1310.gds b/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1310.gds deleted file mode 100644 index d034a104..00000000 Binary files a/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1310.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1310.oas b/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1310.oas deleted file mode 100644 index 770e77db..00000000 Binary files a/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1310.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1310_ANT.gds b/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1310_ANT.gds deleted file mode 100644 index abf73963..00000000 Binary files a/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1310_ANT.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1310_ANT.oas b/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1310_ANT.oas deleted file mode 100644 index 0c627ced..00000000 Binary files a/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1310_ANT.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1550.gds b/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1550.gds deleted file mode 100644 index ef919821..00000000 Binary files a/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1550.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1550.oas b/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1550.oas deleted file mode 100644 index ec4ffd34..00000000 Binary files a/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1550.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1550_ANT.gds b/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1550_ANT.gds deleted file mode 100644 index fa76b9c9..00000000 Binary files a/tests/gds_ref_si220/ebeam_splitter_swg_assist_te1550_ANT.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_swg_edgecoupler.gds b/tests/gds_ref_si220/ebeam_swg_edgecoupler.gds deleted file mode 100644 index 32fd48f5..00000000 Binary files a/tests/gds_ref_si220/ebeam_swg_edgecoupler.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_swg_edgecoupler.oas b/tests/gds_ref_si220/ebeam_swg_edgecoupler.oas deleted file mode 100644 index 700f77ab..00000000 Binary files a/tests/gds_ref_si220/ebeam_swg_edgecoupler.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_terminator_SiN_1310.gds b/tests/gds_ref_si220/ebeam_terminator_SiN_1310.gds deleted file mode 100644 index 396f061c..00000000 Binary files a/tests/gds_ref_si220/ebeam_terminator_SiN_1310.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_terminator_SiN_1310.oas b/tests/gds_ref_si220/ebeam_terminator_SiN_1310.oas deleted file mode 100644 index 7d4111ca..00000000 Binary files a/tests/gds_ref_si220/ebeam_terminator_SiN_1310.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_terminator_SiN_1550.gds b/tests/gds_ref_si220/ebeam_terminator_SiN_1550.gds deleted file mode 100644 index bd33210b..00000000 Binary files a/tests/gds_ref_si220/ebeam_terminator_SiN_1550.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_terminator_SiN_1550.oas b/tests/gds_ref_si220/ebeam_terminator_SiN_1550.oas deleted file mode 100644 index 0a4f6314..00000000 Binary files a/tests/gds_ref_si220/ebeam_terminator_SiN_1550.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_terminator_SiN_te895.gds b/tests/gds_ref_si220/ebeam_terminator_SiN_te895.gds deleted file mode 100644 index a1b316ab..00000000 Binary files a/tests/gds_ref_si220/ebeam_terminator_SiN_te895.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_terminator_SiN_te895.oas b/tests/gds_ref_si220/ebeam_terminator_SiN_te895.oas deleted file mode 100644 index 686fe652..00000000 Binary files a/tests/gds_ref_si220/ebeam_terminator_SiN_te895.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_terminator_te1310.gds b/tests/gds_ref_si220/ebeam_terminator_te1310.gds deleted file mode 100644 index 784675c4..00000000 Binary files a/tests/gds_ref_si220/ebeam_terminator_te1310.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_terminator_te1310.oas b/tests/gds_ref_si220/ebeam_terminator_te1310.oas deleted file mode 100644 index c118f542..00000000 Binary files a/tests/gds_ref_si220/ebeam_terminator_te1310.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_terminator_te1550.gds b/tests/gds_ref_si220/ebeam_terminator_te1550.gds deleted file mode 100644 index bf22bf65..00000000 Binary files a/tests/gds_ref_si220/ebeam_terminator_te1550.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_terminator_te1550.oas b/tests/gds_ref_si220/ebeam_terminator_te1550.oas deleted file mode 100644 index 26d69901..00000000 Binary files a/tests/gds_ref_si220/ebeam_terminator_te1550.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_terminator_tm1550.gds b/tests/gds_ref_si220/ebeam_terminator_tm1550.gds deleted file mode 100644 index 35d69fc8..00000000 Binary files a/tests/gds_ref_si220/ebeam_terminator_tm1550.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_terminator_tm1550.oas b/tests/gds_ref_si220/ebeam_terminator_tm1550.oas deleted file mode 100644 index 4dc70475..00000000 Binary files a/tests/gds_ref_si220/ebeam_terminator_tm1550.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_y_1310.gds b/tests/gds_ref_si220/ebeam_y_1310.gds deleted file mode 100644 index ce7066ff..00000000 Binary files a/tests/gds_ref_si220/ebeam_y_1310.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_y_1310.oas b/tests/gds_ref_si220/ebeam_y_1310.oas deleted file mode 100644 index 096da355..00000000 Binary files a/tests/gds_ref_si220/ebeam_y_1310.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_y_1550.gds b/tests/gds_ref_si220/ebeam_y_1550.gds deleted file mode 100644 index 6c07ab47..00000000 Binary files a/tests/gds_ref_si220/ebeam_y_1550.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_y_1550.oas b/tests/gds_ref_si220/ebeam_y_1550.oas deleted file mode 100644 index 343241b8..00000000 Binary files a/tests/gds_ref_si220/ebeam_y_1550.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_y_adiabatic.gds b/tests/gds_ref_si220/ebeam_y_adiabatic.gds deleted file mode 100644 index e8ddeb36..00000000 Binary files a/tests/gds_ref_si220/ebeam_y_adiabatic.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_y_adiabatic.oas b/tests/gds_ref_si220/ebeam_y_adiabatic.oas deleted file mode 100644 index 590dcaef..00000000 Binary files a/tests/gds_ref_si220/ebeam_y_adiabatic.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_y_adiabatic_1310.gds b/tests/gds_ref_si220/ebeam_y_adiabatic_1310.gds deleted file mode 100644 index f9927cbe..00000000 Binary files a/tests/gds_ref_si220/ebeam_y_adiabatic_1310.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_y_adiabatic_1310.oas b/tests/gds_ref_si220/ebeam_y_adiabatic_1310.oas deleted file mode 100644 index 932d5a54..00000000 Binary files a/tests/gds_ref_si220/ebeam_y_adiabatic_1310.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_y_adiabatic_500pin.gds b/tests/gds_ref_si220/ebeam_y_adiabatic_500pin.gds deleted file mode 100644 index d494342d..00000000 Binary files a/tests/gds_ref_si220/ebeam_y_adiabatic_500pin.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ebeam_y_adiabatic_500pin.oas b/tests/gds_ref_si220/ebeam_y_adiabatic_500pin.oas deleted file mode 100644 index b212ae7d..00000000 Binary files a/tests/gds_ref_si220/ebeam_y_adiabatic_500pin.oas and /dev/null differ diff --git a/tests/gds_ref_si220/grating_coupler_elliptical.gds b/tests/gds_ref_si220/grating_coupler_elliptical.gds deleted file mode 100644 index 82858302..00000000 Binary files a/tests/gds_ref_si220/grating_coupler_elliptical.gds and /dev/null differ diff --git a/tests/gds_ref_si220/grating_coupler_elliptical.oas b/tests/gds_ref_si220/grating_coupler_elliptical.oas deleted file mode 100644 index 62b375a4..00000000 Binary files a/tests/gds_ref_si220/grating_coupler_elliptical.oas and /dev/null differ diff --git a/tests/gds_ref_si220/metal_via.gds b/tests/gds_ref_si220/metal_via.gds deleted file mode 100644 index 2a725901..00000000 Binary files a/tests/gds_ref_si220/metal_via.gds and /dev/null differ diff --git a/tests/gds_ref_si220/metal_via.oas b/tests/gds_ref_si220/metal_via.oas deleted file mode 100644 index b640854c..00000000 Binary files a/tests/gds_ref_si220/metal_via.oas and /dev/null differ diff --git a/tests/gds_ref_si220/mmi1x2.gds b/tests/gds_ref_si220/mmi1x2.gds deleted file mode 100644 index 4fdd1769..00000000 Binary files a/tests/gds_ref_si220/mmi1x2.gds and /dev/null differ diff --git a/tests/gds_ref_si220/mmi1x2.oas b/tests/gds_ref_si220/mmi1x2.oas deleted file mode 100644 index a6041dfa..00000000 Binary files a/tests/gds_ref_si220/mmi1x2.oas and /dev/null differ diff --git a/tests/gds_ref_si220/mmi2x2.gds b/tests/gds_ref_si220/mmi2x2.gds deleted file mode 100644 index 3eed158f..00000000 Binary files a/tests/gds_ref_si220/mmi2x2.gds and /dev/null differ diff --git a/tests/gds_ref_si220/mmi2x2.oas b/tests/gds_ref_si220/mmi2x2.oas deleted file mode 100644 index 834c55ca..00000000 Binary files a/tests/gds_ref_si220/mmi2x2.oas and /dev/null differ diff --git a/tests/gds_ref_si220/mzi.gds b/tests/gds_ref_si220/mzi.gds deleted file mode 100644 index ce9cb75a..00000000 Binary files a/tests/gds_ref_si220/mzi.gds and /dev/null differ diff --git a/tests/gds_ref_si220/mzi_1x1.gds b/tests/gds_ref_si220/mzi_1x1.gds deleted file mode 100644 index d73d4e54..00000000 Binary files a/tests/gds_ref_si220/mzi_1x1.gds and /dev/null differ diff --git a/tests/gds_ref_si220/mzi_1x1.oas b/tests/gds_ref_si220/mzi_1x1.oas deleted file mode 100644 index a28c3f41..00000000 Binary files a/tests/gds_ref_si220/mzi_1x1.oas and /dev/null differ diff --git a/tests/gds_ref_si220/mzi_heater.gds b/tests/gds_ref_si220/mzi_heater.gds deleted file mode 100644 index 65af06c3..00000000 Binary files a/tests/gds_ref_si220/mzi_heater.gds and /dev/null differ diff --git a/tests/gds_ref_si220/mzi_heater_2x2.gds b/tests/gds_ref_si220/mzi_heater_2x2.gds deleted file mode 100644 index 825da5a5..00000000 Binary files a/tests/gds_ref_si220/mzi_heater_2x2.gds and /dev/null differ diff --git a/tests/gds_ref_si220/mzi_heater_2x2.oas b/tests/gds_ref_si220/mzi_heater_2x2.oas deleted file mode 100644 index b2789373..00000000 Binary files a/tests/gds_ref_si220/mzi_heater_2x2.oas and /dev/null differ diff --git a/tests/gds_ref_si220/pad.gds b/tests/gds_ref_si220/pad.gds deleted file mode 100644 index be92e5de..00000000 Binary files a/tests/gds_ref_si220/pad.gds and /dev/null differ diff --git a/tests/gds_ref_si220/pad_array.gds b/tests/gds_ref_si220/pad_array.gds deleted file mode 100644 index aa409069..00000000 Binary files a/tests/gds_ref_si220/pad_array.gds and /dev/null differ diff --git a/tests/gds_ref_si220/pad_array.oas b/tests/gds_ref_si220/pad_array.oas deleted file mode 100644 index 4aae02d9..00000000 Binary files a/tests/gds_ref_si220/pad_array.oas and /dev/null differ diff --git a/tests/gds_ref_si220/pbs_1550_eskid.gds b/tests/gds_ref_si220/pbs_1550_eskid.gds deleted file mode 100644 index 23d5c12f..00000000 Binary files a/tests/gds_ref_si220/pbs_1550_eskid.gds and /dev/null differ diff --git a/tests/gds_ref_si220/pbs_1550_eskid.oas b/tests/gds_ref_si220/pbs_1550_eskid.oas deleted file mode 100644 index 9aea7085..00000000 Binary files a/tests/gds_ref_si220/pbs_1550_eskid.oas and /dev/null differ diff --git a/tests/gds_ref_si220/photonic_wirebond_surfa_8365a94f.gds b/tests/gds_ref_si220/photonic_wirebond_surfa_8365a94f.gds deleted file mode 100644 index 050577d0..00000000 Binary files a/tests/gds_ref_si220/photonic_wirebond_surfa_8365a94f.gds and /dev/null differ diff --git a/tests/gds_ref_si220/photonic_wirebond_surfa_b165631b.gds b/tests/gds_ref_si220/photonic_wirebond_surfa_b165631b.gds deleted file mode 100644 index 4c89c471..00000000 Binary files a/tests/gds_ref_si220/photonic_wirebond_surfa_b165631b.gds and /dev/null differ diff --git a/tests/gds_ref_si220/photonic_wirebond_surfacetaper_1310.gds b/tests/gds_ref_si220/photonic_wirebond_surfacetaper_1310.gds deleted file mode 100644 index 8914910c..00000000 Binary files a/tests/gds_ref_si220/photonic_wirebond_surfacetaper_1310.gds and /dev/null differ diff --git a/tests/gds_ref_si220/photonic_wirebond_surfacetaper_1310.oas b/tests/gds_ref_si220/photonic_wirebond_surfacetaper_1310.oas deleted file mode 100644 index 69d34ec7..00000000 Binary files a/tests/gds_ref_si220/photonic_wirebond_surfacetaper_1310.oas and /dev/null differ diff --git a/tests/gds_ref_si220/photonic_wirebond_surfacetaper_1550.gds b/tests/gds_ref_si220/photonic_wirebond_surfacetaper_1550.gds deleted file mode 100644 index 35a71591..00000000 Binary files a/tests/gds_ref_si220/photonic_wirebond_surfacetaper_1550.gds and /dev/null differ diff --git a/tests/gds_ref_si220/photonic_wirebond_surfacetaper_1550.oas b/tests/gds_ref_si220/photonic_wirebond_surfacetaper_1550.oas deleted file mode 100644 index 9f022792..00000000 Binary files a/tests/gds_ref_si220/photonic_wirebond_surfacetaper_1550.oas and /dev/null differ diff --git a/tests/gds_ref_si220/rectangle.gds b/tests/gds_ref_si220/rectangle.gds deleted file mode 100644 index fbc71e6b..00000000 Binary files a/tests/gds_ref_si220/rectangle.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ring_double.gds b/tests/gds_ref_si220/ring_double.gds deleted file mode 100644 index 4efc1f54..00000000 Binary files a/tests/gds_ref_si220/ring_double.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ring_double.oas b/tests/gds_ref_si220/ring_double.oas deleted file mode 100644 index 32c30390..00000000 Binary files a/tests/gds_ref_si220/ring_double.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ring_double_heater.gds b/tests/gds_ref_si220/ring_double_heater.gds deleted file mode 100644 index 8a58e3e8..00000000 Binary files a/tests/gds_ref_si220/ring_double_heater.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ring_double_heater.oas b/tests/gds_ref_si220/ring_double_heater.oas deleted file mode 100644 index b2ef08fe..00000000 Binary files a/tests/gds_ref_si220/ring_double_heater.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ring_single.gds b/tests/gds_ref_si220/ring_single.gds deleted file mode 100644 index da4d0270..00000000 Binary files a/tests/gds_ref_si220/ring_single.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ring_single.oas b/tests/gds_ref_si220/ring_single.oas deleted file mode 100644 index e2d728c5..00000000 Binary files a/tests/gds_ref_si220/ring_single.oas and /dev/null differ diff --git a/tests/gds_ref_si220/ring_single_heater.gds b/tests/gds_ref_si220/ring_single_heater.gds deleted file mode 100644 index 77cb67ca..00000000 Binary files a/tests/gds_ref_si220/ring_single_heater.gds and /dev/null differ diff --git a/tests/gds_ref_si220/ring_single_heater.oas b/tests/gds_ref_si220/ring_single_heater.oas deleted file mode 100644 index 9e495d3b..00000000 Binary files a/tests/gds_ref_si220/ring_single_heater.oas and /dev/null differ diff --git a/tests/gds_ref_si220/siepic_o_gc_te1270_BB.gds b/tests/gds_ref_si220/siepic_o_gc_te1270_BB.gds deleted file mode 100644 index bfe7a106..00000000 Binary files a/tests/gds_ref_si220/siepic_o_gc_te1270_BB.gds and /dev/null differ diff --git a/tests/gds_ref_si220/siepic_o_gc_te1270_BB.oas b/tests/gds_ref_si220/siepic_o_gc_te1270_BB.oas deleted file mode 100644 index 393f13b2..00000000 Binary files a/tests/gds_ref_si220/siepic_o_gc_te1270_BB.oas and /dev/null differ diff --git a/tests/gds_ref_si220/siepic_o_pwbstlas_si_BB.gds b/tests/gds_ref_si220/siepic_o_pwbstlas_si_BB.gds deleted file mode 100644 index 9cda4cee..00000000 Binary files a/tests/gds_ref_si220/siepic_o_pwbstlas_si_BB.gds and /dev/null differ diff --git a/tests/gds_ref_si220/siepic_o_pwbstlas_si_BB.oas b/tests/gds_ref_si220/siepic_o_pwbstlas_si_BB.oas deleted file mode 100644 index c398f478..00000000 Binary files a/tests/gds_ref_si220/siepic_o_pwbstlas_si_BB.oas and /dev/null differ diff --git a/tests/gds_ref_si220/spiral.gds b/tests/gds_ref_si220/spiral.gds deleted file mode 100644 index a60c0010..00000000 Binary files a/tests/gds_ref_si220/spiral.gds and /dev/null differ diff --git a/tests/gds_ref_si220/spiral.oas b/tests/gds_ref_si220/spiral.oas deleted file mode 100644 index 755f4e31..00000000 Binary files a/tests/gds_ref_si220/spiral.oas and /dev/null differ diff --git a/tests/gds_ref_si220/spiral_racetrack.gds b/tests/gds_ref_si220/spiral_racetrack.gds deleted file mode 100644 index f517895a..00000000 Binary files a/tests/gds_ref_si220/spiral_racetrack.gds and /dev/null differ diff --git a/tests/gds_ref_si220/spiral_racetrack.oas b/tests/gds_ref_si220/spiral_racetrack.oas deleted file mode 100644 index e46d17cf..00000000 Binary files a/tests/gds_ref_si220/spiral_racetrack.oas and /dev/null differ diff --git a/tests/gds_ref_si220/spiral_racetrack_heater.gds b/tests/gds_ref_si220/spiral_racetrack_heater.gds deleted file mode 100644 index 4262b481..00000000 Binary files a/tests/gds_ref_si220/spiral_racetrack_heater.gds and /dev/null differ diff --git a/tests/gds_ref_si220/spiral_racetrack_heater.oas b/tests/gds_ref_si220/spiral_racetrack_heater.oas deleted file mode 100644 index f7d8cd13..00000000 Binary files a/tests/gds_ref_si220/spiral_racetrack_heater.oas and /dev/null differ diff --git a/tests/gds_ref_si220/straight.gds b/tests/gds_ref_si220/straight.gds deleted file mode 100644 index f199df7e..00000000 Binary files a/tests/gds_ref_si220/straight.gds and /dev/null differ diff --git a/tests/gds_ref_si220/straight.oas b/tests/gds_ref_si220/straight.oas deleted file mode 100644 index b6e80ecd..00000000 Binary files a/tests/gds_ref_si220/straight.oas and /dev/null differ diff --git a/tests/gds_ref_si220/straight_heater_meander.gds b/tests/gds_ref_si220/straight_heater_meander.gds deleted file mode 100644 index 6ade8266..00000000 Binary files a/tests/gds_ref_si220/straight_heater_meander.gds and /dev/null differ diff --git a/tests/gds_ref_si220/straight_heater_meander.oas b/tests/gds_ref_si220/straight_heater_meander.oas deleted file mode 100644 index 4fc45807..00000000 Binary files a/tests/gds_ref_si220/straight_heater_meander.oas and /dev/null differ diff --git a/tests/gds_ref_si220/straight_heater_metal.gds b/tests/gds_ref_si220/straight_heater_metal.gds deleted file mode 100644 index 020e9d13..00000000 Binary files a/tests/gds_ref_si220/straight_heater_metal.gds and /dev/null differ diff --git a/tests/gds_ref_si220/straight_heater_metal.oas b/tests/gds_ref_si220/straight_heater_metal.oas deleted file mode 100644 index d4799d48..00000000 Binary files a/tests/gds_ref_si220/straight_heater_metal.oas and /dev/null differ diff --git a/tests/gds_ref_si220/straight_metal.gds b/tests/gds_ref_si220/straight_metal.gds deleted file mode 100644 index a43c5bd8..00000000 Binary files a/tests/gds_ref_si220/straight_metal.gds and /dev/null differ diff --git a/tests/gds_ref_si220/straight_metal.oas b/tests/gds_ref_si220/straight_metal.oas deleted file mode 100644 index ebfc3388..00000000 Binary files a/tests/gds_ref_si220/straight_metal.oas and /dev/null differ diff --git a/tests/gds_ref_si220/taper.gds b/tests/gds_ref_si220/taper.gds deleted file mode 100644 index 45c5be50..00000000 Binary files a/tests/gds_ref_si220/taper.gds and /dev/null differ diff --git a/tests/gds_ref_si220/taper.oas b/tests/gds_ref_si220/taper.oas deleted file mode 100644 index c850889e..00000000 Binary files a/tests/gds_ref_si220/taper.oas and /dev/null differ diff --git a/tests/gds_ref_si220/taper_SiN_750_3000.gds b/tests/gds_ref_si220/taper_SiN_750_3000.gds deleted file mode 100644 index 506ef87f..00000000 Binary files a/tests/gds_ref_si220/taper_SiN_750_3000.gds and /dev/null differ diff --git a/tests/gds_ref_si220/taper_SiN_750_3000.oas b/tests/gds_ref_si220/taper_SiN_750_3000.oas deleted file mode 100644 index bde41db0..00000000 Binary files a/tests/gds_ref_si220/taper_SiN_750_3000.oas and /dev/null differ diff --git a/tests/gds_ref_si220/taper_metal.gds b/tests/gds_ref_si220/taper_metal.gds deleted file mode 100644 index 7168ea32..00000000 Binary files a/tests/gds_ref_si220/taper_metal.gds and /dev/null differ diff --git a/tests/gds_ref_si220/taper_metal.oas b/tests/gds_ref_si220/taper_metal.oas deleted file mode 100644 index cdcf93be..00000000 Binary files a/tests/gds_ref_si220/taper_metal.oas and /dev/null differ diff --git a/tests/gds_ref_si220/taper_si_simm_1310.gds b/tests/gds_ref_si220/taper_si_simm_1310.gds deleted file mode 100644 index 66689619..00000000 Binary files a/tests/gds_ref_si220/taper_si_simm_1310.gds and /dev/null differ diff --git a/tests/gds_ref_si220/taper_si_simm_1310.oas b/tests/gds_ref_si220/taper_si_simm_1310.oas deleted file mode 100644 index 5b6a8db1..00000000 Binary files a/tests/gds_ref_si220/taper_si_simm_1310.oas and /dev/null differ diff --git a/tests/gds_ref_si220/taper_si_simm_1550.gds b/tests/gds_ref_si220/taper_si_simm_1550.gds deleted file mode 100644 index a110f2b1..00000000 Binary files a/tests/gds_ref_si220/taper_si_simm_1550.gds and /dev/null differ diff --git a/tests/gds_ref_si220/taper_si_simm_1550.oas b/tests/gds_ref_si220/taper_si_simm_1550.oas deleted file mode 100644 index e2416062..00000000 Binary files a/tests/gds_ref_si220/taper_si_simm_1550.oas and /dev/null differ diff --git a/tests/gds_ref_si220/text_rectangular.gds b/tests/gds_ref_si220/text_rectangular.gds deleted file mode 100644 index 0902f075..00000000 Binary files a/tests/gds_ref_si220/text_rectangular.gds and /dev/null differ diff --git a/tests/gds_ref_si220/text_rectangular.oas b/tests/gds_ref_si220/text_rectangular.oas deleted file mode 100644 index 85eefbae..00000000 Binary files a/tests/gds_ref_si220/text_rectangular.oas and /dev/null differ diff --git a/tests/gds_ref_si220/text_rectangular_multi_layer.gds b/tests/gds_ref_si220/text_rectangular_multi_layer.gds deleted file mode 100644 index 116fa60e..00000000 Binary files a/tests/gds_ref_si220/text_rectangular_multi_layer.gds and /dev/null differ diff --git a/tests/gds_ref_si220/text_rectangular_multi_layer.oas b/tests/gds_ref_si220/text_rectangular_multi_layer.oas deleted file mode 100644 index 04f81e16..00000000 Binary files a/tests/gds_ref_si220/text_rectangular_multi_layer.oas and /dev/null differ diff --git a/tests/gds_ref_si220/thermal_phase_shifter_multimode_.gds b/tests/gds_ref_si220/thermal_phase_shifter_multimode_.gds deleted file mode 100644 index 5c3b2f32..00000000 Binary files a/tests/gds_ref_si220/thermal_phase_shifter_multimode_.gds and /dev/null differ diff --git a/tests/gds_ref_si220/thermal_phase_shifter_multimode_.oas b/tests/gds_ref_si220/thermal_phase_shifter_multimode_.oas deleted file mode 100644 index 430c35e7..00000000 Binary files a/tests/gds_ref_si220/thermal_phase_shifter_multimode_.oas and /dev/null differ diff --git a/tests/gds_ref_si220/thermal_phase_shifter_te_1310_.gds b/tests/gds_ref_si220/thermal_phase_shifter_te_1310_.gds deleted file mode 100644 index 43e9b243..00000000 Binary files a/tests/gds_ref_si220/thermal_phase_shifter_te_1310_.gds and /dev/null differ diff --git a/tests/gds_ref_si220/thermal_phase_shifter_te_1310_.oas b/tests/gds_ref_si220/thermal_phase_shifter_te_1310_.oas deleted file mode 100644 index 76c7024d..00000000 Binary files a/tests/gds_ref_si220/thermal_phase_shifter_te_1310_.oas and /dev/null differ diff --git a/tests/gds_ref_si220/thermal_phase_shifter_te_1310_50.gds b/tests/gds_ref_si220/thermal_phase_shifter_te_1310_50.gds deleted file mode 100644 index ba9c51e3..00000000 Binary files a/tests/gds_ref_si220/thermal_phase_shifter_te_1310_50.gds and /dev/null differ diff --git a/tests/gds_ref_si220/thermal_phase_shifter_te_1310_50.oas b/tests/gds_ref_si220/thermal_phase_shifter_te_1310_50.oas deleted file mode 100644 index c8372353..00000000 Binary files a/tests/gds_ref_si220/thermal_phase_shifter_te_1310_50.oas and /dev/null differ diff --git a/tests/gds_ref_si220/thermal_phase_shifter_te_1550_50.gds b/tests/gds_ref_si220/thermal_phase_shifter_te_1550_50.gds deleted file mode 100644 index 9323914e..00000000 Binary files a/tests/gds_ref_si220/thermal_phase_shifter_te_1550_50.gds and /dev/null differ diff --git a/tests/gds_ref_si220/thermal_phase_shifter_te_1550_50.oas b/tests/gds_ref_si220/thermal_phase_shifter_te_1550_50.oas deleted file mode 100644 index 074b3edd..00000000 Binary files a/tests/gds_ref_si220/thermal_phase_shifter_te_1550_50.oas and /dev/null differ diff --git a/tests/gds_ref_si220/via_stack_heater_mtop.gds b/tests/gds_ref_si220/via_stack_heater_mtop.gds deleted file mode 100644 index 16f8d64a..00000000 Binary files a/tests/gds_ref_si220/via_stack_heater_mtop.gds and /dev/null differ diff --git a/tests/gds_ref_si220/via_stack_heater_mtop.oas b/tests/gds_ref_si220/via_stack_heater_mtop.oas deleted file mode 100644 index e3f7dd63..00000000 Binary files a/tests/gds_ref_si220/via_stack_heater_mtop.oas and /dev/null differ diff --git a/tests/gds_ref_si220/wire_corner45.gds b/tests/gds_ref_si220/wire_corner45.gds deleted file mode 100644 index 29da4995..00000000 Binary files a/tests/gds_ref_si220/wire_corner45.gds and /dev/null differ diff --git a/tests/gds_ref_si220/wire_corner45.oas b/tests/gds_ref_si220/wire_corner45.oas deleted file mode 100644 index c5be2877..00000000 Binary files a/tests/gds_ref_si220/wire_corner45.oas and /dev/null differ diff --git a/tests/gds_ref_si220/wire_corner45_straight.gds b/tests/gds_ref_si220/wire_corner45_straight.gds deleted file mode 100644 index 4ec6cf17..00000000 Binary files a/tests/gds_ref_si220/wire_corner45_straight.gds and /dev/null differ diff --git a/tests/test_routing.py b/tests/test_routing.py deleted file mode 100644 index d8f98cc9..00000000 --- a/tests/test_routing.py +++ /dev/null @@ -1,11 +0,0 @@ -"""Test routing with layer_transitions and auto-taper.""" - -from ubcpdk import PDK -from ubcpdk.samples.sample_routing import sample_routing_different_widths - - -def test_sample_routing_different_widths() -> None: - """Test that routing inserts tapers between straights of different widths.""" - PDK.activate() - c = sample_routing_different_widths() - assert len(c.insts) > 2, "Routing should insert taper/bend instances" diff --git a/tests/test_si220_cband.py b/tests/test_si220_cband.py deleted file mode 100644 index b1988be0..00000000 --- a/tests/test_si220_cband.py +++ /dev/null @@ -1,231 +0,0 @@ -"""Description: Test netlists for all cells in the PDK.""" - -from __future__ import annotations - -import pathlib - -import gdsfactory as gf -import jsondiff -import kfactory as kf -import numpy as np -import pytest -from conftest import difftest -from pytest_regressions.data_regression import DataRegressionFixture -from pytest_regressions.ndarrays_regression import NDArraysRegressionFixture - -from ubcpdk import PDK - - -@pytest.fixture(autouse=True) -def activate_pdk() -> None: - """Activate PDK.""" - PDK.activate() - - -cells = PDK.cells -skip_test = { - "wire_corner", - "pack_doe", - "pack_doe_grid", - "add_pads_top", - "add_pads_bot", - "add_fiber_single", - "coupler_symmetric", - "die_with_pads", - "import_gds", - "add_fiber_array", - "add_pads_rfstraight_heater_metal", - "mzi_heater", - "add_pads_rf", - "die", - "ebeam_Polarizer_TM_1550_UQAM", -} -cell_names = cells.keys() - skip_test -cell_names = [name for name in cell_names if not name.startswith("_")] -dirpath = pathlib.Path(__file__).absolute().with_suffix(".gds").parent / "gds_ref_si220" -dirpath.mkdir(exist_ok=True, parents=True) - - -def get_minimal_netlist(comp: gf.Component): - """Get minimal netlist from a component.""" - net = comp.get_netlist() - - def _get_instance(inst): - return { - "component": inst["component"], - "settings": inst["settings"], - } - - return {"instances": {i: _get_instance(c) for i, c in net["instances"].items()}} - - -def instances_without_info(net): - """Get instances without info.""" - return { - k: { - "component": v.get("component", ""), - "settings": v.get("settings", {}), - } - for k, v in net.get("instances", {}).items() - } - - -@pytest.mark.parametrize("name", cell_names) -def test_cell_in_pdk(name): - """Test that cell is in the PDK.""" - c1 = gf.Component() - c1.add_ref(gf.get_component(name)) - net1 = get_minimal_netlist(c1) - - c2 = gf.read.from_yaml(net1) - net2 = get_minimal_netlist(c2) - - instances1 = instances_without_info(net1) - instances2 = instances_without_info(net2) - assert instances1 == instances2 - - -@pytest.mark.parametrize("component_name", cell_names) -def test_gds(component_name: str) -> None: - """Avoid regressions in GDS geometry shapes and layers.""" - component = cells[component_name]() - difftest(component, test_name=component_name, dirpath=dirpath) - - -@pytest.mark.parametrize("component_name", cell_names) -def test_settings(component_name: str, data_regression: DataRegressionFixture) -> None: - """Avoid regressions when exporting settings.""" - component = cells[component_name]() - data_regression.check(component.to_dict(with_ports=True)) - - -skip_test_models = {} - - -models = PDK.models -model_names = sorted( - [ - name - for name in set(models.keys()) - set(skip_test_models) - if not name.startswith("_") - ] -) - - -@pytest.mark.parametrize("model_name", model_names) -def test_models_with_wavelength_sweep( - model_name: str, ndarrays_regression: NDArraysRegressionFixture -) -> None: - """Test models with different wavelengths to avoid regressions in frequency response.""" - # Test at different wavelengths - wl = [1.53, 1.55, 1.57] - try: - model = models[model_name] - s_params = model(wl=wl) - except TypeError: - pytest.skip(f"{model_name} does not accept a wl argument") - - # Convert s_params dictionary to arrays for regression testing - # s_params is a dict with tuple keys (port pairs) and JAX array values - arrays_to_check = {} - for key, value in sorted(s_params.items()): - # Convert tuple key to string for regression test compatibility - key_str = f"s_{key[0]}_{key[1]}" - # Convert JAX arrays to numpy and separate real/imag parts - - value_np = np.array(value) - arrays_to_check[f"{key_str}_real"] = np.real(value_np) - arrays_to_check[f"{key_str}_imag"] = np.imag(value_np) - - ndarrays_regression.check( - arrays_to_check, - default_tolerance={"atol": 1e-2, "rtol": 1e-2}, - ) - - -skip_test_optical_port_positions = { - "ebeam_dream_FAVE_SiN_1550_BB", - "ebeam_DC_2m1_te895", - "crossing_horizontal", - "ebeam_dream_FAVE_Si_1310_BB", - "ebeam_terminator_SiN_1550", - "ebeam_dream_FaML_Si_1550_BB", - "ebeam_gc_te895", - "add_fiber_array_pads_rf", - "ebeam_YBranch_895", - "ebeam_dream_FAVE_SiN_1310_BB", - "ebeam_YBranch_te1310", - "ebeam_terminator_SiN_1310", - "ebeam_gc_te1550", - "ebeam_dream_FaML_Si_1310_BB", - "ANT_MMI_1x2_te1550_3dB_BB", - "GC_SiN_TE_1550_8degOxide_BB", - "ebeam_MMI_2x2_5050_te1310", - "ebeam_terminator_SiN_te895", - "crossing_SiN_1550_extended", - "crossing_SiN_1550", - "ebeam_gc_te1550_broadband", - "ebeam_sin_dream_splitter1x2_te1550_BB", - "ebeam_gc_tm1550", - "taper_SiN_750_3000", - "ebeam_gc_te1550_90nmSlab", - "ebeam_dream_FAVE_Si_1550_BB", - "GC_SiN_TE_1310_8degOxide_BB", - "crossing_manhattan", - "ebeam_dream_FaML_SiN_1550_BB", - "ebeam_DC_te895", -} -optical_port_cell_names = [ - n for n in cell_names if n not in skip_test_optical_port_positions -] - - -@pytest.mark.parametrize("component_name", optical_port_cell_names) -def test_optical_port_positions(component_name: str) -> None: - """Ensure that optical ports are positioned correctly.""" - component = cells[component_name]() - if isinstance(component, gf.ComponentAllAngle): - new_component = gf.Component() - kf.VInstance(component).insert_into_flat(new_component, levels=0) - new_component.add_ports(component.ports) - component = new_component - for port in component.ports: - if port.port_type == "optical": - port_layer = port.layer - port_width = port.width - port_position = port.center - port_angle = port.orientation - cs_region = kf.kdb.Region(component.begin_shapes_rec(port_layer)) - optical_edges = cs_region.edges() - - tolerance = 0.001 - poly = kf.kdb.DBox(-tolerance, -tolerance, tolerance, tolerance) - dbu_in_um = port.kcl.to_um(1) - port_marker = ( - kf.kdb.DPolygon(poly).transformed(port.dcplx_trans).to_itype(dbu_in_um) - ) - port_marker_region = kf.kdb.Region(port_marker) - - interacting_edges = optical_edges.interacting(port_marker_region) - if interacting_edges.is_empty(): - raise AssertionError( - f"No optical edge found for port {port.name} at position {port_position} with width {port_width} and angle {port_angle}." - ) - port_edge = next(iter(interacting_edges.each())) - edge_length = port_edge.length() * 0.001 - if not np.isclose(edge_length, port_width, atol=1e-3): - raise AssertionError( - f"Port {port.name} has width {port_width}, but the optical edge length is {edge_length}." - ) - - -if __name__ == "__main__": - component_type = "coupler_symmetric" - c = cells[component_type]() - n = c.get_netlist() - n.pop("connections", None) - print(n) - c2 = gf.read.from_yaml(n) - n2 = c2.get_netlist() - d = jsondiff.diff(n, n2) - assert len(d) == 0, d diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_bend_euler_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_bend_euler_.npz deleted file mode 100644 index 1bfd5d9c..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_bend_euler_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_bend_euler_rib_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_bend_euler_rib_.npz deleted file mode 100644 index 1bfd5d9c..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_bend_euler_rib_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_bend_euler_strip_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_bend_euler_strip_.npz deleted file mode 100644 index 1bfd5d9c..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_bend_euler_strip_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_bend_s_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_bend_s_.npz deleted file mode 100644 index 1bfd5d9c..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_bend_s_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_coupler_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_coupler_.npz deleted file mode 100644 index 8e9425ac..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_coupler_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_coupler_ring_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_coupler_ring_.npz deleted file mode 100644 index f743f550..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_coupler_ring_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_coupler_ring_coupling_area_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_coupler_ring_coupling_area_.npz deleted file mode 100644 index 33f170cf..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_coupler_ring_coupling_area_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_coupler_strip_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_coupler_strip_.npz deleted file mode 100644 index 8e9425ac..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_coupler_strip_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_crossing_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_crossing_.npz deleted file mode 100644 index ffee4992..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_crossing_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_crossing_rib_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_crossing_rib_.npz deleted file mode 100644 index ffee4992..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_crossing_rib_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_directional_coupler_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_directional_coupler_.npz deleted file mode 100644 index 8e9425ac..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_directional_coupler_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_directional_coupler_no_phase_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_directional_coupler_no_phase_.npz deleted file mode 100644 index dced4525..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_directional_coupler_no_phase_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_ebeam_y_1550_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_ebeam_y_1550_.npz deleted file mode 100644 index dc389c5d..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_ebeam_y_1550_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_gc_te1310_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_gc_te1310_.npz deleted file mode 100644 index 1731ee89..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_gc_te1310_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_gc_te1310_broadband_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_gc_te1310_broadband_.npz deleted file mode 100644 index ad79997a..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_gc_te1310_broadband_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_gc_te1550_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_gc_te1550_.npz deleted file mode 100644 index 0ee837ad..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_gc_te1550_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_gc_te1550_broadband_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_gc_te1550_broadband_.npz deleted file mode 100644 index 537daac8..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_gc_te1550_broadband_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_gc_tm1550_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_gc_tm1550_.npz deleted file mode 100644 index 0ee837ad..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_gc_tm1550_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_mmi1x2_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_mmi1x2_.npz deleted file mode 100644 index dc389c5d..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_mmi1x2_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_mmi2x2_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_mmi2x2_.npz deleted file mode 100644 index eb185224..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_mmi2x2_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_straight_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_straight_.npz deleted file mode 100644 index 1bfd5d9c..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_straight_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_straight_rib_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_straight_rib_.npz deleted file mode 100644 index 1bfd5d9c..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_straight_rib_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_straight_strip_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_straight_strip_.npz deleted file mode 100644 index 1bfd5d9c..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_straight_strip_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_taper_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_taper_.npz deleted file mode 100644 index 91261b78..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_taper_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_taper_rib_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_taper_rib_.npz deleted file mode 100644 index 91261b78..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_taper_rib_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_taper_strip_to_ridge_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_taper_strip_to_ridge_.npz deleted file mode 100644 index 91261b78..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_taper_strip_to_ridge_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_trans_rib10_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_trans_rib10_.npz deleted file mode 100644 index 91261b78..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_trans_rib10_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_trans_rib20_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_trans_rib20_.npz deleted file mode 100644 index 30724244..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_trans_rib20_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_trans_rib50_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_trans_rib50_.npz deleted file mode 100644 index 68eca744..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_trans_rib50_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_models_with_wavelength_sweep_wire_corner_.npz b/tests/test_si220_cband/test_models_with_wavelength_sweep_wire_corner_.npz deleted file mode 100644 index a2eea62d..00000000 Binary files a/tests/test_si220_cband/test_models_with_wavelength_sweep_wire_corner_.npz and /dev/null differ diff --git a/tests/test_si220_cband/test_netlists_Alignment_Marker_.yml b/tests/test_si220_cband/test_netlists_Alignment_Marker_.yml deleted file mode 100644 index 90817572..00000000 --- a/tests/test_si220_cband/test_netlists_Alignment_Marker_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: Alignment_Marker -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_add_fiber_array_.yml b/tests/test_si220_cband/test_netlists_add_fiber_array_.yml deleted file mode 100644 index b59356e7..00000000 --- a/tests/test_si220_cband/test_netlists_add_fiber_array_.yml +++ /dev/null @@ -1,461 +0,0 @@ -instances: - bend_euler_R10_A90_P0p5_17151b03_175500_m81550_A270_M: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: 10 - width: null - bend_euler_R10_A90_P0p5_17151b03_185500_m30000_A180: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: 10 - width: null - bend_euler_R10_A90_P0p5_17151b03_195500_m40000_A90: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: 10 - width: null - bend_euler_R10_A90_P0p5_17151b03_m155500_m91550_A180_M: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: 10 - width: null - bend_euler_R10_A90_P0p5_17151b03_m165500_m40000_A90: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: 10 - width: null - bend_euler_R10_A90_P0p5_17151b03_m175500_m30000_A180: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: 10 - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_68500_m10000_A90: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_m58500_m10000_A90_M: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - grating_coupler_ellipti_2f8caedf_195500_m40000_A270: - component: grating_coupler_elliptical - info: - polarization: te - wavelength: 1.55 - settings: - cross_section: strip - grating_line_width: 0.315 - wavelength: 1.55 - grating_coupler_ellipti_2f8caedf_68500_m40000_A270: - component: grating_coupler_elliptical - info: - polarization: te - wavelength: 1.55 - settings: - cross_section: strip - grating_line_width: 0.315 - wavelength: 1.55 - grating_coupler_ellipti_2f8caedf_m185500_m40000_A270: - component: grating_coupler_elliptical - info: - polarization: te - wavelength: 1.55 - settings: - cross_section: strip - grating_line_width: 0.315 - wavelength: 1.55 - grating_coupler_ellipti_2f8caedf_m58500_m40000_A270: - component: grating_coupler_elliptical - info: - polarization: te - wavelength: 1.55 - settings: - cross_section: strip - grating_line_width: 0.315 - wavelength: 1.55 - straight_L10_CSstrip_WNone_N2_0_0: - component: straight - info: - length: 10 - route_info_length: 10 - route_info_strip_length: 10 - route_info_type: strip - route_info_weight: 10 - width: 0.5 - settings: - cross_section: strip - length: 10 - npoints: 2 - width: null - straight_L30_CSstrip_W0p5_N2_68500_m10000_A270: - component: straight - info: - length: 30 - route_info_length: 30 - route_info_strip_length: 30 - route_info_type: strip - route_info_weight: 30 - width: 0.5 - settings: - cross_section: strip - length: 30 - npoints: 2 - width: 0.5 - straight_L30_CSstrip_W0p5_N2_m58500_m10000_A270: - component: straight - info: - length: 30 - route_info_length: 30 - route_info_strip_length: 30 - route_info_type: strip - route_info_weight: 30 - width: 0.5 - settings: - cross_section: strip - length: 30 - npoints: 2 - width: 0.5 - straight_L321_CSstrip_W0p5_N2_m155500_m91550: - component: straight - info: - length: 321 - route_info_length: 321 - route_info_strip_length: 321 - route_info_type: strip - route_info_weight: 321 - width: 0.5 - settings: - cross_section: strip - length: 321 - npoints: 2 - width: 0.5 - straight_L41p5500000000_6c27f8ec_175500_m81550_A90: - component: straight - info: - length: 41.55 - route_info_length: 41.55 - route_info_strip_length: 41.55 - route_info_type: strip - route_info_weight: 41.55 - width: 0.5 - settings: - cross_section: strip - length: 41.55 - npoints: 2 - width: 0.5 - straight_L41p5500000000_6c27f8ec_m165500_m40000_A270: - component: straight - info: - length: 41.55 - route_info_length: 41.55 - route_info_strip_length: 41.55 - route_info_type: strip - route_info_weight: 41.55 - width: 0.5 - settings: - cross_section: strip - length: 41.55 - npoints: 2 - width: 0.5 - straight_L48p5_CSstrip_W0p5_N2_0_0_A180: - component: straight - info: - length: 48.5 - route_info_length: 48.5 - route_info_strip_length: 48.5 - route_info_type: strip - route_info_weight: 48.5 - width: 0.5 - settings: - cross_section: strip - length: 48.5 - npoints: 2 - width: 0.5 - straight_L48p5_CSstrip_W0p5_N2_10000_0: - component: straight - info: - length: 48.5 - route_info_length: 48.5 - route_info_strip_length: 48.5 - route_info_type: strip - route_info_weight: 48.5 - width: 0.5 - settings: - cross_section: strip - length: 48.5 - npoints: 2 - width: 0.5 -name: add_fiber_array_Cstraig_97619bb3 -nets: -- p1: bend_euler_R10_A90_P0p5_17151b03_175500_m81550_A270_M,o1 - p2: straight_L41p5500000000_6c27f8ec_175500_m81550_A90,o1 -- p1: bend_euler_R10_A90_P0p5_17151b03_175500_m81550_A270_M,o2 - p2: straight_L321_CSstrip_W0p5_N2_m155500_m91550,o2 -- p1: bend_euler_R10_A90_P0p5_17151b03_185500_m30000_A180,o1 - p2: bend_euler_R10_A90_P0p5_17151b03_195500_m40000_A90,o2 -- p1: bend_euler_R10_A90_P0p5_17151b03_185500_m30000_A180,o2 - p2: straight_L41p5500000000_6c27f8ec_175500_m81550_A90,o2 -- p1: bend_euler_R10_A90_P0p5_17151b03_195500_m40000_A90,o1 - p2: grating_coupler_ellipti_2f8caedf_195500_m40000_A270,o1 -- p1: bend_euler_R10_A90_P0p5_17151b03_m155500_m91550_A180_M,o1 - p2: straight_L321_CSstrip_W0p5_N2_m155500_m91550,o1 -- p1: bend_euler_R10_A90_P0p5_17151b03_m155500_m91550_A180_M,o2 - p2: straight_L41p5500000000_6c27f8ec_m165500_m40000_A270,o2 -- p1: bend_euler_R10_A90_P0p5_17151b03_m165500_m40000_A90,o1 - p2: straight_L41p5500000000_6c27f8ec_m165500_m40000_A270,o1 -- p1: bend_euler_R10_A90_P0p5_17151b03_m165500_m40000_A90,o2 - p2: bend_euler_R10_A90_P0p5_17151b03_m175500_m30000_A180,o1 -- p1: bend_euler_R10_A90_P0p5_17151b03_m175500_m30000_A180,o2 - p2: grating_coupler_ellipti_2f8caedf_m185500_m40000_A270,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_68500_m10000_A90,o1 - p2: straight_L30_CSstrip_W0p5_N2_68500_m10000_A270,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_68500_m10000_A90,o2 - p2: straight_L48p5_CSstrip_W0p5_N2_10000_0,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m58500_m10000_A90_M,o1 - p2: straight_L30_CSstrip_W0p5_N2_m58500_m10000_A270,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m58500_m10000_A90_M,o2 - p2: straight_L48p5_CSstrip_W0p5_N2_0_0_A180,o2 -- p1: grating_coupler_ellipti_2f8caedf_68500_m40000_A270,o1 - p2: straight_L30_CSstrip_W0p5_N2_68500_m10000_A270,o2 -- p1: grating_coupler_ellipti_2f8caedf_m58500_m40000_A270,o1 - p2: straight_L30_CSstrip_W0p5_N2_m58500_m10000_A270,o2 -- p1: straight_L10_CSstrip_WNone_N2_0_0,o1 - p2: straight_L48p5_CSstrip_W0p5_N2_0_0_A180,o1 -- p1: straight_L10_CSstrip_WNone_N2_0_0,o2 - p2: straight_L48p5_CSstrip_W0p5_N2_10000_0,o1 -placements: - bend_euler_R10_A90_P0p5_17151b03_175500_m81550_A270_M: - mirror: true - rotation: 270 - x: 175.5 - y: -81.55 - bend_euler_R10_A90_P0p5_17151b03_185500_m30000_A180: - mirror: false - rotation: 180 - x: 185.5 - y: -30 - bend_euler_R10_A90_P0p5_17151b03_195500_m40000_A90: - mirror: false - rotation: 90 - x: 195.5 - y: -40 - bend_euler_R10_A90_P0p5_17151b03_m155500_m91550_A180_M: - mirror: true - rotation: 180 - x: -155.5 - y: -91.55 - bend_euler_R10_A90_P0p5_17151b03_m165500_m40000_A90: - mirror: false - rotation: 90 - x: -165.5 - y: -40 - bend_euler_R10_A90_P0p5_17151b03_m175500_m30000_A180: - mirror: false - rotation: 180 - x: -175.5 - y: -30 - bend_euler_RNone_A90_P0_fbfa4d8c_68500_m10000_A90: - mirror: false - rotation: 90 - x: 68.5 - y: -10 - bend_euler_RNone_A90_P0_fbfa4d8c_m58500_m10000_A90_M: - mirror: true - rotation: 90 - x: -58.5 - y: -10 - grating_coupler_ellipti_2f8caedf_195500_m40000_A270: - mirror: false - rotation: 270 - x: 195.5 - y: -40 - grating_coupler_ellipti_2f8caedf_68500_m40000_A270: - mirror: false - rotation: 270 - x: 68.5 - y: -40 - grating_coupler_ellipti_2f8caedf_m185500_m40000_A270: - mirror: false - rotation: 270 - x: -185.5 - y: -40 - grating_coupler_ellipti_2f8caedf_m58500_m40000_A270: - mirror: false - rotation: 270 - x: -58.5 - y: -40 - straight_L10_CSstrip_WNone_N2_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 - straight_L30_CSstrip_W0p5_N2_68500_m10000_A270: - mirror: false - rotation: 270 - x: 68.5 - y: -10 - straight_L30_CSstrip_W0p5_N2_m58500_m10000_A270: - mirror: false - rotation: 270 - x: -58.5 - y: -10 - straight_L321_CSstrip_W0p5_N2_m155500_m91550: - mirror: false - rotation: 0 - x: -155.5 - y: -91.55 - straight_L41p5500000000_6c27f8ec_175500_m81550_A90: - mirror: false - rotation: 90 - x: 175.5 - y: -81.55 - straight_L41p5500000000_6c27f8ec_m165500_m40000_A270: - mirror: false - rotation: 270 - x: -165.5 - y: -40 - straight_L48p5_CSstrip_W0p5_N2_0_0_A180: - mirror: false - rotation: 180 - x: 0 - y: 0 - straight_L48p5_CSstrip_W0p5_N2_10000_0: - mirror: false - rotation: 0 - x: 10 - y: 0 -ports: - loopback1: grating_coupler_ellipti_2f8caedf_m185500_m40000_A270,o2 - loopback2: grating_coupler_ellipti_2f8caedf_195500_m40000_A270,o2 - o1: grating_coupler_ellipti_2f8caedf_m58500_m40000_A270,o2 - o2: grating_coupler_ellipti_2f8caedf_68500_m40000_A270,o2 diff --git a/tests/test_si220_cband/test_netlists_add_fiber_array_pads_rf_.yml b/tests/test_si220_cband/test_netlists_add_fiber_array_pads_rf_.yml deleted file mode 100644 index 46fc27fb..00000000 --- a/tests/test_si220_cband/test_netlists_add_fiber_array_pads_rf_.yml +++ /dev/null @@ -1,18 +0,0 @@ -instances: - elec_JoaquinMatresmringpdoublepheaterpgdsfpb6e3764f_G_with_gc_0_0_A270: - component: elec_JoaquinMatres-ring.double.heater.gdsf.b6e3764f_G_with_gc - info: {} - settings: {} -name: add_fiber_array_pads_rf_1ec5681a -nets: [] -placements: - elec_JoaquinMatresmringpdoublepheaterpgdsfpb6e3764f_G_with_gc_0_0_A270: - mirror: false - rotation: 270 - x: 0 - y: 0 -ports: - e1: elec_JoaquinMatresmringpdoublepheaterpgdsfpb6e3764f_G_with_gc_0_0_A270,e1 - e2: elec_JoaquinMatresmringpdoublepheaterpgdsfpb6e3764f_G_with_gc_0_0_A270,e2 - o1: elec_JoaquinMatresmringpdoublepheaterpgdsfpb6e3764f_G_with_gc_0_0_A270,o1 - o2: elec_JoaquinMatresmringpdoublepheaterpgdsfpb6e3764f_G_with_gc_0_0_A270,o2 diff --git a/tests/test_si220_cband/test_netlists_add_pads_.yml b/tests/test_si220_cband/test_netlists_add_pads_.yml deleted file mode 100644 index efa13220..00000000 --- a/tests/test_si220_cband/test_netlists_add_pads_.yml +++ /dev/null @@ -1,94 +0,0 @@ -instances: - pad_array_gdsfactorypco_d4925a84_m438000_160210: - component: pad_array - info: {} - settings: - auto_rename_ports: false - centered_ports: false - column_pitch: 125 - columns: 8 - layer: MTOP - pad: Fpad_Mgdsfactorypcomponentsppadsppad_SS75_75_LM2_ROUTER_BLPAD_OPEN_BOm1p8 - port_orientation: 270 - row_pitch: 125 - rows: 1 - size: null - ring_double_heater_gdsf_b6e3764f1_0_0: - component: ring_double_heater_gdsf_b6e3764f$1 - info: {} - settings: - bend: bend_euler - coupler_ring: coupler_ring - coupler_ring_top: null - cross_section: strip - cross_section_heater: heater_metal - cross_section_waveguide_heater: strip_heater_metal - gap: 0.2 - gap_bot: null - gap_top: null - length_extension: null - length_x: 1 - length_y: 0.01 - port_orientation: null - radius: null - straight: straight - via_stack: via_stack_heater_mtop - via_stack_offset: - - 1 - - 0 - via_stack_size: null - with_drop: false -name: add_pads_Cring_single_h_05ab631c -nets: [] -placements: - pad_array_gdsfactorypco_d4925a84_m438000_160210: - mirror: false - rotation: 0 - x: -438 - y: 160.21 - ring_double_heater_gdsf_b6e3764f1_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 -ports: - e1: pad_array_gdsfactorypco_d4925a84_m438000_160210,e18 - e2: pad_array_gdsfactorypco_d4925a84_m438000_160210,e17 - e3: pad_array_gdsfactorypco_d4925a84_m438000_160210,e16 - e4: pad_array_gdsfactorypco_d4925a84_m438000_160210,e15 - e5: pad_array_gdsfactorypco_d4925a84_m438000_160210,e14 - e6: pad_array_gdsfactorypco_d4925a84_m438000_160210,e13 - e7: pad_array_gdsfactorypco_d4925a84_m438000_160210,e12 - e8: pad_array_gdsfactorypco_d4925a84_m438000_160210,e11 - o1: ring_double_heater_gdsf_b6e3764f1_0_0,o1 - o2: ring_double_heater_gdsf_b6e3764f1_0_0,o2 -warnings: - electrical: - unconnected_ports: - - message: 8 unconnected electrical ports! - ports: - - ring_double_heater_gdsf_b6e3764f1_0_0,l_e1 - - ring_double_heater_gdsf_b6e3764f1_0_0,l_e2 - - ring_double_heater_gdsf_b6e3764f1_0_0,l_e3 - - ring_double_heater_gdsf_b6e3764f1_0_0,l_e4 - - ring_double_heater_gdsf_b6e3764f1_0_0,r_e1 - - ring_double_heater_gdsf_b6e3764f1_0_0,r_e2 - - ring_double_heater_gdsf_b6e3764f1_0_0,r_e3 - - ring_double_heater_gdsf_b6e3764f1_0_0,r_e4 - values: - - - -12 - - 0 - - - -7 - - 5 - - - -2 - - 0 - - - -7 - - -5 - - - 1 - - 0 - - - 6 - - 5 - - - 11 - - 0 - - - 6 - - -5 diff --git a/tests/test_si220_cband/test_netlists_add_pads_rf_.yml b/tests/test_si220_cband/test_netlists_add_pads_rf_.yml deleted file mode 100644 index 945e4475..00000000 --- a/tests/test_si220_cband/test_netlists_add_pads_rf_.yml +++ /dev/null @@ -1,94 +0,0 @@ -instances: - pad_array_gdsfactorypco_d4925a84_m438000_160210: - component: pad_array - info: {} - settings: - auto_rename_ports: false - centered_ports: false - column_pitch: 125 - columns: 8 - layer: MTOP - pad: Fpad_Mgdsfactorypcomponentsppadsppad_SS75_75_LM2_ROUTER_BLPAD_OPEN_BOm1p8 - port_orientation: 270 - row_pitch: 125 - rows: 1 - size: null - ring_double_heater_gdsf_b6e3764f_0_0: - component: ring_double_heater - info: {} - settings: - bend: bend_euler - coupler_ring: coupler_ring - coupler_ring_top: null - cross_section: strip - cross_section_heater: heater_metal - cross_section_waveguide_heater: strip_heater_metal - gap: 0.2 - gap_bot: null - gap_top: null - length_extension: null - length_x: 1 - length_y: 0.01 - port_orientation: null - radius: null - straight: straight - via_stack: via_stack_heater_mtop - via_stack_offset: - - 1 - - 0 - via_stack_size: null - with_drop: false -name: Unnamed_590 -nets: [] -placements: - pad_array_gdsfactorypco_d4925a84_m438000_160210: - mirror: false - rotation: 0 - x: -438 - y: 160.21 - ring_double_heater_gdsf_b6e3764f_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 -ports: - e1: pad_array_gdsfactorypco_d4925a84_m438000_160210,e18 - e2: pad_array_gdsfactorypco_d4925a84_m438000_160210,e17 - e3: pad_array_gdsfactorypco_d4925a84_m438000_160210,e16 - e4: pad_array_gdsfactorypco_d4925a84_m438000_160210,e15 - e5: pad_array_gdsfactorypco_d4925a84_m438000_160210,e14 - e6: pad_array_gdsfactorypco_d4925a84_m438000_160210,e13 - e7: pad_array_gdsfactorypco_d4925a84_m438000_160210,e12 - e8: pad_array_gdsfactorypco_d4925a84_m438000_160210,e11 - o1: ring_double_heater_gdsf_b6e3764f_0_0,o1 - o2: ring_double_heater_gdsf_b6e3764f_0_0,o2 -warnings: - electrical: - unconnected_ports: - - message: 8 unconnected electrical ports! - ports: - - ring_double_heater_gdsf_b6e3764f_0_0,l_e1 - - ring_double_heater_gdsf_b6e3764f_0_0,l_e2 - - ring_double_heater_gdsf_b6e3764f_0_0,l_e3 - - ring_double_heater_gdsf_b6e3764f_0_0,l_e4 - - ring_double_heater_gdsf_b6e3764f_0_0,r_e1 - - ring_double_heater_gdsf_b6e3764f_0_0,r_e2 - - ring_double_heater_gdsf_b6e3764f_0_0,r_e3 - - ring_double_heater_gdsf_b6e3764f_0_0,r_e4 - values: - - - -12 - - 0 - - - -7 - - 5 - - - -2 - - 0 - - - -7 - - -5 - - - 1 - - 0 - - - 6 - - 5 - - - 11 - - 0 - - - 6 - - -5 diff --git a/tests/test_si220_cband/test_netlists_bend_.yml b/tests/test_si220_cband/test_netlists_bend_.yml deleted file mode 100644 index 78df5f94..00000000 --- a/tests/test_si220_cband/test_netlists_bend_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: bend_euler_CSstrip -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_bend_euler180_.yml b/tests/test_si220_cband/test_netlists_bend_euler180_.yml deleted file mode 100644 index 03c1cd27..00000000 --- a/tests/test_si220_cband/test_netlists_bend_euler180_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: bend_euler_CSstrip_A180 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_bend_euler_.yml b/tests/test_si220_cband/test_netlists_bend_euler_.yml deleted file mode 100644 index bdb24c69..00000000 --- a/tests/test_si220_cband/test_netlists_bend_euler_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: bend_euler_RNone_A90_P0_fbfa4d8c -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_bend_metal_.yml b/tests/test_si220_cband/test_netlists_bend_metal_.yml deleted file mode 100644 index a64701cb..00000000 --- a/tests/test_si220_cband/test_netlists_bend_metal_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: bend_metal_RNone_A90_WN_0d3131db -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_bend_s_.yml b/tests/test_si220_cband/test_netlists_bend_s_.yml deleted file mode 100644 index 586ee954..00000000 --- a/tests/test_si220_cband/test_netlists_bend_s_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: bend_s_S11_1p8_CSstrip__d90d769b -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_bend_s_metal_.yml b/tests/test_si220_cband/test_netlists_bend_s_metal_.yml deleted file mode 100644 index 073bd6a6..00000000 --- a/tests/test_si220_cband/test_netlists_bend_s_metal_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: bend_s_metal_S11_1p8_CS_1499a630 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_compass_.yml b/tests/test_si220_cband/test_netlists_compass_.yml deleted file mode 100644 index d3561d41..00000000 --- a/tests/test_si220_cband/test_netlists_compass_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: compass_S4_2_LMTOP_PTNo_43d398ca -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_coupler90_.yml b/tests/test_si220_cband/test_netlists_coupler90_.yml deleted file mode 100644 index 2d90a8a9..00000000 --- a/tests/test_si220_cband/test_netlists_coupler90_.yml +++ /dev/null @@ -1,50 +0,0 @@ -instances: - bend_euler_CSstrip_RNone_0_700: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - cross_section: strip - radius: null - straight_gdsfactorypcom_f2286423_0_0: - component: straight - info: - length: 10 - route_info_length: 10 - route_info_strip_length: 10 - route_info_type: strip - route_info_weight: 10 - width: 0.5 - settings: - cross_section: strip - length: 10 - npoints: 2 - width: null -name: coupler90_gdsfactorypco_9253bfe3 -nets: [] -placements: - bend_euler_CSstrip_RNone_0_700: - mirror: false - rotation: 0 - x: 0 - y: 0.7 - straight_gdsfactorypcom_f2286423_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 -ports: - o1: straight_gdsfactorypcom_f2286423_0_0,o1 - o2: bend_euler_CSstrip_RNone_0_700,o1 - o3: bend_euler_CSstrip_RNone_0_700,o2 - o4: straight_gdsfactorypcom_f2286423_0_0,o2 diff --git a/tests/test_si220_cband/test_netlists_coupler_.yml b/tests/test_si220_cband/test_netlists_coupler_.yml deleted file mode 100644 index 4f9fdf30..00000000 --- a/tests/test_si220_cband/test_netlists_coupler_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: coupler_L14p5_G0p2 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_coupler_ring_.yml b/tests/test_si220_cband/test_netlists_coupler_ring_.yml deleted file mode 100644 index b8481a53..00000000 --- a/tests/test_si220_cband/test_netlists_coupler_ring_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: coupler_ring_LX4_G0p2_R_bc79a2ed -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_coupler_straight_.yml b/tests/test_si220_cband/test_netlists_coupler_straight_.yml deleted file mode 100644 index 1f1f27ae..00000000 --- a/tests/test_si220_cband/test_netlists_coupler_straight_.yml +++ /dev/null @@ -1,47 +0,0 @@ -instances: - straight_gdsfactorypcom_f2286423_0_0: - component: straight - info: - length: 10 - route_info_length: 10 - route_info_strip_length: 10 - route_info_type: strip - route_info_weight: 10 - width: 0.5 - settings: - cross_section: strip - length: 10 - npoints: 2 - width: null - straight_gdsfactorypcom_f2286423_0_700: - component: straight - info: - length: 10 - route_info_length: 10 - route_info_strip_length: 10 - route_info_type: strip - route_info_weight: 10 - width: 0.5 - settings: - cross_section: strip - length: 10 - npoints: 2 - width: null -name: coupler_straight_gdsfac_f695a250 -nets: [] -placements: - straight_gdsfactorypcom_f2286423_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 - straight_gdsfactorypcom_f2286423_0_700: - mirror: false - rotation: 0 - x: 0 - y: 0.7 -ports: - o1: straight_gdsfactorypcom_f2286423_0_0,o1 - o2: straight_gdsfactorypcom_f2286423_0_700,o1 - o3: straight_gdsfactorypcom_f2286423_0_700,o2 - o4: straight_gdsfactorypcom_f2286423_0_0,o2 diff --git a/tests/test_si220_cband/test_netlists_dbr_.yml b/tests/test_si220_cband/test_netlists_dbr_.yml deleted file mode 100644 index 66701250..00000000 --- a/tests/test_si220_cband/test_netlists_dbr_.yml +++ /dev/null @@ -1,15 +0,0 @@ -instances: - Unnamed_575_0_0: - component: Unnamed_575 - info: {} - settings: {} -name: dbr_W0p5_D0p1_N100_L0p0_c9156e45 -nets: [] -placements: - Unnamed_575_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 -ports: - o1: Unnamed_575_0_0,o1 diff --git a/tests/test_si220_cband/test_netlists_dbr_cavity_.yml b/tests/test_si220_cband/test_netlists_dbr_cavity_.yml deleted file mode 100644 index cddcd132..00000000 --- a/tests/test_si220_cband/test_netlists_dbr_cavity_.yml +++ /dev/null @@ -1,54 +0,0 @@ -instances: - coupler_L0p1_G0p2_0_0: - component: coupler - info: - min_bend_radius: 11.744 - path_length: 20.48 - settings: - gap: 0.2 - length: 0.1 - dbr_W0p5_D0p1_N100_L0p0_c9156e45_10189_2350: - component: dbr - info: {} - settings: - cross_section: strip - dw: 0.1 - l1: 0.079 - l2: 0.079 - n: 100 - w0: 0.5 - dbr_W0p5_D0p1_N100_L0p0_c9156e45_m10089_2350_A180: - component: dbr - info: {} - settings: - cross_section: strip - dw: 0.1 - l1: 0.079 - l2: 0.079 - n: 100 - w0: 0.5 -name: dbr_cavity_Ddbr_Ccoupler -nets: -- p1: coupler_L0p1_G0p2_0_0,o2 - p2: dbr_W0p5_D0p1_N100_L0p0_c9156e45_m10089_2350_A180,o1 -- p1: coupler_L0p1_G0p2_0_0,o3 - p2: dbr_W0p5_D0p1_N100_L0p0_c9156e45_10189_2350,o1 -placements: - coupler_L0p1_G0p2_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 - dbr_W0p5_D0p1_N100_L0p0_c9156e45_10189_2350: - mirror: false - rotation: 0 - x: 10.189 - y: 2.35 - dbr_W0p5_D0p1_N100_L0p0_c9156e45_m10089_2350_A180: - mirror: false - rotation: 180 - x: -10.089 - y: 2.35 -ports: - o1: coupler_L0p1_G0p2_0_0,o1 - o2: coupler_L0p1_G0p2_0_0,o4 diff --git a/tests/test_si220_cband/test_netlists_dbr_cavity_te_.yml b/tests/test_si220_cband/test_netlists_dbr_cavity_te_.yml deleted file mode 100644 index 16037256..00000000 --- a/tests/test_si220_cband/test_netlists_dbr_cavity_te_.yml +++ /dev/null @@ -1,16 +0,0 @@ -instances: - dbr_cavity_Ddbr_Ccoupler_with_gc_0_0_A270: - component: dbr_cavity_Ddbr_Ccoupler_with_gc - info: {} - settings: {} -name: dbr_cavity_te_Cdbr_cavity -nets: [] -placements: - dbr_cavity_Ddbr_Ccoupler_with_gc_0_0_A270: - mirror: false - rotation: 270 - x: 0 - y: 0 -ports: - o1: dbr_cavity_Ddbr_Ccoupler_with_gc_0_0_A270,o1 - o2: dbr_cavity_Ddbr_Ccoupler_with_gc_0_0_A270,o2 diff --git a/tests/test_si220_cband/test_netlists_ebeam_BondPad_.yml b/tests/test_si220_cband/test_netlists_ebeam_BondPad_.yml deleted file mode 100644 index 1be24a4e..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_BondPad_.yml +++ /dev/null @@ -1,14 +0,0 @@ -instances: - BondPad11_50000_50000_A180: - component: BondPad$1$1 - info: {} - settings: {} -name: ebeam_BondPad -nets: [] -placements: - BondPad11_50000_50000_A180: - mirror: false - rotation: 180 - x: 50 - y: 50 -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_Polarizer_TM_1550_UQAM_.yml b/tests/test_si220_cband/test_netlists_ebeam_Polarizer_TM_1550_UQAM_.yml deleted file mode 100644 index 6ae4d344..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_Polarizer_TM_1550_UQAM_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: ebeam_Polarizer_TM_1550_UQAM -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_adiabatic_te1550_.yml b/tests/test_si220_cband/test_netlists_ebeam_adiabatic_te1550_.yml deleted file mode 100644 index f2316f94..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_adiabatic_te1550_.yml +++ /dev/null @@ -1,14 +0,0 @@ -instances: - Adiabatic3dB_TE_FullEtch1_0_0: - component: Adiabatic3dB_TE_FullEtch$1 - info: {} - settings: {} -name: ebeam_adiabatic_te1550 -nets: [] -placements: - Adiabatic3dB_TE_FullEtch1_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_adiabatic_tm1550_.yml b/tests/test_si220_cband/test_netlists_ebeam_adiabatic_tm1550_.yml deleted file mode 100644 index 89eb4bf8..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_adiabatic_tm1550_.yml +++ /dev/null @@ -1,14 +0,0 @@ -instances: - Adiabatic3dB_TM_FullEtch1_0_0: - component: Adiabatic3dB_TM_FullEtch$1 - info: {} - settings: {} -name: ebeam_adiabatic_tm1550 -nets: [] -placements: - Adiabatic3dB_TM_FullEtch1_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_bdc_te1550_.yml b/tests/test_si220_cband/test_netlists_ebeam_bdc_te1550_.yml deleted file mode 100644 index 13b6303f..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_bdc_te1550_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: ebeam_bdc_te1550 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_bdc_tm1550_.yml b/tests/test_si220_cband/test_netlists_ebeam_bdc_tm1550_.yml deleted file mode 100644 index b3fdc995..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_bdc_tm1550_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: ebeam_bdc_tm1550 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_crossing4_.yml b/tests/test_si220_cband/test_netlists_ebeam_crossing4_.yml deleted file mode 100644 index 02b74c54..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_crossing4_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: ebeam_crossing4 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_crossing4_2ports_.yml b/tests/test_si220_cband/test_netlists_ebeam_crossing4_2ports_.yml deleted file mode 100644 index b0ba43ad..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_crossing4_2ports_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: ebeam_crossing4_2ports -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_dc_te1550_.yml b/tests/test_si220_cband/test_netlists_ebeam_dc_te1550_.yml deleted file mode 100644 index 59a884e9..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_dc_te1550_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: coupler_gdsfactorypcomp_75dd060a -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_dream_splitter_1x2_te1550_BB_.yml b/tests/test_si220_cband/test_netlists_ebeam_dream_splitter_1x2_te1550_BB_.yml deleted file mode 100644 index f3a8884b..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_dream_splitter_1x2_te1550_BB_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: ebeam_dream_splitter_1x_81214926 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_splitter_adiabatic_swg_te1550_.yml b/tests/test_si220_cband/test_netlists_ebeam_splitter_adiabatic_swg_te1550_.yml deleted file mode 100644 index 9ab593ae..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_splitter_adiabatic_swg_te1550_.yml +++ /dev/null @@ -1,14 +0,0 @@ -instances: - Han_SWGA3dB1_0_0: - component: Han_SWGA3dB$1 - info: {} - settings: {} -name: ebeam_splitter_adiabati_c6483e92 -nets: [] -placements: - Han_SWGA3dB1_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_splitter_swg_assist_te1310_.yml b/tests/test_si220_cband/test_netlists_ebeam_splitter_swg_assist_te1310_.yml deleted file mode 100644 index 0c1c165a..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_splitter_swg_assist_te1310_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: ebeam_splitter_swg_assist_te1310 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_splitter_swg_assist_te1310_ANT_.yml b/tests/test_si220_cband/test_netlists_ebeam_splitter_swg_assist_te1310_ANT_.yml deleted file mode 100644 index a523a20f..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_splitter_swg_assist_te1310_ANT_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: ebeam_splitter_swg_assi_b468badd -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_splitter_swg_assist_te1550_.yml b/tests/test_si220_cband/test_netlists_ebeam_splitter_swg_assist_te1550_.yml deleted file mode 100644 index 68d66a5a..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_splitter_swg_assist_te1550_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: ebeam_splitter_swg_assist_te1550 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_swg_edgecoupler_.yml b/tests/test_si220_cband/test_netlists_ebeam_swg_edgecoupler_.yml deleted file mode 100644 index af22b05c..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_swg_edgecoupler_.yml +++ /dev/null @@ -1,14 +0,0 @@ -instances: - EC1_0_0: - component: EC$1 - info: {} - settings: {} -name: ebeam_swg_edgecoupler -nets: [] -placements: - EC1_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_terminator_te1310_.yml b/tests/test_si220_cband/test_netlists_ebeam_terminator_te1310_.yml deleted file mode 100644 index 0d506582..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_terminator_te1310_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: ebeam_terminator_te1310 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_terminator_te1550_.yml b/tests/test_si220_cband/test_netlists_ebeam_terminator_te1550_.yml deleted file mode 100644 index 6227164f..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_terminator_te1550_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: ebeam_terminator_te1550 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_terminator_tm1550_.yml b/tests/test_si220_cband/test_netlists_ebeam_terminator_tm1550_.yml deleted file mode 100644 index 30713a13..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_terminator_tm1550_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: ebeam_terminator_tm1550 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_y_1550_.yml b/tests/test_si220_cband/test_netlists_ebeam_y_1550_.yml deleted file mode 100644 index 55d0a157..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_y_1550_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: ebeam_y_1550 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_y_adiabatic_.yml b/tests/test_si220_cband/test_netlists_ebeam_y_adiabatic_.yml deleted file mode 100644 index 6cbe8da3..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_y_adiabatic_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: ebeam_y_adiabatic -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ebeam_y_adiabatic_1310_.yml b/tests/test_si220_cband/test_netlists_ebeam_y_adiabatic_1310_.yml deleted file mode 100644 index 0ff0c88d..00000000 --- a/tests/test_si220_cband/test_netlists_ebeam_y_adiabatic_1310_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: ebeam_y_adiabatic_1310 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_gc_te1310_.yml b/tests/test_si220_cband/test_netlists_gc_te1310_.yml deleted file mode 100644 index e54058b5..00000000 --- a/tests/test_si220_cband/test_netlists_gc_te1310_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: gc_te1310 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_gc_te1310_8deg_.yml b/tests/test_si220_cband/test_netlists_gc_te1310_8deg_.yml deleted file mode 100644 index d8a140bb..00000000 --- a/tests/test_si220_cband/test_netlists_gc_te1310_8deg_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: gc_te1310_8deg -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_gc_te1310_broadband_.yml b/tests/test_si220_cband/test_netlists_gc_te1310_broadband_.yml deleted file mode 100644 index 5e6c08c8..00000000 --- a/tests/test_si220_cband/test_netlists_gc_te1310_broadband_.yml +++ /dev/null @@ -1,15 +0,0 @@ -instances: - ebeam_gc_te1310_broadband_98000_0_A180_M: - component: ebeam_gc_te1310_broadband - info: {} - settings: {} -name: gc_te1310_broadband -nets: [] -placements: - ebeam_gc_te1310_broadband_98000_0_A180_M: - mirror: true - rotation: 180 - x: 98 - y: 0 -ports: - o1: ebeam_gc_te1310_broadband_98000_0_A180_M,o1 diff --git a/tests/test_si220_cband/test_netlists_gc_te1550_.yml b/tests/test_si220_cband/test_netlists_gc_te1550_.yml deleted file mode 100644 index 9bfbb0a4..00000000 --- a/tests/test_si220_cband/test_netlists_gc_te1550_.yml +++ /dev/null @@ -1,15 +0,0 @@ -instances: - ebeam_gc_te1550_66000_0_A180_M: - component: ebeam_gc_te1550 - info: {} - settings: {} -name: gc_te1550 -nets: [] -placements: - ebeam_gc_te1550_66000_0_A180_M: - mirror: true - rotation: 180 - x: 66 - y: 0 -ports: - o1: ebeam_gc_te1550_66000_0_A180_M,o1 diff --git a/tests/test_si220_cband/test_netlists_gc_te1550_90nmSlab_.yml b/tests/test_si220_cband/test_netlists_gc_te1550_90nmSlab_.yml deleted file mode 100644 index b9d92e74..00000000 --- a/tests/test_si220_cband/test_netlists_gc_te1550_90nmSlab_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: gc_te1550_90nmSlab -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_gc_te1550_broadband_.yml b/tests/test_si220_cband/test_netlists_gc_te1550_broadband_.yml deleted file mode 100644 index ea007bcf..00000000 --- a/tests/test_si220_cband/test_netlists_gc_te1550_broadband_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: gc_te1550_broadband -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_gc_tm1550_.yml b/tests/test_si220_cband/test_netlists_gc_tm1550_.yml deleted file mode 100644 index 294ac667..00000000 --- a/tests/test_si220_cband/test_netlists_gc_tm1550_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: gc_tm1550 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_grating_coupler_elliptical_.yml b/tests/test_si220_cband/test_netlists_grating_coupler_elliptical_.yml deleted file mode 100644 index 8c9a241c..00000000 --- a/tests/test_si220_cband/test_netlists_grating_coupler_elliptical_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: grating_coupler_ellipti_2f8caedf -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_metal_via_.yml b/tests/test_si220_cband/test_netlists_metal_via_.yml deleted file mode 100644 index 775d0927..00000000 --- a/tests/test_si220_cband/test_netlists_metal_via_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: metal_via -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_mmi1x2_.yml b/tests/test_si220_cband/test_netlists_mmi1x2_.yml deleted file mode 100644 index fbbbd116..00000000 --- a/tests/test_si220_cband/test_netlists_mmi1x2_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: mmi1x2_WNone_WT1p5_LT20_04e1bd45 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_mmi2x2_.yml b/tests/test_si220_cband/test_netlists_mmi2x2_.yml deleted file mode 100644 index 4b67e3ba..00000000 --- a/tests/test_si220_cband/test_netlists_mmi2x2_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: mmi2x2_WNone_WT1p5_LT20_fe4e025c -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_mzi_.yml b/tests/test_si220_cband/test_netlists_mzi_.yml deleted file mode 100644 index 7deeb92c..00000000 --- a/tests/test_si220_cband/test_netlists_mzi_.yml +++ /dev/null @@ -1,389 +0,0 @@ -instances: - b1: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - b2: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - b3: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - b4: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - b5: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - b6: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - b7: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - b8: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - cp1: - component: coupler - info: - min_bend_radius: 11.744 - path_length: 34.88 - settings: - gap: 0.2 - length: 14.5 - cp2: - component: coupler - info: - min_bend_radius: 11.744 - path_length: 34.88 - settings: - gap: 0.2 - length: 14.5 - sxb: - component: straight - info: - length: 0.1 - route_info_length: 0.1 - route_info_strip_length: 0.1 - route_info_type: strip - route_info_weight: 0.1 - width: 0.5 - settings: - cross_section: strip - length: 0.1 - npoints: 2 - width: null - sxt: - component: straight - info: - length: 0.1 - route_info_length: 0.1 - route_info_strip_length: 0.1 - route_info_type: strip - route_info_weight: 0.1 - width: 0.5 - settings: - cross_section: strip - length: 0.1 - npoints: 2 - width: null - sybr: - component: straight - info: - length: 7 - route_info_length: 7 - route_info_strip_length: 7 - route_info_type: strip - route_info_weight: 7 - width: 0.5 - settings: - cross_section: strip - length: 7 - npoints: 2 - width: null - syl: - component: straight - info: - length: 7 - route_info_length: 7 - route_info_strip_length: 7 - route_info_type: strip - route_info_weight: 7 - width: 0.5 - settings: - cross_section: strip - length: 7 - npoints: 2 - width: null - sytl: - component: straight - info: - length: 2 - route_info_length: 2 - route_info_strip_length: 2 - route_info_type: strip - route_info_weight: 2 - width: 0.5 - settings: - cross_section: strip - length: 2 - npoints: 2 - width: null - sytr: - component: straight - info: - length: 2 - route_info_length: 2 - route_info_strip_length: 2 - route_info_type: strip - route_info_weight: 2 - width: 0.5 - settings: - cross_section: strip - length: 2 - npoints: 2 - width: null -name: mzi_DL10_Bbend_euler_Ss_a38bc3c2 -nets: -- p1: b1,o1 - p2: cp1,o3 -- p1: b1,o2 - p2: sytl,o1 -- p1: b2,o1 - p2: sxt,o1 -- p1: b2,o2 - p2: sytl,o2 -- p1: b3,o1 - p2: sytr,o2 -- p1: b3,o2 - p2: sxt,o2 -- p1: b4,o1 - p2: sytr,o1 -- p1: b4,o2 - p2: cp2,o3 -- p1: b5,o1 - p2: cp1,o4 -- p1: b5,o2 - p2: syl,o1 -- p1: b6,o1 - p2: syl,o2 -- p1: b6,o2 - p2: sxb,o1 -- p1: b7,o1 - p2: sxb,o2 -- p1: b7,o2 - p2: sybr,o1 -- p1: b8,o1 - p2: cp2,o4 -- p1: b8,o2 - p2: sybr,o2 -placements: - b1: - mirror: false - rotation: 0 - x: 24.5 - y: 2.35 - b2: - mirror: false - rotation: 180 - x: 44.5 - y: 24.35 - b3: - mirror: false - rotation: 90 - x: 54.6 - y: 14.35 - b4: - mirror: false - rotation: 270 - x: 54.6 - y: 12.35 - b5: - mirror: true - rotation: 0 - x: 24.5 - y: -1.65 - b6: - mirror: false - rotation: 270 - x: 34.5 - y: -18.65 - b7: - mirror: false - rotation: 0 - x: 44.6 - y: -28.65 - b8: - mirror: false - rotation: 180 - x: 64.6 - y: -1.65 - cp1: - mirror: false - rotation: 0 - x: 0 - y: 0 - cp2: - mirror: true - rotation: 180 - x: 89.1 - y: 0 - sxb: - mirror: false - rotation: 0 - x: 44.5 - y: -28.65 - sxt: - mirror: false - rotation: 0 - x: 44.5 - y: 24.35 - sybr: - mirror: false - rotation: 90 - x: 54.6 - y: -18.65 - syl: - mirror: false - rotation: 270 - x: 34.5 - y: -11.65 - sytl: - mirror: false - rotation: 90 - x: 34.5 - y: 12.35 - sytr: - mirror: false - rotation: 90 - x: 54.6 - y: 12.35 -ports: - o1: cp1,o1 - o2: cp1,o2 - o3: cp2,o2 - o4: cp2,o1 diff --git a/tests/test_si220_cband/test_netlists_mzi_heater_.yml b/tests/test_si220_cband/test_netlists_mzi_heater_.yml deleted file mode 100644 index 779b879b..00000000 --- a/tests/test_si220_cband/test_netlists_mzi_heater_.yml +++ /dev/null @@ -1,341 +0,0 @@ -instances: - b1: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - cross_section: strip - b2: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - cross_section: strip - b3: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - cross_section: strip - b4: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - cross_section: strip - b5: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - cross_section: strip - b6: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - cross_section: strip - b7: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - cross_section: strip - b8: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - cross_section: strip - cp1: - component: ebeam_y_1550 - info: {} - settings: {} - cp2: - component: ebeam_y_1550 - info: {} - settings: {} - sxb: - component: straight - info: - length: 320 - route_info_length: 320 - route_info_strip_length: 320 - route_info_type: strip - route_info_weight: 320 - width: 0.5 - settings: - cross_section: strip - length: 320 - npoints: 2 - width: null - sxt: - component: straight_heater_metal - info: - length: 320 - resistance: 0 - settings: - cross_section: strip - length: 320 - sybr: - component: straight - info: - length: 7 - route_info_length: 7 - route_info_strip_length: 7 - route_info_type: strip - route_info_weight: 7 - width: 0.5 - settings: - cross_section: strip - length: 7 - npoints: 2 - width: null - syl: - component: straight - info: - length: 7 - route_info_length: 7 - route_info_strip_length: 7 - route_info_type: strip - route_info_weight: 7 - width: 0.5 - settings: - cross_section: strip - length: 7 - npoints: 2 - width: null - sytl: - component: straight - info: - length: 2 - route_info_length: 2 - route_info_strip_length: 2 - route_info_type: strip - route_info_weight: 2 - width: 0.5 - settings: - cross_section: strip - length: 2 - npoints: 2 - width: null - sytr: - component: straight - info: - length: 2 - route_info_length: 2 - route_info_strip_length: 2 - route_info_type: strip - route_info_weight: 2 - width: 0.5 - settings: - cross_section: strip - length: 2 - npoints: 2 - width: null -name: mzi_heater_DL10_LX320 -nets: -- p1: b1,o1 - p2: cp1,o2 -- p1: b1,o2 - p2: sytl,o1 -- p1: b2,o1 - p2: sxt,o1 -- p1: b2,o2 - p2: sytl,o2 -- p1: b3,o1 - p2: sytr,o2 -- p1: b3,o2 - p2: sxt,o2 -- p1: b4,o1 - p2: sytr,o1 -- p1: b4,o2 - p2: cp2,o2 -- p1: b5,o1 - p2: cp1,o3 -- p1: b5,o2 - p2: syl,o1 -- p1: b6,o1 - p2: syl,o2 -- p1: b6,o2 - p2: sxb,o1 -- p1: b7,o1 - p2: sxb,o2 -- p1: b7,o2 - p2: sybr,o1 -- p1: b8,o1 - p2: cp2,o3 -- p1: b8,o2 - p2: sybr,o2 -placements: - b1: - mirror: false - rotation: 0 - x: 7.4 - y: 2.75 - b2: - mirror: false - rotation: 180 - x: 27.4 - y: 24.75 - b3: - mirror: false - rotation: 90 - x: 357.4 - y: 14.75 - b4: - mirror: false - rotation: 270 - x: 357.4 - y: 12.75 - b5: - mirror: true - rotation: 0 - x: 7.4 - y: -2.75 - b6: - mirror: false - rotation: 270 - x: 17.4 - y: -19.75 - b7: - mirror: false - rotation: 0 - x: 347.4 - y: -29.75 - b8: - mirror: false - rotation: 180 - x: 367.4 - y: -2.75 - cp1: - mirror: false - rotation: 0 - x: 0 - y: 0 - cp2: - mirror: true - rotation: 180 - x: 374.8 - y: 0 - sxb: - mirror: false - rotation: 0 - x: 27.4 - y: -29.75 - sxt: - mirror: false - rotation: 0 - x: 27.4 - y: 24.75 - sybr: - mirror: false - rotation: 90 - x: 357.4 - y: -19.75 - syl: - mirror: false - rotation: 270 - x: 17.4 - y: -12.75 - sytl: - mirror: false - rotation: 90 - x: 17.4 - y: 12.75 - sytr: - mirror: false - rotation: 90 - x: 357.4 - y: 12.75 -ports: - e1: sxt,l_e1 - e2: sxt,r_e1 - e3: sxt,l_e2 - e4: sxt,r_e2 - e5: sxt,r_e3 - e6: sxt,l_e3 - e7: sxt,r_e4 - e8: sxt,l_e4 - o1: cp1,o1 - o2: cp2,o1 diff --git a/tests/test_si220_cband/test_netlists_pad_.yml b/tests/test_si220_cband/test_netlists_pad_.yml deleted file mode 100644 index 4348463e..00000000 --- a/tests/test_si220_cband/test_netlists_pad_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: pad_S90_90_LMTOP_PI0_PO0 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_pad_array_.yml b/tests/test_si220_cband/test_netlists_pad_array_.yml deleted file mode 100644 index 63f24d78..00000000 --- a/tests/test_si220_cband/test_netlists_pad_array_.yml +++ /dev/null @@ -1,36 +0,0 @@ -instances: - pad_gdsfactorypcomponen_6c192452_0_0: - array: - column_pitch: 125 - columns: 6 - row_pitch: 125 - rows: 1 - component: pad - info: - size: - - 75 - - 75 - xsize: 75 - ysize: 75 - settings: - bbox_layers: - - PAD_OPEN - bbox_offsets: - - -1.8 - layer: MTOP - port_inclusion: 0 - port_orientation: 0 - port_orientations: null - port_type: pad - size: - - 75 - - 75 -name: pad_array_gdsfactorypco_ad40a518 -nets: [] -placements: - pad_gdsfactorypcomponen_6c192452_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 -ports: {} diff --git a/tests/test_si220_cband/test_netlists_photonic_wirebond_surfacetaper_1310_.yml b/tests/test_si220_cband/test_netlists_photonic_wirebond_surfacetaper_1310_.yml deleted file mode 100644 index f626f46f..00000000 --- a/tests/test_si220_cband/test_netlists_photonic_wirebond_surfacetaper_1310_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: photonic_wirebond_surfa_5032bc1d -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_photonic_wirebond_surfacetaper_1550_.yml b/tests/test_si220_cband/test_netlists_photonic_wirebond_surfacetaper_1550_.yml deleted file mode 100644 index 75a4e225..00000000 --- a/tests/test_si220_cband/test_netlists_photonic_wirebond_surfacetaper_1550_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: photonic_wirebond_surfa_f98966ec -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_rectangle_.yml b/tests/test_si220_cband/test_netlists_rectangle_.yml deleted file mode 100644 index 6348fdf8..00000000 --- a/tests/test_si220_cband/test_netlists_rectangle_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: rectangle_S4_2_LMTOP_CF_2a098309 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ring_double_.yml b/tests/test_si220_cband/test_netlists_ring_double_.yml deleted file mode 100644 index 298c78f7..00000000 --- a/tests/test_si220_cband/test_netlists_ring_double_.yml +++ /dev/null @@ -1,87 +0,0 @@ -instances: - coupler_ring_LX0p01_G0p_3140dd6e_0_0: - component: coupler_ring - info: {} - settings: - bend: bend_euler - cross_section: strip - gap: 0.2 - length_extension: 10 - length_x: 0.01 - radius: 10 - straight: straight - coupler_ring_LX0p01_G0p_3140dd6e_m10_21410_A180: - component: coupler_ring - info: {} - settings: - bend: bend_euler - cross_section: strip - gap: 0.2 - length_extension: 10 - length_x: 0.01 - radius: 10 - straight: straight - straight_L0p01_CSstrip_WNone_N2_10000_10710_A270: - component: straight - info: - length: 0.01 - route_info_length: 0.01 - route_info_strip_length: 0.01 - route_info_type: strip - route_info_weight: 0.01 - width: 0.5 - settings: - cross_section: strip - length: 0.01 - npoints: 2 - width: null - straight_L0p01_CSstrip_WNone_N2_m10010_10700_A90: - component: straight - info: - length: 0.01 - route_info_length: 0.01 - route_info_strip_length: 0.01 - route_info_type: strip - route_info_weight: 0.01 - width: 0.5 - settings: - cross_section: strip - length: 0.01 - npoints: 2 - width: null -name: ring_double_G0p2_GTNone_d0c42c3f -nets: -- p1: coupler_ring_LX0p01_G0p_3140dd6e_0_0,o2 - p2: straight_L0p01_CSstrip_WNone_N2_m10010_10700_A90,o1 -- p1: coupler_ring_LX0p01_G0p_3140dd6e_0_0,o3 - p2: straight_L0p01_CSstrip_WNone_N2_10000_10710_A270,o2 -- p1: coupler_ring_LX0p01_G0p_3140dd6e_m10_21410_A180,o2 - p2: straight_L0p01_CSstrip_WNone_N2_10000_10710_A270,o1 -- p1: coupler_ring_LX0p01_G0p_3140dd6e_m10_21410_A180,o3 - p2: straight_L0p01_CSstrip_WNone_N2_m10010_10700_A90,o2 -placements: - coupler_ring_LX0p01_G0p_3140dd6e_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 - coupler_ring_LX0p01_G0p_3140dd6e_m10_21410_A180: - mirror: false - rotation: 180 - x: -0.01 - y: 21.41 - straight_L0p01_CSstrip_WNone_N2_10000_10710_A270: - mirror: false - rotation: 270 - x: 10 - y: 10.71 - straight_L0p01_CSstrip_WNone_N2_m10010_10700_A90: - mirror: false - rotation: 90 - x: -10.01 - y: 10.7 -ports: - o1: coupler_ring_LX0p01_G0p_3140dd6e_0_0,o1 - o2: coupler_ring_LX0p01_G0p_3140dd6e_0_0,o4 - o3: coupler_ring_LX0p01_G0p_3140dd6e_m10_21410_A180,o4 - o4: coupler_ring_LX0p01_G0p_3140dd6e_m10_21410_A180,o1 diff --git a/tests/test_si220_cband/test_netlists_ring_double_heater_.yml b/tests/test_si220_cband/test_netlists_ring_double_heater_.yml deleted file mode 100644 index 081814d3..00000000 --- a/tests/test_si220_cband/test_netlists_ring_double_heater_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: ring_double_heater_gdsf_3958847f -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ring_single_.yml b/tests/test_si220_cband/test_netlists_ring_single_.yml deleted file mode 100644 index 3e311587..00000000 --- a/tests/test_si220_cband/test_netlists_ring_single_.yml +++ /dev/null @@ -1,144 +0,0 @@ -instances: - bend_euler_R10_A90_P0p5_17151b03_10000_11300_A90: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: 10 - width: null - bend_euler_R10_A90_P0p5_17151b03_m4000_21300_A180: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: 10 - width: null - coupler_ring_LX4_G0p2_R_bc79a2ed_0_0: - component: coupler_ring - info: {} - settings: - bend: bend_euler - cross_section: strip - gap: 0.2 - length_extension: 10 - length_x: 4 - radius: 10 - straight: straight - straight_L0p6_CSstrip_WNone_N2_10000_11300_A270: - component: straight - info: - length: 0.6 - route_info_length: 0.6 - route_info_strip_length: 0.6 - route_info_type: strip - route_info_weight: 0.6 - width: 0.5 - settings: - cross_section: strip - length: 0.6 - npoints: 2 - width: null - straight_L0p6_CSstrip_WNone_N2_m14000_10700_A90: - component: straight - info: - length: 0.6 - route_info_length: 0.6 - route_info_strip_length: 0.6 - route_info_type: strip - route_info_weight: 0.6 - width: 0.5 - settings: - cross_section: strip - length: 0.6 - npoints: 2 - width: null - straight_L4_CSstrip_WNone_N2_0_21300_A180: - component: straight - info: - length: 4 - route_info_length: 4 - route_info_strip_length: 4 - route_info_type: strip - route_info_weight: 4 - width: 0.5 - settings: - cross_section: strip - length: 4 - npoints: 2 - width: null -name: ring_single_G0p2_R10_LX_9cef9b8c -nets: -- p1: bend_euler_R10_A90_P0p5_17151b03_10000_11300_A90,o1 - p2: straight_L0p6_CSstrip_WNone_N2_10000_11300_A270,o1 -- p1: bend_euler_R10_A90_P0p5_17151b03_10000_11300_A90,o2 - p2: straight_L4_CSstrip_WNone_N2_0_21300_A180,o1 -- p1: bend_euler_R10_A90_P0p5_17151b03_m4000_21300_A180,o1 - p2: straight_L4_CSstrip_WNone_N2_0_21300_A180,o2 -- p1: bend_euler_R10_A90_P0p5_17151b03_m4000_21300_A180,o2 - p2: straight_L0p6_CSstrip_WNone_N2_m14000_10700_A90,o2 -- p1: coupler_ring_LX4_G0p2_R_bc79a2ed_0_0,o2 - p2: straight_L0p6_CSstrip_WNone_N2_m14000_10700_A90,o1 -- p1: coupler_ring_LX4_G0p2_R_bc79a2ed_0_0,o3 - p2: straight_L0p6_CSstrip_WNone_N2_10000_11300_A270,o2 -placements: - bend_euler_R10_A90_P0p5_17151b03_10000_11300_A90: - mirror: false - rotation: 90 - x: 10 - y: 11.3 - bend_euler_R10_A90_P0p5_17151b03_m4000_21300_A180: - mirror: false - rotation: 180 - x: -4 - y: 21.3 - coupler_ring_LX4_G0p2_R_bc79a2ed_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 - straight_L0p6_CSstrip_WNone_N2_10000_11300_A270: - mirror: false - rotation: 270 - x: 10 - y: 11.3 - straight_L0p6_CSstrip_WNone_N2_m14000_10700_A90: - mirror: false - rotation: 90 - x: -14 - y: 10.7 - straight_L4_CSstrip_WNone_N2_0_21300_A180: - mirror: false - rotation: 180 - x: 0 - y: 21.3 -ports: - o1: coupler_ring_LX4_G0p2_R_bc79a2ed_0_0,o1 - o2: coupler_ring_LX4_G0p2_R_bc79a2ed_0_0,o4 diff --git a/tests/test_si220_cband/test_netlists_ring_single_heater_.yml b/tests/test_si220_cband/test_netlists_ring_single_heater_.yml deleted file mode 100644 index 00906833..00000000 --- a/tests/test_si220_cband/test_netlists_ring_single_heater_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: ring_double_heater_gdsf_b6e3764f -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_ring_with_crossing_.yml b/tests/test_si220_cband/test_netlists_ring_with_crossing_.yml deleted file mode 100644 index 3136fe74..00000000 --- a/tests/test_si220_cband/test_netlists_ring_with_crossing_.yml +++ /dev/null @@ -1,135 +0,0 @@ -instances: - bend_euler_CSstrip_RNone_10000_20400_A90: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - cross_section: strip - radius: null - bend_euler_CSstrip_RNone_m4000_30400_A180: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - cross_section: strip - radius: null - coupler_ring_G0p2_RNone_7b027eee_0_0: - component: coupler_ring - info: {} - settings: - bend: bend_euler - cross_section: strip - gap: 0.2 - length_extension: null - length_x: 4 - radius: null - ebeam_crossing4_2ports_10000_15600_A90: - component: ebeam_crossing4_2ports - info: {} - settings: {} - straight_gdsfactorypcom_0b7b2ee2_m14000_20400_A270: - component: straight - info: - length: 9.7 - route_info_length: 9.7 - route_info_strip_length: 9.7 - route_info_type: strip - route_info_weight: 9.7 - width: 0.5 - settings: - cross_section: strip - length: 9.7 - npoints: 2 - width: null - straight_gdsfactorypcom_a6eac62c_m4000_30400: - component: straight - info: - length: 4 - route_info_length: 4 - route_info_strip_length: 4 - route_info_type: strip - route_info_weight: 4 - width: 0.5 - settings: - cross_section: strip - length: 4 - npoints: 2 - width: null -name: ring_single_dut_gdsfact_4cb12a7d -nets: -- p1: bend_euler_CSstrip_RNone_10000_20400_A90,o1 - p2: ebeam_crossing4_2ports_10000_15600_A90,o4 -- p1: bend_euler_CSstrip_RNone_10000_20400_A90,o2 - p2: straight_gdsfactorypcom_a6eac62c_m4000_30400,o2 -- p1: bend_euler_CSstrip_RNone_m4000_30400_A180,o1 - p2: straight_gdsfactorypcom_a6eac62c_m4000_30400,o1 -- p1: bend_euler_CSstrip_RNone_m4000_30400_A180,o2 - p2: straight_gdsfactorypcom_0b7b2ee2_m14000_20400_A270,o1 -- p1: coupler_ring_G0p2_RNone_7b027eee_0_0,o2 - p2: straight_gdsfactorypcom_0b7b2ee2_m14000_20400_A270,o2 -placements: - bend_euler_CSstrip_RNone_10000_20400_A90: - mirror: false - rotation: 90 - x: 10 - y: 20.4 - bend_euler_CSstrip_RNone_m4000_30400_A180: - mirror: false - rotation: 180 - x: -4 - y: 30.4 - coupler_ring_G0p2_RNone_7b027eee_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 - ebeam_crossing4_2ports_10000_15600_A90: - mirror: false - rotation: 90 - x: 10 - y: 15.6 - straight_gdsfactorypcom_0b7b2ee2_m14000_20400_A270: - mirror: false - rotation: 270 - x: -14 - y: 20.4 - straight_gdsfactorypcom_a6eac62c_m4000_30400: - mirror: false - rotation: 0 - x: -4 - y: 30.4 -ports: - o1: coupler_ring_G0p2_RNone_7b027eee_0_0,o1 - o2: coupler_ring_G0p2_RNone_7b027eee_0_0,o4 -warnings: - optical: - unconnected_ports: - - message: 2 unconnected optical ports! - ports: - - coupler_ring_G0p2_RNone_7b027eee_0_0,o3 - - ebeam_crossing4_2ports_10000_15600_A90,o1 - values: - - - 10 - - 10.7 - - - 10 - - 10.8 diff --git a/tests/test_si220_cband/test_netlists_spiral_.yml b/tests/test_si220_cband/test_netlists_spiral_.yml deleted file mode 100644 index 7d24c084..00000000 --- a/tests/test_si220_cband/test_netlists_spiral_.yml +++ /dev/null @@ -1,1356 +0,0 @@ -instances: - bend_euler_RNone_A90_P0_fbfa4d8c_0_0_A180_M: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_100000_0: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_103000_m3000: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_106000_m6000: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_109000_m9000: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_110000_13000_A90: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_112000_m12000: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_113000_16000_A90: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_115000_m15000: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_116000_19000_A90: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_119000_22000_A90: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_122000_25000_A90: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_125000_28000_A90: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_m10000_10000_A90: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_m20000_20000_A180: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_m23000_23000_A180: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_m26000_26000_A180: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_m29000_29000_A180: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_m30000_7000_A270: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_m32000_32000_A180: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_m33000_4000_A270: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_m35000_35000_A180: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_m36000_1000_A270: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_m38000_38000_A180: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_m39000_m2000_A270: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_m42000_m5000_A270: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_m45000_m8000_A270: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - bend_euler_RNone_A90_P0_fbfa4d8c_m48000_m11000_A270: - component: bend_euler - info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 - radius: null - width: null - straight_L100_CSstrip_WNone_N2_0_0: - component: straight - info: - length: 100 - route_info_length: 100 - route_info_strip_length: 100 - route_info_type: strip - route_info_weight: 100 - width: 0.5 - settings: - cross_section: strip - length: 100 - npoints: 2 - width: null - straight_L123_CSstrip_WNone_N2_100000_23000_A180: - component: straight - info: - length: 123 - route_info_length: 123 - route_info_strip_length: 123 - route_info_type: strip - route_info_weight: 123 - width: 0.5 - settings: - cross_section: strip - length: 123 - npoints: 2 - width: null - straight_L123_CSstrip_WNone_N2_m20000_m3000: - component: straight - info: - length: 123 - route_info_length: 123 - route_info_strip_length: 123 - route_info_type: strip - route_info_weight: 123 - width: 0.5 - settings: - cross_section: strip - length: 123 - npoints: 2 - width: null - straight_L129_CSstrip_WNone_N2_103000_26000_A180: - component: straight - info: - length: 129 - route_info_length: 129 - route_info_strip_length: 129 - route_info_type: strip - route_info_weight: 129 - width: 0.5 - settings: - cross_section: strip - length: 129 - npoints: 2 - width: null - straight_L129_CSstrip_WNone_N2_m23000_m6000: - component: straight - info: - length: 129 - route_info_length: 129 - route_info_strip_length: 129 - route_info_type: strip - route_info_weight: 129 - width: 0.5 - settings: - cross_section: strip - length: 129 - npoints: 2 - width: null - straight_L135_CSstrip_WNone_N2_106000_29000_A180: - component: straight - info: - length: 135 - route_info_length: 135 - route_info_strip_length: 135 - route_info_type: strip - route_info_weight: 135 - width: 0.5 - settings: - cross_section: strip - length: 135 - npoints: 2 - width: null - straight_L135_CSstrip_WNone_N2_m26000_m9000: - component: straight - info: - length: 135 - route_info_length: 135 - route_info_strip_length: 135 - route_info_type: strip - route_info_weight: 135 - width: 0.5 - settings: - cross_section: strip - length: 135 - npoints: 2 - width: null - straight_L141_CSstrip_WNone_N2_109000_32000_A180: - component: straight - info: - length: 141 - route_info_length: 141 - route_info_strip_length: 141 - route_info_type: strip - route_info_weight: 141 - width: 0.5 - settings: - cross_section: strip - length: 141 - npoints: 2 - width: null - straight_L141_CSstrip_WNone_N2_m29000_m12000: - component: straight - info: - length: 141 - route_info_length: 141 - route_info_strip_length: 141 - route_info_type: strip - route_info_weight: 141 - width: 0.5 - settings: - cross_section: strip - length: 141 - npoints: 2 - width: null - straight_L147_CSstrip_WNone_N2_112000_35000_A180: - component: straight - info: - length: 147 - route_info_length: 147 - route_info_strip_length: 147 - route_info_type: strip - route_info_weight: 147 - width: 0.5 - settings: - cross_section: strip - length: 147 - npoints: 2 - width: null - straight_L147_CSstrip_WNone_N2_m32000_m15000: - component: straight - info: - length: 147 - route_info_length: 147 - route_info_strip_length: 147 - route_info_type: strip - route_info_weight: 147 - width: 0.5 - settings: - cross_section: strip - length: 147 - npoints: 2 - width: null - straight_L153_CSstrip_WNone_N2_115000_38000_A180: - component: straight - info: - length: 153 - route_info_length: 153 - route_info_strip_length: 153 - route_info_type: strip - route_info_weight: 153 - width: 0.5 - settings: - cross_section: strip - length: 153 - npoints: 2 - width: null - straight_L153_CSstrip_WNone_N2_m35000_m18000: - component: straight - info: - length: 153 - route_info_length: 153 - route_info_strip_length: 153 - route_info_type: strip - route_info_weight: 153 - width: 0.5 - settings: - cross_section: strip - length: 153 - npoints: 2 - width: null - straight_L159_CSstrip_WNone_N2_m38000_m21000: - component: straight - info: - length: 159 - route_info_length: 159 - route_info_strip_length: 159 - route_info_type: strip - route_info_weight: 159 - width: 0.5 - settings: - cross_section: strip - length: 159 - npoints: 2 - width: null - straight_L15_CSstrip_WNone_N2_116000_4000_A90: - component: straight - info: - length: 15 - route_info_length: 15 - route_info_strip_length: 15 - route_info_type: strip - route_info_weight: 15 - width: 0.5 - settings: - cross_section: strip - length: 15 - npoints: 2 - width: null - straight_L15_CSstrip_WNone_N2_m36000_16000_A270: - component: straight - info: - length: 15 - route_info_length: 15 - route_info_strip_length: 15 - route_info_type: strip - route_info_weight: 15 - width: 0.5 - settings: - cross_section: strip - length: 15 - npoints: 2 - width: null - straight_L21_CSstrip_WNone_N2_119000_1000_A90: - component: straight - info: - length: 21 - route_info_length: 21 - route_info_strip_length: 21 - route_info_type: strip - route_info_weight: 21 - width: 0.5 - settings: - cross_section: strip - length: 21 - npoints: 2 - width: null - straight_L21_CSstrip_WNone_N2_m39000_19000_A270: - component: straight - info: - length: 21 - route_info_length: 21 - route_info_strip_length: 21 - route_info_type: strip - route_info_weight: 21 - width: 0.5 - settings: - cross_section: strip - length: 21 - npoints: 2 - width: null - straight_L27_CSstrip_WNone_N2_122000_m2000_A90: - component: straight - info: - length: 27 - route_info_length: 27 - route_info_strip_length: 27 - route_info_type: strip - route_info_weight: 27 - width: 0.5 - settings: - cross_section: strip - length: 27 - npoints: 2 - width: null - straight_L27_CSstrip_WNone_N2_m42000_22000_A270: - component: straight - info: - length: 27 - route_info_length: 27 - route_info_strip_length: 27 - route_info_type: strip - route_info_weight: 27 - width: 0.5 - settings: - cross_section: strip - length: 27 - npoints: 2 - width: null - straight_L33_CSstrip_WNone_N2_125000_m5000_A90: - component: straight - info: - length: 33 - route_info_length: 33 - route_info_strip_length: 33 - route_info_type: strip - route_info_weight: 33 - width: 0.5 - settings: - cross_section: strip - length: 33 - npoints: 2 - width: null - straight_L33_CSstrip_WNone_N2_m45000_25000_A270: - component: straight - info: - length: 33 - route_info_length: 33 - route_info_strip_length: 33 - route_info_type: strip - route_info_weight: 33 - width: 0.5 - settings: - cross_section: strip - length: 33 - npoints: 2 - width: null - straight_L39_CSstrip_WNone_N2_m48000_28000_A270: - component: straight - info: - length: 39 - route_info_length: 39 - route_info_strip_length: 39 - route_info_type: strip - route_info_weight: 39 - width: 0.5 - settings: - cross_section: strip - length: 39 - npoints: 2 - width: null - straight_L3_CSstrip_WNone_N2_110000_10000_A90: - component: straight - info: - length: 3 - route_info_length: 3 - route_info_strip_length: 3 - route_info_type: strip - route_info_weight: 3 - width: 0.5 - settings: - cross_section: strip - length: 3 - npoints: 2 - width: null - straight_L3_CSstrip_WNone_N2_m30000_10000_A270: - component: straight - info: - length: 3 - route_info_length: 3 - route_info_strip_length: 3 - route_info_type: strip - route_info_weight: 3 - width: 0.5 - settings: - cross_section: strip - length: 3 - npoints: 2 - width: null - straight_L9_CSstrip_WNone_N2_113000_7000_A90: - component: straight - info: - length: 9 - route_info_length: 9 - route_info_strip_length: 9 - route_info_type: strip - route_info_weight: 9 - width: 0.5 - settings: - cross_section: strip - length: 9 - npoints: 2 - width: null - straight_L9_CSstrip_WNone_N2_m33000_13000_A270: - component: straight - info: - length: 9 - route_info_length: 9 - route_info_strip_length: 9 - route_info_type: strip - route_info_weight: 9 - width: 0.5 - settings: - cross_section: strip - length: 9 - npoints: 2 - width: null -name: spiral_L100_CSstrip_S3_NL6 -nets: -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_0_0_A180_M,o1 - p2: straight_L100_CSstrip_WNone_N2_0_0,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_0_0_A180_M,o2 - p2: bend_euler_RNone_A90_P0_fbfa4d8c_m10000_10000_A90,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_100000_0,o1 - p2: straight_L100_CSstrip_WNone_N2_0_0,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_100000_0,o2 - p2: straight_L3_CSstrip_WNone_N2_110000_10000_A90,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_103000_m3000,o1 - p2: straight_L123_CSstrip_WNone_N2_m20000_m3000,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_103000_m3000,o2 - p2: straight_L9_CSstrip_WNone_N2_113000_7000_A90,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_106000_m6000,o1 - p2: straight_L129_CSstrip_WNone_N2_m23000_m6000,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_106000_m6000,o2 - p2: straight_L15_CSstrip_WNone_N2_116000_4000_A90,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_109000_m9000,o1 - p2: straight_L135_CSstrip_WNone_N2_m26000_m9000,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_109000_m9000,o2 - p2: straight_L21_CSstrip_WNone_N2_119000_1000_A90,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_110000_13000_A90,o1 - p2: straight_L3_CSstrip_WNone_N2_110000_10000_A90,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_110000_13000_A90,o2 - p2: straight_L123_CSstrip_WNone_N2_100000_23000_A180,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_112000_m12000,o1 - p2: straight_L141_CSstrip_WNone_N2_m29000_m12000,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_112000_m12000,o2 - p2: straight_L27_CSstrip_WNone_N2_122000_m2000_A90,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_113000_16000_A90,o1 - p2: straight_L9_CSstrip_WNone_N2_113000_7000_A90,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_113000_16000_A90,o2 - p2: straight_L129_CSstrip_WNone_N2_103000_26000_A180,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_115000_m15000,o1 - p2: straight_L147_CSstrip_WNone_N2_m32000_m15000,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_115000_m15000,o2 - p2: straight_L33_CSstrip_WNone_N2_125000_m5000_A90,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_116000_19000_A90,o1 - p2: straight_L15_CSstrip_WNone_N2_116000_4000_A90,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_116000_19000_A90,o2 - p2: straight_L135_CSstrip_WNone_N2_106000_29000_A180,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_119000_22000_A90,o1 - p2: straight_L21_CSstrip_WNone_N2_119000_1000_A90,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_119000_22000_A90,o2 - p2: straight_L141_CSstrip_WNone_N2_109000_32000_A180,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_122000_25000_A90,o1 - p2: straight_L27_CSstrip_WNone_N2_122000_m2000_A90,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_122000_25000_A90,o2 - p2: straight_L147_CSstrip_WNone_N2_112000_35000_A180,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_125000_28000_A90,o1 - p2: straight_L33_CSstrip_WNone_N2_125000_m5000_A90,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_125000_28000_A90,o2 - p2: straight_L153_CSstrip_WNone_N2_115000_38000_A180,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m10000_10000_A90,o2 - p2: bend_euler_RNone_A90_P0_fbfa4d8c_m20000_20000_A180,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m20000_20000_A180,o2 - p2: straight_L3_CSstrip_WNone_N2_m30000_10000_A270,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m23000_23000_A180,o1 - p2: straight_L123_CSstrip_WNone_N2_100000_23000_A180,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m23000_23000_A180,o2 - p2: straight_L9_CSstrip_WNone_N2_m33000_13000_A270,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m26000_26000_A180,o1 - p2: straight_L129_CSstrip_WNone_N2_103000_26000_A180,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m26000_26000_A180,o2 - p2: straight_L15_CSstrip_WNone_N2_m36000_16000_A270,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m29000_29000_A180,o1 - p2: straight_L135_CSstrip_WNone_N2_106000_29000_A180,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m29000_29000_A180,o2 - p2: straight_L21_CSstrip_WNone_N2_m39000_19000_A270,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m30000_7000_A270,o1 - p2: straight_L3_CSstrip_WNone_N2_m30000_10000_A270,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m30000_7000_A270,o2 - p2: straight_L123_CSstrip_WNone_N2_m20000_m3000,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m32000_32000_A180,o1 - p2: straight_L141_CSstrip_WNone_N2_109000_32000_A180,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m32000_32000_A180,o2 - p2: straight_L27_CSstrip_WNone_N2_m42000_22000_A270,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m33000_4000_A270,o1 - p2: straight_L9_CSstrip_WNone_N2_m33000_13000_A270,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m33000_4000_A270,o2 - p2: straight_L129_CSstrip_WNone_N2_m23000_m6000,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m35000_35000_A180,o1 - p2: straight_L147_CSstrip_WNone_N2_112000_35000_A180,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m35000_35000_A180,o2 - p2: straight_L33_CSstrip_WNone_N2_m45000_25000_A270,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m36000_1000_A270,o1 - p2: straight_L15_CSstrip_WNone_N2_m36000_16000_A270,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m36000_1000_A270,o2 - p2: straight_L135_CSstrip_WNone_N2_m26000_m9000,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m38000_38000_A180,o1 - p2: straight_L153_CSstrip_WNone_N2_115000_38000_A180,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m38000_38000_A180,o2 - p2: straight_L39_CSstrip_WNone_N2_m48000_28000_A270,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m39000_m2000_A270,o1 - p2: straight_L21_CSstrip_WNone_N2_m39000_19000_A270,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m39000_m2000_A270,o2 - p2: straight_L141_CSstrip_WNone_N2_m29000_m12000,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m42000_m5000_A270,o1 - p2: straight_L27_CSstrip_WNone_N2_m42000_22000_A270,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m42000_m5000_A270,o2 - p2: straight_L147_CSstrip_WNone_N2_m32000_m15000,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m45000_m8000_A270,o1 - p2: straight_L33_CSstrip_WNone_N2_m45000_25000_A270,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m45000_m8000_A270,o2 - p2: straight_L153_CSstrip_WNone_N2_m35000_m18000,o1 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m48000_m11000_A270,o1 - p2: straight_L39_CSstrip_WNone_N2_m48000_28000_A270,o2 -- p1: bend_euler_RNone_A90_P0_fbfa4d8c_m48000_m11000_A270,o2 - p2: straight_L159_CSstrip_WNone_N2_m38000_m21000,o1 -placements: - bend_euler_RNone_A90_P0_fbfa4d8c_0_0_A180_M: - mirror: true - rotation: 180 - x: 0 - y: 0 - bend_euler_RNone_A90_P0_fbfa4d8c_100000_0: - mirror: false - rotation: 0 - x: 100 - y: 0 - bend_euler_RNone_A90_P0_fbfa4d8c_103000_m3000: - mirror: false - rotation: 0 - x: 103 - y: -3 - bend_euler_RNone_A90_P0_fbfa4d8c_106000_m6000: - mirror: false - rotation: 0 - x: 106 - y: -6 - bend_euler_RNone_A90_P0_fbfa4d8c_109000_m9000: - mirror: false - rotation: 0 - x: 109 - y: -9 - bend_euler_RNone_A90_P0_fbfa4d8c_110000_13000_A90: - mirror: false - rotation: 90 - x: 110 - y: 13 - bend_euler_RNone_A90_P0_fbfa4d8c_112000_m12000: - mirror: false - rotation: 0 - x: 112 - y: -12 - bend_euler_RNone_A90_P0_fbfa4d8c_113000_16000_A90: - mirror: false - rotation: 90 - x: 113 - y: 16 - bend_euler_RNone_A90_P0_fbfa4d8c_115000_m15000: - mirror: false - rotation: 0 - x: 115 - y: -15 - bend_euler_RNone_A90_P0_fbfa4d8c_116000_19000_A90: - mirror: false - rotation: 90 - x: 116 - y: 19 - bend_euler_RNone_A90_P0_fbfa4d8c_119000_22000_A90: - mirror: false - rotation: 90 - x: 119 - y: 22 - bend_euler_RNone_A90_P0_fbfa4d8c_122000_25000_A90: - mirror: false - rotation: 90 - x: 122 - y: 25 - bend_euler_RNone_A90_P0_fbfa4d8c_125000_28000_A90: - mirror: false - rotation: 90 - x: 125 - y: 28 - bend_euler_RNone_A90_P0_fbfa4d8c_m10000_10000_A90: - mirror: false - rotation: 90 - x: -10 - y: 10 - bend_euler_RNone_A90_P0_fbfa4d8c_m20000_20000_A180: - mirror: false - rotation: 180 - x: -20 - y: 20 - bend_euler_RNone_A90_P0_fbfa4d8c_m23000_23000_A180: - mirror: false - rotation: 180 - x: -23 - y: 23 - bend_euler_RNone_A90_P0_fbfa4d8c_m26000_26000_A180: - mirror: false - rotation: 180 - x: -26 - y: 26 - bend_euler_RNone_A90_P0_fbfa4d8c_m29000_29000_A180: - mirror: false - rotation: 180 - x: -29 - y: 29 - bend_euler_RNone_A90_P0_fbfa4d8c_m30000_7000_A270: - mirror: false - rotation: 270 - x: -30 - y: 7 - bend_euler_RNone_A90_P0_fbfa4d8c_m32000_32000_A180: - mirror: false - rotation: 180 - x: -32 - y: 32 - bend_euler_RNone_A90_P0_fbfa4d8c_m33000_4000_A270: - mirror: false - rotation: 270 - x: -33 - y: 4 - bend_euler_RNone_A90_P0_fbfa4d8c_m35000_35000_A180: - mirror: false - rotation: 180 - x: -35 - y: 35 - bend_euler_RNone_A90_P0_fbfa4d8c_m36000_1000_A270: - mirror: false - rotation: 270 - x: -36 - y: 1 - bend_euler_RNone_A90_P0_fbfa4d8c_m38000_38000_A180: - mirror: false - rotation: 180 - x: -38 - y: 38 - bend_euler_RNone_A90_P0_fbfa4d8c_m39000_m2000_A270: - mirror: false - rotation: 270 - x: -39 - y: -2 - bend_euler_RNone_A90_P0_fbfa4d8c_m42000_m5000_A270: - mirror: false - rotation: 270 - x: -42 - y: -5 - bend_euler_RNone_A90_P0_fbfa4d8c_m45000_m8000_A270: - mirror: false - rotation: 270 - x: -45 - y: -8 - bend_euler_RNone_A90_P0_fbfa4d8c_m48000_m11000_A270: - mirror: false - rotation: 270 - x: -48 - y: -11 - straight_L100_CSstrip_WNone_N2_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 - straight_L123_CSstrip_WNone_N2_100000_23000_A180: - mirror: false - rotation: 180 - x: 100 - y: 23 - straight_L123_CSstrip_WNone_N2_m20000_m3000: - mirror: false - rotation: 0 - x: -20 - y: -3 - straight_L129_CSstrip_WNone_N2_103000_26000_A180: - mirror: false - rotation: 180 - x: 103 - y: 26 - straight_L129_CSstrip_WNone_N2_m23000_m6000: - mirror: false - rotation: 0 - x: -23 - y: -6 - straight_L135_CSstrip_WNone_N2_106000_29000_A180: - mirror: false - rotation: 180 - x: 106 - y: 29 - straight_L135_CSstrip_WNone_N2_m26000_m9000: - mirror: false - rotation: 0 - x: -26 - y: -9 - straight_L141_CSstrip_WNone_N2_109000_32000_A180: - mirror: false - rotation: 180 - x: 109 - y: 32 - straight_L141_CSstrip_WNone_N2_m29000_m12000: - mirror: false - rotation: 0 - x: -29 - y: -12 - straight_L147_CSstrip_WNone_N2_112000_35000_A180: - mirror: false - rotation: 180 - x: 112 - y: 35 - straight_L147_CSstrip_WNone_N2_m32000_m15000: - mirror: false - rotation: 0 - x: -32 - y: -15 - straight_L153_CSstrip_WNone_N2_115000_38000_A180: - mirror: false - rotation: 180 - x: 115 - y: 38 - straight_L153_CSstrip_WNone_N2_m35000_m18000: - mirror: false - rotation: 0 - x: -35 - y: -18 - straight_L159_CSstrip_WNone_N2_m38000_m21000: - mirror: false - rotation: 0 - x: -38 - y: -21 - straight_L15_CSstrip_WNone_N2_116000_4000_A90: - mirror: false - rotation: 90 - x: 116 - y: 4 - straight_L15_CSstrip_WNone_N2_m36000_16000_A270: - mirror: false - rotation: 270 - x: -36 - y: 16 - straight_L21_CSstrip_WNone_N2_119000_1000_A90: - mirror: false - rotation: 90 - x: 119 - y: 1 - straight_L21_CSstrip_WNone_N2_m39000_19000_A270: - mirror: false - rotation: 270 - x: -39 - y: 19 - straight_L27_CSstrip_WNone_N2_122000_m2000_A90: - mirror: false - rotation: 90 - x: 122 - y: -2 - straight_L27_CSstrip_WNone_N2_m42000_22000_A270: - mirror: false - rotation: 270 - x: -42 - y: 22 - straight_L33_CSstrip_WNone_N2_125000_m5000_A90: - mirror: false - rotation: 90 - x: 125 - y: -5 - straight_L33_CSstrip_WNone_N2_m45000_25000_A270: - mirror: false - rotation: 270 - x: -45 - y: 25 - straight_L39_CSstrip_WNone_N2_m48000_28000_A270: - mirror: false - rotation: 270 - x: -48 - y: 28 - straight_L3_CSstrip_WNone_N2_110000_10000_A90: - mirror: false - rotation: 90 - x: 110 - y: 10 - straight_L3_CSstrip_WNone_N2_m30000_10000_A270: - mirror: false - rotation: 270 - x: -30 - y: 10 - straight_L9_CSstrip_WNone_N2_113000_7000_A90: - mirror: false - rotation: 90 - x: 113 - y: 7 - straight_L9_CSstrip_WNone_N2_m33000_13000_A270: - mirror: false - rotation: 270 - x: -33 - y: 13 -ports: - o1: straight_L153_CSstrip_WNone_N2_m35000_m18000,o2 - o2: straight_L159_CSstrip_WNone_N2_m38000_m21000,o2 diff --git a/tests/test_si220_cband/test_netlists_spiral_racetrack_.yml b/tests/test_si220_cband/test_netlists_spiral_racetrack_.yml deleted file mode 100644 index 5292c501..00000000 --- a/tests/test_si220_cband/test_netlists_spiral_racetrack_.yml +++ /dev/null @@ -1,620 +0,0 @@ -instances: - bend_euler_R10_A180_P0p_30772b39_0_0_A180: - component: bend_euler - info: - dy: 0 - length: 42.817 - min_bend_radius: 9.086 - radius: 10 - route_info_length: 42.817 - route_info_min_bend_radius: 9.086 - route_info_n_bend_90: 2 - route_info_strip_length: 42.817 - route_info_type: strip - route_info_weight: 42.817 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 180 - cross_section: strip - p: 0.5 - radius: 10 - width: null - bend_euler_R10_A180_P0p_30772b39_20000_m18000: - component: bend_euler - info: - dy: 0 - length: 42.817 - min_bend_radius: 9.086 - radius: 10 - route_info_length: 42.817 - route_info_min_bend_radius: 9.086 - route_info_n_bend_90: 2 - route_info_strip_length: 42.817 - route_info_type: strip - route_info_weight: 42.817 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 180 - cross_section: strip - p: 0.5 - radius: 10 - width: null - bend_euler_R12_A180_P0p_834d3699_0_2000_A180: - component: bend_euler - info: - dy: 0 - length: 51.381 - min_bend_radius: 10.903 - radius: 12 - route_info_length: 51.381 - route_info_min_bend_radius: 10.903 - route_info_n_bend_90: 2 - route_info_strip_length: 51.381 - route_info_type: strip - route_info_weight: 51.381 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 180 - cross_section: strip - p: 0.5 - radius: 12 - width: null - bend_euler_R12_A180_P0p_834d3699_20000_m20000: - component: bend_euler - info: - dy: 0 - length: 51.381 - min_bend_radius: 10.903 - radius: 12 - route_info_length: 51.381 - route_info_min_bend_radius: 10.903 - route_info_n_bend_90: 2 - route_info_strip_length: 51.381 - route_info_type: strip - route_info_weight: 51.381 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 180 - cross_section: strip - p: 0.5 - radius: 12 - width: null - bend_euler_R14_A180_P0p_6c08a4f0_0_4000_A180: - component: bend_euler - info: - dy: 0 - length: 59.944 - min_bend_radius: 12.721 - radius: 14 - route_info_length: 59.944 - route_info_min_bend_radius: 12.721 - route_info_n_bend_90: 2 - route_info_strip_length: 59.944 - route_info_type: strip - route_info_weight: 59.944 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 180 - cross_section: strip - p: 0.5 - radius: 14 - width: null - bend_euler_R14_A180_P0p_6c08a4f0_20000_m22000: - component: bend_euler - info: - dy: 0 - length: 59.944 - min_bend_radius: 12.721 - radius: 14 - route_info_length: 59.944 - route_info_min_bend_radius: 12.721 - route_info_n_bend_90: 2 - route_info_strip_length: 59.944 - route_info_type: strip - route_info_weight: 59.944 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 180 - cross_section: strip - p: 0.5 - radius: 14 - width: null - bend_euler_R17_A180_P0p_8af989a6_0_6000_A180: - component: bend_euler - info: - dy: 0 - length: 72.79 - min_bend_radius: 15.447 - radius: 17 - route_info_length: 72.79 - route_info_min_bend_radius: 15.447 - route_info_n_bend_90: 2 - route_info_strip_length: 72.79 - route_info_type: strip - route_info_weight: 72.79 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 180 - cross_section: strip - p: 0.5 - radius: 17 - width: null - bend_euler_R17_A180_P0p_8af989a6_20000_m24000: - component: bend_euler - info: - dy: 0 - length: 72.79 - min_bend_radius: 15.447 - radius: 17 - route_info_length: 72.79 - route_info_min_bend_radius: 15.447 - route_info_n_bend_90: 2 - route_info_strip_length: 72.79 - route_info_type: strip - route_info_weight: 72.79 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 180 - cross_section: strip - p: 0.5 - radius: 17 - width: null - bend_euler_R20_A180_P0p_ef53a950_0_10000_A180: - component: bend_euler - info: - dy: 0 - length: 85.635 - min_bend_radius: 18.172 - radius: 20 - route_info_length: 85.635 - route_info_min_bend_radius: 18.172 - route_info_n_bend_90: 2 - route_info_strip_length: 85.635 - route_info_type: strip - route_info_weight: 85.635 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 180 - cross_section: strip - p: 0.5 - radius: 20 - width: null - bend_euler_R20_A180_P0p_ef53a950_20000_m28000: - component: bend_euler - info: - dy: 0 - length: 85.635 - min_bend_radius: 18.172 - radius: 20 - route_info_length: 85.635 - route_info_min_bend_radius: 18.172 - route_info_n_bend_90: 2 - route_info_strip_length: 85.635 - route_info_type: strip - route_info_weight: 85.635 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 180 - cross_section: strip - p: 0.5 - radius: 20 - width: null - bend_euler_R22_A180_P0p_a5f53e23_0_12000_A180: - component: bend_euler - info: - dy: 0 - length: 94.199 - min_bend_radius: 19.99 - radius: 22 - route_info_length: 94.199 - route_info_min_bend_radius: 19.99 - route_info_n_bend_90: 2 - route_info_strip_length: 94.199 - route_info_type: strip - route_info_weight: 94.199 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 180 - cross_section: strip - p: 0.5 - radius: 22 - width: null - bend_euler_R22_A180_P0p_a5f53e23_20000_m30000: - component: bend_euler - info: - dy: 0 - length: 94.199 - min_bend_radius: 19.99 - radius: 22 - route_info_length: 94.199 - route_info_min_bend_radius: 19.99 - route_info_n_bend_90: 2 - route_info_strip_length: 94.199 - route_info_type: strip - route_info_weight: 94.199 - width: 0.5 - settings: - allow_min_radius_violation: false - angle: 180 - cross_section: strip - p: 0.5 - radius: 22 - width: null - bend_s_S20_m18_CSstrip__e667d680_0_0: - component: bend_s - info: - end_angle: 0 - length: 28.393 - min_bend_radius: 7.066 - route_info_length: 28.393 - route_info_min_bend_radius: 7.066 - route_info_n_bend_s: 1 - route_info_strip_length: 28.393 - route_info_type: strip - route_info_weight: 28.393 - start_angle: 0 - settings: - allow_min_radius_violation: false - cross_section: strip - size: - - 20 - - -18 - width: null - straight_L20_CSstrip_WNone_N2_0_m20000: - component: straight - info: - length: 20 - route_info_length: 20 - route_info_strip_length: 20 - route_info_type: strip - route_info_weight: 20 - width: 0.5 - settings: - cross_section: strip - length: 20 - npoints: 2 - width: null - straight_L20_CSstrip_WNone_N2_0_m22000: - component: straight - info: - length: 20 - route_info_length: 20 - route_info_strip_length: 20 - route_info_type: strip - route_info_weight: 20 - width: 0.5 - settings: - cross_section: strip - length: 20 - npoints: 2 - width: null - straight_L20_CSstrip_WNone_N2_0_m24000: - component: straight - info: - length: 20 - route_info_length: 20 - route_info_strip_length: 20 - route_info_type: strip - route_info_weight: 20 - width: 0.5 - settings: - cross_section: strip - length: 20 - npoints: 2 - width: null - straight_L20_CSstrip_WNone_N2_0_m28000: - component: straight - info: - length: 20 - route_info_length: 20 - route_info_strip_length: 20 - route_info_type: strip - route_info_weight: 20 - width: 0.5 - settings: - cross_section: strip - length: 20 - npoints: 2 - width: null - straight_L20_CSstrip_WNone_N2_0_m30000: - component: straight - info: - length: 20 - route_info_length: 20 - route_info_strip_length: 20 - route_info_type: strip - route_info_weight: 20 - width: 0.5 - settings: - cross_section: strip - length: 20 - npoints: 2 - width: null - straight_L20_CSstrip_WNone_N2_0_m32000: - component: straight - info: - length: 20 - route_info_length: 20 - route_info_strip_length: 20 - route_info_type: strip - route_info_weight: 20 - width: 0.5 - settings: - cross_section: strip - length: 20 - npoints: 2 - width: null - straight_L20_CSstrip_WNone_N2_20000_10000_A180: - component: straight - info: - length: 20 - route_info_length: 20 - route_info_strip_length: 20 - route_info_type: strip - route_info_weight: 20 - width: 0.5 - settings: - cross_section: strip - length: 20 - npoints: 2 - width: null - straight_L20_CSstrip_WNone_N2_20000_12000_A180: - component: straight - info: - length: 20 - route_info_length: 20 - route_info_strip_length: 20 - route_info_type: strip - route_info_weight: 20 - width: 0.5 - settings: - cross_section: strip - length: 20 - npoints: 2 - width: null - straight_L20_CSstrip_WNone_N2_20000_14000_A180: - component: straight - info: - length: 20 - route_info_length: 20 - route_info_strip_length: 20 - route_info_type: strip - route_info_weight: 20 - width: 0.5 - settings: - cross_section: strip - length: 20 - npoints: 2 - width: null - straight_L20_CSstrip_WNone_N2_20000_2000_A180: - component: straight - info: - length: 20 - route_info_length: 20 - route_info_strip_length: 20 - route_info_type: strip - route_info_weight: 20 - width: 0.5 - settings: - cross_section: strip - length: 20 - npoints: 2 - width: null - straight_L20_CSstrip_WNone_N2_20000_4000_A180: - component: straight - info: - length: 20 - route_info_length: 20 - route_info_strip_length: 20 - route_info_type: strip - route_info_weight: 20 - width: 0.5 - settings: - cross_section: strip - length: 20 - npoints: 2 - width: null - straight_L20_CSstrip_WNone_N2_20000_6000_A180: - component: straight - info: - length: 20 - route_info_length: 20 - route_info_strip_length: 20 - route_info_type: strip - route_info_weight: 20 - width: 0.5 - settings: - cross_section: strip - length: 20 - npoints: 2 - width: null -name: spiral_racetrack_MRNone_05d4c3d3 -nets: -- p1: bend_euler_R10_A180_P0p_30772b39_0_0_A180,o1 - p2: bend_s_S20_m18_CSstrip__e667d680_0_0,o1 -- p1: bend_euler_R10_A180_P0p_30772b39_0_0_A180,o2 - p2: straight_L20_CSstrip_WNone_N2_0_m20000,o1 -- p1: bend_euler_R10_A180_P0p_30772b39_20000_m18000,o1 - p2: bend_s_S20_m18_CSstrip__e667d680_0_0,o2 -- p1: bend_euler_R10_A180_P0p_30772b39_20000_m18000,o2 - p2: straight_L20_CSstrip_WNone_N2_20000_2000_A180,o1 -- p1: bend_euler_R12_A180_P0p_834d3699_0_2000_A180,o1 - p2: straight_L20_CSstrip_WNone_N2_20000_2000_A180,o2 -- p1: bend_euler_R12_A180_P0p_834d3699_0_2000_A180,o2 - p2: straight_L20_CSstrip_WNone_N2_0_m22000,o1 -- p1: bend_euler_R12_A180_P0p_834d3699_20000_m20000,o1 - p2: straight_L20_CSstrip_WNone_N2_0_m20000,o2 -- p1: bend_euler_R12_A180_P0p_834d3699_20000_m20000,o2 - p2: straight_L20_CSstrip_WNone_N2_20000_4000_A180,o1 -- p1: bend_euler_R14_A180_P0p_6c08a4f0_0_4000_A180,o1 - p2: straight_L20_CSstrip_WNone_N2_20000_4000_A180,o2 -- p1: bend_euler_R14_A180_P0p_6c08a4f0_0_4000_A180,o2 - p2: straight_L20_CSstrip_WNone_N2_0_m24000,o1 -- p1: bend_euler_R14_A180_P0p_6c08a4f0_20000_m22000,o1 - p2: straight_L20_CSstrip_WNone_N2_0_m22000,o2 -- p1: bend_euler_R14_A180_P0p_6c08a4f0_20000_m22000,o2 - p2: straight_L20_CSstrip_WNone_N2_20000_6000_A180,o1 -- p1: bend_euler_R17_A180_P0p_8af989a6_0_6000_A180,o1 - p2: straight_L20_CSstrip_WNone_N2_20000_6000_A180,o2 -- p1: bend_euler_R17_A180_P0p_8af989a6_0_6000_A180,o2 - p2: straight_L20_CSstrip_WNone_N2_0_m28000,o1 -- p1: bend_euler_R17_A180_P0p_8af989a6_20000_m24000,o1 - p2: straight_L20_CSstrip_WNone_N2_0_m24000,o2 -- p1: bend_euler_R17_A180_P0p_8af989a6_20000_m24000,o2 - p2: straight_L20_CSstrip_WNone_N2_20000_10000_A180,o1 -- p1: bend_euler_R20_A180_P0p_ef53a950_0_10000_A180,o1 - p2: straight_L20_CSstrip_WNone_N2_20000_10000_A180,o2 -- p1: bend_euler_R20_A180_P0p_ef53a950_0_10000_A180,o2 - p2: straight_L20_CSstrip_WNone_N2_0_m30000,o1 -- p1: bend_euler_R20_A180_P0p_ef53a950_20000_m28000,o1 - p2: straight_L20_CSstrip_WNone_N2_0_m28000,o2 -- p1: bend_euler_R20_A180_P0p_ef53a950_20000_m28000,o2 - p2: straight_L20_CSstrip_WNone_N2_20000_12000_A180,o1 -- p1: bend_euler_R22_A180_P0p_a5f53e23_0_12000_A180,o1 - p2: straight_L20_CSstrip_WNone_N2_20000_12000_A180,o2 -- p1: bend_euler_R22_A180_P0p_a5f53e23_0_12000_A180,o2 - p2: straight_L20_CSstrip_WNone_N2_0_m32000,o1 -- p1: bend_euler_R22_A180_P0p_a5f53e23_20000_m30000,o1 - p2: straight_L20_CSstrip_WNone_N2_0_m30000,o2 -- p1: bend_euler_R22_A180_P0p_a5f53e23_20000_m30000,o2 - p2: straight_L20_CSstrip_WNone_N2_20000_14000_A180,o1 -placements: - bend_euler_R10_A180_P0p_30772b39_0_0_A180: - mirror: false - rotation: 180 - x: 0 - y: 0 - bend_euler_R10_A180_P0p_30772b39_20000_m18000: - mirror: false - rotation: 0 - x: 20 - y: -18 - bend_euler_R12_A180_P0p_834d3699_0_2000_A180: - mirror: false - rotation: 180 - x: 0 - y: 2 - bend_euler_R12_A180_P0p_834d3699_20000_m20000: - mirror: false - rotation: 0 - x: 20 - y: -20 - bend_euler_R14_A180_P0p_6c08a4f0_0_4000_A180: - mirror: false - rotation: 180 - x: 0 - y: 4 - bend_euler_R14_A180_P0p_6c08a4f0_20000_m22000: - mirror: false - rotation: 0 - x: 20 - y: -22 - bend_euler_R17_A180_P0p_8af989a6_0_6000_A180: - mirror: false - rotation: 180 - x: 0 - y: 6 - bend_euler_R17_A180_P0p_8af989a6_20000_m24000: - mirror: false - rotation: 0 - x: 20 - y: -24 - bend_euler_R20_A180_P0p_ef53a950_0_10000_A180: - mirror: false - rotation: 180 - x: 0 - y: 10 - bend_euler_R20_A180_P0p_ef53a950_20000_m28000: - mirror: false - rotation: 0 - x: 20 - y: -28 - bend_euler_R22_A180_P0p_a5f53e23_0_12000_A180: - mirror: false - rotation: 180 - x: 0 - y: 12 - bend_euler_R22_A180_P0p_a5f53e23_20000_m30000: - mirror: false - rotation: 0 - x: 20 - y: -30 - bend_s_S20_m18_CSstrip__e667d680_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 - straight_L20_CSstrip_WNone_N2_0_m20000: - mirror: false - rotation: 0 - x: 0 - y: -20 - straight_L20_CSstrip_WNone_N2_0_m22000: - mirror: false - rotation: 0 - x: 0 - y: -22 - straight_L20_CSstrip_WNone_N2_0_m24000: - mirror: false - rotation: 0 - x: 0 - y: -24 - straight_L20_CSstrip_WNone_N2_0_m28000: - mirror: false - rotation: 0 - x: 0 - y: -28 - straight_L20_CSstrip_WNone_N2_0_m30000: - mirror: false - rotation: 0 - x: 0 - y: -30 - straight_L20_CSstrip_WNone_N2_0_m32000: - mirror: false - rotation: 0 - x: 0 - y: -32 - straight_L20_CSstrip_WNone_N2_20000_10000_A180: - mirror: false - rotation: 180 - x: 20 - y: 10 - straight_L20_CSstrip_WNone_N2_20000_12000_A180: - mirror: false - rotation: 180 - x: 20 - y: 12 - straight_L20_CSstrip_WNone_N2_20000_14000_A180: - mirror: false - rotation: 180 - x: 20 - y: 14 - straight_L20_CSstrip_WNone_N2_20000_2000_A180: - mirror: false - rotation: 180 - x: 20 - y: 2 - straight_L20_CSstrip_WNone_N2_20000_4000_A180: - mirror: false - rotation: 180 - x: 20 - y: 4 - straight_L20_CSstrip_WNone_N2_20000_6000_A180: - mirror: false - rotation: 180 - x: 20 - y: 6 -ports: - o1: straight_L20_CSstrip_WNone_N2_20000_14000_A180,o2 - o2: straight_L20_CSstrip_WNone_N2_0_m32000,o2 diff --git a/tests/test_si220_cband/test_netlists_spiral_racetrack_heater_.yml b/tests/test_si220_cband/test_netlists_spiral_racetrack_heater_.yml deleted file mode 100644 index 15652d99..00000000 --- a/tests/test_si220_cband/test_netlists_spiral_racetrack_heater_.yml +++ /dev/null @@ -1,143 +0,0 @@ -instances: - bend_euler_R30_A180_P0p_023a6fc5_54883_m38000: - component: bend_euler - info: - dy: 0 - length: 128.453 - min_bend_radius: 27.259 - radius: 30 - route_info_heater_metal_length: 128.453 - route_info_length: 128.453 - route_info_min_bend_radius: 27.259 - route_info_n_bend_90: 2 - route_info_type: heater_metal - route_info_weight: 128.453 - width: 4 - settings: - allow_min_radius_violation: false - angle: 180 - cross_section: heater_metal - p: 0.5 - radius: 30 - width: null - spiral_racetrack_gdsfac_5d4cf290_0_0: - component: spiral_racetrack - info: - length: 3345.986 - settings: - allow_min_radius_violation: false - bend: bend_euler - bend_s: bend_s - cross_section: strip - cross_section_s: null - extra_90_deg_bend: false - min_radius: 10 - spacings: - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - straight: straight - straight_length: 100 - straight_gdsfactorypcom_262b2f90_54883_22000_A180: - component: straight - info: - length: 100 - route_info_heater_metal_length: 100 - route_info_length: 100 - route_info_type: heater_metal - route_info_weight: 100 - width: 4 - settings: - cross_section: heater_metal - length: 100 - npoints: 2 - width: null - straight_gdsfactorypcom_262b2f90_54883_m38000_A180: - component: straight - info: - length: 100 - route_info_heater_metal_length: 100 - route_info_length: 100 - route_info_type: heater_metal - route_info_weight: 100 - width: 4 - settings: - cross_section: heater_metal - length: 100 - npoints: 2 - width: null - via_stack_heater_mtop_S20_10_m55117_22000: - component: via_stack_heater_mtop - info: - xsize: 20 - ysize: 10 - settings: - size: - - 20 - - 10 - via_stack_heater_mtop_S20_10_m55117_m38000: - component: via_stack_heater_mtop - info: - xsize: 20 - ysize: 10 - settings: - size: - - 20 - - 10 -name: spiral_racetrack_heater_8f268b5e -nets: -- p1: bend_euler_R30_A180_P0p_023a6fc5_54883_m38000,e1 - p2: straight_gdsfactorypcom_262b2f90_54883_m38000_A180,e1 -- p1: bend_euler_R30_A180_P0p_023a6fc5_54883_m38000,e2 - p2: straight_gdsfactorypcom_262b2f90_54883_22000_A180,e1 -- p1: straight_gdsfactorypcom_262b2f90_54883_22000_A180,e2 - p2: via_stack_heater_mtop_S20_10_m55117_22000,e3 -- p1: straight_gdsfactorypcom_262b2f90_54883_m38000_A180,e2 - p2: via_stack_heater_mtop_S20_10_m55117_m38000,e3 -placements: - bend_euler_R30_A180_P0p_023a6fc5_54883_m38000: - mirror: false - rotation: 0 - x: 54.883 - y: -38 - spiral_racetrack_gdsfac_5d4cf290_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 - straight_gdsfactorypcom_262b2f90_54883_22000_A180: - mirror: false - rotation: 180 - x: 54.883 - y: 22 - straight_gdsfactorypcom_262b2f90_54883_m38000_A180: - mirror: false - rotation: 180 - x: 54.883 - y: -38 - via_stack_heater_mtop_S20_10_m55117_22000: - mirror: false - rotation: 0 - x: -55.117 - y: 22 - via_stack_heater_mtop_S20_10_m55117_m38000: - mirror: false - rotation: 0 - x: -55.117 - y: -38 -ports: - bot_e1: via_stack_heater_mtop_S20_10_m55117_m38000,e1 - bot_e2: via_stack_heater_mtop_S20_10_m55117_m38000,e2 - bot_e3: via_stack_heater_mtop_S20_10_m55117_m38000,e3 - bot_e4: via_stack_heater_mtop_S20_10_m55117_m38000,e4 - o1: spiral_racetrack_gdsfac_5d4cf290_0_0,o1 - o2: spiral_racetrack_gdsfac_5d4cf290_0_0,o2 - top_e1: via_stack_heater_mtop_S20_10_m55117_22000,e1 - top_e2: via_stack_heater_mtop_S20_10_m55117_22000,e2 - top_e3: via_stack_heater_mtop_S20_10_m55117_22000,e3 - top_e4: via_stack_heater_mtop_S20_10_m55117_22000,e4 diff --git a/tests/test_si220_cband/test_netlists_straight_.yml b/tests/test_si220_cband/test_netlists_straight_.yml deleted file mode 100644 index 597f7a1d..00000000 --- a/tests/test_si220_cband/test_netlists_straight_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: straight_L10_CSstrip_WNone_N2 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_straight_heater_meander_.yml b/tests/test_si220_cband/test_netlists_straight_heater_meander_.yml deleted file mode 100644 index 05fc984b..00000000 --- a/tests/test_si220_cband/test_netlists_straight_heater_meander_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: straight_heater_meander_dab24c04 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_straight_heater_metal_.yml b/tests/test_si220_cband/test_netlists_straight_heater_metal_.yml deleted file mode 100644 index cf3b91f8..00000000 --- a/tests/test_si220_cband/test_netlists_straight_heater_metal_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: straight_heater_metal_L_c3de7143 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_straight_metal_.yml b/tests/test_si220_cband/test_netlists_straight_metal_.yml deleted file mode 100644 index e93444f5..00000000 --- a/tests/test_si220_cband/test_netlists_straight_metal_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: straight_metal_L10_CSme_e96c219a -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_straight_one_pin_.yml b/tests/test_si220_cband/test_netlists_straight_one_pin_.yml deleted file mode 100644 index 7a82fdef..00000000 --- a/tests/test_si220_cband/test_netlists_straight_one_pin_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: straight_one_pin_L1_CSF_a51960c0 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_taper_.yml b/tests/test_si220_cband/test_netlists_taper_.yml deleted file mode 100644 index 154c8e5b..00000000 --- a/tests/test_si220_cband/test_netlists_taper_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: taper_L10_W0p5_WNone_CSstrip -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_taper_metal_.yml b/tests/test_si220_cband/test_netlists_taper_metal_.yml deleted file mode 100644 index d5ece312..00000000 --- a/tests/test_si220_cband/test_netlists_taper_metal_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: taper_metal_L10_W1p5_WN_729f5848 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_terminator_short_.yml b/tests/test_si220_cband/test_netlists_terminator_short_.yml deleted file mode 100644 index 32df1c66..00000000 --- a/tests/test_si220_cband/test_netlists_terminator_short_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: terminator_short_W0p1 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_text_rectangular_.yml b/tests/test_si220_cband/test_netlists_text_rectangular_.yml deleted file mode 100644 index 2a398240..00000000 --- a/tests/test_si220_cband/test_netlists_text_rectangular_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: text_rectangular_Tabc_S_38250b67 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_netlists_text_rectangular_multi_layer_.yml b/tests/test_si220_cband/test_netlists_text_rectangular_multi_layer_.yml deleted file mode 100644 index 23b04d5a..00000000 --- a/tests/test_si220_cband/test_netlists_text_rectangular_multi_layer_.yml +++ /dev/null @@ -1,31 +0,0 @@ -instances: - text_rectangular_Tabc_S_38250b67_0_0: - component: text_rectangular - info: {} - settings: - justify: left - layer: M2_ROUTER - size: 3 - text: abc - text_rectangular_Tabc_S_ded20486_0_0: - component: text_rectangular - info: {} - settings: - justify: left - layer: WG - size: 3 - text: abc -name: text_rectangular_multi__7a8d810d -nets: [] -placements: - text_rectangular_Tabc_S_38250b67_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 - text_rectangular_Tabc_S_ded20486_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 -ports: {} diff --git a/tests/test_si220_cband/test_netlists_via_stack_heater_mtop_.yml b/tests/test_si220_cband/test_netlists_via_stack_heater_mtop_.yml deleted file mode 100644 index 91857810..00000000 --- a/tests/test_si220_cband/test_netlists_via_stack_heater_mtop_.yml +++ /dev/null @@ -1,51 +0,0 @@ -instances: - compass_gdsfactorypcomp_b663ba6f_0_0: - component: compass - info: {} - settings: - auto_rename_ports: false - layer: M2_ROUTER - port_inclusion: 0 - port_orientations: - - 180 - - 90 - - 0 - - -90 - port_type: electrical - size: - - 20 - - 10 - compass_gdsfactorypcomp_ef1fba86_0_0: - component: compass - info: {} - settings: - auto_rename_ports: true - layer: M1_HEATER - port_inclusion: 0 - port_orientations: - - 180 - - 90 - - 0 - - -90 - port_type: null - size: - - 20 - - 10 -name: via_stack_heater_mtop_S20_10 -nets: [] -placements: - compass_gdsfactorypcomp_b663ba6f_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 - compass_gdsfactorypcomp_ef1fba86_0_0: - mirror: false - rotation: 0 - x: 0 - y: 0 -ports: - e1: compass_gdsfactorypcomp_b663ba6f_0_0,e1 - e2: compass_gdsfactorypcomp_b663ba6f_0_0,e2 - e3: compass_gdsfactorypcomp_b663ba6f_0_0,e3 - e4: compass_gdsfactorypcomp_b663ba6f_0_0,e4 diff --git a/tests/test_si220_cband/test_netlists_wire_corner45_.yml b/tests/test_si220_cband/test_netlists_wire_corner45_.yml deleted file mode 100644 index e133f24b..00000000 --- a/tests/test_si220_cband/test_netlists_wire_corner45_.yml +++ /dev/null @@ -1,5 +0,0 @@ -instances: {} -name: wire_corner45_CSmetal_r_f85cf683 -nets: [] -placements: {} -ports: {} diff --git a/tests/test_si220_cband/test_settings_ANT_MMI_1x2_te1550_3dB_BB_.yml b/tests/test_si220_cband/test_settings_ANT_MMI_1x2_te1550_3dB_BB_.yml deleted file mode 100644 index 9ecd10de..00000000 --- a/tests/test_si220_cband/test_settings_ANT_MMI_1x2_te1550_3dB_BB_.yml +++ /dev/null @@ -1,31 +0,0 @@ -info: {} -name: ANT_MMI_1x2_te1550_3dB_BB -ports: - o1: - center: - - -12.88 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.75 - o2: - center: - - 12.88 - - 0.975 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.75 - o3: - center: - - 12.88 - - -0.975 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.75 -settings: {} diff --git a/tests/test_si220_cband/test_settings_Alignment_Marker_.yml b/tests/test_si220_cband/test_settings_Alignment_Marker_.yml deleted file mode 100644 index 23bad11e..00000000 --- a/tests/test_si220_cband/test_settings_Alignment_Marker_.yml +++ /dev/null @@ -1,4 +0,0 @@ -info: {} -name: Alignment_Marker -ports: {} -settings: {} diff --git a/tests/test_si220_cband/test_settings_GC_SiN_TE_1310_8degOxide_BB_.yml b/tests/test_si220_cband/test_settings_GC_SiN_TE_1310_8degOxide_BB_.yml deleted file mode 100644 index e6d02f19..00000000 --- a/tests/test_si220_cband/test_settings_GC_SiN_TE_1310_8degOxide_BB_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: GC_SiN_TE_1310_8degOxide_BB -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.75 -settings: {} diff --git a/tests/test_si220_cband/test_settings_GC_SiN_TE_1550_8degOxide_BB_.yml b/tests/test_si220_cband/test_settings_GC_SiN_TE_1550_8degOxide_BB_.yml deleted file mode 100644 index 249df27b..00000000 --- a/tests/test_si220_cband/test_settings_GC_SiN_TE_1550_8degOxide_BB_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: GC_SiN_TE_1550_8degOxide_BB -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.75 -settings: {} diff --git a/tests/test_si220_cband/test_settings_GC_TE_1310_8degOxide_BB_.yml b/tests/test_si220_cband/test_settings_GC_TE_1310_8degOxide_BB_.yml deleted file mode 100644 index d3cd0216..00000000 --- a/tests/test_si220_cband/test_settings_GC_TE_1310_8degOxide_BB_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: GC_TE_1310_8degOxide_BB -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.35 -settings: {} diff --git a/tests/test_si220_cband/test_settings_GC_TE_1550_8degOxide_BB_.yml b/tests/test_si220_cband/test_settings_GC_TE_1550_8degOxide_BB_.yml deleted file mode 100644 index d853ade4..00000000 --- a/tests/test_si220_cband/test_settings_GC_TE_1550_8degOxide_BB_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: GC_TE_1550_8degOxide_BB -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_GC_TM_1310_8degOxide_BB_.yml b/tests/test_si220_cband/test_settings_GC_TM_1310_8degOxide_BB_.yml deleted file mode 100644 index 8a270210..00000000 --- a/tests/test_si220_cband/test_settings_GC_TM_1310_8degOxide_BB_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: GC_TM_1310_8degOxide_BB -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.35 -settings: {} diff --git a/tests/test_si220_cband/test_settings_GC_TM_1550_8degOxide_BB_.yml b/tests/test_si220_cband/test_settings_GC_TM_1550_8degOxide_BB_.yml deleted file mode 100644 index b20d0db2..00000000 --- a/tests/test_si220_cband/test_settings_GC_TM_1550_8degOxide_BB_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: GC_TM_1550_8degOxide_BB -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_Packaging_FibreArray_8ch_.yml b/tests/test_si220_cband/test_settings_Packaging_FibreArray_8ch_.yml deleted file mode 100644 index 71542bd1..00000000 --- a/tests/test_si220_cband/test_settings_Packaging_FibreArray_8ch_.yml +++ /dev/null @@ -1,4 +0,0 @@ -info: {} -name: Packaging_FibreArray_8ch -ports: {} -settings: {} diff --git a/tests/test_si220_cband/test_settings_SEM_example_.yml b/tests/test_si220_cband/test_settings_SEM_example_.yml deleted file mode 100644 index 5d8c454e..00000000 --- a/tests/test_si220_cband/test_settings_SEM_example_.yml +++ /dev/null @@ -1,4 +0,0 @@ -info: {} -name: SEM_example -ports: {} -settings: {} diff --git a/tests/test_si220_cband/test_settings_add_fiber_array_.yml b/tests/test_si220_cband/test_settings_add_fiber_array_.yml deleted file mode 100644 index 52f9f3dc..00000000 --- a/tests/test_si220_cband/test_settings_add_fiber_array_.yml +++ /dev/null @@ -1,12 +0,0 @@ -info: {} -name: add_fiber_array_Cring_s_b3293ab5 -settings: - component: ring_single - cross_section: strip - fanout_length: 0 - gc_port_name: o1 - gc_rotation: 90 - grating_coupler: ebeam_gc_te1550 - mirror_grating_coupler: true - straight: straight - with_loopback: false diff --git a/tests/test_si220_cband/test_settings_add_fiber_array_pads_rf_.yml b/tests/test_si220_cband/test_settings_add_fiber_array_pads_rf_.yml deleted file mode 100644 index da1e2fd1..00000000 --- a/tests/test_si220_cband/test_settings_add_fiber_array_pads_rf_.yml +++ /dev/null @@ -1,44 +0,0 @@ -info: {} -name: add_fiber_array_pads_rf_Cring_single_heater_UJoaquinMat_1ec5681a -ports: - e1: - center: - - 72.71 - - -61.5 - layer: M2_ROUTER - name: e1 - orientation: 180 - port_type: electrical - width: 90 - e2: - center: - - 72.71 - - 63.5 - layer: M2_ROUTER - name: e2 - orientation: 180 - port_type: electrical - width: 90 - o1: - center: - - -34.5 - - 64.415 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.5 - o2: - center: - - -34.5 - - -62.585 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 -settings: - component: ring_single_heater - orientation: 0 - pad_yspacing: 50 - username: JoaquinMatres diff --git a/tests/test_si220_cband/test_settings_add_pads_.yml b/tests/test_si220_cband/test_settings_add_pads_.yml deleted file mode 100644 index 6e4ae849..00000000 --- a/tests/test_si220_cband/test_settings_add_pads_.yml +++ /dev/null @@ -1,97 +0,0 @@ -info: {} -name: add_pads_Cring_single_heater_UJoaquinMatres_LPNl_e1 -ports: - e1: - center: - - 436.5 - - 122.71 - layer: M2_ROUTER - name: e1 - orientation: 270 - port_type: electrical - width: 90 - e2: - center: - - 311.5 - - 122.71 - layer: M2_ROUTER - name: e2 - orientation: 270 - port_type: electrical - width: 90 - e3: - center: - - 186.5 - - 122.71 - layer: M2_ROUTER - name: e3 - orientation: 270 - port_type: electrical - width: 90 - e4: - center: - - 61.5 - - 122.71 - layer: M2_ROUTER - name: e4 - orientation: 270 - port_type: electrical - width: 90 - e5: - center: - - -63.5 - - 122.71 - layer: M2_ROUTER - name: e5 - orientation: 270 - port_type: electrical - width: 90 - e6: - center: - - -188.5 - - 122.71 - layer: M2_ROUTER - name: e6 - orientation: 270 - port_type: electrical - width: 90 - e7: - center: - - -313.5 - - 122.71 - layer: M2_ROUTER - name: e7 - orientation: 270 - port_type: electrical - width: 90 - e8: - center: - - -438.5 - - 122.71 - layer: M2_ROUTER - name: e8 - orientation: 270 - port_type: electrical - width: 90 - o1: - center: - - -15 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 13 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 -settings: - component: ring_single_heater - label_port_name: l_e1 - username: JoaquinMatres diff --git a/tests/test_si220_cband/test_settings_add_pads_rf_.yml b/tests/test_si220_cband/test_settings_add_pads_rf_.yml deleted file mode 100644 index 3d9b3369..00000000 --- a/tests/test_si220_cband/test_settings_add_pads_rf_.yml +++ /dev/null @@ -1,3 +0,0 @@ -info: {} -name: Unnamed_592 -settings: {} diff --git a/tests/test_si220_cband/test_settings_bend_.yml b/tests/test_si220_cband/test_settings_bend_.yml deleted file mode 100644 index 8d0b58e0..00000000 --- a/tests/test_si220_cband/test_settings_bend_.yml +++ /dev/null @@ -1,15 +0,0 @@ -info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 -name: bend_euler_CSstrip -settings: - cross_section: strip diff --git a/tests/test_si220_cband/test_settings_bend_euler180_.yml b/tests/test_si220_cband/test_settings_bend_euler180_.yml deleted file mode 100644 index 1b115285..00000000 --- a/tests/test_si220_cband/test_settings_bend_euler180_.yml +++ /dev/null @@ -1,16 +0,0 @@ -info: - dy: 0 - length: 42.817 - min_bend_radius: 9.086 - radius: 10 - route_info_length: 42.817 - route_info_min_bend_radius: 9.086 - route_info_n_bend_90: 2 - route_info_strip_length: 42.817 - route_info_type: strip - route_info_weight: 42.817 - width: 0.5 -name: bend_euler_CSstrip_A180 -settings: - angle: 180 - cross_section: strip diff --git a/tests/test_si220_cband/test_settings_bend_euler_.yml b/tests/test_si220_cband/test_settings_bend_euler_.yml deleted file mode 100644 index db5852c4..00000000 --- a/tests/test_si220_cband/test_settings_bend_euler_.yml +++ /dev/null @@ -1,37 +0,0 @@ -info: - dy: 10 - length: 16.637 - min_bend_radius: 7.061 - radius: 10 - route_info_length: 16.637 - route_info_min_bend_radius: 7.061 - route_info_n_bend_90: 1 - route_info_strip_length: 16.637 - route_info_type: strip - route_info_weight: 16.637 - width: 0.5 -name: bend_euler_RNone_A90_P0p5_WNone_CSstrip_AMRVFalse -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 10 - - 10 - layer: WG - name: o2 - orientation: 90 - port_type: optical - width: 0.5 -settings: - allow_min_radius_violation: false - angle: 90 - cross_section: strip - p: 0.5 diff --git a/tests/test_si220_cband/test_settings_bend_metal_.yml b/tests/test_si220_cband/test_settings_bend_metal_.yml deleted file mode 100644 index d4697fcd..00000000 --- a/tests/test_si220_cband/test_settings_bend_metal_.yml +++ /dev/null @@ -1,34 +0,0 @@ -info: - dy: 10 - length: 15.708 - radius: 10 - route_info_length: 15.708 - route_info_metal_routing_length: 15.708 - route_info_min_bend_radius: 10 - route_info_n_bend_90: 1 - route_info_type: metal_routing - route_info_weight: 15.708 - width: 10 -name: bend_metal_RNone_A90_WNone_CSmetal_routing -ports: - e1: - center: - - 0 - - 0 - layer: M2_ROUTER - name: e1 - orientation: 180 - port_type: electrical - width: 10 - e2: - center: - - 10 - - 10 - layer: M2_ROUTER - name: e2 - orientation: 90 - port_type: electrical - width: 10 -settings: - angle: 90 - cross_section: metal_routing diff --git a/tests/test_si220_cband/test_settings_bend_s_.yml b/tests/test_si220_cband/test_settings_bend_s_.yml deleted file mode 100644 index 7f26134a..00000000 --- a/tests/test_si220_cband/test_settings_bend_s_.yml +++ /dev/null @@ -1,37 +0,0 @@ -info: - end_angle: 0 - length: 11.206 - min_bend_radius: 13.012 - route_info_length: 11.206 - route_info_min_bend_radius: 13.012 - route_info_n_bend_s: 1 - route_info_strip_length: 11.206 - route_info_type: strip - route_info_weight: 11.206 - start_angle: 0 -name: bend_s_S11_1p8_CSstrip_WNone_AMRVFalse -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 11 - - 1.8 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 -settings: - allow_min_radius_violation: false - cross_section: strip - size: - - 11 - - 1.8 diff --git a/tests/test_si220_cband/test_settings_bend_s_metal_.yml b/tests/test_si220_cband/test_settings_bend_s_metal_.yml deleted file mode 100644 index cd3d8fcf..00000000 --- a/tests/test_si220_cband/test_settings_bend_s_metal_.yml +++ /dev/null @@ -1,37 +0,0 @@ -info: - end_angle: 0 - length: 11.206 - min_bend_radius: 13.012 - route_info_length: 11.206 - route_info_metal_routing_length: 11.206 - route_info_min_bend_radius: 13.012 - route_info_n_bend_s: 1 - route_info_type: metal_routing - route_info_weight: 11.206 - start_angle: 0 -name: bend_s_metal_S11_1p8_CSmetal_routing_WNone_AMRVTrue -ports: - e1: - center: - - 0 - - 0 - layer: M2_ROUTER - name: e1 - orientation: 180 - port_type: electrical - width: 10 - e2: - center: - - 11 - - 1.8 - layer: M2_ROUTER - name: e2 - orientation: 0 - port_type: electrical - width: 10 -settings: - allow_min_radius_violation: true - cross_section: metal_routing - size: - - 11 - - 1.8 diff --git a/tests/test_si220_cband/test_settings_compass_.yml b/tests/test_si220_cband/test_settings_compass_.yml deleted file mode 100644 index 7d5ca45e..00000000 --- a/tests/test_si220_cband/test_settings_compass_.yml +++ /dev/null @@ -1,15 +0,0 @@ -info: {} -name: compass_S4_2_LMTOP_PTNone_PI0_PO180_90_0_m90_ARPTrue -ports: {} -settings: - auto_rename_ports: true - layer: MTOP - port_inclusion: 0 - port_orientations: - - 180 - - 90 - - 0 - - -90 - size: - - 4 - - 2 diff --git a/tests/test_si220_cband/test_settings_coupler90_.yml b/tests/test_si220_cband/test_settings_coupler90_.yml deleted file mode 100644 index 6b1afde1..00000000 --- a/tests/test_si220_cband/test_settings_coupler90_.yml +++ /dev/null @@ -1,7 +0,0 @@ -info: {} -name: coupler90_gdsfactorypco_9253bfe3 -settings: - bend: bend_euler - cross_section: strip - gap: 0.2 - straight: straight diff --git a/tests/test_si220_cband/test_settings_coupler_.yml b/tests/test_si220_cband/test_settings_coupler_.yml deleted file mode 100644 index e1b2cb0a..00000000 --- a/tests/test_si220_cband/test_settings_coupler_.yml +++ /dev/null @@ -1,44 +0,0 @@ -info: - min_bend_radius: 11.744 - path_length: 34.88 -name: coupler_L14p5_G0p2 -ports: - o1: - center: - - -10 - - -1.65 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - -10 - - 2.35 - layer: WG - name: o2 - orientation: 180 - port_type: optical - width: 0.5 - o3: - center: - - 24.5 - - 2.35 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.5 - o4: - center: - - 24.5 - - -1.65 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.5 -settings: - gap: 0.2 - length: 14.5 diff --git a/tests/test_si220_cband/test_settings_coupler_ring_.yml b/tests/test_si220_cband/test_settings_coupler_ring_.yml deleted file mode 100644 index 79af6667..00000000 --- a/tests/test_si220_cband/test_settings_coupler_ring_.yml +++ /dev/null @@ -1,48 +0,0 @@ -info: - radius: 10 -name: coupler_ring_LX4_G0p2_R10_Bbend_euler_Sstraight_CSstrip_e85b7b42 -ports: - o1: - center: - - -14 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - -14 - - 10.7 - layer: WG - name: o2 - orientation: 90 - port_type: optical - width: 0.5 - o3: - center: - - 10 - - 10.7 - layer: WG - name: o3 - orientation: 90 - port_type: optical - width: 0.5 - o4: - center: - - 10 - - 0 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.5 -settings: - bend: bend_euler - cross_section: strip - gap: 0.2 - length_extension: 10 - length_x: 4 - radius: 10 - straight: straight diff --git a/tests/test_si220_cband/test_settings_coupler_straight_.yml b/tests/test_si220_cband/test_settings_coupler_straight_.yml deleted file mode 100644 index 9bf0f175..00000000 --- a/tests/test_si220_cband/test_settings_coupler_straight_.yml +++ /dev/null @@ -1,6 +0,0 @@ -info: {} -name: coupler_straight_gdsfac_f695a250 -settings: - cross_section: strip - gap: 0.2 - length: 10 diff --git a/tests/test_si220_cband/test_settings_crossing_SiN_1550_.yml b/tests/test_si220_cband/test_settings_crossing_SiN_1550_.yml deleted file mode 100644 index 974d8b92..00000000 --- a/tests/test_si220_cband/test_settings_crossing_SiN_1550_.yml +++ /dev/null @@ -1,40 +0,0 @@ -info: {} -name: crossing_SiN_1550 -ports: - o1: - center: - - -14.75 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.75 - o2: - center: - - 0 - - 14.75 - layer: WG - name: o2 - orientation: 90 - port_type: optical - width: 0.75 - o3: - center: - - 14.75 - - 0 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.75 - o4: - center: - - 0 - - -14.75 - layer: WG - name: o4 - orientation: 270 - port_type: optical - width: 0.75 -settings: {} diff --git a/tests/test_si220_cband/test_settings_crossing_SiN_1550_extended_.yml b/tests/test_si220_cband/test_settings_crossing_SiN_1550_extended_.yml deleted file mode 100644 index 4eb88bf4..00000000 --- a/tests/test_si220_cband/test_settings_crossing_SiN_1550_extended_.yml +++ /dev/null @@ -1,40 +0,0 @@ -info: {} -name: crossing_SiN_1550_extended -ports: - o1: - center: - - -45.785 - - -25.075 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.75 - o2: - center: - - -45.785 - - 25.075 - layer: WG - name: o2 - orientation: 180 - port_type: optical - width: 0.75 - o3: - center: - - 45.785 - - 25.075 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.75 - o4: - center: - - 45.785 - - -25.075 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.75 -settings: {} diff --git a/tests/test_si220_cband/test_settings_crossing_horizontal_.yml b/tests/test_si220_cband/test_settings_crossing_horizontal_.yml deleted file mode 100644 index 1530c456..00000000 --- a/tests/test_si220_cband/test_settings_crossing_horizontal_.yml +++ /dev/null @@ -1,40 +0,0 @@ -info: {} -name: crossing_horizontal -ports: - o1: - center: - - -37.83 - - -17.12 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.75 - o2: - center: - - -37.83 - - 17.12 - layer: WG - name: o2 - orientation: 180 - port_type: optical - width: 0.75 - o3: - center: - - 37.83 - - 17.12 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.75 - o4: - center: - - 37.83 - - -17.12 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.75 -settings: {} diff --git a/tests/test_si220_cband/test_settings_crossing_manhattan_.yml b/tests/test_si220_cband/test_settings_crossing_manhattan_.yml deleted file mode 100644 index 0bd4137e..00000000 --- a/tests/test_si220_cband/test_settings_crossing_manhattan_.yml +++ /dev/null @@ -1,40 +0,0 @@ -info: {} -name: crossing_manhattan -ports: - o1: - center: - - -3.5 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.75 - o2: - center: - - 0 - - 3.5 - layer: WG - name: o2 - orientation: 90 - port_type: optical - width: 0.75 - o3: - center: - - 3.5 - - 0 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.75 - o4: - center: - - 0 - - -3.5 - layer: WG - name: o4 - orientation: 270 - port_type: optical - width: 0.75 -settings: {} diff --git a/tests/test_si220_cband/test_settings_dbr_.yml b/tests/test_si220_cband/test_settings_dbr_.yml deleted file mode 100644 index eaaf6900..00000000 --- a/tests/test_si220_cband/test_settings_dbr_.yml +++ /dev/null @@ -1,9 +0,0 @@ -info: {} -name: dbr_W0p5_D0p1_N100_L0p0_c9156e45 -settings: - cross_section: strip - dw: 0.1 - l1: 0.079 - l2: 0.079 - n: 100 - w0: 0.5 diff --git a/tests/test_si220_cband/test_settings_dbr_cavity_.yml b/tests/test_si220_cband/test_settings_dbr_cavity_.yml deleted file mode 100644 index c516fb72..00000000 --- a/tests/test_si220_cband/test_settings_dbr_cavity_.yml +++ /dev/null @@ -1,5 +0,0 @@ -info: {} -name: dbr_cavity_Ddbr_Ccoupler -settings: - coupler: coupler - dbr: dbr diff --git a/tests/test_si220_cband/test_settings_dbr_cavity_te_.yml b/tests/test_si220_cband/test_settings_dbr_cavity_te_.yml deleted file mode 100644 index 4f55e955..00000000 --- a/tests/test_si220_cband/test_settings_dbr_cavity_te_.yml +++ /dev/null @@ -1,4 +0,0 @@ -info: {} -name: dbr_cavity_te_Cdbr_cavity -settings: - component: dbr_cavity diff --git a/tests/test_si220_cband/test_settings_die_.yml b/tests/test_si220_cband/test_settings_die_.yml deleted file mode 100644 index e3e4ff8f..00000000 --- a/tests/test_si220_cband/test_settings_die_.yml +++ /dev/null @@ -1,7 +0,0 @@ -info: {} -name: die_S440_470_CFalse -settings: - centered: false - size: - - 440 - - 470 diff --git a/tests/test_si220_cband/test_settings_ebeam_BondPad_.yml b/tests/test_si220_cband/test_settings_ebeam_BondPad_.yml deleted file mode 100644 index d998cc6a..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_BondPad_.yml +++ /dev/null @@ -1,4 +0,0 @@ -info: {} -name: ebeam_BondPad -ports: {} -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_BondPad_75_.yml b/tests/test_si220_cband/test_settings_ebeam_BondPad_75_.yml deleted file mode 100644 index 1108d127..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_BondPad_75_.yml +++ /dev/null @@ -1,4 +0,0 @@ -info: {} -name: ebeam_BondPad_75 -ports: {} -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_DC_2m1_te895_.yml b/tests/test_si220_cband/test_settings_ebeam_DC_2m1_te895_.yml deleted file mode 100644 index ad065b1a..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_DC_2m1_te895_.yml +++ /dev/null @@ -1,40 +0,0 @@ -info: {} -name: ebeam_DC_2m1_te895 -ports: - o1: - center: - - -14.56 - - -2.285 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.45 - o2: - center: - - -14.56 - - 2.285 - layer: WG - name: o2 - orientation: 180 - port_type: optical - width: 0.45 - o3: - center: - - 14.56 - - 2.285 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.45 - o4: - center: - - 14.56 - - -2.285 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.45 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_DC_te895_.yml b/tests/test_si220_cband/test_settings_ebeam_DC_te895_.yml deleted file mode 100644 index ec36d4a1..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_DC_te895_.yml +++ /dev/null @@ -1,40 +0,0 @@ -info: {} -name: ebeam_DC_te895 -ports: - o1: - center: - - -14.137 - - -2.285 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.45 - o2: - center: - - -14.137 - - 2.285 - layer: WG - name: o2 - orientation: 180 - port_type: optical - width: 0.45 - o3: - center: - - 14.137 - - 2.285 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.45 - o4: - center: - - 14.137 - - -2.285 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.45 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_MMI_2x2_5050_te1310_.yml b/tests/test_si220_cband/test_settings_ebeam_MMI_2x2_5050_te1310_.yml deleted file mode 100644 index f32717e7..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_MMI_2x2_5050_te1310_.yml +++ /dev/null @@ -1,40 +0,0 @@ -info: {} -name: ebeam_MMI_2x2_5050_te1310 -ports: - o1: - center: - - -16.72 - - -1.2 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.8 - o2: - center: - - -16.72 - - 1.2 - layer: WG - name: o2 - orientation: 180 - port_type: optical - width: 0.8 - o3: - center: - - 16.72 - - 1.2 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.8 - o4: - center: - - 16.72 - - -1.2 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.8 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_Polarizer_TM_1550_UQAM_.yml b/tests/test_si220_cband/test_settings_ebeam_Polarizer_TM_1550_UQAM_.yml deleted file mode 100644 index 17b01821..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_Polarizer_TM_1550_UQAM_.yml +++ /dev/null @@ -1,3 +0,0 @@ -info: {} -name: ebeam_Polarizer_TM_1550_UQAM -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_YBranch_895_.yml b/tests/test_si220_cband/test_settings_ebeam_YBranch_895_.yml deleted file mode 100644 index 36cd4b17..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_YBranch_895_.yml +++ /dev/null @@ -1,31 +0,0 @@ -info: {} -name: ebeam_YBranch_895 -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.45 - o2: - center: - - 15 - - 2.75 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.45 - o3: - center: - - 15 - - -2.75 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.45 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_YBranch_te1310_.yml b/tests/test_si220_cband/test_settings_ebeam_YBranch_te1310_.yml deleted file mode 100644 index f60414f0..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_YBranch_te1310_.yml +++ /dev/null @@ -1,31 +0,0 @@ -info: {} -name: ebeam_YBranch_te1310 -ports: - o1: - center: - - -7.69 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.8 - o2: - center: - - 15.5 - - 1 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.8 - o3: - center: - - 15.5 - - -1 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.8 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_adiabatic_te1550_.yml b/tests/test_si220_cband/test_settings_ebeam_adiabatic_te1550_.yml deleted file mode 100644 index cee9e2d7..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_adiabatic_te1550_.yml +++ /dev/null @@ -1,40 +0,0 @@ -info: {} -name: ebeam_adiabatic_te1550 -ports: - o1: - center: - - 0.1 - - -1.5 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 0.1 - - 1.5 - layer: WG - name: o2 - orientation: 180 - port_type: optical - width: 0.5 - o3: - center: - - 195.9 - - 1.5 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.5 - o4: - center: - - 195.9 - - -1.5 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_adiabatic_tm1550_.yml b/tests/test_si220_cband/test_settings_ebeam_adiabatic_tm1550_.yml deleted file mode 100644 index 2a04cdf1..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_adiabatic_tm1550_.yml +++ /dev/null @@ -1,40 +0,0 @@ -info: {} -name: ebeam_adiabatic_tm1550 -ports: - o1: - center: - - 0.1 - - -1.5 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 0.1 - - 1.5 - layer: WG - name: o2 - orientation: 180 - port_type: optical - width: 0.5 - o3: - center: - - 217.9 - - 1.5 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.5 - o4: - center: - - 217.9 - - -1.5 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_bdc_te1550_.yml b/tests/test_si220_cband/test_settings_ebeam_bdc_te1550_.yml deleted file mode 100644 index 8e9fa16a..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_bdc_te1550_.yml +++ /dev/null @@ -1,40 +0,0 @@ -info: {} -name: ebeam_bdc_te1550 -ports: - o1: - center: - - -35.45 - - -2.35 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - -35.45 - - 2.35 - layer: WG - name: o2 - orientation: 180 - port_type: optical - width: 0.5 - o3: - center: - - 35.3 - - 2.35 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.5 - o4: - center: - - 35.3 - - -2.35 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_bdc_tm1550_.yml b/tests/test_si220_cband/test_settings_ebeam_bdc_tm1550_.yml deleted file mode 100644 index 401102fb..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_bdc_tm1550_.yml +++ /dev/null @@ -1,40 +0,0 @@ -info: {} -name: ebeam_bdc_tm1550 -ports: - o1: - center: - - 0.1 - - -2.4 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 0.1 - - 2.4 - layer: WG - name: o2 - orientation: 180 - port_type: optical - width: 0.5 - o3: - center: - - 35.7 - - 2.4 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.5 - o4: - center: - - 35.7 - - -2.4 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_crossing4_.yml b/tests/test_si220_cband/test_settings_ebeam_crossing4_.yml deleted file mode 100644 index c6c8a8fa..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_crossing4_.yml +++ /dev/null @@ -1,40 +0,0 @@ -info: {} -name: ebeam_crossing4 -ports: - o1: - center: - - -4.8 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 0 - - 4.8 - layer: WG - name: o2 - orientation: 90 - port_type: optical - width: 0.5 - o3: - center: - - 4.8 - - 0 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.5 - o4: - center: - - 0 - - -4.8 - layer: WG - name: o4 - orientation: 270 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_crossing4_2ports_.yml b/tests/test_si220_cband/test_settings_ebeam_crossing4_2ports_.yml deleted file mode 100644 index 0cf5ad7f..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_crossing4_2ports_.yml +++ /dev/null @@ -1,3 +0,0 @@ -info: {} -name: ebeam_crossing4_2ports -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_dc_te1550_.yml b/tests/test_si220_cband/test_settings_ebeam_dc_te1550_.yml deleted file mode 100644 index c89b8242..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_dc_te1550_.yml +++ /dev/null @@ -1,12 +0,0 @@ -info: - min_bend_radius: 11.857 - path_length: 40.372 -name: coupler_gdsfactorypcomp_75dd060a -settings: - allow_min_radius_violation: false - bend: bend_s - cross_section: strip - dx: 10 - dy: 4 - gap: 0.236 - length: 20 diff --git a/tests/test_si220_cband/test_settings_ebeam_dream_FAVE_SiN_1310_BB_.yml b/tests/test_si220_cband/test_settings_ebeam_dream_FAVE_SiN_1310_BB_.yml deleted file mode 100644 index 534434e0..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_dream_FAVE_SiN_1310_BB_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_dream_FAVE_SiN_1310_BB -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.75 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_dream_FAVE_SiN_1550_BB_.yml b/tests/test_si220_cband/test_settings_ebeam_dream_FAVE_SiN_1550_BB_.yml deleted file mode 100644 index d804e634..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_dream_FAVE_SiN_1550_BB_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_dream_FAVE_SiN_1550_BB -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.75 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_dream_FAVE_Si_1310_BB_.yml b/tests/test_si220_cband/test_settings_ebeam_dream_FAVE_Si_1310_BB_.yml deleted file mode 100644 index 21a93aee..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_dream_FAVE_Si_1310_BB_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_dream_FAVE_Si_1310_BB -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.75 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_dream_FAVE_Si_1550_BB_.yml b/tests/test_si220_cband/test_settings_ebeam_dream_FAVE_Si_1550_BB_.yml deleted file mode 100644 index 856861b5..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_dream_FAVE_Si_1550_BB_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_dream_FAVE_Si_1550_BB -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.75 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_dream_FaML_SiN_1550_BB_.yml b/tests/test_si220_cband/test_settings_ebeam_dream_FaML_SiN_1550_BB_.yml deleted file mode 100644 index 030a802b..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_dream_FaML_SiN_1550_BB_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_dream_FaML_SiN_1550_BB -ports: - o1: - center: - - 110 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.75 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_dream_FaML_Si_1310_BB_.yml b/tests/test_si220_cband/test_settings_ebeam_dream_FaML_Si_1310_BB_.yml deleted file mode 100644 index d09a5c9e..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_dream_FaML_Si_1310_BB_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_dream_FaML_Si_1310_BB -ports: - o1: - center: - - 100 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.35 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_dream_FaML_Si_1550_BB_.yml b/tests/test_si220_cband/test_settings_ebeam_dream_FaML_Si_1550_BB_.yml deleted file mode 100644 index e82af229..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_dream_FaML_Si_1550_BB_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_dream_FaML_Si_1550_BB -ports: - o1: - center: - - 100 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_dream_splitter_1x2_te1550_BB_.yml b/tests/test_si220_cband/test_settings_ebeam_dream_splitter_1x2_te1550_BB_.yml deleted file mode 100644 index 1353bf09..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_dream_splitter_1x2_te1550_BB_.yml +++ /dev/null @@ -1,31 +0,0 @@ -info: {} -name: ebeam_dream_splitter_1x2_te1550_BB -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 29.791 - - 0.75 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 - o3: - center: - - 29.791 - - -0.75 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_gc_te1310_.yml b/tests/test_si220_cband/test_settings_ebeam_gc_te1310_.yml deleted file mode 100644 index ae4695aa..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_gc_te1310_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_gc_te1310 -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.35 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_gc_te1310_broadband_.yml b/tests/test_si220_cband/test_settings_ebeam_gc_te1310_broadband_.yml deleted file mode 100644 index f22cf26e..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_gc_te1310_broadband_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_gc_te1310_broadband -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.35 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_gc_te1550_.yml b/tests/test_si220_cband/test_settings_ebeam_gc_te1550_.yml deleted file mode 100644 index 03c502df..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_gc_te1550_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_gc_te1550 -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_gc_te1550_90nmSlab_.yml b/tests/test_si220_cband/test_settings_ebeam_gc_te1550_90nmSlab_.yml deleted file mode 100644 index c12a52bd..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_gc_te1550_90nmSlab_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_gc_te1550_90nmSlab -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_gc_te1550_broadband_.yml b/tests/test_si220_cband/test_settings_ebeam_gc_te1550_broadband_.yml deleted file mode 100644 index 3e9db784..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_gc_te1550_broadband_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_gc_te1550_broadband -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_gc_te895_.yml b/tests/test_si220_cband/test_settings_ebeam_gc_te895_.yml deleted file mode 100644 index debba3f9..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_gc_te895_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_gc_te895 -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.45 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_gc_tm1550_.yml b/tests/test_si220_cband/test_settings_ebeam_gc_tm1550_.yml deleted file mode 100644 index 34b27953..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_gc_tm1550_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_gc_tm1550 -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_routing_taper_te1550_w500nm_to_w3000nm_L20um_.yml b/tests/test_si220_cband/test_settings_ebeam_routing_taper_te1550_w500nm_to_w3000nm_L20um_.yml deleted file mode 100644 index de42ad01..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_routing_taper_te1550_w500nm_to_w3000nm_L20um_.yml +++ /dev/null @@ -1,22 +0,0 @@ -info: {} -name: ebeam_routing_taper_te1550_w500nm_to_w3000nm_L20um -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 20 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 3 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_routing_taper_te1550_w500nm_to_w3000nm_L40um_.yml b/tests/test_si220_cband/test_settings_ebeam_routing_taper_te1550_w500nm_to_w3000nm_L40um_.yml deleted file mode 100644 index 77bea8a9..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_routing_taper_te1550_w500nm_to_w3000nm_L40um_.yml +++ /dev/null @@ -1,22 +0,0 @@ -info: {} -name: ebeam_routing_taper_te1550_w500nm_to_w3000nm_L40um -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 40 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 3 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_sin_dream_splitter1x2_te1550_BB_.yml b/tests/test_si220_cband/test_settings_ebeam_sin_dream_splitter1x2_te1550_BB_.yml deleted file mode 100644 index f4b116f5..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_sin_dream_splitter1x2_te1550_BB_.yml +++ /dev/null @@ -1,31 +0,0 @@ -info: {} -name: ebeam_sin_dream_splitter1x2_te1550_BB -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.8 - o2: - center: - - 45.418 - - 2.25 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.8 - o3: - center: - - 45.418 - - -2.25 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.8 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_splitter_adiabatic_swg_te1550_.yml b/tests/test_si220_cband/test_settings_ebeam_splitter_adiabatic_swg_te1550_.yml deleted file mode 100644 index fb54262a..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_splitter_adiabatic_swg_te1550_.yml +++ /dev/null @@ -1,40 +0,0 @@ -info: {} -name: ebeam_splitter_adiabatic_swg_te1550 -ports: - o1: - center: - - 0 - - 20.31 - layer: WG - name: o1 - orientation: 90 - port_type: optical - width: 0.5 - o2: - center: - - 0 - - -20.31 - layer: WG - name: o2 - orientation: 90 - port_type: optical - width: 0.5 - o3: - center: - - 82 - - 20.31 - layer: WG - name: o3 - orientation: 90 - port_type: optical - width: 0.5 - o4: - center: - - 82 - - -20.31 - layer: WG - name: o4 - orientation: 270 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_splitter_swg_assist_te1310_.yml b/tests/test_si220_cband/test_settings_ebeam_splitter_swg_assist_te1310_.yml deleted file mode 100644 index 187dba6b..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_splitter_swg_assist_te1310_.yml +++ /dev/null @@ -1,40 +0,0 @@ -info: {} -name: ebeam_splitter_swg_assist_te1310 -ports: - o1: - center: - - -63.001 - - -2 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.35 - o2: - center: - - -63.001 - - 2 - layer: WG - name: o2 - orientation: 180 - port_type: optical - width: 0.35 - o3: - center: - - 63.001 - - 2 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.35 - o4: - center: - - 63.001 - - -2 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.35 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_splitter_swg_assist_te1310_ANT_.yml b/tests/test_si220_cband/test_settings_ebeam_splitter_swg_assist_te1310_ANT_.yml deleted file mode 100644 index cb819c07..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_splitter_swg_assist_te1310_ANT_.yml +++ /dev/null @@ -1,40 +0,0 @@ -info: {} -name: ebeam_splitter_swg_assist_te1310_ANT -ports: - o1: - center: - - -63.001 - - -2 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.35 - o2: - center: - - -63.001 - - 2 - layer: WG - name: o2 - orientation: 180 - port_type: optical - width: 0.35 - o3: - center: - - 63.001 - - 2 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.35 - o4: - center: - - 63.001 - - -2 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.35 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_splitter_swg_assist_te1550_.yml b/tests/test_si220_cband/test_settings_ebeam_splitter_swg_assist_te1550_.yml deleted file mode 100644 index e5019eba..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_splitter_swg_assist_te1550_.yml +++ /dev/null @@ -1,40 +0,0 @@ -info: {} -name: ebeam_splitter_swg_assist_te1550 -ports: - o1: - center: - - -63.001 - - -1.975 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - -63.001 - - 1.975 - layer: WG - name: o2 - orientation: 180 - port_type: optical - width: 0.5 - o3: - center: - - 63.001 - - 1.975 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.5 - o4: - center: - - 63.001 - - -1.975 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_splitter_swg_assist_te1550_ANT_.yml b/tests/test_si220_cband/test_settings_ebeam_splitter_swg_assist_te1550_ANT_.yml deleted file mode 100644 index db78b17f..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_splitter_swg_assist_te1550_ANT_.yml +++ /dev/null @@ -1,40 +0,0 @@ -info: {} -name: ebeam_splitter_swg_assist_te1550_ANT -ports: - o1: - center: - - -63.001 - - -2 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - -63.001 - - 2 - layer: WG - name: o2 - orientation: 180 - port_type: optical - width: 0.5 - o3: - center: - - 63.001 - - 2 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.5 - o4: - center: - - 63.001 - - -2 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_swg_edgecoupler_.yml b/tests/test_si220_cband/test_settings_ebeam_swg_edgecoupler_.yml deleted file mode 100644 index d8e3ca09..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_swg_edgecoupler_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_swg_edgecoupler -ports: - o1: - center: - - -79.3 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_terminator_SiN_1310_.yml b/tests/test_si220_cband/test_settings_ebeam_terminator_SiN_1310_.yml deleted file mode 100644 index 1255068e..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_terminator_SiN_1310_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_terminator_SiN_1310 -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.8 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_terminator_SiN_1550_.yml b/tests/test_si220_cband/test_settings_ebeam_terminator_SiN_1550_.yml deleted file mode 100644 index 835048f4..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_terminator_SiN_1550_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_terminator_SiN_1550 -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.75 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_terminator_SiN_te895_.yml b/tests/test_si220_cband/test_settings_ebeam_terminator_SiN_te895_.yml deleted file mode 100644 index 59591e56..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_terminator_SiN_te895_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_terminator_SiN_te895 -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.45 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_terminator_te1310_.yml b/tests/test_si220_cband/test_settings_ebeam_terminator_te1310_.yml deleted file mode 100644 index 3a55bda3..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_terminator_te1310_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_terminator_te1310 -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.35 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_terminator_te1550_.yml b/tests/test_si220_cband/test_settings_ebeam_terminator_te1550_.yml deleted file mode 100644 index b356b20e..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_terminator_te1550_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_terminator_te1550 -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_terminator_tm1550_.yml b/tests/test_si220_cband/test_settings_ebeam_terminator_tm1550_.yml deleted file mode 100644 index 665e4b69..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_terminator_tm1550_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: ebeam_terminator_tm1550 -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_y_1310_.yml b/tests/test_si220_cband/test_settings_ebeam_y_1310_.yml deleted file mode 100644 index afa4686e..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_y_1310_.yml +++ /dev/null @@ -1,31 +0,0 @@ -info: {} -name: ebeam_y_1310 -ports: - o1: - center: - - -9.4 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.35 - o2: - center: - - 9.4 - - 2.75 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.35 - o3: - center: - - 9.4 - - -2.75 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.35 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_y_1550_.yml b/tests/test_si220_cband/test_settings_ebeam_y_1550_.yml deleted file mode 100644 index df99aa85..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_y_1550_.yml +++ /dev/null @@ -1,31 +0,0 @@ -info: {} -name: ebeam_y_1550 -ports: - o1: - center: - - -7.4 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 7.4 - - 2.75 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 - o3: - center: - - 7.4 - - -2.75 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_y_adiabatic_.yml b/tests/test_si220_cband/test_settings_ebeam_y_adiabatic_.yml deleted file mode 100644 index f4ad3422..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_y_adiabatic_.yml +++ /dev/null @@ -1,31 +0,0 @@ -info: {} -name: ebeam_y_adiabatic -ports: - o1: - center: - - 0.05 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.45 - o2: - center: - - 50.05 - - 1.25 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.45 - o3: - center: - - 50.05 - - -1.25 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.45 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_y_adiabatic_1310_.yml b/tests/test_si220_cband/test_settings_ebeam_y_adiabatic_1310_.yml deleted file mode 100644 index 03e5d33f..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_y_adiabatic_1310_.yml +++ /dev/null @@ -1,31 +0,0 @@ -info: {} -name: ebeam_y_adiabatic_1310 -ports: - o1: - center: - - 0.05 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.35 - o2: - center: - - 52.05 - - 1.25 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.35 - o3: - center: - - 52.05 - - -1.25 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.35 -settings: {} diff --git a/tests/test_si220_cband/test_settings_ebeam_y_adiabatic_500pin_.yml b/tests/test_si220_cband/test_settings_ebeam_y_adiabatic_500pin_.yml deleted file mode 100644 index ab152425..00000000 --- a/tests/test_si220_cband/test_settings_ebeam_y_adiabatic_500pin_.yml +++ /dev/null @@ -1,31 +0,0 @@ -info: {} -name: ebeam_y_adiabatic_500pin -ports: - o1: - center: - - -1 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 51 - - 1.25 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 - o3: - center: - - 51 - - -1.25 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_gc_te1310_.yml b/tests/test_si220_cband/test_settings_gc_te1310_.yml deleted file mode 100644 index c4441de0..00000000 --- a/tests/test_si220_cband/test_settings_gc_te1310_.yml +++ /dev/null @@ -1,5 +0,0 @@ -info: - polarization: te - wavelength: 1.31 -name: gc_te1310 -settings: {} diff --git a/tests/test_si220_cband/test_settings_gc_te1310_8deg_.yml b/tests/test_si220_cband/test_settings_gc_te1310_8deg_.yml deleted file mode 100644 index 9d59ee13..00000000 --- a/tests/test_si220_cband/test_settings_gc_te1310_8deg_.yml +++ /dev/null @@ -1,5 +0,0 @@ -info: - polarization: te - wavelength: 1.31 -name: gc_te1310_8deg -settings: {} diff --git a/tests/test_si220_cband/test_settings_gc_te1310_broadband_.yml b/tests/test_si220_cband/test_settings_gc_te1310_broadband_.yml deleted file mode 100644 index 7e072868..00000000 --- a/tests/test_si220_cband/test_settings_gc_te1310_broadband_.yml +++ /dev/null @@ -1,5 +0,0 @@ -info: - polarization: te - wavelength: 1.31 -name: gc_te1310_broadband -settings: {} diff --git a/tests/test_si220_cband/test_settings_gc_te1550_.yml b/tests/test_si220_cband/test_settings_gc_te1550_.yml deleted file mode 100644 index b3a00725..00000000 --- a/tests/test_si220_cband/test_settings_gc_te1550_.yml +++ /dev/null @@ -1,5 +0,0 @@ -info: - polarization: te - wavelength: 1.55 -name: gc_te1550 -settings: {} diff --git a/tests/test_si220_cband/test_settings_gc_te1550_90nmSlab_.yml b/tests/test_si220_cband/test_settings_gc_te1550_90nmSlab_.yml deleted file mode 100644 index 3cfc1d9f..00000000 --- a/tests/test_si220_cband/test_settings_gc_te1550_90nmSlab_.yml +++ /dev/null @@ -1,5 +0,0 @@ -info: - polarization: te - wavelength: 1.55 -name: gc_te1550_90nmSlab -settings: {} diff --git a/tests/test_si220_cband/test_settings_gc_te1550_broadband_.yml b/tests/test_si220_cband/test_settings_gc_te1550_broadband_.yml deleted file mode 100644 index 0c2a0cc4..00000000 --- a/tests/test_si220_cband/test_settings_gc_te1550_broadband_.yml +++ /dev/null @@ -1,5 +0,0 @@ -info: - polarization: te - wavelength: 1.55 -name: gc_te1550_broadband -settings: {} diff --git a/tests/test_si220_cband/test_settings_gc_tm1550_.yml b/tests/test_si220_cband/test_settings_gc_tm1550_.yml deleted file mode 100644 index bba19da1..00000000 --- a/tests/test_si220_cband/test_settings_gc_tm1550_.yml +++ /dev/null @@ -1,5 +0,0 @@ -info: - polarization: tm - wavelength: 1.55 -name: gc_tm1550 -settings: {} diff --git a/tests/test_si220_cband/test_settings_grating_coupler_elliptical_.yml b/tests/test_si220_cband/test_settings_grating_coupler_elliptical_.yml deleted file mode 100644 index 1a0f0689..00000000 --- a/tests/test_si220_cband/test_settings_grating_coupler_elliptical_.yml +++ /dev/null @@ -1,27 +0,0 @@ -info: - polarization: te - wavelength: 1.55 -name: grating_coupler_elliptical_W1p55_GLW0p315_CSstrip -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 16 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: vertical_te - width: 10 -settings: - cross_section: strip - grating_line_width: 0.315 - wavelength: 1.55 diff --git a/tests/test_si220_cband/test_settings_metal_via_.yml b/tests/test_si220_cband/test_settings_metal_via_.yml deleted file mode 100644 index 57543668..00000000 --- a/tests/test_si220_cband/test_settings_metal_via_.yml +++ /dev/null @@ -1,4 +0,0 @@ -info: {} -name: metal_via -ports: {} -settings: {} diff --git a/tests/test_si220_cband/test_settings_mmi1x2_.yml b/tests/test_si220_cband/test_settings_mmi1x2_.yml deleted file mode 100644 index d103a9d0..00000000 --- a/tests/test_si220_cband/test_settings_mmi1x2_.yml +++ /dev/null @@ -1,37 +0,0 @@ -info: {} -name: mmi1x2_WNone_WT1p5_LT20_LM31_WM6_GM1p64_CSstrip -ports: - o1: - center: - - -20 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 51 - - 1.57 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 - o3: - center: - - 51 - - -1.57 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.5 -settings: - cross_section: strip - gap_mmi: 1.64 - length_mmi: 31 - length_taper: 20 - width_mmi: 6 - width_taper: 1.5 diff --git a/tests/test_si220_cband/test_settings_mmi2x2_.yml b/tests/test_si220_cband/test_settings_mmi2x2_.yml deleted file mode 100644 index 695a0118..00000000 --- a/tests/test_si220_cband/test_settings_mmi2x2_.yml +++ /dev/null @@ -1,46 +0,0 @@ -info: {} -name: mmi2x2_WNone_WT1p5_LT20_LM42p5_WM6_GM0p5_CSstrip -ports: - o1: - center: - - -20 - - -1 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - -20 - - 1 - layer: WG - name: o2 - orientation: 180 - port_type: optical - width: 0.5 - o3: - center: - - 62.5 - - 1 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.5 - o4: - center: - - 62.5 - - -1 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.5 -settings: - cross_section: strip - gap_mmi: 0.5 - length_mmi: 42.5 - length_taper: 20 - width_mmi: 6 - width_taper: 1.5 diff --git a/tests/test_si220_cband/test_settings_mzi_.yml b/tests/test_si220_cband/test_settings_mzi_.yml deleted file mode 100644 index 9af22e9c..00000000 --- a/tests/test_si220_cband/test_settings_mzi_.yml +++ /dev/null @@ -1,49 +0,0 @@ -info: {} -name: mzi_DL10_Bbend_euler_Sstraight_Scoupler_CNone_PESo3_PES_a38bc3c2 -ports: - o1: - center: - - -10 - - -1.65 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - -10 - - 2.35 - layer: WG - name: o2 - orientation: 180 - port_type: optical - width: 0.5 - o3: - center: - - 99.1 - - 2.35 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.5 - o4: - center: - - 99.1 - - -1.65 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.5 -settings: - bend: bend_euler - cross_section: strip - delta_length: 10 - port_e0_combiner: o4 - port_e0_splitter: o4 - port_e1_combiner: o3 - port_e1_splitter: o3 - splitter: coupler - straight: straight diff --git a/tests/test_si220_cband/test_settings_mzi_1x1_.yml b/tests/test_si220_cband/test_settings_mzi_1x1_.yml deleted file mode 100644 index 93bc330b..00000000 --- a/tests/test_si220_cband/test_settings_mzi_1x1_.yml +++ /dev/null @@ -1,31 +0,0 @@ -info: {} -name: mzi_1x1_DL10_Bbend_euler_Sstraight_Sebeam_y_1550_CNone__3ed2b238 -ports: - o1: - center: - - -7.4 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 62.3 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 -settings: - bend: bend_euler - cross_section: strip - delta_length: 10 - port_e0_combiner: o3 - port_e0_splitter: o3 - port_e1_combiner: o2 - port_e1_splitter: o2 - splitter: ebeam_y_1550 - straight: straight diff --git a/tests/test_si220_cband/test_settings_mzi_heater_.yml b/tests/test_si220_cband/test_settings_mzi_heater_.yml deleted file mode 100644 index 7644d26e..00000000 --- a/tests/test_si220_cband/test_settings_mzi_heater_.yml +++ /dev/null @@ -1,5 +0,0 @@ -info: {} -name: mzi_heater_DL10_LX320 -settings: - delta_length: 10 - length_x: 320 diff --git a/tests/test_si220_cband/test_settings_mzi_heater_2x2_.yml b/tests/test_si220_cband/test_settings_mzi_heater_2x2_.yml deleted file mode 100644 index d99c8d04..00000000 --- a/tests/test_si220_cband/test_settings_mzi_heater_2x2_.yml +++ /dev/null @@ -1,117 +0,0 @@ -info: {} -name: mzi_heater_2x2_DL10_LX200_Smmi2x2_Cmmi2x2_SXTstraight_h_faf6584c -ports: - e1: - center: - - 57.6 - - 23 - layer: M2_ROUTER - name: e1 - orientation: 180 - port_type: electrical - width: 10 - e2: - center: - - 287.4 - - 23 - layer: M2_ROUTER - name: e2 - orientation: 180 - port_type: electrical - width: 10 - e3: - center: - - 67.6 - - 28 - layer: M2_ROUTER - name: e3 - orientation: 90 - port_type: electrical - width: 20 - e4: - center: - - 297.4 - - 28 - layer: M2_ROUTER - name: e4 - orientation: 90 - port_type: electrical - width: 20 - e5: - center: - - 307.4 - - 23 - layer: M2_ROUTER - name: e5 - orientation: 0 - port_type: electrical - width: 10 - e6: - center: - - 77.6 - - 23 - layer: M2_ROUTER - name: e6 - orientation: 0 - port_type: electrical - width: 10 - e7: - center: - - 297.4 - - 18 - layer: M2_ROUTER - name: e7 - orientation: 270 - port_type: electrical - width: 20 - e8: - center: - - 67.6 - - 18 - layer: M2_ROUTER - name: e8 - orientation: 270 - port_type: electrical - width: 20 - o1: - center: - - -20 - - -1 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - -20 - - 1 - layer: WG - name: o2 - orientation: 180 - port_type: optical - width: 0.5 - o3: - center: - - 385 - - 1 - layer: WG - name: o3 - orientation: 0 - port_type: optical - width: 0.5 - o4: - center: - - 385 - - -1 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.5 -settings: - combiner: mmi2x2 - delta_length: 10 - length_x: 200 - splitter: mmi2x2 - straight_x_top: straight_heater_metal diff --git a/tests/test_si220_cband/test_settings_pad_.yml b/tests/test_si220_cband/test_settings_pad_.yml deleted file mode 100644 index 3d9d6dd5..00000000 --- a/tests/test_si220_cband/test_settings_pad_.yml +++ /dev/null @@ -1,65 +0,0 @@ -info: - size: - - 90 - - 90 - xsize: 90 - ysize: 90 -name: pad_S90_90_LMTOP_PI0_PO0_PO180_90_0_m90 -ports: - e1: - center: - - -45 - - 0 - layer: M2_ROUTER - name: e1 - orientation: 180 - port_type: electrical - width: 90 - e2: - center: - - 0 - - 45 - layer: M2_ROUTER - name: e2 - orientation: 90 - port_type: electrical - width: 90 - e3: - center: - - 45 - - 0 - layer: M2_ROUTER - name: e3 - orientation: 0 - port_type: electrical - width: 90 - e4: - center: - - 0 - - -45 - layer: M2_ROUTER - name: e4 - orientation: 270 - port_type: electrical - width: 90 - pad: - center: - - 0 - - 0 - layer: M2_ROUTER - name: pad - orientation: 0 - port_type: pad - width: 90 -settings: - layer: MTOP - port_inclusion: 0 - port_orientation: 0 - port_orientations: - - 180 - - 90 - - 0 - - -90 - size: - - 90 - - 90 diff --git a/tests/test_si220_cband/test_settings_pad_array_.yml b/tests/test_si220_cband/test_settings_pad_array_.yml deleted file mode 100644 index 36d6bfa8..00000000 --- a/tests/test_si220_cband/test_settings_pad_array_.yml +++ /dev/null @@ -1,66 +0,0 @@ -info: {} -name: pad_array_Ppad_C6_R1_CP125_RP125_PO270_SNone_LNone_CPFa_49f06d2d -ports: - e11: - center: - - 0 - - -45 - layer: M2_ROUTER - name: e11 - orientation: 270 - port_type: electrical - width: 90 - e12: - center: - - 125 - - -45 - layer: M2_ROUTER - name: e12 - orientation: 270 - port_type: electrical - width: 90 - e13: - center: - - 250 - - -45 - layer: M2_ROUTER - name: e13 - orientation: 270 - port_type: electrical - width: 90 - e14: - center: - - 375 - - -45 - layer: M2_ROUTER - name: e14 - orientation: 270 - port_type: electrical - width: 90 - e15: - center: - - 500 - - -45 - layer: M2_ROUTER - name: e15 - orientation: 270 - port_type: electrical - width: 90 - e16: - center: - - 625 - - -45 - layer: M2_ROUTER - name: e16 - orientation: 270 - port_type: electrical - width: 90 -settings: - auto_rename_ports: false - centered_ports: false - column_pitch: 125 - columns: 6 - pad: pad - port_orientation: 270 - row_pitch: 125 - rows: 1 diff --git a/tests/test_si220_cband/test_settings_pbs_1550_eskid_.yml b/tests/test_si220_cband/test_settings_pbs_1550_eskid_.yml deleted file mode 100644 index 63b9c5fe..00000000 --- a/tests/test_si220_cband/test_settings_pbs_1550_eskid_.yml +++ /dev/null @@ -1,4 +0,0 @@ -info: {} -name: pbs_1550_eskid -ports: {} -settings: {} diff --git a/tests/test_si220_cband/test_settings_photonic_wirebond_surfacetaper_1310_.yml b/tests/test_si220_cband/test_settings_photonic_wirebond_surfacetaper_1310_.yml deleted file mode 100644 index f59fb9a6..00000000 --- a/tests/test_si220_cband/test_settings_photonic_wirebond_surfacetaper_1310_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: photonic_wirebond_surfacetaper_1310 -ports: - o1: - center: - - 110 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.35 -settings: {} diff --git a/tests/test_si220_cband/test_settings_photonic_wirebond_surfacetaper_1550_.yml b/tests/test_si220_cband/test_settings_photonic_wirebond_surfacetaper_1550_.yml deleted file mode 100644 index 116ccd1b..00000000 --- a/tests/test_si220_cband/test_settings_photonic_wirebond_surfacetaper_1550_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: photonic_wirebond_surfacetaper_1550 -ports: - o1: - center: - - 110 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_rectangle_.yml b/tests/test_si220_cband/test_settings_rectangle_.yml deleted file mode 100644 index dbf0b4d3..00000000 --- a/tests/test_si220_cband/test_settings_rectangle_.yml +++ /dev/null @@ -1,14 +0,0 @@ -info: {} -name: rectangle_S4_2_LMTOP_CFalse_PTNone_PO180_90_0_m90 -ports: {} -settings: - centered: false - layer: MTOP - port_orientations: - - 180 - - 90 - - 0 - - -90 - size: - - 4 - - 2 diff --git a/tests/test_si220_cband/test_settings_ring_double_.yml b/tests/test_si220_cband/test_settings_ring_double_.yml deleted file mode 100644 index 659021d9..00000000 --- a/tests/test_si220_cband/test_settings_ring_double_.yml +++ /dev/null @@ -1,47 +0,0 @@ -info: - radius: 10 -name: ring_double_G0p2_GTNone_GBNone_R10_LX0p01_LY0p01_CSstrip_LE10 -ports: - o1: - center: - - -10.01 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 10 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 - o3: - center: - - -10.01 - - 21.41 - layer: WG - name: o3 - orientation: 180 - port_type: optical - width: 0.5 - o4: - center: - - 10 - - 21.41 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.5 -settings: - cross_section: strip - gap: 0.2 - length_extension: 10 - length_x: 0.01 - length_y: 0.01 - radius: 10 diff --git a/tests/test_si220_cband/test_settings_ring_double_heater_.yml b/tests/test_si220_cband/test_settings_ring_double_heater_.yml deleted file mode 100644 index 29801ecf..00000000 --- a/tests/test_si220_cband/test_settings_ring_double_heater_.yml +++ /dev/null @@ -1,129 +0,0 @@ -info: {} -name: ring_double_heater_G0p2_GTNone_GBNone_R10_LX2_LY0p01_CR_a228e391 -ports: - l_e1: - center: - - -7 - - 0 - layer: M2_ROUTER - name: l_e1 - orientation: 180 - port_type: electrical - width: 4 - l_e2: - center: - - -5 - - 2 - layer: M2_ROUTER - name: l_e2 - orientation: 90 - port_type: electrical - width: 4 - l_e3: - center: - - -3 - - 0 - layer: M2_ROUTER - name: l_e3 - orientation: 0 - port_type: electrical - width: 4 - l_e4: - center: - - -5 - - -2 - layer: M2_ROUTER - name: l_e4 - orientation: 270 - port_type: electrical - width: 4 - o1: - center: - - -15 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 13 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 - o3: - center: - - -15 - - 21.41 - layer: WG - name: o3 - orientation: 180 - port_type: optical - width: 0.5 - o4: - center: - - 13 - - 21.41 - layer: WG - name: o4 - orientation: 0 - port_type: optical - width: 0.5 - r_e1: - center: - - 1 - - 0 - layer: M2_ROUTER - name: r_e1 - orientation: 180 - port_type: electrical - width: 4 - r_e2: - center: - - 3 - - 2 - layer: M2_ROUTER - name: r_e2 - orientation: 90 - port_type: electrical - width: 4 - r_e3: - center: - - 5 - - 0 - layer: M2_ROUTER - name: r_e3 - orientation: 0 - port_type: electrical - width: 4 - r_e4: - center: - - 3 - - -2 - layer: M2_ROUTER - name: r_e4 - orientation: 270 - port_type: electrical - width: 4 -settings: - bend: bend_euler - coupler_ring: coupler_ring - cross_section: strip - cross_section_heater: heater_metal - cross_section_waveguide_heater: strip_heater_metal - gap: 0.2 - length_x: 2 - length_y: 0.01 - radius: 10 - straight: straight - via_stack: via_stack_heater_mtop - via_stack_offset: - - 1 - - 0 - via_stack_size: - - 4 - - 4 diff --git a/tests/test_si220_cband/test_settings_ring_single_.yml b/tests/test_si220_cband/test_settings_ring_single_.yml deleted file mode 100644 index 63eb024e..00000000 --- a/tests/test_si220_cband/test_settings_ring_single_.yml +++ /dev/null @@ -1,31 +0,0 @@ -info: - radius: 10 -name: ring_single_G0p2_R10_LX4_LY0p6_CSstrip_LE10_Bbend_euler_P0 -ports: - o1: - center: - - -14 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 10 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 -settings: - bend: bend_euler - cross_section: strip - gap: 0.2 - length_extension: 10 - length_x: 4 - length_y: 0.6 - p: 0 - radius: 10 diff --git a/tests/test_si220_cband/test_settings_ring_single_heater_.yml b/tests/test_si220_cband/test_settings_ring_single_heater_.yml deleted file mode 100644 index bb4e133f..00000000 --- a/tests/test_si220_cband/test_settings_ring_single_heater_.yml +++ /dev/null @@ -1,111 +0,0 @@ -info: {} -name: ring_single_heater_G0p2_R10_LX2_LY0p01_CRcoupler_ring_C_ffdbd82e -ports: - l_e1: - center: - - -7 - - 0 - layer: M2_ROUTER - name: l_e1 - orientation: 180 - port_type: electrical - width: 4 - l_e2: - center: - - -5 - - 2 - layer: M2_ROUTER - name: l_e2 - orientation: 90 - port_type: electrical - width: 4 - l_e3: - center: - - -3 - - 0 - layer: M2_ROUTER - name: l_e3 - orientation: 0 - port_type: electrical - width: 4 - l_e4: - center: - - -5 - - -2 - layer: M2_ROUTER - name: l_e4 - orientation: 270 - port_type: electrical - width: 4 - o1: - center: - - -15 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 13 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 - r_e1: - center: - - 1 - - 0 - layer: M2_ROUTER - name: r_e1 - orientation: 180 - port_type: electrical - width: 4 - r_e2: - center: - - 3 - - 2 - layer: M2_ROUTER - name: r_e2 - orientation: 90 - port_type: electrical - width: 4 - r_e3: - center: - - 5 - - 0 - layer: M2_ROUTER - name: r_e3 - orientation: 0 - port_type: electrical - width: 4 - r_e4: - center: - - 3 - - -2 - layer: M2_ROUTER - name: r_e4 - orientation: 270 - port_type: electrical - width: 4 -settings: - bend: bend_euler - coupler_ring: coupler_ring - cross_section: strip - cross_section_heater: heater_metal - cross_section_waveguide_heater: strip_heater_metal - gap: 0.2 - length_x: 2 - length_y: 0.01 - radius: 10 - straight: straight - via_stack: via_stack_heater_mtop - via_stack_offset: - - 1 - - 0 - via_stack_size: - - 4 - - 4 diff --git a/tests/test_si220_cband/test_settings_ring_with_crossing_.yml b/tests/test_si220_cband/test_settings_ring_with_crossing_.yml deleted file mode 100644 index 9afb8544..00000000 --- a/tests/test_si220_cband/test_settings_ring_with_crossing_.yml +++ /dev/null @@ -1,12 +0,0 @@ -info: {} -name: ring_single_dut_gdsfact_4cb12a7d -settings: - bend: bend_euler - component: ebeam_crossing4_2ports - coupler: coupler_ring - cross_section: strip - gap: 0.2 - length_x: 4 - length_y: 0 - port_name: o4 - with_component: true diff --git a/tests/test_si220_cband/test_settings_siepic_o_gc_te1270_BB_.yml b/tests/test_si220_cband/test_settings_siepic_o_gc_te1270_BB_.yml deleted file mode 100644 index 5fea95cf..00000000 --- a/tests/test_si220_cband/test_settings_siepic_o_gc_te1270_BB_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: siepic_o_gc_te1270_BB -ports: - o1: - center: - - -0.05 - - 0 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.35 -settings: {} diff --git a/tests/test_si220_cband/test_settings_siepic_o_pwbstlas_si_BB_.yml b/tests/test_si220_cband/test_settings_siepic_o_pwbstlas_si_BB_.yml deleted file mode 100644 index 41bdd109..00000000 --- a/tests/test_si220_cband/test_settings_siepic_o_pwbstlas_si_BB_.yml +++ /dev/null @@ -1,13 +0,0 @@ -info: {} -name: siepic_o_pwbstlas_si_BB -ports: - o1: - center: - - 810 - - 170.03 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.41 -settings: {} diff --git a/tests/test_si220_cband/test_settings_spiral_.yml b/tests/test_si220_cband/test_settings_spiral_.yml deleted file mode 100644 index 2f6eb236..00000000 --- a/tests/test_si220_cband/test_settings_spiral_.yml +++ /dev/null @@ -1,27 +0,0 @@ -info: - length: 2635.836 -name: spiral_L100_CSstrip_S3_NL6 -ports: - o1: - center: - - 118 - - -18 - layer: WG - name: o1 - orientation: 0 - port_type: optical - width: 0.5 - o2: - center: - - 121 - - -21 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 -settings: - cross_section: strip - length: 100 - n_loops: 6 - spacing: 3 diff --git a/tests/test_si220_cband/test_settings_spiral_racetrack_.yml b/tests/test_si220_cband/test_settings_spiral_racetrack_.yml deleted file mode 100644 index d38bf68f..00000000 --- a/tests/test_si220_cband/test_settings_spiral_racetrack_.yml +++ /dev/null @@ -1,37 +0,0 @@ -info: - length: 1081.925 -name: spiral_racetrack_MRNone_SL20_S2_2_3_3_2_2_Sstraight_Bbe_05d4c3d3 -ports: - o1: - center: - - 0 - - 14 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 20 - - -32 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 -settings: - allow_min_radius_violation: false - bend: bend_euler - bend_s: bend_s - cross_section: strip - extra_90_deg_bend: false - spacings: - - 2 - - 2 - - 3 - - 3 - - 2 - - 2 - straight: straight - straight_length: 20 diff --git a/tests/test_si220_cband/test_settings_spiral_racetrack_heater_.yml b/tests/test_si220_cband/test_settings_spiral_racetrack_heater_.yml deleted file mode 100644 index 50ec59be..00000000 --- a/tests/test_si220_cband/test_settings_spiral_racetrack_heater_.yml +++ /dev/null @@ -1,98 +0,0 @@ -info: {} -name: spiral_racetrack_heater_S4_N8_SL100_CSstrip -ports: - bot_e1: - center: - - -65.117 - - -38 - layer: M2_ROUTER - name: bot_e1 - orientation: 180 - port_type: electrical - width: 10 - bot_e2: - center: - - -55.117 - - -33 - layer: M2_ROUTER - name: bot_e2 - orientation: 90 - port_type: electrical - width: 20 - bot_e3: - center: - - -45.117 - - -38 - layer: M2_ROUTER - name: bot_e3 - orientation: 0 - port_type: electrical - width: 10 - bot_e4: - center: - - -55.117 - - -43 - layer: M2_ROUTER - name: bot_e4 - orientation: 270 - port_type: electrical - width: 20 - o1: - center: - - 0 - - 32 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 100 - - -48 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 - top_e1: - center: - - -65.117 - - 22 - layer: M2_ROUTER - name: top_e1 - orientation: 180 - port_type: electrical - width: 10 - top_e2: - center: - - -55.117 - - 27 - layer: M2_ROUTER - name: top_e2 - orientation: 90 - port_type: electrical - width: 20 - top_e3: - center: - - -45.117 - - 22 - layer: M2_ROUTER - name: top_e3 - orientation: 0 - port_type: electrical - width: 10 - top_e4: - center: - - -55.117 - - 17 - layer: M2_ROUTER - name: top_e4 - orientation: 270 - port_type: electrical - width: 20 -settings: - cross_section: strip - num: 8 - spacing: 4 - straight_length: 100 diff --git a/tests/test_si220_cband/test_settings_straight_.yml b/tests/test_si220_cband/test_settings_straight_.yml deleted file mode 100644 index 29ddb497..00000000 --- a/tests/test_si220_cband/test_settings_straight_.yml +++ /dev/null @@ -1,31 +0,0 @@ -info: - length: 10 - route_info_length: 10 - route_info_strip_length: 10 - route_info_type: strip - route_info_weight: 10 - width: 0.5 -name: straight_L10_CSstrip_WNone_N2 -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 10 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 -settings: - cross_section: strip - length: 10 - npoints: 2 diff --git a/tests/test_si220_cband/test_settings_straight_heater_meander_.yml b/tests/test_si220_cband/test_settings_straight_heater_meander_.yml deleted file mode 100644 index 43fa8f8c..00000000 --- a/tests/test_si220_cband/test_settings_straight_heater_meander_.yml +++ /dev/null @@ -1,102 +0,0 @@ -info: - length: 682.759 -name: straight_heater_meander_L320_HW2p5_S2_CSstrip_LHM1_HEAT_dab24c04 -ports: - l_e1: - center: - - -30 - - 2 - layer: M2_ROUTER - name: l_e1 - orientation: 180 - port_type: electrical - width: 10 - l_e2: - center: - - -20 - - 7 - layer: M2_ROUTER - name: l_e2 - orientation: 90 - port_type: electrical - width: 20 - l_e3: - center: - - -10 - - 2 - layer: M2_ROUTER - name: l_e3 - orientation: 0 - port_type: electrical - width: 10 - l_e4: - center: - - -20 - - -3 - layer: M2_ROUTER - name: l_e4 - orientation: 270 - port_type: electrical - width: 20 - o1: - center: - - -15 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 121.666 - - 4 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 - r_e1: - center: - - 116.666 - - 2 - layer: M2_ROUTER - name: r_e1 - orientation: 180 - port_type: electrical - width: 10 - r_e2: - center: - - 126.666 - - 7 - layer: M2_ROUTER - name: r_e2 - orientation: 90 - port_type: electrical - width: 20 - r_e3: - center: - - 136.666 - - 2 - layer: M2_ROUTER - name: r_e3 - orientation: 0 - port_type: electrical - width: 10 - r_e4: - center: - - 126.666 - - -3 - layer: M2_ROUTER - name: r_e4 - orientation: 270 - port_type: electrical - width: 20 -settings: - cross_section: strip - heater_width: 2.5 - layer_heater: M1_HEATER - length: 320 - n: 3 - spacing: 2 - via_stack: via_stack_heater_mtop diff --git a/tests/test_si220_cband/test_settings_straight_heater_metal_.yml b/tests/test_si220_cband/test_settings_straight_heater_metal_.yml deleted file mode 100644 index f28f3afa..00000000 --- a/tests/test_si220_cband/test_settings_straight_heater_metal_.yml +++ /dev/null @@ -1,103 +0,0 @@ -info: - length: 320 - resistance: 0 -name: straight_heater_metal_L320_LUS6_LU30_LS0p1_LSI15_WUFals_b966bd9a -ports: - l_e1: - center: - - -24.9 - - 0 - layer: M2_ROUTER - name: l_e1 - orientation: 180 - port_type: electrical - width: 10 - l_e2: - center: - - -14.9 - - 5 - layer: M2_ROUTER - name: l_e2 - orientation: 90 - port_type: electrical - width: 20 - l_e3: - center: - - -4.9 - - 0 - layer: M2_ROUTER - name: l_e3 - orientation: 0 - port_type: electrical - width: 10 - l_e4: - center: - - -14.9 - - -5 - layer: M2_ROUTER - name: l_e4 - orientation: 270 - port_type: electrical - width: 20 - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 320 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 - r_e1: - center: - - 324.9 - - 0 - layer: M2_ROUTER - name: r_e1 - orientation: 180 - port_type: electrical - width: 10 - r_e2: - center: - - 334.9 - - 5 - layer: M2_ROUTER - name: r_e2 - orientation: 90 - port_type: electrical - width: 20 - r_e3: - center: - - 344.9 - - 0 - layer: M2_ROUTER - name: r_e3 - orientation: 0 - port_type: electrical - width: 10 - r_e4: - center: - - 334.9 - - -5 - layer: M2_ROUTER - name: r_e4 - orientation: 270 - port_type: electrical - width: 20 -settings: - cross_section: strip - length: 320 - length_straight: 0.1 - length_straight_input: 15 - length_undercut: 30 - length_undercut_spacing: 6 - with_undercut: false diff --git a/tests/test_si220_cband/test_settings_straight_metal_.yml b/tests/test_si220_cband/test_settings_straight_metal_.yml deleted file mode 100644 index fd5d8f00..00000000 --- a/tests/test_si220_cband/test_settings_straight_metal_.yml +++ /dev/null @@ -1,30 +0,0 @@ -info: - length: 10 - route_info_length: 10 - route_info_metal_routing_length: 10 - route_info_type: metal_routing - route_info_weight: 10 - width: 10 -name: straight_metal_L10_CSmetal_routing_WNone -ports: - e1: - center: - - 0 - - 0 - layer: M2_ROUTER - name: e1 - orientation: 180 - port_type: electrical - width: 10 - e2: - center: - - 10 - - 0 - layer: M2_ROUTER - name: e2 - orientation: 0 - port_type: electrical - width: 10 -settings: - cross_section: metal_routing - length: 10 diff --git a/tests/test_si220_cband/test_settings_straight_one_pin_.yml b/tests/test_si220_cband/test_settings_straight_one_pin_.yml deleted file mode 100644 index 825ec5a1..00000000 --- a/tests/test_si220_cband/test_settings_straight_one_pin_.yml +++ /dev/null @@ -1,5 +0,0 @@ -info: {} -name: straight_one_pin_L1_CSF_a51960c0 -settings: - cross_section: Fcross_section_Mgdsfactorypcross_section_SRM5_BLDEVREC_BO0p5 - length: 1 diff --git a/tests/test_si220_cband/test_settings_taper_.yml b/tests/test_si220_cband/test_settings_taper_.yml deleted file mode 100644 index 1c9094c3..00000000 --- a/tests/test_si220_cband/test_settings_taper_.yml +++ /dev/null @@ -1,28 +0,0 @@ -info: - length: 10 - width1: 0.5 - width2: 0.5 -name: taper_L10_W0p5_WNone_CSstrip -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 10 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 -settings: - cross_section: strip - length: 10 - width1: 0.5 diff --git a/tests/test_si220_cband/test_settings_taper_SiN_750_3000_.yml b/tests/test_si220_cband/test_settings_taper_SiN_750_3000_.yml deleted file mode 100644 index 3a9e66c3..00000000 --- a/tests/test_si220_cband/test_settings_taper_SiN_750_3000_.yml +++ /dev/null @@ -1,22 +0,0 @@ -info: {} -name: taper_SiN_750_3000 -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.75 - o2: - center: - - 50 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 3 -settings: {} diff --git a/tests/test_si220_cband/test_settings_taper_metal_.yml b/tests/test_si220_cband/test_settings_taper_metal_.yml deleted file mode 100644 index 33f71ea3..00000000 --- a/tests/test_si220_cband/test_settings_taper_metal_.yml +++ /dev/null @@ -1,28 +0,0 @@ -info: - length: 10 - width1: 1.5 - width2: 1.5 -name: taper_metal_L10_W1p5_WNone_CSmetal_routing -ports: - e1: - center: - - 0 - - 0 - layer: M2_ROUTER - name: e1 - orientation: 180 - port_type: electrical - width: 1.5 - e2: - center: - - 10 - - 0 - layer: M2_ROUTER - name: e2 - orientation: 0 - port_type: electrical - width: 1.5 -settings: - cross_section: metal_routing - length: 10 - width1: 1.5 diff --git a/tests/test_si220_cband/test_settings_taper_si_simm_1310_.yml b/tests/test_si220_cband/test_settings_taper_si_simm_1310_.yml deleted file mode 100644 index 0463c529..00000000 --- a/tests/test_si220_cband/test_settings_taper_si_simm_1310_.yml +++ /dev/null @@ -1,22 +0,0 @@ -info: {} -name: taper_si_simm_1310 -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.35 - o2: - center: - - 50 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 3 -settings: {} diff --git a/tests/test_si220_cband/test_settings_taper_si_simm_1550_.yml b/tests/test_si220_cband/test_settings_taper_si_simm_1550_.yml deleted file mode 100644 index 299da48e..00000000 --- a/tests/test_si220_cband/test_settings_taper_si_simm_1550_.yml +++ /dev/null @@ -1,22 +0,0 @@ -info: {} -name: taper_si_simm_1550 -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 50 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 3 -settings: {} diff --git a/tests/test_si220_cband/test_settings_terminator_short_.yml b/tests/test_si220_cband/test_settings_terminator_short_.yml deleted file mode 100644 index ea24c8fb..00000000 --- a/tests/test_si220_cband/test_settings_terminator_short_.yml +++ /dev/null @@ -1,4 +0,0 @@ -info: {} -name: terminator_short_W0p1 -settings: - width2: 0.1 diff --git a/tests/test_si220_cband/test_settings_text_rectangular_.yml b/tests/test_si220_cband/test_settings_text_rectangular_.yml deleted file mode 100644 index e7f5d7e1..00000000 --- a/tests/test_si220_cband/test_settings_text_rectangular_.yml +++ /dev/null @@ -1,8 +0,0 @@ -info: {} -name: text_rectangular_Tabc_S3_Jleft_LM2_ROUTER -ports: {} -settings: - justify: left - layer: M2_ROUTER - size: 3 - text: abc diff --git a/tests/test_si220_cband/test_settings_text_rectangular_multi_layer_.yml b/tests/test_si220_cband/test_settings_text_rectangular_multi_layer_.yml deleted file mode 100644 index 9deaa7ec..00000000 --- a/tests/test_si220_cband/test_settings_text_rectangular_multi_layer_.yml +++ /dev/null @@ -1,9 +0,0 @@ -info: {} -name: text_rectangular_multi_layer_Tabc_LWG_M2_ROUTER_TFtext__7a8d810d -ports: {} -settings: - layers: - - WG - - M2_ROUTER - text: abc - text_factory: text_rectangular diff --git a/tests/test_si220_cband/test_settings_thermal_phase_shifter_multimode__.yml b/tests/test_si220_cband/test_settings_thermal_phase_shifter_multimode__.yml deleted file mode 100644 index 92d967cc..00000000 --- a/tests/test_si220_cband/test_settings_thermal_phase_shifter_multimode__.yml +++ /dev/null @@ -1,22 +0,0 @@ -info: {} -name: thermal_phase_shifter_multimode_ -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 3 - o2: - center: - - 500 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 3 -settings: {} diff --git a/tests/test_si220_cband/test_settings_thermal_phase_shifter_te_1310_50_.yml b/tests/test_si220_cband/test_settings_thermal_phase_shifter_te_1310_50_.yml deleted file mode 100644 index 71363ee8..00000000 --- a/tests/test_si220_cband/test_settings_thermal_phase_shifter_te_1310_50_.yml +++ /dev/null @@ -1,22 +0,0 @@ -info: {} -name: thermal_phase_shifter_te_1310_50 -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.35 - o2: - center: - - 500 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.35 -settings: {} diff --git a/tests/test_si220_cband/test_settings_thermal_phase_shifter_te_1310__.yml b/tests/test_si220_cband/test_settings_thermal_phase_shifter_te_1310__.yml deleted file mode 100644 index 893ce04f..00000000 --- a/tests/test_si220_cband/test_settings_thermal_phase_shifter_te_1310__.yml +++ /dev/null @@ -1,22 +0,0 @@ -info: {} -name: thermal_phase_shifter_te_1310_ -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.35 - o2: - center: - - 500 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.35 -settings: {} diff --git a/tests/test_si220_cband/test_settings_thermal_phase_shifter_te_1550_50_.yml b/tests/test_si220_cband/test_settings_thermal_phase_shifter_te_1550_50_.yml deleted file mode 100644 index 556def56..00000000 --- a/tests/test_si220_cband/test_settings_thermal_phase_shifter_te_1550_50_.yml +++ /dev/null @@ -1,22 +0,0 @@ -info: {} -name: thermal_phase_shifter_te_1550_50 -ports: - o1: - center: - - 0 - - 0 - layer: WG - name: o1 - orientation: 180 - port_type: optical - width: 0.5 - o2: - center: - - 500 - - 0 - layer: WG - name: o2 - orientation: 0 - port_type: optical - width: 0.5 -settings: {} diff --git a/tests/test_si220_cband/test_settings_via_stack_heater_mtop_.yml b/tests/test_si220_cband/test_settings_via_stack_heater_mtop_.yml deleted file mode 100644 index fd52394a..00000000 --- a/tests/test_si220_cband/test_settings_via_stack_heater_mtop_.yml +++ /dev/null @@ -1,45 +0,0 @@ -info: - xsize: 20 - ysize: 10 -name: via_stack_heater_mtop_S20_10 -ports: - e1: - center: - - -10 - - 0 - layer: M2_ROUTER - name: e1 - orientation: 180 - port_type: electrical - width: 10 - e2: - center: - - 0 - - 5 - layer: M2_ROUTER - name: e2 - orientation: 90 - port_type: electrical - width: 20 - e3: - center: - - 10 - - 0 - layer: M2_ROUTER - name: e3 - orientation: 0 - port_type: electrical - width: 10 - e4: - center: - - 0 - - -5 - layer: M2_ROUTER - name: e4 - orientation: 270 - port_type: electrical - width: 20 -settings: - size: - - 20 - - 10 diff --git a/tests/test_si220_cband/test_settings_wire_corner45_.yml b/tests/test_si220_cband/test_settings_wire_corner45_.yml deleted file mode 100644 index d8402f42..00000000 --- a/tests/test_si220_cband/test_settings_wire_corner45_.yml +++ /dev/null @@ -1,26 +0,0 @@ -info: - length: 14.142 -name: wire_corner45_CSmetal_routing_R10_WNone_LNone_WCPTrue -ports: - e1: - center: - - 0 - - 0 - layer: M2_ROUTER - name: e1 - orientation: 180 - port_type: electrical - width: 10 - e2: - center: - - 10 - - 10 - layer: M2_ROUTER - name: e2 - orientation: 90 - port_type: electrical - width: 10 -settings: - cross_section: metal_routing - radius: 10 - with_corner90_ports: true diff --git a/tests/test_si220_cband/test_settings_wire_corner45_straight_.yml b/tests/test_si220_cband/test_settings_wire_corner45_straight_.yml deleted file mode 100644 index 881470dc..00000000 --- a/tests/test_si220_cband/test_settings_wire_corner45_straight_.yml +++ /dev/null @@ -1,26 +0,0 @@ -info: - length: 2.561 -name: wire_corner45_straight_W1p5_R1p5_CSmetal_routing -ports: - e1: - center: - - 0 - - 0 - layer: M2_ROUTER - name: e1 - orientation: 180 - port_type: electrical - width: 1.5 - e2: - center: - - 1.5 - - 1.5 - layer: M2_ROUTER - name: e2 - orientation: 90 - port_type: electrical - width: 1.5 -settings: - cross_section: metal_routing - radius: 1.5 - width: 1.5 diff --git a/ubcpdk/README.md b/ubcpdk/README.md deleted file mode 100644 index 0fe92309..00000000 --- a/ubcpdk/README.md +++ /dev/null @@ -1,28 +0,0 @@ -# UBC1 - -## DFT rules (design for testing) - -Layout requirements for automated testing - -The following are the layout requirements for automated testing: - -Please make sure your grating couplers are: - -- facing right (waveguide on the right side) -- on a 127 µm pitch vertically -- Counting from top down, the 1st, 3rd and 4th fibre in the array will be used for the outputs (three detectors are sampled simultaneously), and the 2nd fibre will be input. Many test configurations are possible, such as Fibres 1-2, Fibres 2-3, Fibres 1-2-3, etc. It is also possible to test the same device multiple times by placing labels on multiple ports. - -Please place a text label (Layer #10 “text” in layout) on the grating coupler to which you would like the 2nd fibre (input) aligned be to: - -- opt*in*_\_device_\_ - - example: opt_in_TE_1550_device_LukasChrostowski_MZI1 -- The label format is case sensitive, and cannot have extra "\_" characters. -- The labels MUST BE UNIQUE. - -Examples layouts that conform to these test rules are provided in folder “Examples”. - -More details are also available in the PDF slides. The GDS Layout used in the examples is Sample.gds. The TE & TM example layout is GC_Alignment_TE_TM.gds. - -## DFM Design for manufacturing - -Each participant is allocated a rectangle of 605 µm (width) X 410 µm (height). You can use multiple blocks (see below for details). diff --git a/ubcpdk/__init__.py b/ubcpdk/__init__.py deleted file mode 100644 index 58e44dfa..00000000 --- a/ubcpdk/__init__.py +++ /dev/null @@ -1,61 +0,0 @@ -"""UBC Siepic Ebeam PDK from edx course.""" - -from typing import cast - -from gdsfactory.config import PATH as GPATH -from gdsfactory.get_factories import get_cells -from gdsfactory.pdk import Pdk -from gdsfactory.typings import ( - ConnectivitySpec, -) - -from ubcpdk import cells, data, tech -from ubcpdk.config import CONFIG, PATH -from ubcpdk.models import get_models -from ubcpdk.tech import ( - LAYER, - LAYER_STACK, - LAYER_VIEWS, - cross_sections, - routing_strategies, -) - -components = cells - -__version__ = "3.3.5" -__all__ = [ - "CONFIG", - "data", - "PATH", - "components", - "tech", - "LAYER", - "cells", - "cross_sections", - "PDK", - "__version__", -] - -connectivity = cast(list[ConnectivitySpec], [("M1_HEATER", "M1_HEATER", "M2_ROUTER")]) - -layer_transitions = { - LAYER.WG: cells.taper, - LAYER.M2_ROUTER: cells.taper_metal, -} - -_cells = get_cells(cells) -PDK = Pdk( - name="ubcpdk", - cells=_cells, - cross_sections=cross_sections, - models=get_models(), - layers=LAYER, - layer_stack=LAYER_STACK, - layer_views=LAYER_VIEWS, - connectivity=connectivity, - routing_strategies=routing_strategies, - layer_transitions=layer_transitions, -) - -GPATH.sparameters = PATH.sparameters -GPATH.interconnect = PATH.interconnect_cml_path diff --git a/ubcpdk/cells/__init__.py b/ubcpdk/cells/__init__.py deleted file mode 100644 index 7efdfaed..00000000 --- a/ubcpdk/cells/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -"""Cells.""" - -from .containers import * -from .couplers import * -from .die_with_pads import * -from .fixed_ant import * -from .fixed_beta import * -from .fixed_dream import * -from .fixed_ebeam import * -from .fixed_single import * -from .grating_couplers import * -from .heaters import * -from .mmis import * -from .mzis import * -from .rings import * -from .spirals import * -from .tapers import * -from .text import * -from .vias import * -from .waveguides import * - -# `import_gds` leaks into this namespace via `from .fixed_* import *`. -# Remove so `get_cells()` does not register it as a zero-arg cell factory. -del import_gds # noqa: F821 diff --git a/ubcpdk/cells/containers.py b/ubcpdk/cells/containers.py deleted file mode 100644 index 27eff97f..00000000 --- a/ubcpdk/cells/containers.py +++ /dev/null @@ -1,246 +0,0 @@ -"""This module contains cells that contain other cells.""" - -from functools import partial - -import gdsfactory as gf -from gdsfactory.component import Component, ComponentReference -from gdsfactory.typings import ( - AngleInDegrees, - ComponentSpec, - CrossSectionSpec, - Float2, - LayerSpec, -) - -from ubcpdk.config import CONFIG -from ubcpdk.tech import LAYER - -gc = "ebeam_gc_te1550" - - -def clean_name(name: str) -> str: - return name.replace("_", ".") - - -def add_label_electrical(component: Component, text: str, port_name: str = "e2"): - """Adds labels for electrical port. - - Returns same component so it needs to be used as a decorator. - """ - if port_name not in component.ports: - port_names = [port.name for port in component.ports] - raise ValueError(f"No port {port_name!r} in {port_names}") - - component.add_label( - text=text, position=component.ports[port_name].dcenter, layer=LAYER.TEXT - ) - return component - - -def get_input_label_text( - gc: ComponentReference, - component_name: str | None = None, - username: str = CONFIG.username, -) -> str: - """Return label for port and a grating coupler. - - Args: - gc: grating coupler reference. - component_name: optional component name. - username: for the label. - """ - polarization = gc.info.get("polarization") - wavelength = gc.info.get("wavelength") - - gc_cell_name = gc.name.lower() - if polarization is None: - if "te" in gc_cell_name: - polarization = "te" - else: - polarization = "tm" - - if wavelength is None: - if "1310" in gc_cell_name: - wavelength = 1.310 - else: - wavelength = 1.550 - - assert polarization.upper() in [ - "TE", - "TM", - ], f"Not valid polarization {polarization.upper()!r} in [TE, TM]" - assert isinstance(wavelength, int | float) and 1.0 < wavelength < 2.0, ( - f"{wavelength} is Not valid 1000 < wavelength < 2000" - ) - - name = component_name - name = clean_name(name) - # return f"opt_{polarization.upper()}_{int(wavelength * 1000.0)}_device_{username}-{name}-{gc_index}-{port.name}" - return f"opt_in_{polarization.upper()}_{int(wavelength * 1000.0)}_device_{username}-{name}" - - -@gf.cell(tags=["containers"]) -def add_fiber_array( - component: ComponentSpec = "ring_single", - component_name: str | None = None, - gc_port_name: str = "o1", - with_loopback: bool = False, - fanout_length: float | None = 0, - grating_coupler: ComponentSpec = gc, - cross_section: CrossSectionSpec = "strip", - straight: ComponentSpec = "straight", - taper: ComponentSpec | None = None, - mirror_grating_coupler: bool = True, - gc_rotation: float = +90, - **kwargs, -) -> Component: - """Returns component with grating couplers and labels on each port. - - Routes all component ports south. - Can add align_ports loopback reference structure on the edges. - - Args: - component: to connect. - component_name: for the label. - gc_port_name: grating coupler input port name 'o1'. - with_loopback: True, adds loopback structures. - fanout_length: None # if None, automatic calculation of fanout length. - grating_coupler: grating coupler instance, function or list of functions. - cross_section: spec. - straight: straight component. - taper: taper component. - kwargs: cross_section settings. - - """ - c = gf.Component() - component = gf.get_component(component) - - component_with_grating_coupler = gf.routing.add_fiber_array( - straight=straight, - bend="bend_euler", - component=component, - component_name=component_name, - grating_coupler=grating_coupler, - gc_port_name=gc_port_name, - with_loopback=with_loopback, - fanout_length=fanout_length, - cross_section=cross_section, - taper=taper, - mirror_grating_coupler=mirror_grating_coupler, - gc_rotation=gc_rotation, - **kwargs, - ) - component_with_grating_coupler.name = component.name + "_with_gc" - ref = c << component_with_grating_coupler - ref.rotate(-90) - c.add_ports(ref.ports) - c.copy_child_info(component) - - component_name = component_name or component.name - grating_coupler = gf.get_component(grating_coupler) - label = get_input_label_text(gc=grating_coupler, component_name=component_name) - c.add_label(position=c.ports["o1"].dcenter, text=label, layer=LAYER.TEXT) - return c - - -pack_doe = gf.c.pack_doe -pack_doe_grid = gf.c.pack_doe_grid - - -@gf.cell(tags=["containers"]) -def add_fiber_array_pads_rf( - component: ComponentSpec = "ring_single_heater", - username: str = CONFIG.username, - orientation: float = 0, - pad_yspacing: float = 50, - component_name: str | None = None, - **kwargs, -) -> Component: - """Returns fiber array with label and electrical pads. - - Args: - component: to add fiber array and pads. - username: for the label. - orientation: for adding pads. - pad_yspacing: for adding pads. - component_name: for the label. - kwargs: for add_fiber_array. - """ - - c0 = gf.get_component(component) - component_name = component_name or c0.name - component_name = clean_name(component_name) - text = f"elec_{username}-{component_name}_G" - c1 = add_pads_rf(component=c0, orientation=orientation, spacing=(0, pad_yspacing)) - c1.name = text - - add_label_electrical(component=c1, text=text) - return add_fiber_array(component=c1, component_name=component_name, **kwargs) - - -@gf.cell(tags=["containers"]) -def pad_array( - pad: ComponentSpec = "pad", - columns: int = 6, - rows: int = 1, - column_pitch: float = 125.0, - row_pitch: float = 125.0, - port_orientation: AngleInDegrees = 270, - size: Float2 | None = None, - layer: LayerSpec | None = None, - centered_ports: bool = False, - auto_rename_ports: bool = False, -) -> gf.Component: - """Returns 2D array of pads. - - Args: - pad: pad element. - columns: number of columns. - rows: number of rows. - column_pitch: x pitch. - row_pitch: y pitch. - port_orientation: port orientation in deg. None for low speed DC ports. - size: pad size. - layer: pad layer. - centered_ports: True add ports to center. False add ports to the edge. - auto_rename_ports: True to auto rename ports. - """ - return gf.c.pad_array( - pad=pad, - columns=columns, - rows=rows, - column_pitch=column_pitch, - row_pitch=row_pitch, - port_orientation=port_orientation, - size=size, - layer=layer, - centered_ports=centered_ports, - auto_rename_ports=auto_rename_ports, - ) - - -add_pads_rf = partial( - gf.routing.add_electrical_pads_top, - component="ring_single_heater", - pad_array="pad_array", -) - - -@gf.cell(tags=["containers"]) -def add_pads( - component: ComponentSpec = "ring_single_heater", - username: str = CONFIG.username, - label_port_name="l_e1", - **kwargs, -) -> Component: - """Returns fiber array with label and electrical pads. - - Args: - component: to add fiber array and pads. - username: for the label. - kwargs: for add_fiber_array. - """ - c0 = gf.get_component(component).copy() - text = f"elec_{username}-{clean_name(c0.name)}_G" - c0 = add_label_electrical(c0, text=text, port_name=label_port_name) - return add_pads_rf(component=c0, **kwargs) diff --git a/ubcpdk/cells/couplers.py b/ubcpdk/cells/couplers.py deleted file mode 100644 index 557a2ba7..00000000 --- a/ubcpdk/cells/couplers.py +++ /dev/null @@ -1,59 +0,0 @@ -"""Evanescent Couplers.""" - -import gdsfactory as gf -from gdsfactory.typings import ComponentSpec, CrossSectionSpec - -from ubcpdk.tech import TECH - - -@gf.cell(tags=["couplers"]) -def coupler(length: float = 14.5, gap: float = TECH.gap) -> gf.Component: - """Returns Symmetric coupler. - - Args: - length: of coupling region in um. - gap: of coupling region in um. - """ - return gf.c.coupler( - length=length, - gap=gap, - dy=4.0, - dx=10.0, - cross_section="strip", - allow_min_radius_violation=False, - ) - - -@gf.cell(tags=["couplers"]) -def coupler_ring( - length_x: float = 4, - gap: float = TECH.gap, - radius: float = TECH.radius, - bend: ComponentSpec = "bend_euler", - straight: ComponentSpec = "straight", - cross_section: str = "strip", - cross_section_bend: CrossSectionSpec | None = None, - length_extension: float = 10, -) -> gf.Component: - """Returns Coupler for ring. - - Args: - length_x: length of the parallel coupled straight waveguides. - gap: gap between for coupler. - radius: for the bend and coupler. - bend: 90 degrees bend spec. - straight: straight spec. - cross_section: cross_section spec. - cross_section_bend: cross_section for the bend. Defaults to cross_section. - length_extension: length extension for the coupler. - """ - return gf.c.coupler_ring( - length_x=length_x, - gap=gap, - radius=radius, - bend=bend, - straight=straight, - cross_section=cross_section, - cross_section_bend=cross_section_bend, - length_extension=length_extension, - ) diff --git a/ubcpdk/cells/die_with_pads.py b/ubcpdk/cells/die_with_pads.py deleted file mode 100644 index 43b1c4ea..00000000 --- a/ubcpdk/cells/die_with_pads.py +++ /dev/null @@ -1,110 +0,0 @@ -"""A die with grating couplers and pads.""" - -import gdsfactory as gf -from gdsfactory.typings import ( - Ints, - LayerSpec, - Size, -) - -from ubcpdk.tech import LAYER - - -@gf.cell(tags=["die"]) -def compass( - size: Size = (4, 2), - layer: LayerSpec = "MTOP", - port_type: str | None = None, - port_inclusion: float = 0.0, - port_orientations: Ints | None = (180, 90, 0, -90), - auto_rename_ports: bool = True, -) -> gf.Component: - """Rectangle with ports on each edge (north, south, east, and west). - - Args: - size: rectangle size. - layer: tuple (int, int). - port_type: optical, electrical. - port_inclusion: from edge. - port_orientations: list of port_orientations to add. None does not add ports. - auto_rename_ports: auto rename ports. - """ - return gf.c.compass( - size=size, - layer=layer, - port_type=port_type, - port_inclusion=port_inclusion, - port_orientations=port_orientations, - auto_rename_ports=auto_rename_ports, - ) - - -@gf.cell(tags=["die"]) -def rectangle( - size: Size = (4, 2), - layer: LayerSpec = "MTOP", - centered: bool = False, - port_type: str | None = None, - port_orientations: Ints | None = (180, 90, 0, -90), -) -> gf.Component: - """Returns a rectangle. - - Args: - size: (tuple) Width and height of rectangle. - layer: Specific layer to put polygon geometry on. - centered: True sets center to (0, 0), False sets south-west to (0, 0). - port_type: optical, electrical. - port_orientations: list of port_orientations to add. None adds no ports. - """ - return gf.c.rectangle( - size=size, - layer=layer, - centered=centered, - port_type=port_type, - port_orientations=port_orientations, - ) - - -@gf.cell(tags=["die"]) -def pad( - size: tuple[float, float] = (90.0, 90.0), - layer: LayerSpec = "MTOP", - port_inclusion: float = 0, - port_orientation: float = 0, - port_orientations: Ints | None = (180, 90, 0, -90), -) -> gf.Component: - """Returns rectangular pad with ports. - - Args: - size: x, y size. - layer: pad layer. - bbox_layers: list of layers. - bbox_offsets: Optional offsets for each layer with respect to size. - positive grows, negative shrinks the size. - port_inclusion: from edge. - port_orientation: in degrees. - """ - return gf.components.pad( - size=size, - layer=layer, - port_inclusion=port_inclusion, - port_orientation=port_orientation, - port_orientations=port_orientations, - bbox_layers=(LAYER.PAD_OPEN,), - bbox_offsets=(-1.8,), - ) - - -@gf.cell(tags=["die"]) -def die(size: tuple[float, float] = (440, 470), centered: bool = False) -> gf.Component: - """A die. - - Args: - size: (440, 470). - centered: False. - """ - c = gf.Component() - _ = c << gf.c.rectangle( - size=size, layer=LAYER.FLOORPLAN, centered=centered, port_type=None - ) - return c diff --git a/ubcpdk/cells/fixed_ant.py b/ubcpdk/cells/fixed_ant.py deleted file mode 100644 index e4b657f2..00000000 --- a/ubcpdk/cells/fixed_ant.py +++ /dev/null @@ -1,18 +0,0 @@ -import gdsfactory as gf - -from ubcpdk.config import PATH -from ubcpdk.import_gds import import_gds - -gdsdir = PATH.gds_ant - - -@gf.cell(tags=["fixed_ant"]) -def ebeam_splitter_swg_assist_te1310_ANT() -> gf.Component: - """Returns ebeam_splitter_swg_assist_te1310_ANT fixed cell.""" - return import_gds(gdsdir / "ebeam_splitter_swg_assist_te1310_ANT.GDS") - - -@gf.cell(tags=["fixed_ant"]) -def ebeam_splitter_swg_assist_te1550_ANT() -> gf.Component: - """Returns ebeam_splitter_swg_assist_te1550_ANT fixed cell.""" - return import_gds(gdsdir / "ebeam_splitter_swg_assist_te1550_ANT.GDS") diff --git a/ubcpdk/cells/fixed_beta.py b/ubcpdk/cells/fixed_beta.py deleted file mode 100644 index ded88b8d..00000000 --- a/ubcpdk/cells/fixed_beta.py +++ /dev/null @@ -1,150 +0,0 @@ -import gdsfactory as gf - -from ubcpdk.config import PATH -from ubcpdk.import_gds import import_gds - -gdsdir = PATH.gds_beta - - -@gf.cell(tags=["fixed_beta"]) -def Alignment_Marker() -> gf.Component: - """Returns Alignment_Marker fixed cell.""" - return import_gds(gdsdir / "Alignment_Marker.GDS") - - -@gf.cell(tags=["fixed_beta"]) -def Packaging_FibreArray_8ch() -> gf.Component: - """Returns Packaging_FibreArray_8ch fixed cell.""" - return import_gds(gdsdir / "Packaging_FibreArray_8ch.gds") - - -@gf.cell(tags=["fixed_beta"]) -def SEM_example() -> gf.Component: - """Returns SEM_example fixed cell.""" - return import_gds(gdsdir / "SEM_example.gds") - - -@gf.cell(tags=["fixed_beta"]) -def ebeam_BondPad() -> gf.Component: - """Returns ebeam_BondPad fixed cell.""" - return import_gds(gdsdir / "ebeam_BondPad.gds") - - -@gf.cell(tags=["fixed_beta"]) -def ebeam_BondPad_75() -> gf.Component: - """Returns ebeam_BondPad_75 fixed cell.""" - return import_gds(gdsdir / "ebeam_BondPad_75.gds") - - -@gf.cell(tags=["fixed_beta"]) -def ebeam_bdc_tm1550() -> gf.Component: - """Returns ebeam_bdc_tm1550 fixed cell.""" - return import_gds(gdsdir / "ebeam_bdc_tm1550.gds") - - -@gf.cell(tags=["fixed_beta"]) -def ebeam_gc_te1310() -> gf.Component: - """Returns ebeam_gc_te1310 fixed cell.""" - return import_gds(gdsdir / "ebeam_gc_te1310.gds") - - -@gf.cell(tags=["fixed_beta"]) -def ebeam_gc_te1310_broadband() -> gf.Component: - """Returns ebeam_gc_te1310_broadband fixed cell.""" - return import_gds(gdsdir / "ebeam_gc_te1310_broadband.gds") - - -@gf.cell(tags=["fixed_beta"]) -def ebeam_gc_te1550_90nmSlab() -> gf.Component: - """Returns ebeam_gc_te1550_90nmSlab fixed cell.""" - return import_gds(gdsdir / "ebeam_gc_te1550_90nmSlab.gds") - - -@gf.cell(tags=["fixed_beta"]) -def ebeam_gc_te1550_broadband() -> gf.Component: - """Returns ebeam_gc_te1550_broadband fixed cell.""" - return import_gds(gdsdir / "ebeam_gc_te1550_broadband.GDS") - - -@gf.cell(tags=["fixed_beta"]) -def ebeam_splitter_adiabatic_swg_te1550() -> gf.Component: - """Returns ebeam_splitter_adiabatic_swg_te1550 fixed cell.""" - return import_gds(gdsdir / "ebeam_splitter_adiabatic_swg_te1550.gds") - - -@gf.cell(tags=["fixed_beta"]) -def ebeam_swg_edgecoupler() -> gf.Component: - """Returns ebeam_swg_edgecoupler fixed cell.""" - return import_gds(gdsdir / "ebeam_swg_edgecoupler.gds") - - -@gf.cell(tags=["fixed_beta"]) -def ebeam_terminator_te1310() -> gf.Component: - """Returns ebeam_terminator_te1310 fixed cell.""" - return import_gds(gdsdir / "ebeam_terminator_te1310.gds") - - -@gf.cell(tags=["fixed_beta"]) -def ebeam_y_adiabatic_1310() -> gf.Component: - """Returns ebeam_y_adiabatic_1310 fixed cell.""" - return import_gds(gdsdir / "ebeam_y_adiabatic_1310.gds") - - -@gf.cell(tags=["fixed_beta"]) -def metal_via() -> gf.Component: - """Returns metal_via fixed cell.""" - return import_gds(gdsdir / "metal_via.gds") - - -@gf.cell(tags=["fixed_beta"]) -def pbs_1550_eskid() -> gf.Component: - """Returns pbs_1550_eskid fixed cell.""" - return import_gds(gdsdir / "pbs_1550_eskid.gds") - - -@gf.cell(tags=["fixed_beta"]) -def photonic_wirebond_surfacetaper_1310() -> gf.Component: - """Returns photonic_wirebond_surfacetaper_1310 fixed cell.""" - return import_gds(gdsdir / "photonic_wirebond_surfacetaper_1310.gds") - - -@gf.cell(tags=["fixed_beta"]) -def photonic_wirebond_surfacetaper_1550() -> gf.Component: - """Returns photonic_wirebond_surfacetaper_1550 fixed cell.""" - return import_gds(gdsdir / "photonic_wirebond_surfacetaper_1550.gds") - - -@gf.cell(tags=["fixed_beta"]) -def siepic_o_gc_te1270_BB() -> gf.Component: - """Returns siepic_o_gc_te1270_BB fixed cell.""" - return import_gds(gdsdir / "siepic_o_gc_te1270_BB.GDS") - - -@gf.cell(tags=["fixed_beta"]) -def siepic_o_pwbstlas_si_BB() -> gf.Component: - """Returns siepic_o_pwbstlas_si_BB fixed cell.""" - return import_gds(gdsdir / "siepic_o_pwbstlas_si_BB.GDS") - - -@gf.cell(tags=["fixed_beta"]) -def thermal_phase_shifter_multimode_() -> gf.Component: - """Returns thermal_phase_shifters fixed cell.""" - return import_gds(gdsdir / "thermal_phase_shifter_multimode_.gds") - - -@gf.cell(tags=["fixed_beta"]) -def thermal_phase_shifter_te_1310_() -> gf.Component: - """Returns thermal_phase_shifters fixed cell.""" - return import_gds(gdsdir / "thermal_phase_shifter_te_1310_.gds") - - -@gf.cell(tags=["fixed_beta"]) -def thermal_phase_shifter_te_1310_50() -> gf.Component: - """Returns thermal_phase_shifters fixed cell.""" - return import_gds(gdsdir / "thermal_phase_shifter_te_1310_50.gds") - - -@gf.cell(tags=["fixed_beta"]) -def thermal_phase_shifter_te_1550_50() -> gf.Component: - """Returns thermal_phase_shifters fixed cell.""" - return import_gds(gdsdir / "thermal_phase_shifter_te_1550_50.gds") diff --git a/ubcpdk/cells/fixed_dream.py b/ubcpdk/cells/fixed_dream.py deleted file mode 100644 index afd92dbe..00000000 --- a/ubcpdk/cells/fixed_dream.py +++ /dev/null @@ -1,60 +0,0 @@ -import gdsfactory as gf - -from ubcpdk.config import PATH -from ubcpdk.import_gds import import_gds - -gdsdir = PATH.gds_dream - - -@gf.cell(tags=["fixed_dream"]) -def ebeam_dream_FAVE_SiN_1310_BB() -> gf.Component: - """Returns ebeam_dream_FAVE_SiN_1310_BB fixed cell.""" - return import_gds(gdsdir / "ebeam_dream_FAVE_SiN_1310_BB.gds") - - -@gf.cell(tags=["fixed_dream"]) -def ebeam_dream_FAVE_SiN_1550_BB() -> gf.Component: - """Returns ebeam_dream_FAVE_SiN_1550_BB fixed cell.""" - return import_gds(gdsdir / "ebeam_dream_FAVE_SiN_1550_BB.gds") - - -@gf.cell(tags=["fixed_dream"]) -def ebeam_dream_FAVE_Si_1310_BB() -> gf.Component: - """Returns ebeam_dream_FAVE_Si_1310_BB fixed cell.""" - return import_gds(gdsdir / "ebeam_dream_FAVE_Si_1310_BB.gds") - - -@gf.cell(tags=["fixed_dream"]) -def ebeam_dream_FAVE_Si_1550_BB() -> gf.Component: - """Returns ebeam_dream_FAVE_Si_1550_BB fixed cell.""" - return import_gds(gdsdir / "ebeam_dream_FAVE_Si_1550_BB.gds") - - -@gf.cell(tags=["fixed_dream"]) -def ebeam_dream_FaML_SiN_1550_BB() -> gf.Component: - """Returns ebeam_dream_FaML_SiN_1550_BB fixed cell.""" - return import_gds(gdsdir / "ebeam_dream_FaML_SiN_1550_BB.gds") - - -@gf.cell(tags=["fixed_dream"]) -def ebeam_dream_FaML_Si_1310_BB() -> gf.Component: - """Returns ebeam_dream_FaML_Si_1310_BB fixed cell.""" - return import_gds(gdsdir / "ebeam_dream_FaML_Si_1310_BB.gds") - - -@gf.cell(tags=["fixed_dream"]) -def ebeam_dream_FaML_Si_1550_BB() -> gf.Component: - """Returns ebeam_dream_FaML_Si_1550_BB fixed cell.""" - return import_gds(gdsdir / "ebeam_dream_FaML_Si_1550_BB.gds") - - -@gf.cell(tags=["fixed_dream"]) -def ebeam_dream_splitter_1x2_te1550_BB() -> gf.Component: - """Returns ebeam_dream_splitter_1x2_te1550_BB fixed cell.""" - return import_gds(gdsdir / "ebeam_dream_splitter_1x2_te1550_BB.gds") - - -@gf.cell(tags=["fixed_dream"]) -def ebeam_sin_dream_splitter1x2_te1550_BB() -> gf.Component: - """Returns ebeam_sin_dream_splitter1x2_te1550_BB fixed cell.""" - return import_gds(gdsdir / "ebeam_sin_dream_splitter1x2_te1550_BB.gds") diff --git a/ubcpdk/cells/fixed_ebeam.py b/ubcpdk/cells/fixed_ebeam.py deleted file mode 100644 index ed4805fa..00000000 --- a/ubcpdk/cells/fixed_ebeam.py +++ /dev/null @@ -1,148 +0,0 @@ -import gdsfactory as gf - -from ubcpdk.config import PATH -from ubcpdk.import_gds import import_gds - -gdsdir = PATH.gds_ebeam - - -@gf.cell(tags=["fixed_ebeam"]) -def GC_TE_1310_8degOxide_BB() -> gf.Component: - """Returns GCs_BB fixed cell.""" - return import_gds(gdsdir / "GC_TE_1310_8degOxide_BB.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def GC_TE_1550_8degOxide_BB() -> gf.Component: - """Returns GCs_BB fixed cell.""" - return import_gds(gdsdir / "GC_TE_1550_8degOxide_BB.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def GC_TM_1310_8degOxide_BB() -> gf.Component: - """Returns GCs_BB fixed cell.""" - return import_gds(gdsdir / "GC_TM_1310_8degOxide_BB.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def GC_TM_1550_8degOxide_BB() -> gf.Component: - """Returns GCs_BB fixed cell.""" - return import_gds(gdsdir / "GC_TM_1550_8degOxide_BB.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def ebeam_adiabatic_te1550() -> gf.Component: - """Returns ebeam_adiabatic_te1550 fixed cell.""" - return import_gds(gdsdir / "ebeam_adiabatic_te1550.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def ebeam_adiabatic_tm1550() -> gf.Component: - """Returns ebeam_adiabatic_tm1550 fixed cell.""" - return import_gds(gdsdir / "ebeam_adiabatic_tm1550.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def ebeam_bdc_te1550() -> gf.Component: - """Returns ebeam_bdc_te1550 fixed cell.""" - return import_gds(gdsdir / "ebeam_bdc_te1550.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def ebeam_crossing4() -> gf.Component: - """Returns ebeam_crossing4 fixed cell.""" - return import_gds(gdsdir / "ebeam_crossing4.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def ebeam_gc_te1550() -> gf.Component: - """Returns ebeam_gc_te1550 fixed cell.""" - return import_gds(gdsdir / "ebeam_gc_te1550.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def ebeam_gc_tm1550() -> gf.Component: - """Returns ebeam_gc_tm1550 fixed cell.""" - return import_gds(gdsdir / "ebeam_gc_tm1550.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def ebeam_routing_taper_te1550_w500nm_to_w3000nm_L20um() -> gf.Component: - """Returns ebeam_routing_taper_te1550_w500nm_to_w3000nm_L20um fixed cell.""" - return import_gds( - gdsdir / "ebeam_routing_taper_te1550_w=500nm_to_w=3000nm_L=20um.gds" - ) - - -@gf.cell(tags=["fixed_ebeam"]) -def ebeam_routing_taper_te1550_w500nm_to_w3000nm_L40um() -> gf.Component: - """Returns ebeam_routing_taper_te1550_w500nm_to_w3000nm_L40um fixed cell.""" - return import_gds( - gdsdir / "ebeam_routing_taper_te1550_w=500nm_to_w=3000nm_L=40um.gds" - ) - - -@gf.cell(tags=["fixed_ebeam"]) -def ebeam_splitter_swg_assist_te1310() -> gf.Component: - """Returns ebeam_splitter_swg_assist_te1310 fixed cell.""" - return import_gds(gdsdir / "ebeam_splitter_swg_assist_te1310.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def ebeam_splitter_swg_assist_te1550() -> gf.Component: - """Returns ebeam_splitter_swg_assist_te1550 fixed cell.""" - return import_gds(gdsdir / "ebeam_splitter_swg_assist_te1550.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def ebeam_terminator_te1310() -> gf.Component: - """Returns ebeam_terminator_te1310 fixed cell.""" - return import_gds(gdsdir / "ebeam_terminator_te1310.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def ebeam_terminator_te1550() -> gf.Component: - """Returns ebeam_terminator_te1550 fixed cell.""" - return import_gds(gdsdir / "ebeam_terminator_te1550.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def ebeam_terminator_tm1550() -> gf.Component: - """Returns ebeam_terminator_tm1550 fixed cell.""" - return import_gds(gdsdir / "ebeam_terminator_tm1550.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def ebeam_y_1310() -> gf.Component: - """Returns ebeam_y_1310 fixed cell.""" - return import_gds(gdsdir / "ebeam_y_1310.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def ebeam_y_1550() -> gf.Component: - """Returns ebeam_y_1550 fixed cell.""" - return import_gds(gdsdir / "ebeam_y_1550.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def ebeam_y_adiabatic() -> gf.Component: - """Returns ebeam_y_adiabatic fixed cell.""" - return import_gds(gdsdir / "ebeam_y_adiabatic.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def ebeam_y_adiabatic_500pin() -> gf.Component: - """Returns ebeam_y_adiabatic_500pin fixed cell.""" - return import_gds(gdsdir / "ebeam_y_adiabatic_500pin.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def taper_si_simm_1310() -> gf.Component: - """Returns taper_si_simm_1310 fixed cell.""" - return import_gds(gdsdir / "taper_si_simm_1310.gds") - - -@gf.cell(tags=["fixed_ebeam"]) -def taper_si_simm_1550() -> gf.Component: - """Returns taper_si_simm_1550 fixed cell.""" - return import_gds(gdsdir / "taper_si_simm_1550.gds") diff --git a/ubcpdk/cells/fixed_single.py b/ubcpdk/cells/fixed_single.py deleted file mode 100644 index 397ffbd3..00000000 --- a/ubcpdk/cells/fixed_single.py +++ /dev/null @@ -1,122 +0,0 @@ -import gdsfactory as gf - -from ubcpdk.config import PATH -from ubcpdk.import_gds import import_gds - -gdsdir = PATH.gds_single - - -@gf.cell(tags=["fixed_single"]) -def ANT_MMI_1x2_te1550_3dB_BB() -> gf.Component: - """Returns ANT_MMI_1x2_te1550_3dB_BB fixed cell.""" - return import_gds(gdsdir / "ANT_MMI_1x2_te1550_3dB_BB.gds") - - -@gf.cell(tags=["fixed_single"]) -def GC_SiN_TE_1310_8degOxide_BB() -> gf.Component: - """Returns GC_SiN_TE_1310_8degOxide_BB fixed cell.""" - return import_gds(gdsdir / "GC_SiN_TE_1310_8degOxide_BB.gds") - - -@gf.cell(tags=["fixed_single"]) -def GC_SiN_TE_1550_8degOxide_BB() -> gf.Component: - """Returns GC_SiN_TE_1550_8degOxide_BB fixed cell.""" - return import_gds(gdsdir / "GC_SiN_TE_1550_8degOxide_BB.gds") - - -@gf.cell(tags=["fixed_single"]) -def ebeam_MMI_2x2_5050_te1310() -> gf.Component: - """Returns ULaval fixed cell.""" - cell = "ebeam_MMI_2x2_5050_te1310.gds" - return import_gds(gdsdir / cell) - - -@gf.cell(tags=["fixed_single"]) -def ebeam_YBranch_te1310() -> gf.Component: - """Returns ULaval fixed cell.""" - cell = "ebeam_YBranch_te1310.gds" - return import_gds(gdsdir / cell) - - -@gf.cell(tags=["fixed_single"]) -def crossing_SiN_1550() -> gf.Component: - """Returns crossing_SiN_1550 fixed cell.""" - return import_gds(gdsdir / "crossing_SiN_1550.gds") - - -@gf.cell(tags=["fixed_single"]) -def crossing_SiN_1550_extended() -> gf.Component: - """Returns crossing_SiN_1550_extended fixed cell.""" - return import_gds(gdsdir / "crossing_SiN_1550_extended.gds") - - -@gf.cell(tags=["fixed_single"]) -def crossing_horizontal() -> gf.Component: - """Returns crossing_horizontal fixed cell.""" - return import_gds(gdsdir / "crossing_horizontal.gds") - - -@gf.cell(tags=["fixed_single"]) -def crossing_manhattan() -> gf.Component: - """Returns crossing_manhattan fixed cell.""" - return import_gds(gdsdir / "crossing_manhattan.gds") - - -@gf.cell(tags=["fixed_single"]) -def ebeam_BondPad() -> gf.Component: - """Returns ebeam_BondPad fixed cell.""" - return import_gds(gdsdir / "ebeam_BondPad.gds") - - -@gf.cell(tags=["fixed_single"]) -def ebeam_DC_2m1_te895() -> gf.Component: - """Returns ebeam_DC_2m1_te895 fixed cell.""" - return import_gds(gdsdir / "ebeam_DC_2-1_te895.gds") - - -@gf.cell(tags=["fixed_single"]) -def ebeam_DC_te895() -> gf.Component: - """Returns ebeam_DC_te895 fixed cell.""" - return import_gds(gdsdir / "ebeam_DC_te895.gds") - - -@gf.cell(tags=["fixed_single"]) -def ebeam_Polarizer_TM_1550_UQAM() -> gf.Component: - """Returns ebeam_Polarizer_TM_1550_UQAM fixed cell.""" - return import_gds(gdsdir / "ebeam_Polarizer_TM_1550_UQAM.gds") - - -@gf.cell(tags=["fixed_single"]) -def ebeam_YBranch_895() -> gf.Component: - """Returns ebeam_YBranch_895 fixed cell.""" - return import_gds(gdsdir / "ebeam_YBranch_895.gds") - - -@gf.cell(tags=["fixed_single"]) -def ebeam_gc_te895() -> gf.Component: - """Returns ebeam_gc_te895 fixed cell.""" - return import_gds(gdsdir / "ebeam_gc_te895.gds") - - -@gf.cell(tags=["fixed_single"]) -def ebeam_terminator_SiN_1310() -> gf.Component: - """Returns ebeam_terminator_SiN_1310 fixed cell.""" - return import_gds(gdsdir / "ebeam_terminator_SiN_1310.gds") - - -@gf.cell(tags=["fixed_single"]) -def ebeam_terminator_SiN_1550() -> gf.Component: - """Returns ebeam_terminator_SiN_1550 fixed cell.""" - return import_gds(gdsdir / "ebeam_terminator_SiN_1550.gds") - - -@gf.cell(tags=["fixed_single"]) -def ebeam_terminator_SiN_te895() -> gf.Component: - """Returns ebeam_terminator_SiN_te895 fixed cell.""" - return import_gds(gdsdir / "ebeam_terminator_SiN_te895.gds") - - -@gf.cell(tags=["fixed_single"]) -def taper_SiN_750_3000() -> gf.Component: - """Returns taper_SiN_750_3000 fixed cell.""" - return import_gds(gdsdir / "taper_SiN_750_3000.gds") diff --git a/ubcpdk/cells/grating_couplers.py b/ubcpdk/cells/grating_couplers.py deleted file mode 100644 index a9203d06..00000000 --- a/ubcpdk/cells/grating_couplers.py +++ /dev/null @@ -1,30 +0,0 @@ -"""Grating couplers.""" - -import gdsfactory as gf - - -@gf.cell(tags=["grating_couplers"]) -def grating_coupler_elliptical( - wavelength: float = 1.55, - grating_line_width=0.315, - cross_section="strip", -) -> gf.Component: - """A grating coupler with curved but parallel teeth. - - Args: - wavelength: the center wavelength for which the grating is designed - grating_line_width: the line width of the grating - cross_section: a cross section or its name or a function generating a cross section. - """ - return gf.c.grating_coupler_elliptical( - polarization="te", - wavelength=wavelength, - grating_line_width=grating_line_width, - taper_length=16.0, - taper_angle=30.0, - fiber_angle=15.0, - neff=2.638, - layer_slab=None, - n_periods=30, - cross_section=cross_section, - ) diff --git a/ubcpdk/cells/heaters.py b/ubcpdk/cells/heaters.py deleted file mode 100644 index 60a0a549..00000000 --- a/ubcpdk/cells/heaters.py +++ /dev/null @@ -1,97 +0,0 @@ -"""Heater components.""" - -import gdsfactory as gf -from gdsfactory.typings import ComponentSpec, CrossSectionSpec, LayerSpec - - -@gf.cell(tags=["heaters"]) -def straight_heater_metal( - length: float = 320.0, - length_undercut_spacing: float = 6.0, - length_undercut: float = 30.0, - length_straight: float = 0.1, - length_straight_input: float = 15.0, - with_undercut: bool = False, - port_orientation1: int | None = None, - port_orientation2: int | None = None, - cross_section: CrossSectionSpec = "strip", -) -> gf.Component: - """Returns a thermal phase shifter. - - dimensions from https://doi.org/10.1364/OE.27.010456 - - Args: - length: phase shifter length. - length_undercut_spacing: spacing between the waveguide and the undercut. - length_undercut: undercut length. - length_straight: straight length. - length_straight_input: straight length input. - with_undercut: isolation trenches for higher efficiency. - port_orientation1: orientation of the first port. None for all orientations. - port_orientation2: orientation of the second port. None for all orientations. - cross_section: for waveguide. - """ - return gf.c.straight_heater_metal_undercut( - length=length, - length_undercut_spacing=length_undercut_spacing, - length_undercut=length_undercut, - length_straight=length_straight, - length_straight_input=length_straight_input, - with_undercut=with_undercut, - port_orientation1=port_orientation1, - port_orientation2=port_orientation2, - via_stack="via_stack_heater_mtop", - heater_taper_length=5.0, - ohms_per_square=None, - cross_section=cross_section, - ) - - -@gf.cell(tags=["heaters"]) -def straight_heater_meander( - length: float = 320.0, - heater_width: float = 2.5, - spacing: float = 2, - cross_section: CrossSectionSpec = "strip", - layer_heater: LayerSpec = "M1_HEATER", - via_stack: ComponentSpec | None = "via_stack_heater_mtop", - n: int | None = 3, - port_orientation1: float | None = None, - port_orientation2: float | None = None, - radius: float | None = None, -) -> gf.Component: - """Returns a meander based heater. - - based on SungWon Chung, Makoto Nakai, and Hossein Hashemi, - Low-power thermo-optic silicon modulator for large-scale photonic integrated systems - Opt. Express 27, 13430-13459 (2019) - https://www.osapublishing.org/oe/abstract.cfm?URI=oe-27-9-13430 - - Args: - length: phase shifter length. - heater_width: width of the heater. - spacing: waveguide spacing (center to center). - cross_section: for waveguide. - layer_heater: for top heater, if None, it does not add a heater. - via_stack: for the heater to via_stack metal. - n: number of meanders. - port_orientation1: orientation of the first port. None for all orientations. - port_orientation2: orientation of the second port. None for all orientations. - radius: radius of the meander. - """ - return gf.c.straight_heater_meander( - spacing=spacing, - cross_section=cross_section, - layer_heater=layer_heater, - via_stack=via_stack, - length=length, - heater_width=heater_width, - extension_length=15.0, - port_orientation1=port_orientation1, - port_orientation2=port_orientation2, - heater_taper_length=10.0, - straight_widths=None, - taper_length=10.0, - n=n, - radius=radius, - ) diff --git a/ubcpdk/cells/mmis.py b/ubcpdk/cells/mmis.py deleted file mode 100644 index e8c60d3e..00000000 --- a/ubcpdk/cells/mmis.py +++ /dev/null @@ -1,78 +0,0 @@ -"""This module contains the building blocks for the CSPDK PDK.""" - -import gdsfactory as gf -from gdsfactory.typings import ( - CrossSectionSpec, -) - -################ -# MMIs -################ - - -@gf.cell(tags=["mmis"]) -def mmi1x2( - width: float | None = None, - width_taper: float = 1.5, - length_taper: float = 20.0, - length_mmi: float = 31.0, - width_mmi: float = 6.0, - gap_mmi: float = 1.64, - cross_section: CrossSectionSpec = "strip", -) -> gf.Component: - """An mmi1x2. - - An mmi1x2 is a splitter that splits a single input to two outputs - - Args: - width: the width of the waveguides connecting at the mmi ports. - width_taper: the width at the base of the mmi body. - length_taper: the length of the tapers going towards the mmi body. - length_mmi: the length of the mmi body. - width_mmi: the width of the mmi body. - gap_mmi: the gap between the tapers at the mmi body. - cross_section: a cross section or its name or a function generating a cross section. - """ - return gf.c.mmi1x2( - width=width, - width_taper=width_taper, - length_taper=length_taper, - length_mmi=length_mmi, - width_mmi=width_mmi, - gap_mmi=gap_mmi, - cross_section=cross_section, - ) - - -@gf.cell(tags=["mmis"]) -def mmi2x2( - width: float | None = None, - width_taper: float = 1.5, - length_taper: float = 20.0, - length_mmi: float = 42.5, - width_mmi: float = 6.0, - gap_mmi: float = 0.5, - cross_section: CrossSectionSpec = "strip", -) -> gf.Component: - """An mmi2x2. - - An mmi2x2 is a 2x2 splitter - - Args: - width: the width of the waveguides connecting at the mmi ports - width_taper: the width at the base of the mmi body - length_taper: the length of the tapers going towards the mmi body - length_mmi: the length of the mmi body - width_mmi: the width of the mmi body - gap_mmi: the gap between the tapers at the mmi body - cross_section: a cross section or its name or a function generating a cross section. - """ - return gf.c.mmi2x2( - width=width, - width_taper=width_taper, - length_taper=length_taper, - length_mmi=length_mmi, - width_mmi=width_mmi, - gap_mmi=gap_mmi, - cross_section=cross_section, - ) diff --git a/ubcpdk/cells/mzis.py b/ubcpdk/cells/mzis.py deleted file mode 100644 index 444dd5ca..00000000 --- a/ubcpdk/cells/mzis.py +++ /dev/null @@ -1,196 +0,0 @@ -"""Mach-Zehnder Interferometers (MZIs) are a type of interferometer used in optics. - -They are used to measure the phase shift between two beams of light. - -MZIs are used in a variety of applications, including optical communications, quantum computing, and sensing. -""" - -import gdsfactory as gf -from gdsfactory.typings import ComponentSpec, CrossSectionSpec - - -@gf.cell(tags=["mzis"]) -def mzi_1x1( - delta_length: float = 10, - bend: ComponentSpec = "bend_euler", - straight: ComponentSpec = "straight", - splitter: ComponentSpec = "ebeam_y_1550", - combiner: ComponentSpec | None = None, - port_e1_splitter: str = "o2", - port_e0_splitter: str = "o3", - port_e1_combiner: str = "o2", - port_e0_combiner: str = "o3", - cross_section: CrossSectionSpec = "strip", -) -> gf.Component: - """Mzi. - - Args: - delta_length: bottom arm vertical extra length. - bend: 90 degrees bend library. - straight: straight function. - splitter: splitter function. - combiner: combiner function. - port_e1_splitter: east top splitter port. - port_e0_splitter: east bot splitter port. - port_e1_combiner: east top combiner port. - port_e0_combiner: east bot combiner port. - cross_section: for routing (sxtop/sxbot to combiner). - """ - combiner = combiner or splitter - _splitter = gf.get_component(splitter) - _combiner = gf.get_component(combiner) - - return gf.c.mzi( - delta_length=delta_length, - bend=bend, - straight=straight, - splitter=splitter, - combiner=combiner, - port_e1_splitter=port_e1_splitter, - port_e0_splitter=port_e0_splitter, - port_e1_combiner=port_e1_combiner, - port_e0_combiner=port_e0_combiner, - cross_section=cross_section, - length_y=2.0, - length_x=0.1, - straight_y=None, - straight_x_top=None, - straight_x_bot=None, - with_splitter=True, - port1="o1", - port2="o2", - nbends=2, - cross_section_x_top=None, - cross_section_x_bot=None, - mirror_bot=False, - add_optical_ports_arms=False, - min_length=0.01, - auto_rename_ports=True, - ) - - -@gf.cell(tags=["mzis"]) -def mzi( - delta_length: float = 10, - bend: ComponentSpec = "bend_euler", - straight: ComponentSpec = "straight", - splitter: ComponentSpec = "coupler", - combiner: ComponentSpec | None = None, - port_e1_splitter: str = "o3", - port_e0_splitter: str = "o4", - port_e1_combiner: str = "o3", - port_e0_combiner: str = "o4", - cross_section: CrossSectionSpec = "strip", -) -> gf.Component: - """Mzi. - - Args: - delta_length: bottom arm vertical extra length. - bend: 90 degrees bend library. - straight: straight function. - splitter: splitter function. - combiner: combiner function. - port_e1_splitter: east top splitter port. - port_e0_splitter: east bot splitter port. - port_e1_combiner: east top combiner port. - port_e0_combiner: east bot combiner port. - cross_section: for routing (sxtop/sxbot to combiner). - """ - combiner = combiner or splitter - _splitter = gf.get_component(splitter) - _combiner = gf.get_component(combiner) - if len(_splitter.ports) < 4: - raise ValueError( - f"Splitter {splitter} has {len(_splitter.ports)} ports, but needs at least 4 ports." - ) - if len(_combiner.ports) < 4: - raise ValueError( - f"Combiner {combiner} has {len(_combiner.ports)} ports, but needs at least 4 ports." - ) - - return gf.c.mzi( - delta_length=delta_length, - bend=bend, - straight=straight, - splitter=splitter, - combiner=combiner, - port_e1_splitter=port_e1_splitter, - port_e0_splitter=port_e0_splitter, - port_e1_combiner=port_e1_combiner, - port_e0_combiner=port_e0_combiner, - cross_section=cross_section, - length_y=2.0, - length_x=0.1, - straight_y=None, - straight_x_top=None, - straight_x_bot=None, - with_splitter=True, - port1="o1", - port2="o2", - nbends=2, - cross_section_x_top=None, - cross_section_x_bot=None, - mirror_bot=False, - add_optical_ports_arms=False, - min_length=0.01, - auto_rename_ports=True, - ) - - -@gf.cell(tags=["mzis"]) -def mzi_heater( - delta_length: float = 10, - length_x: float = 200, - splitter: ComponentSpec = "ebeam_y_1550", - straight_x_top: ComponentSpec = "straight_heater_metal", - **kwargs, -) -> gf.Component: - """Mzi with heater on the bottom arm. - - Args: - length_x: horizontal length of the top arm (with heater). - delta_length: bottom arm vertical extra length. - splitter: splitter function. - straight_x_top: straight function for the top arm (with heater). - kwargs: other arguments for mzi. - """ - c = gf.c.mzi_phase_shifter( - length_x=length_x, - delta_length=delta_length, - splitter=splitter, - straight_x_top=straight_x_top, - **kwargs, - ) - - return c - - -@gf.cell(tags=["mzis"]) -def mzi_heater_2x2( - delta_length: float = 10, - length_x: float = 200, - splitter: ComponentSpec = "mmi2x2", - combiner: ComponentSpec = "mmi2x2", - straight_x_top: ComponentSpec = "straight_heater_metal", - **kwargs, -) -> gf.Component: - """Mzi 2x2 with heater on the top arm. - - Args: - length_x: horizontal length of the top arm (with heater). - delta_length: bottom arm vertical extra length. - splitter: splitter function. - combiner: combiner function. - straight_x_top: straight function for the top arm (with heater). - kwargs: other arguments for mzi. - """ - c = gf.c.mzi2x2_2x2( - length_x=length_x, - delta_length=delta_length, - splitter=splitter, - combiner=combiner, - straight_x_top=straight_x_top, - **kwargs, - ) - - return c diff --git a/ubcpdk/cells/rings.py b/ubcpdk/cells/rings.py deleted file mode 100644 index 68775a9c..00000000 --- a/ubcpdk/cells/rings.py +++ /dev/null @@ -1,287 +0,0 @@ -"""Ring Resonators.""" - -import gdsfactory as gf -from gdsfactory.typings import AngleInDegrees, ComponentSpec, CrossSectionSpec, Float2 - -from ubcpdk.tech import TECH - - -@gf.cell(tags=["rings"]) -def ring_single( - gap: float = TECH.gap_strip, - radius: float = 10.0, - length_x: float = 4.0, - length_y: float = 0.6, - cross_section: CrossSectionSpec = "strip", - length_extension: float = 10.0, - bend: ComponentSpec = "bend_euler", - p: float = 0, -) -> gf.Component: - """Returns a single ring. - - ring coupler (cb: bottom) connects to two vertical straights (sl: left, sr: right), - two bends (bl, br) and horizontal straight (wg: top) - - Args: - gap: gap between for coupler. - radius: for the bend and coupler. - length_x: ring coupler length. - length_y: vertical straight length. - cross_section: cross_section spec. - length_extension: straight length extension at the end of the coupler bottom ports. - bend: bend type for the ring. Defaults to "bend_euler". - p: percentage of the bend that is euler. 1 means full euler, 0 means full circular. - - .. code:: - - xxxxxxxxxxxxx - xxxxx xxxx - xxx xxx - xxx xxx - xx xxx - x xxx - xx xx▲ - xx xx│length_y - xx xx▼ - xx xx - xx length_x x - xx ◄───────────────► x - xx xxx - xx xxx - xxx──────▲─────────xxx - │gap - o1──────▼─────────o2 - """ - return gf.c.ring_single( - gap=gap, - radius=radius, - length_x=length_x, - length_y=length_y, - bend=gf.get_component(bend, p=p, radius=radius, cross_section=cross_section), - straight="straight", - coupler_ring="coupler_ring", - cross_section=cross_section, - length_extension=length_extension, - ) - - -@gf.cell(tags=["rings"]) -def ring_double( - gap: float = TECH.gap_strip, - gap_top: float | None = None, - gap_bot: float | None = None, - radius: float = 10.0, - length_x: float = 0.01, - length_y: float = 0.01, - cross_section: CrossSectionSpec = "strip", - length_extension: float = 10.0, -) -> gf.Component: - """Returns a double bus ring. - - two couplers (ct: top, cb: bottom) - connected with two vertical straights (sl: left, sr: right) - - Args: - gap: gap between for coupler. - gap_top: gap for the top coupler. Defaults to gap. - gap_bot: gap for the bottom coupler. Defaults to gap. - radius: for the bend and coupler. - length_x: ring coupler length. - length_y: vertical straight length. - bend: 90 degrees bend spec. - straight: straight spec. - coupler_ring: ring coupler spec. - coupler_ring_top: top ring coupler spec. Defaults to coupler_ring. - cross_section: cross_section spec. - length_extension: straight length extension at the end of the coupler bottom ports. - """ - return gf.c.ring_double( - gap=gap, - gap_top=gap_top, - gap_bot=gap_bot, - radius=radius, - length_x=length_x, - length_y=length_y, - bend="bend_euler", - straight="straight", - coupler_ring="coupler_ring", - cross_section=cross_section, - length_extension=length_extension, - ) - - -@gf.cell(tags=["rings"]) -def ring_double_heater( - gap: float = 0.2, - gap_top: float | None = None, - gap_bot: float | None = None, - radius: float = 10.0, - length_x: float = 2.0, - length_y: float = 0.01, - coupler_ring: ComponentSpec = "coupler_ring", - coupler_ring_top: ComponentSpec | None = None, - straight: ComponentSpec = "straight", - bend: ComponentSpec = "bend_euler", - cross_section_heater: CrossSectionSpec = "heater_metal", - cross_section_waveguide_heater: CrossSectionSpec = "strip_heater_metal", - cross_section: CrossSectionSpec = "strip", - via_stack: ComponentSpec = "via_stack_heater_mtop", - port_orientation: AngleInDegrees | None = None, - via_stack_offset: Float2 = (1, 0), - via_stack_size: Float2 = (4, 4), - length_extension: float | None = None, -) -> gf.Component: - """Returns a double bus ring with heater on top. - - two couplers (ct: top, cb: bottom) - connected with two vertical straights (sl: left, sr: right) - - Args: - gap: gap between for coupler. - gap_top: gap for the top coupler. Defaults to gap. - gap_bot: gap for the bottom coupler. Defaults to gap. - radius: for the bend and coupler. - length_x: ring coupler length. - length_y: vertical straight length. - coupler_ring: ring coupler spec. - coupler_ring_top: ring coupler spec for coupler away from vias (defaults to coupler_ring) - straight: straight spec. - bend: bend spec. - cross_section_heater: for heater. - cross_section_waveguide_heater: for waveguide with heater. - cross_section: for regular waveguide. - via_stack: for heater to routing metal. - port_orientation: for electrical ports to promote from via_stack. - via_stack_size: size of via_stack. - via_stack_offset: x,y offset for via_stack. - with_drop: adds drop ports. - length_extension: straight length extension at the end of the coupler bottom ports. None defaults to 3.0 + radius. - - .. code:: - - o2──────▲─────────o3 - │gap_top - xx──────▼─────────xxx - xxx xxx - xxx xxx - xx xxx - x xxx - xx xx▲ - xx xx│length_y - xx xx▼ - xx xx - xx length_x x - xx ◄───────────────► x - xx xxx - xx xxx - xxx──────▲─────────xxx - │gap - o1──────▼─────────o4 - """ - return gf.c.ring_single_heater( - gap=gap, - gap_top=gap_top, - gap_bot=gap_bot, - radius=radius, - length_x=length_x, - length_y=length_y, - coupler_ring=coupler_ring, - coupler_ring_top=coupler_ring_top, - straight=straight, - bend=bend, - cross_section_heater=cross_section_heater, - cross_section_waveguide_heater=cross_section_waveguide_heater, - cross_section=cross_section, - via_stack=via_stack, - port_orientation=port_orientation, - via_stack_offset=via_stack_offset, - with_drop=True, - length_extension=length_extension, - via_stack_size=via_stack_size, - ) - - -@gf.cell(tags=["rings"]) -def ring_single_heater( - gap: float = 0.2, - radius: float = 10.0, - length_x: float = 2.0, - length_y: float = 0.01, - coupler_ring: ComponentSpec = "coupler_ring", - coupler_ring_top: ComponentSpec | None = None, - straight: ComponentSpec = "straight", - bend: ComponentSpec = "bend_euler", - cross_section_heater: CrossSectionSpec = "heater_metal", - cross_section_waveguide_heater: CrossSectionSpec = "strip_heater_metal", - cross_section: CrossSectionSpec = "strip", - via_stack: ComponentSpec = "via_stack_heater_mtop", - port_orientation: AngleInDegrees | None = None, - via_stack_offset: Float2 = (1, 0), - via_stack_size: Float2 = (4, 4), - length_extension: float | None = None, -) -> gf.Component: - """Returns a double bus ring with heater on top. - - two couplers (ct: top, cb: bottom) - connected with two vertical straights (sl: left, sr: right) - - Args: - gap: gap between for coupler. - gap_top: gap for the top coupler. Defaults to gap. - gap_bot: gap for the bottom coupler. Defaults to gap. - radius: for the bend and coupler. - length_x: ring coupler length. - length_y: vertical straight length. - coupler_ring: ring coupler spec. - coupler_ring_top: ring coupler spec for coupler away from vias (defaults to coupler_ring) - straight: straight spec. - bend: bend spec. - cross_section_heater: for heater. - cross_section_waveguide_heater: for waveguide with heater. - cross_section: for regular waveguide. - via_stack: for heater to routing metal. - port_orientation: for electrical ports to promote from via_stack. - via_stack_size: size of via_stack. - via_stack_offset: x,y offset for via_stack. - with_drop: adds drop ports. - length_extension: straight length extension at the end of the coupler bottom ports. None defaults to 3.0 + radius. - - .. code:: - - xxx xx - xxx xxx - xxx xxx - xxx xxx - xx xxx - x xxx - xx xx▲ - xx xx│length_y - xx xx▼ - xx xx - xx length_x x - xx ◄───────────────► x - xx xxx - xx xxx - xxx──────▲─────────xxx - │gap - o1──────▼─────────o4 - """ - return gf.c.ring_single_heater( - gap=gap, - radius=radius, - length_x=length_x, - length_y=length_y, - coupler_ring=coupler_ring, - coupler_ring_top=coupler_ring_top, - straight=straight, - bend=bend, - cross_section_heater=cross_section_heater, - cross_section_waveguide_heater=cross_section_waveguide_heater, - cross_section=cross_section, - via_stack=via_stack, - port_orientation=port_orientation, - via_stack_offset=via_stack_offset, - with_drop=False, - length_extension=length_extension, - via_stack_size=via_stack_size, - ) diff --git a/ubcpdk/cells/spirals.py b/ubcpdk/cells/spirals.py deleted file mode 100644 index e39be3a3..00000000 --- a/ubcpdk/cells/spirals.py +++ /dev/null @@ -1,104 +0,0 @@ -"""Rings.""" - -import gdsfactory as gf -from gdsfactory.typings import ( - ComponentSpec, - CrossSectionSpec, - Floats, -) - - -@gf.cell(tags=["spirals"]) -def spiral( - length: float = 100, - cross_section: CrossSectionSpec = "strip", - spacing: float = 3, - n_loops: int = 6, -) -> gf.Component: - """Returns a spiral double (spiral in, and then out). - - Args: - length: length of the spiral straight section. - cross_section: cross_section component. - spacing: spacing between the spiral loops. - n_loops: number of loops. - """ - return gf.c.spiral( - length=length, - cross_section=cross_section, - spacing=spacing, - n_loops=n_loops, - bend="bend_euler", - straight="straight", - ) - - -@gf.cell(tags=["spirals"]) -def spiral_racetrack( - min_radius: float | None = None, - straight_length: float = 20.0, - spacings: Floats = (2, 2, 3, 3, 2, 2), - straight: ComponentSpec = "straight", - bend: ComponentSpec = "bend_euler", - bend_s: ComponentSpec = "bend_s", - cross_section: CrossSectionSpec = "strip", - cross_section_s: CrossSectionSpec | None = None, - extra_90_deg_bend: bool = False, - allow_min_radius_violation: bool = False, -) -> gf.Component: - """Returns Racetrack-Spiral. - - Args: - min_radius: smallest radius in um. - straight_length: length of the straight segments in um. - spacings: space between the center of neighboring waveguides in um. - straight: factory to generate the straight segments. - bend: factory to generate the bend segments. - bend_s: factory to generate the s-bend segments. - cross_section: cross-section of the waveguides. - cross_section_s: cross-section of the s bend waveguide (optional). - extra_90_deg_bend: if True, we add an additional straight + 90 degree bent at the output, so the output port is looking down. - allow_min_radius_violation: if True, will allow the s-bend to have a smaller radius than the minimum radius. - """ - return gf.c.spiral_racetrack( - min_radius=min_radius, - straight_length=straight_length, - spacings=spacings, - straight=straight, - bend=bend, - bend_s=bend_s, - cross_section=cross_section, - cross_section_s=cross_section_s, - extra_90_deg_bend=extra_90_deg_bend, - allow_min_radius_violation=allow_min_radius_violation, - ) - - -@gf.cell(tags=["spirals"]) -def spiral_racetrack_heater( - spacing: float = 4.0, - num: int = 8, - straight_length: float = 100, - cross_section: CrossSectionSpec = "strip", -) -> gf.Component: - """Returns spiral racetrack with a heater above. - - based on https://doi.org/10.1364/OL.400230 . - - Args: - spacing: center to center spacing between the waveguides. - num: number of spiral loops. - straight_length: length of the straight segments. - cross_section: cross_section. - """ - return gf.c.spiral_racetrack_heater_metal( - straight_length=straight_length, - min_radius=None, - spacing=spacing, - num=num, - straight="straight", - bend="bend_euler", - bend_s=gf.get_cell("bend_s"), - waveguide_cross_section=cross_section, - via_stack="via_stack_heater_mtop", - ) diff --git a/ubcpdk/cells/tapers.py b/ubcpdk/cells/tapers.py deleted file mode 100644 index 82bb3836..00000000 --- a/ubcpdk/cells/tapers.py +++ /dev/null @@ -1,64 +0,0 @@ -"""Tapers.""" - -import gdsfactory as gf -from gdsfactory.typings import CrossSectionSpec - -from ubcpdk.tech import TECH - - -@gf.cell(tags=["tapers"]) -def taper( - length: float = 10.0, - width1: float = TECH.width, - width2: float | None = None, - cross_section: CrossSectionSpec = "strip", -) -> gf.Component: - """Linear taper, which tapers only the main cross section section. - - Args: - length: taper length. - width1: width of the west/left port. - width2: width of the east/right port. Defaults to width1. - cross_section: specification (CrossSection, string, CrossSectionFactory dict). - """ - return gf.c.taper( - length=length, - width1=width1, - width2=width2, - cross_section=cross_section, - layer=None, - port=None, - with_two_ports=True, - port_names=("o1", "o2"), - port_types=("optical", "optical"), - with_bbox=True, - ) - - -@gf.cell(tags=["tapers"]) -def taper_metal( - length: float = 10.0, - width1: float = TECH.width_metal, - width2: float | None = None, - cross_section: CrossSectionSpec = "metal_routing", -) -> gf.Component: - """Linear taper, which tapers only the main cross section section. - - Args: - length: taper length. - width1: width of the west/left port. - width2: width of the east/right port. Defaults to width1. - cross_section: specification (CrossSection, string, CrossSectionFactory dict). - """ - return gf.c.taper( - length=length, - width1=width1, - width2=width2, - cross_section=cross_section, - layer=None, - port=None, - with_two_ports=True, - port_names=("e1", "e2"), - port_types=("electrical", "electrical"), - with_bbox=True, - ) diff --git a/ubcpdk/cells/text.py b/ubcpdk/cells/text.py deleted file mode 100644 index 979b36e6..00000000 --- a/ubcpdk/cells/text.py +++ /dev/null @@ -1,49 +0,0 @@ -"""Functions for creating physical text geometries.""" - -from typing import Any - -import gdsfactory as gf -from gdsfactory.typings import ComponentSpec, LayerSpec, LayerSpecs - - -@gf.cell(tags=["text"]) -def text_rectangular( - text: str = "abc", - size: float = 3, - justify: str = "left", - layer: LayerSpec = "M2_ROUTER", -) -> gf.Component: - """Pixel based font, guaranteed to be manhattan, without acute angles. - - Args: - text: string. - size: pixel size. - justify: left, right or center. - layer: for text. - """ - return gf.c.text_rectangular( - text=text, size=size, justify=justify, position=(0.0, 0.0), layer=layer - ) - - -@gf.cell(tags=["text"]) -def text_rectangular_multi_layer( - text: str = "abc", - layers: LayerSpecs = ("WG", "M2_ROUTER"), - text_factory: ComponentSpec = "text_rectangular", - **kwargs: Any, -) -> gf.Component: - """Returns rectangular text in different layers. - - Args: - text: string of text. - layers: list of layers to replicate the text. - text_factory: function to create the text Components. - kwargs: keyword arguments for text_factory. - """ - return gf.c.text_rectangular_multi_layer( - text=text, - layers=layers, - text_factory=text_factory, - **kwargs, - ) diff --git a/ubcpdk/cells/vias.py b/ubcpdk/cells/vias.py deleted file mode 100644 index eb40a6bc..00000000 --- a/ubcpdk/cells/vias.py +++ /dev/null @@ -1,33 +0,0 @@ -"""This module contains the fixed cells from the AMF library.""" - -import gdsfactory as gf -from gdsfactory.typings import ( - Size, -) - - -@gf.cell(tags=["vias"]) -def via_stack_heater_mtop(size: Size = (20.0, 10.0)) -> gf.Component: - """Rectangular via array stack. - - You can use it to connect different metal layers or metals to silicon. - You can use the naming convention via_stack_layerSource_layerDestination - contains 4 ports (e1, e2, e3, e4) - - also know as Via array - http://www.vlsi-expert.com/2017/12/vias.html - - Args: - size: of the layers. - """ - return gf.c.via_stack( - size=size, - layers=("M1_HEATER", "M2_ROUTER"), - layer_offsets=None, - vias=(None, None), - layer_to_port_orientations=None, - correct_size=True, - slot_horizontal=False, - slot_vertical=False, - port_orientations=(180, 90, 0, -90), - ) diff --git a/ubcpdk/cells/waveguides.py b/ubcpdk/cells/waveguides.py deleted file mode 100644 index 0e1c8033..00000000 --- a/ubcpdk/cells/waveguides.py +++ /dev/null @@ -1,236 +0,0 @@ -"""Primitives.""" - -import gdsfactory as gf -from gdsfactory.cross_section import port_names_electrical, port_types_electrical -from gdsfactory.typings import CrossSectionSpec, LayerSpec, Size - -from ubcpdk.tech import TECH - - -@gf.cell(tags=["waveguides"]) -def straight( - length: float = 10, - cross_section: CrossSectionSpec = "strip", - width: float | None = None, - npoints: int = 2, -) -> gf.Component: - """Returns a Straight waveguide. - - Args: - length: straight length (um). - cross_section: specification (CrossSection, string or dict). - width: width of the waveguide. If None, it will use the width of the cross_section. - npoints: number of points. - """ - return gf.c.straight( - length=length, cross_section=cross_section, width=width, npoints=npoints - ) - - -@gf.cell(tags=["waveguides"]) -def bend_euler( - radius: float | None = None, - angle: float = 90, - p: float = 0.5, - width: float | None = None, - cross_section: CrossSectionSpec = "strip", - allow_min_radius_violation: bool = False, -) -> gf.Component: - """Regular degree euler bend. - - Args: - radius: in um. Defaults to cross_section_radius. - angle: total angle of the curve. - p: Proportion of the curve that is an Euler curve. - width: width to use. Defaults to cross_section.width. - cross_section: specification (CrossSection, string, CrossSectionFactory dict). - allow_min_radius_violation: if True allows radius to be smaller than cross_section radius. - """ - return gf.c.bend_euler( - radius=radius, - angle=angle, - p=p, - width=width, - cross_section=cross_section, - allow_min_radius_violation=allow_min_radius_violation, - with_arc_floorplan=True, - npoints=None, - layer=None, - ) - - -@gf.cell(tags=["waveguides"]) -def bend_s( - size: Size = (11, 1.8), - cross_section: CrossSectionSpec = "strip", - width: float | None = None, - allow_min_radius_violation: bool = False, -) -> gf.Component: - """Return S bend with bezier curve. - - stores min_bend_radius property in self.info['min_bend_radius'] - min_bend_radius depends on height and length - - Args: - size: in x and y direction. - cross_section: spec. - width: width of the waveguide. If None, it will use the width of the cross_section. - allow_min_radius_violation: allows min radius violations. - """ - return gf.c.bend_s( - size=size, - cross_section=cross_section, - npoints=99, - allow_min_radius_violation=allow_min_radius_violation, - width=width, - ) - - -@gf.cell(tags=["waveguides"]) -def wire_corner( - cross_section: CrossSectionSpec = "metal_routing", - width: float | None = None, - radius: float | None = None, -) -> gf.Component: - """Returns 45 degrees electrical corner wire. - - Args: - cross_section: spec. - width: optional width. Defaults to cross_section width. - radius: ignored. - """ - return gf.c.wire_corner( - cross_section=cross_section, - width=width, - port_names=port_names_electrical, - port_types=port_types_electrical, - radius=radius, - ) - - -@gf.cell(tags=["waveguides"]) -def wire_corner45( - cross_section: CrossSectionSpec = "metal_routing", - radius: float = 10, - width: float | None = None, - layer: LayerSpec | None = None, - with_corner90_ports: bool = True, -) -> gf.Component: - """Returns 90 degrees electrical corner wire. - - Args: - cross_section: spec. - radius: ignored. - width: optional width. Defaults to cross_section width. - layer: ignored. - with_corner90_ports: if True, adds ports at 90 degrees. - """ - return gf.c.wire_corner45( - cross_section=cross_section, - radius=radius, - width=width, - layer=layer, - with_corner90_ports=with_corner90_ports, - ) - - -@gf.cell(tags=["waveguides"]) -def wire_corner45_straight( - width: float | None = TECH.width_metal, - radius: float | None = TECH.width_metal, - cross_section: CrossSectionSpec = "metal_routing", -) -> gf.Component: - """Returns 90 degrees electrical corner wire. - - Args: - width: of the wire. - radius: of the corner. Defaults to width. - cross_section: metal_routing. - """ - return gf.c.wire_corner45_straight( - width=width, - radius=radius, - cross_section=cross_section, - ) - - -#################### -# Metal waveguides -#################### - - -@gf.cell(tags=["waveguides"]) -def straight_metal( - length: float = 10, - cross_section: CrossSectionSpec = "metal_routing", - width: float | None = None, -) -> gf.Component: - """Returns a Straight waveguide. - - Args: - length: straight length (um). - cross_section: specification (CrossSection, string or dict). - width: width of the waveguide. If None, it will use the width of the cross_section. - """ - return gf.c.straight( - length=length, cross_section=cross_section, width=width, npoints=2 - ) - - -@gf.cell(tags=["waveguides"]) -def bend_metal( - radius: float | None = None, - angle: float = 90, - width: float | None = None, - cross_section: CrossSectionSpec = "metal_routing", -) -> gf.Component: - """Regular degree euler bend. - - Args: - radius: None. - angle: 90. - width: None. - cross_section: "metal_routing". - """ - if radius is None: - if width: - xs = gf.get_cross_section(cross_section=cross_section, width=width) - else: - xs = gf.get_cross_section(cross_section=cross_section) - radius = xs.radius or xs.width - return gf.c.bend_circular( - radius=radius, - angle=angle, - width=width, - cross_section=cross_section, - allow_min_radius_violation=True, - npoints=None, - layer=None, - ) - - -@gf.cell(tags=["waveguides"]) -def bend_s_metal( - size: Size = (11, 1.8), - cross_section: CrossSectionSpec = "metal_routing", - width: float | None = None, - allow_min_radius_violation: bool = True, -) -> gf.Component: - """Return S bend with bezier curve. - - stores min_bend_radius property in self.info['min_bend_radius'] - min_bend_radius depends on height and length - - Args: - size: in x and y direction. - cross_section: spec. - width: width of the waveguide. If None, it will use the width of the cross_section. - allow_min_radius_violation: allows min radius violations. - """ - return gf.c.bend_s( - size=size, - cross_section=cross_section, - npoints=99, - allow_min_radius_violation=allow_min_radius_violation, - width=width, - ) diff --git a/ubcpdk/config.py b/ubcpdk/config.py deleted file mode 100644 index 502b004b..00000000 --- a/ubcpdk/config.py +++ /dev/null @@ -1,80 +0,0 @@ -"""Loads a default_config from this file. - -Can overwrite config with an optional `config.yml` file in the current working directory. -""" - -__all__ = ["PATH", "CONFIG"] - -import pathlib - -from gdsfactory.config import CONF - -cwd = pathlib.Path.cwd() -cwd_config = cwd / "config.yml" -module = pathlib.Path(__file__).parent.absolute() -repo = module.parent - -CONFIG = CONF - -if not hasattr(CONFIG, "username"): - CONFIG.username = "JoaquinMatres" - - -class Path: - module = module - repo = repo - cells = module / "cells" - samples = module / "samples" - data = samples / "data" - gds = module / "gds" - - gds_ant = gds / "ANT" - gds_ebeam = gds / "EBeam" - gds_beta = gds / "EBeam_Beta" - gds_dream = gds / "EBeam_Dream" - gds_single = gds / "EBeam_SiN" - - fixed_ant = cells / "fixed_ant.py" - fixed_ebeam = cells / "fixed_ebeam.py" - fixed_beta = cells / "fixed_beta.py" - fixed_dream = cells / "fixed_dream.py" - fixed_single = cells / "fixed_single.py" - - sparameters = repo / "sparameters" - interconnect_cml_path = module / "simulation" / "lumerical" / "EBeam.cml" - modes = repo / "modes" - mask = module / "samples" / "build" - lyp_yaml = module / "layers.yaml" - - mzi = data / "mzi" - mzi1 = mzi / "ZiheGao_MZI1_272_Scan1.mat" - mzi3 = mzi / "ZiheGao_MZI2_271_Scan1.mat" - mzi1 = mzi / "ZiheGao_MZI3_270_Scan1.mat" - mzi4 = mzi / "ZiheGao_MZI4_269_Scan1.mat" - mzi5 = mzi / "ZiheGao_MZI5_268_Scan1.mat" - mzi6 = mzi / "ZiheGao_MZI6_267_Scan1.mat" - mzi8 = mzi / "ZiheGao_MZI8_266_Scan1.mat" - mzi11 = mzi / "ZiheGao_MZI1_273_Scan1.mat" - mzi17 = mzi / "ZiheGao_MZI17_265_Scan1.mat" - ring = data / "ring" - ring_te_r3_g100 = ring / "LukasC_RingDoubleTER3g100_1498.mat" - ring_te_r3_g150 = ring / "LukasC_RingDoubleTER3g150_1497.mat" - ring_te_r10_g50 = ring / "LukasC_RingDoubleTER10g50_1496.mat" - ring_te_r10_g100 = ring / "LukasC_RingDoubleTER10g100_1495.mat" - ring_te_r10_g150 = ring / "LukasC_RingDoubleTER10g150_1494.mat" - ring_te_r10_g200 = ring / "LukasC_RingDoubleTER10g200_1493.mat" - ring_tm_r30_g150 = ring / "LukasC_RingDoubleTMR30g150_1492.mat" - ring_tm_r30_g200 = ring / "LukasC_RingDoubleTMR30g200_1491.mat" - ring_tm_r30_g250 = ring / "LukasC_RingDoubleTMR30g250_1490.mat" - dbr = data / "bragg" - lyp = module / "klayout" / "tech" / "layers.lyp" - lyt = module / "klayout" / "tech" / "tech.lyt" - layers_yaml = module / "layers.yaml" - tech = module / "klayout" / "tech" - - -PATH = Path() - - -if __name__ == "__main__": - print(PATH.sparameters) diff --git a/ubcpdk/data/__init__.py b/ubcpdk/data/__init__.py deleted file mode 100644 index d863252b..00000000 --- a/ubcpdk/data/__init__.py +++ /dev/null @@ -1,9 +0,0 @@ -"""Data analysis module.""" - -from .chop import chop -from .find_bandwidth import find_bandwidth -from .read_mat import read_mat -from .remove_baseline import remove_baseline -from .windowed_mean import windowed_mean - -__all__ = ["read_mat", "remove_baseline", "chop", "windowed_mean", "find_bandwidth"] diff --git a/ubcpdk/data/chop.py b/ubcpdk/data/chop.py deleted file mode 100644 index 5ee971df..00000000 --- a/ubcpdk/data/chop.py +++ /dev/null @@ -1,19 +0,0 @@ -def chop(x, y, ymax=None, ymin=None, xmin=None, xmax=None): - """Chops x, y.""" - if xmax: - y = y[x < xmax] - x = x[x < xmax] - - if xmin: - y = y[x > xmin] - x = x[x > xmin] - - if ymax: - x = x[y < ymax] - y = y[y < ymax] - - if ymin: - x = x[y > ymin] - y = y[y > ymin] - - return x, y diff --git a/ubcpdk/data/convert_to_pandas.py b/ubcpdk/data/convert_to_pandas.py deleted file mode 100644 index fa13f238..00000000 --- a/ubcpdk/data/convert_to_pandas.py +++ /dev/null @@ -1,39 +0,0 @@ -import pandas as pd -from gdsfactory.typings import PathType -from scipy.io import loadmat - - -def convert_to_pandas(filename: PathType, port: int = 0) -> pd.DataFrame: - """Reads .mat file and parses it into a pandas DataFrame.""" - data = loadmat(filename) - - if "scanResults" in data: - wavelength = data["scanResults"][0][port][0][:, 0] - power = data["scanResults"][0][port][0][:, 1] - elif "scandata" in data: - wavelength = data["scandata"][0][0][0][:][0] - power = data["scandata"][0][0][1][:, port] - elif "wavelength" in data: - wavelength = data["wavelength"][0][:] - power = data["power"][:, port][:] - - return pd.DataFrame({"wavelength": wavelength, "output_power": power}) - - -if __name__ == "__main__": - import json - - from ubcpdk.config import PATH - - for filepath in [ - PATH.ring_te_r3_g100, - PATH.ring_te_r3_g150, - PATH.ring_te_r3_g150, - PATH.ring_te_r10_g50, - PATH.ring_te_r10_g100, - PATH.ring_te_r10_g150, - ]: - df = convert_to_pandas(filepath) - json_path = filepath.with_suffix(".json") - d = df.to_dict(orient="split") - json_path.write_text(json.dumps(d, indent=2)) diff --git a/ubcpdk/data/dbr.md b/ubcpdk/data/dbr.md deleted file mode 100644 index acb2006c..00000000 --- a/ubcpdk/data/dbr.md +++ /dev/null @@ -1,90 +0,0 @@ -# Bragg Gratings - -Design objective: - -- Determine the grating strength coupling parameter (kagdsfactory., ∆n, or bandwidth) versus the corrugation width (∆w), and compare rectangular versus sinusoidal gratings. -- Compare experimental data with the simulation data (3D-FDTD Bloch agdsfactory.oach). -- Update the CML model based on this data. - -Design: - -- Measure the reflectivity spectrum (only). This only requires two grating couplers. Removing the 3rd grating coupler that was previously used to measure the transmission eliminates a source of back-reflection (-20 dB). Instead of the 3rd grating coupler, we use a terminator (-30 dB back reflection). -- Make the layout very compact, particularly the gratings themselves, so that we minimize the manufacturing variability. Namely, we want the central wavelength to be as similar as possible. -- For each layout block, we have 24 gratings, connected to 24 pairs of grating couplers. The grating couplers are interlaced to minimize space. -- Check for a wide range of ∆W to look for saturation and nonlinearity (as shown by James Pond’s simulation). Also check a narrow range to look for mask quantization errors. -- Parameter range, set 1-2: -- ∆W = [5, 10, 20:20:200 nm] (total 12) -- type = [rectangular, sinusoidal] -- N = [200, 400] (number of gratings) -- Parameter range, set 4: -- ∆W = [20:1:31] (total 12) -- type = [rectangular, sinusoidal] -- N = [200] (number of gratings) - -The three layouts are as follows: - -- ELEC413_lukasc_A.gds -- N = 200, set 1 -- ELEC413_lukasc_B.gds -- N = 400, set 2 -- ELEC413_lukasc_D.gds -- N = 200, set 4 - -Each contains 24 gratings, connected in reflection mode using a 2x2 splitter. -Sets 1, 2: - -# Set 1 - -Design # | ∆w | Type -1 | 5 | rectangular -2 | 200 | sinusoidal -3 | 10 | rectangular -4 | 180 | sinusoidal -5 | 20 | rectangular -6 | 160 | sinusoidal -7 | 40 | rectangular -8 | 140 | sinusoidal -9 | 60 | rectangular -10 | 120 | sinusoidal -11 | 80 | rectangular -12 | 100 | sinusoidal -13 | 100 | rectangular -14 | 80 | sinusoidal -15 | 120 | rectangular -16 | 60 | sinusoidal -17 | 140 | rectangular -18 | 40 | sinusoidal -19 | 160 | rectangular -20 | 20 | sinusoidal -21 | 180 | rectangular -22 | 10 | sinusoidal -23 | 200 | rectangular -24 | 5 | sinusoidal - -Set 4: - -Design #| ∆w| Type -1 | 20 | rectangular -2 | 31 | sinusoidal -3 | 21 | rectangular -4 | 30 | sinusoidal -5 | 22 | rectangular -6 | 20 | sinusoidal -7 | 23 | rectangular -8 | 28 | sinusoidal -9 | 24 | rectangular -10 | 27 | sinusoidal -11 | 25 | rectangular -12 | 26 | sinusoidal -13 | 26 | rectangular -14 | 25 | sinusoidal -15 | 27 | rectangular -16 | 24 | sinusoidal -17 | 28 | rectangular -18 | 23 | sinusoidal -19 | 29 | rectangular -20 | 22 | sinusoidal -21 | 30 | rectangular -22 | 21 | sinusoidal -23 | 31 | rectangular -24 | 20 | sinusoidal diff --git a/ubcpdk/data/dbr.py b/ubcpdk/data/dbr.py deleted file mode 100644 index 2f6cdbb1..00000000 --- a/ubcpdk/data/dbr.py +++ /dev/null @@ -1,79 +0,0 @@ -from ubcpdk.config import PATH - -dbrs = { - filename.split("_")[3][8:].replace("Num", "_"): PATH.dbr / filename - for filename in [ - "ELEC_413_lukasc_BraggSet1Num10_1272.mat", - "ELEC_413_lukasc_BraggSet1Num11_1273.mat", - "ELEC_413_lukasc_BraggSet1Num12_1271.mat", - "ELEC_413_lukasc_BraggSet1Num13_1278.mat", - "ELEC_413_lukasc_BraggSet1Num14_1276.mat", - "ELEC_413_lukasc_BraggSet1Num15_1277.mat", - "ELEC_413_lukasc_BraggSet1Num16_1275.mat", - "ELEC_413_lukasc_BraggSet1Num17_1282.mat", - "ELEC_413_lukasc_BraggSet1Num18_1280.mat", - "ELEC_413_lukasc_BraggSet1Num19_1281.mat", - "ELEC_413_lukasc_BraggSet1Num1_1266.mat", - "ELEC_413_lukasc_BraggSet1Num20_1279.mat", - "ELEC_413_lukasc_BraggSet1Num21_1286.mat", - "ELEC_413_lukasc_BraggSet1Num22_1284.mat", - "ELEC_413_lukasc_BraggSet1Num23_1285.mat", - "ELEC_413_lukasc_BraggSet1Num24_1283.mat", - "ELEC_413_lukasc_BraggSet1Num2_1264.mat", - "ELEC_413_lukasc_BraggSet1Num3_1265.mat", - "ELEC_413_lukasc_BraggSet1Num4_1263.mat", - "ELEC_413_lukasc_BraggSet1Num5_1270.mat", - "ELEC_413_lukasc_BraggSet1Num6_1268.mat", - "ELEC_413_lukasc_BraggSet1Num7_1269.mat", - "ELEC_413_lukasc_BraggSet1Num8_1267.mat", - "ELEC_413_lukasc_BraggSet1Num9_1274.mat", - "ELEC_413_lukasc_BraggSet2Num10_1248.mat", - "ELEC_413_lukasc_BraggSet2Num11_1249.mat", - "ELEC_413_lukasc_BraggSet2Num12_1247.mat", - "ELEC_413_lukasc_BraggSet2Num13_1254.mat", - "ELEC_413_lukasc_BraggSet2Num14_1252.mat", - "ELEC_413_lukasc_BraggSet2Num15_1253.mat", - "ELEC_413_lukasc_BraggSet2Num16_1251.mat", - "ELEC_413_lukasc_BraggSet2Num17_1258.mat", - "ELEC_413_lukasc_BraggSet2Num18_1256.mat", - "ELEC_413_lukasc_BraggSet2Num19_1257.mat", - "ELEC_413_lukasc_BraggSet2Num1_1242.mat", - "ELEC_413_lukasc_BraggSet2Num20_1255.mat", - "ELEC_413_lukasc_BraggSet2Num21_1262.mat", - "ELEC_413_lukasc_BraggSet2Num22_1260.mat", - "ELEC_413_lukasc_BraggSet2Num23_1261.mat", - "ELEC_413_lukasc_BraggSet2Num24_1259.mat", - "ELEC_413_lukasc_BraggSet2Num2_1240.mat", - "ELEC_413_lukasc_BraggSet2Num3_1241.mat", - "ELEC_413_lukasc_BraggSet2Num4_1239.mat", - "ELEC_413_lukasc_BraggSet2Num5_1246.mat", - "ELEC_413_lukasc_BraggSet2Num6_1244.mat", - "ELEC_413_lukasc_BraggSet2Num7_1245.mat", - "ELEC_413_lukasc_BraggSet2Num8_1243.mat", - "ELEC_413_lukasc_BraggSet2Num9_1250.mat", - "ELEC_413_lukasc_BraggSet4Num10_1200.mat", - "ELEC_413_lukasc_BraggSet4Num11_1201.mat", - "ELEC_413_lukasc_BraggSet4Num12_1199.mat", - "ELEC_413_lukasc_BraggSet4Num13_1206.mat", - "ELEC_413_lukasc_BraggSet4Num14_1204.mat", - "ELEC_413_lukasc_BraggSet4Num15_1205.mat", - "ELEC_413_lukasc_BraggSet4Num16_1203.mat", - "ELEC_413_lukasc_BraggSet4Num17_1210.mat", - "ELEC_413_lukasc_BraggSet4Num18_1208.mat", - "ELEC_413_lukasc_BraggSet4Num19_1209.mat", - "ELEC_413_lukasc_BraggSet4Num1_1194.mat", - "ELEC_413_lukasc_BraggSet4Num20_1207.mat", - "ELEC_413_lukasc_BraggSet4Num21_1214.mat", - "ELEC_413_lukasc_BraggSet4Num22_1212.mat", - "ELEC_413_lukasc_BraggSet4Num23_1213.mat", - "ELEC_413_lukasc_BraggSet4Num24_1211.mat", - "ELEC_413_lukasc_BraggSet4Num2_1192.mat", - "ELEC_413_lukasc_BraggSet4Num3_1193.mat", - "ELEC_413_lukasc_BraggSet4Num4_1191.mat", - "ELEC_413_lukasc_BraggSet4Num5_1198.mat", - "ELEC_413_lukasc_BraggSet4Num6_1196.mat", - "ELEC_413_lukasc_BraggSet4Num7_1197.mat", - "ELEC_413_lukasc_BraggSet4Num8_1195.mat", - "ELEC_413_lukasc_BraggSet4Num9_1202.mat", - ] -} diff --git a/ubcpdk/data/find_bandwidth.py b/ubcpdk/data/find_bandwidth.py deleted file mode 100644 index b023e216..00000000 --- a/ubcpdk/data/find_bandwidth.py +++ /dev/null @@ -1,52 +0,0 @@ -import matplotlib.pyplot as plt -import numpy as np - - -def find_bandwidth(x: np.ndarray, y: np.ndarray, threshold: float = 3) -> float: - """Return bandwidth of x above a threshold around max(y). - - Args: - x: wavelength. - y: power. - threshold: default bandwidth point (in y scale units) - 3 for dB, 0.5 if Y is in linear scale from 0 to 1. - """ - index_max = np.argmax(y) - ymax = y[index_max] - ybw = ymax - threshold - yl = y[:index_max] - yr = y[index_max:] - xl = x[:index_max] - xr = x[index_max:] - il = max(np.argwhere(np.abs(yl - ybw) < 0.1)) - ir = min(np.argwhere(np.abs(yr - ybw) < 0.1)) - return float(xr[ir] - xl[il]) - - -def plot_bandwidth(x, y, threshold: float = 3) -> None: - index_max = np.argmax(y) - ymax = y[index_max] - ybw = ymax - threshold - yl = y[:index_max] - yr = y[index_max:] - xl = x[:index_max] - xr = x[index_max:] - il = max(np.argwhere(np.abs(yl - ybw) < 0.1)) - ir = min(np.argwhere(np.abs(yr - ybw) < 0.1)) - - plt.plot(x, y) - plt.plot(xl[il], yl[il], "o", c="k") - plt.plot(xr[ir], yr[ir], "o", c="k") - plt.show() - - -if __name__ == "__main__": - from ubcpdk.data.chop import chop - from ubcpdk.data.dbr import dbrs - from ubcpdk.data.read_mat import read_mat - - w, p = read_mat(dbrs["1_5"], port=1) - wc, pc = chop(w, p, ymin=-60) - - print(find_bandwidth(wc, pc) * 1e9) - # plot_bandwidth(wc, pc) diff --git a/ubcpdk/data/read_mat.py b/ubcpdk/data/read_mat.py deleted file mode 100644 index c372c665..00000000 --- a/ubcpdk/data/read_mat.py +++ /dev/null @@ -1,36 +0,0 @@ -import numpy as np -from gdsfactory.typings import PathType -from scipy.io import loadmat - - -def read_mat(filename: PathType, port: int = 0) -> tuple[np.ndarray, np.ndarray]: - """Reads .mat file and returns 2 np.arrays (wavelength, power). - - input: (.mat data download filename, port response) - outputs parsed data array [wavelength (m), power (dBm)] - data is assumed to be from automated measurement scanResults or scandata format - based on SiEPIC_Photonics_Package/core.py - """ - data = loadmat(filename) - - if "scanResults" in data: - wavelength = data["scanResults"][0][port][0][:, 0] - power = data["scanResults"][0][port][0][:, 1] - elif "scandata" in data: - wavelength = data["scandata"][0][0][0][:][0] - power = data["scandata"][0][0][1][:, port] - elif "wavelength" in data: - wavelength = data["wavelength"][0][:] - power = data["power"][:, port][:] - - return [wavelength, power] - - -if __name__ == "__main__": - import matplotlib.pyplot as plt - - import ubcpdk - - w, p = read_mat(ubcpdk.PATH.mzi1) - plt.plot(w, p) - plt.show() diff --git a/ubcpdk/data/remove_baseline.py b/ubcpdk/data/remove_baseline.py deleted file mode 100644 index e208ab1a..00000000 --- a/ubcpdk/data/remove_baseline.py +++ /dev/null @@ -1,27 +0,0 @@ -import numpy as np - -from ubcpdk.data.read_mat import read_mat - - -def remove_baseline(wavelength: np.ndarray, power: np.ndarray, deg: int = 4): - """Return power corrected without baseline. - - Fit a polynomial ``p(x) = p[0] * x**deg + ... + p[deg]`` of degree `deg` - """ - pfit = np.polyfit(wavelength - np.mean(wavelength), power, deg) - power_baseline = np.polyval(pfit, wavelength - np.mean(wavelength)) - - power_corrected = power - power_baseline - power_corrected = power_corrected + max(power_baseline) - max(power) - return power_corrected - - -if __name__ == "__main__": - import matplotlib.pyplot as plt - - import ubcpdk - - w, p = read_mat(ubcpdk.PATH.mzi1) - pc = remove_baseline(w, p) - plt.plot(w, pc) - plt.show() diff --git a/ubcpdk/data/windowed_mean.py b/ubcpdk/data/windowed_mean.py deleted file mode 100644 index d6607241..00000000 --- a/ubcpdk/data/windowed_mean.py +++ /dev/null @@ -1,29 +0,0 @@ -import numpy as np -import scipy.signal as sig - - -def windowed_mean(data: np.array, n: int = 60) -> np.array: - """Returns the smoothen data using a window averaging of a 1d array. - - Args: - data: data array. - n: points per window. - """ - dims = len(data.shape) - s = sig.convolve(data, np.ones((2 * n + 1,) * dims), mode="same") - d = sig.convolve(np.ones_like(data), np.ones((2 * n + 1,) * dims), mode="same") - return s / d - - -if __name__ == "__main__": - import matplotlib.pyplot as plt - - from ubcpdk.config import PATH - from ubcpdk.data.read_mat import read_mat - - wavelength, power = read_mat(PATH.ring_te_r3_g100) - power_envelope = windowed_mean(power, 60) - plt.plot(wavelength, power, label="power") - plt.plot(wavelength, power_envelope, label="envelope") - plt.legend() - plt.show() diff --git a/ubcpdk/gds/ANT/ebeam_splitter_swg_assist_te1310_ANT.GDS b/ubcpdk/gds/ANT/ebeam_splitter_swg_assist_te1310_ANT.GDS deleted file mode 100644 index 750f0557..00000000 Binary files a/ubcpdk/gds/ANT/ebeam_splitter_swg_assist_te1310_ANT.GDS and /dev/null differ diff --git a/ubcpdk/gds/ANT/ebeam_splitter_swg_assist_te1550_ANT.GDS b/ubcpdk/gds/ANT/ebeam_splitter_swg_assist_te1550_ANT.GDS deleted file mode 100644 index db8d91f9..00000000 Binary files a/ubcpdk/gds/ANT/ebeam_splitter_swg_assist_te1550_ANT.GDS and /dev/null differ diff --git a/ubcpdk/gds/EBeam/GC_TE_1310_8degOxide_BB.gds b/ubcpdk/gds/EBeam/GC_TE_1310_8degOxide_BB.gds deleted file mode 100644 index bd81d1c7..00000000 Binary files a/ubcpdk/gds/EBeam/GC_TE_1310_8degOxide_BB.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/GC_TE_1550_8degOxide_BB.gds b/ubcpdk/gds/EBeam/GC_TE_1550_8degOxide_BB.gds deleted file mode 100644 index 4afaa3d6..00000000 Binary files a/ubcpdk/gds/EBeam/GC_TE_1550_8degOxide_BB.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/GC_TM_1310_8degOxide_BB.gds b/ubcpdk/gds/EBeam/GC_TM_1310_8degOxide_BB.gds deleted file mode 100644 index b4ab0cb4..00000000 Binary files a/ubcpdk/gds/EBeam/GC_TM_1310_8degOxide_BB.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/GC_TM_1550_8degOxide_BB.gds b/ubcpdk/gds/EBeam/GC_TM_1550_8degOxide_BB.gds deleted file mode 100644 index 5f723d55..00000000 Binary files a/ubcpdk/gds/EBeam/GC_TM_1550_8degOxide_BB.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/GCs_BB.gds b/ubcpdk/gds/EBeam/GCs_BB.gds deleted file mode 100644 index 96a32d14..00000000 Binary files a/ubcpdk/gds/EBeam/GCs_BB.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/ebeam_adiabatic_te1550.gds b/ubcpdk/gds/EBeam/ebeam_adiabatic_te1550.gds deleted file mode 100644 index 5c1e37b1..00000000 Binary files a/ubcpdk/gds/EBeam/ebeam_adiabatic_te1550.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/ebeam_adiabatic_tm1550.gds b/ubcpdk/gds/EBeam/ebeam_adiabatic_tm1550.gds deleted file mode 100644 index de5bd347..00000000 Binary files a/ubcpdk/gds/EBeam/ebeam_adiabatic_tm1550.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/ebeam_bdc_te1550.gds b/ubcpdk/gds/EBeam/ebeam_bdc_te1550.gds deleted file mode 100644 index 26c73f88..00000000 Binary files a/ubcpdk/gds/EBeam/ebeam_bdc_te1550.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/ebeam_crossing4.gds b/ubcpdk/gds/EBeam/ebeam_crossing4.gds deleted file mode 100644 index ab210ef3..00000000 Binary files a/ubcpdk/gds/EBeam/ebeam_crossing4.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/ebeam_gc_te1550.gds b/ubcpdk/gds/EBeam/ebeam_gc_te1550.gds deleted file mode 100644 index c25af553..00000000 Binary files a/ubcpdk/gds/EBeam/ebeam_gc_te1550.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/ebeam_gc_tm1550.gds b/ubcpdk/gds/EBeam/ebeam_gc_tm1550.gds deleted file mode 100644 index 12ed7b89..00000000 Binary files a/ubcpdk/gds/EBeam/ebeam_gc_tm1550.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/ebeam_routing_taper_te1550_w=500nm_to_w=3000nm_L=20um.gds b/ubcpdk/gds/EBeam/ebeam_routing_taper_te1550_w=500nm_to_w=3000nm_L=20um.gds deleted file mode 100644 index d459d71f..00000000 Binary files a/ubcpdk/gds/EBeam/ebeam_routing_taper_te1550_w=500nm_to_w=3000nm_L=20um.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/ebeam_routing_taper_te1550_w=500nm_to_w=3000nm_L=40um.gds b/ubcpdk/gds/EBeam/ebeam_routing_taper_te1550_w=500nm_to_w=3000nm_L=40um.gds deleted file mode 100644 index 02845032..00000000 Binary files a/ubcpdk/gds/EBeam/ebeam_routing_taper_te1550_w=500nm_to_w=3000nm_L=40um.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/ebeam_splitter_swg_assist_te1310.gds b/ubcpdk/gds/EBeam/ebeam_splitter_swg_assist_te1310.gds deleted file mode 100644 index 084dfdc2..00000000 Binary files a/ubcpdk/gds/EBeam/ebeam_splitter_swg_assist_te1310.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/ebeam_splitter_swg_assist_te1550.gds b/ubcpdk/gds/EBeam/ebeam_splitter_swg_assist_te1550.gds deleted file mode 100644 index 7eb62e3d..00000000 Binary files a/ubcpdk/gds/EBeam/ebeam_splitter_swg_assist_te1550.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/ebeam_terminator_te1310.gds b/ubcpdk/gds/EBeam/ebeam_terminator_te1310.gds deleted file mode 100644 index 21247100..00000000 Binary files a/ubcpdk/gds/EBeam/ebeam_terminator_te1310.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/ebeam_terminator_te1550.gds b/ubcpdk/gds/EBeam/ebeam_terminator_te1550.gds deleted file mode 100644 index 8f4010e7..00000000 Binary files a/ubcpdk/gds/EBeam/ebeam_terminator_te1550.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/ebeam_terminator_tm1550.gds b/ubcpdk/gds/EBeam/ebeam_terminator_tm1550.gds deleted file mode 100644 index 4ab67778..00000000 Binary files a/ubcpdk/gds/EBeam/ebeam_terminator_tm1550.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/ebeam_y_1310.gds b/ubcpdk/gds/EBeam/ebeam_y_1310.gds deleted file mode 100644 index e177c951..00000000 Binary files a/ubcpdk/gds/EBeam/ebeam_y_1310.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/ebeam_y_1550.gds b/ubcpdk/gds/EBeam/ebeam_y_1550.gds deleted file mode 100644 index f05fbc54..00000000 Binary files a/ubcpdk/gds/EBeam/ebeam_y_1550.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/ebeam_y_adiabatic.gds b/ubcpdk/gds/EBeam/ebeam_y_adiabatic.gds deleted file mode 100644 index 9d2782a4..00000000 Binary files a/ubcpdk/gds/EBeam/ebeam_y_adiabatic.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/ebeam_y_adiabatic_500pin.gds b/ubcpdk/gds/EBeam/ebeam_y_adiabatic_500pin.gds deleted file mode 100644 index 2bf53ab2..00000000 Binary files a/ubcpdk/gds/EBeam/ebeam_y_adiabatic_500pin.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/taper_si_simm_1310.gds b/ubcpdk/gds/EBeam/taper_si_simm_1310.gds deleted file mode 100644 index 20d3b84d..00000000 Binary files a/ubcpdk/gds/EBeam/taper_si_simm_1310.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam/taper_si_simm_1550.gds b/ubcpdk/gds/EBeam/taper_si_simm_1550.gds deleted file mode 100644 index f633b5e9..00000000 Binary files a/ubcpdk/gds/EBeam/taper_si_simm_1550.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/Alignment_Marker.GDS b/ubcpdk/gds/EBeam_Beta/Alignment_Marker.GDS deleted file mode 100644 index 3a2e361b..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/Alignment_Marker.GDS and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/Packaging_FibreArray_8ch.gds b/ubcpdk/gds/EBeam_Beta/Packaging_FibreArray_8ch.gds deleted file mode 100644 index 5d3c7e3c..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/Packaging_FibreArray_8ch.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/SEM_example.gds b/ubcpdk/gds/EBeam_Beta/SEM_example.gds deleted file mode 100644 index 81cc9451..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/SEM_example.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/ebeam_BondPad.gds b/ubcpdk/gds/EBeam_Beta/ebeam_BondPad.gds deleted file mode 100644 index f5decb05..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/ebeam_BondPad.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/ebeam_BondPad_75.gds b/ubcpdk/gds/EBeam_Beta/ebeam_BondPad_75.gds deleted file mode 100644 index 7bf9a50d..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/ebeam_BondPad_75.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/ebeam_bdc_tm1550.gds b/ubcpdk/gds/EBeam_Beta/ebeam_bdc_tm1550.gds deleted file mode 100644 index 459be5d6..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/ebeam_bdc_tm1550.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/ebeam_gc_te1310.gds b/ubcpdk/gds/EBeam_Beta/ebeam_gc_te1310.gds deleted file mode 100644 index 0895b8ae..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/ebeam_gc_te1310.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/ebeam_gc_te1310_8deg.oas b/ubcpdk/gds/EBeam_Beta/ebeam_gc_te1310_8deg.oas deleted file mode 100644 index b5b7eacb..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/ebeam_gc_te1310_8deg.oas and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/ebeam_gc_te1310_broadband.gds b/ubcpdk/gds/EBeam_Beta/ebeam_gc_te1310_broadband.gds deleted file mode 100644 index f89edbff..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/ebeam_gc_te1310_broadband.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/ebeam_gc_te1550_90nmSlab.gds b/ubcpdk/gds/EBeam_Beta/ebeam_gc_te1550_90nmSlab.gds deleted file mode 100644 index c5dbe675..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/ebeam_gc_te1550_90nmSlab.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/ebeam_gc_te1550_broadband.GDS b/ubcpdk/gds/EBeam_Beta/ebeam_gc_te1550_broadband.GDS deleted file mode 100644 index 76dd90f6..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/ebeam_gc_te1550_broadband.GDS and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/ebeam_splitter_adiabatic_swg_te1550.gds b/ubcpdk/gds/EBeam_Beta/ebeam_splitter_adiabatic_swg_te1550.gds deleted file mode 100644 index c3ebf1be..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/ebeam_splitter_adiabatic_swg_te1550.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/ebeam_swg_edgecoupler.gds b/ubcpdk/gds/EBeam_Beta/ebeam_swg_edgecoupler.gds deleted file mode 100644 index ea2afa37..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/ebeam_swg_edgecoupler.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/ebeam_terminator_te1310.gds b/ubcpdk/gds/EBeam_Beta/ebeam_terminator_te1310.gds deleted file mode 100644 index eef1df38..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/ebeam_terminator_te1310.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/ebeam_y_adiabatic_1310.gds b/ubcpdk/gds/EBeam_Beta/ebeam_y_adiabatic_1310.gds deleted file mode 100644 index bf35c637..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/ebeam_y_adiabatic_1310.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/metal_via.gds b/ubcpdk/gds/EBeam_Beta/metal_via.gds deleted file mode 100644 index 041fb44c..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/metal_via.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/pbs_1550_eskid.gds b/ubcpdk/gds/EBeam_Beta/pbs_1550_eskid.gds deleted file mode 100644 index c50e186b..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/pbs_1550_eskid.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/photonic_wirebond_surfacetaper_1310.gds b/ubcpdk/gds/EBeam_Beta/photonic_wirebond_surfacetaper_1310.gds deleted file mode 100644 index 83f7ef10..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/photonic_wirebond_surfacetaper_1310.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/photonic_wirebond_surfacetaper_1550.gds b/ubcpdk/gds/EBeam_Beta/photonic_wirebond_surfacetaper_1550.gds deleted file mode 100644 index c0334725..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/photonic_wirebond_surfacetaper_1550.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/siepic_o_gc_te1270_BB.GDS b/ubcpdk/gds/EBeam_Beta/siepic_o_gc_te1270_BB.GDS deleted file mode 100644 index be84ce79..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/siepic_o_gc_te1270_BB.GDS and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/siepic_o_pwbstlas_si_BB.GDS b/ubcpdk/gds/EBeam_Beta/siepic_o_pwbstlas_si_BB.GDS deleted file mode 100644 index 39fe9545..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/siepic_o_pwbstlas_si_BB.GDS and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/thermal_phase_shifter_multimode_.gds b/ubcpdk/gds/EBeam_Beta/thermal_phase_shifter_multimode_.gds deleted file mode 100644 index 5f103255..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/thermal_phase_shifter_multimode_.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/thermal_phase_shifter_te_1310_.gds b/ubcpdk/gds/EBeam_Beta/thermal_phase_shifter_te_1310_.gds deleted file mode 100644 index a32affda..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/thermal_phase_shifter_te_1310_.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/thermal_phase_shifter_te_1310_50.gds b/ubcpdk/gds/EBeam_Beta/thermal_phase_shifter_te_1310_50.gds deleted file mode 100644 index 0f845529..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/thermal_phase_shifter_te_1310_50.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/thermal_phase_shifter_te_1550_50.gds b/ubcpdk/gds/EBeam_Beta/thermal_phase_shifter_te_1550_50.gds deleted file mode 100644 index cbbb5305..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/thermal_phase_shifter_te_1550_50.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Beta/thermal_phase_shifters.gds b/ubcpdk/gds/EBeam_Beta/thermal_phase_shifters.gds deleted file mode 100644 index bdadab49..00000000 Binary files a/ubcpdk/gds/EBeam_Beta/thermal_phase_shifters.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Dream/ebeam_dream_FAVE_SiN_1310_BB.gds b/ubcpdk/gds/EBeam_Dream/ebeam_dream_FAVE_SiN_1310_BB.gds deleted file mode 100644 index 1a9f681a..00000000 Binary files a/ubcpdk/gds/EBeam_Dream/ebeam_dream_FAVE_SiN_1310_BB.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Dream/ebeam_dream_FAVE_SiN_1550_BB.gds b/ubcpdk/gds/EBeam_Dream/ebeam_dream_FAVE_SiN_1550_BB.gds deleted file mode 100644 index 0178aeff..00000000 Binary files a/ubcpdk/gds/EBeam_Dream/ebeam_dream_FAVE_SiN_1550_BB.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Dream/ebeam_dream_FAVE_Si_1310_BB.gds b/ubcpdk/gds/EBeam_Dream/ebeam_dream_FAVE_Si_1310_BB.gds deleted file mode 100644 index 9b5ff1df..00000000 Binary files a/ubcpdk/gds/EBeam_Dream/ebeam_dream_FAVE_Si_1310_BB.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Dream/ebeam_dream_FAVE_Si_1550_BB.gds b/ubcpdk/gds/EBeam_Dream/ebeam_dream_FAVE_Si_1550_BB.gds deleted file mode 100644 index 1a29e5f5..00000000 Binary files a/ubcpdk/gds/EBeam_Dream/ebeam_dream_FAVE_Si_1550_BB.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Dream/ebeam_dream_FaML_SiN_1550_BB.gds b/ubcpdk/gds/EBeam_Dream/ebeam_dream_FaML_SiN_1550_BB.gds deleted file mode 100644 index e18c2359..00000000 Binary files a/ubcpdk/gds/EBeam_Dream/ebeam_dream_FaML_SiN_1550_BB.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Dream/ebeam_dream_FaML_Si_1310_BB.gds b/ubcpdk/gds/EBeam_Dream/ebeam_dream_FaML_Si_1310_BB.gds deleted file mode 100644 index 85eb2ae1..00000000 Binary files a/ubcpdk/gds/EBeam_Dream/ebeam_dream_FaML_Si_1310_BB.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Dream/ebeam_dream_FaML_Si_1310_BB.oas b/ubcpdk/gds/EBeam_Dream/ebeam_dream_FaML_Si_1310_BB.oas deleted file mode 100644 index 8b8c286a..00000000 Binary files a/ubcpdk/gds/EBeam_Dream/ebeam_dream_FaML_Si_1310_BB.oas and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Dream/ebeam_dream_FaML_Si_1550_BB.gds b/ubcpdk/gds/EBeam_Dream/ebeam_dream_FaML_Si_1550_BB.gds deleted file mode 100644 index 5b597e1d..00000000 Binary files a/ubcpdk/gds/EBeam_Dream/ebeam_dream_FaML_Si_1550_BB.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Dream/ebeam_dream_splitter_1x2_te1550_BB.gds b/ubcpdk/gds/EBeam_Dream/ebeam_dream_splitter_1x2_te1550_BB.gds deleted file mode 100644 index 69af9b5c..00000000 Binary files a/ubcpdk/gds/EBeam_Dream/ebeam_dream_splitter_1x2_te1550_BB.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Dream/ebeam_dream_splitter_1x2_te1550_BB.oas b/ubcpdk/gds/EBeam_Dream/ebeam_dream_splitter_1x2_te1550_BB.oas deleted file mode 100644 index b0e79fc6..00000000 Binary files a/ubcpdk/gds/EBeam_Dream/ebeam_dream_splitter_1x2_te1550_BB.oas and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Dream/ebeam_sin_dream_splitter1x2_te1550_BB.gds b/ubcpdk/gds/EBeam_Dream/ebeam_sin_dream_splitter1x2_te1550_BB.gds deleted file mode 100644 index 47e6f8ec..00000000 Binary files a/ubcpdk/gds/EBeam_Dream/ebeam_sin_dream_splitter1x2_te1550_BB.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_Dream/ebeam_sin_dream_splitter1x2_te1550_BB.oas b/ubcpdk/gds/EBeam_Dream/ebeam_sin_dream_splitter1x2_te1550_BB.oas deleted file mode 100644 index 96af4cef..00000000 Binary files a/ubcpdk/gds/EBeam_Dream/ebeam_sin_dream_splitter1x2_te1550_BB.oas and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/ANT_MMI_1x2_te1550_3dB_BB.gds b/ubcpdk/gds/EBeam_SiN/ANT_MMI_1x2_te1550_3dB_BB.gds deleted file mode 100644 index 1de504eb..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/ANT_MMI_1x2_te1550_3dB_BB.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/GC_SiN_TE_1310_8degOxide_BB.gds b/ubcpdk/gds/EBeam_SiN/GC_SiN_TE_1310_8degOxide_BB.gds deleted file mode 100644 index ed64c3cf..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/GC_SiN_TE_1310_8degOxide_BB.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/GC_SiN_TE_1550_8degOxide_BB.gds b/ubcpdk/gds/EBeam_SiN/GC_SiN_TE_1550_8degOxide_BB.gds deleted file mode 100644 index 5056bb8a..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/GC_SiN_TE_1550_8degOxide_BB.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/ULaval.gds b/ubcpdk/gds/EBeam_SiN/ULaval.gds deleted file mode 100644 index bcbad6f0..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/ULaval.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/crossing_SiN_1550.gds b/ubcpdk/gds/EBeam_SiN/crossing_SiN_1550.gds deleted file mode 100644 index 3dd63e1f..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/crossing_SiN_1550.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/crossing_SiN_1550_extended.gds b/ubcpdk/gds/EBeam_SiN/crossing_SiN_1550_extended.gds deleted file mode 100644 index 56e8db12..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/crossing_SiN_1550_extended.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/crossing_horizontal.gds b/ubcpdk/gds/EBeam_SiN/crossing_horizontal.gds deleted file mode 100644 index 5576502a..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/crossing_horizontal.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/crossing_manhattan.gds b/ubcpdk/gds/EBeam_SiN/crossing_manhattan.gds deleted file mode 100644 index 91466d7a..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/crossing_manhattan.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/ebeam_BondPad.gds b/ubcpdk/gds/EBeam_SiN/ebeam_BondPad.gds deleted file mode 100644 index f5decb05..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/ebeam_BondPad.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/ebeam_DC_2-1_te895.gds b/ubcpdk/gds/EBeam_SiN/ebeam_DC_2-1_te895.gds deleted file mode 100644 index e698f95d..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/ebeam_DC_2-1_te895.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/ebeam_DC_te895.gds b/ubcpdk/gds/EBeam_SiN/ebeam_DC_te895.gds deleted file mode 100644 index b45fce2a..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/ebeam_DC_te895.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/ebeam_MMI_2x2_5050_te1310.gds b/ubcpdk/gds/EBeam_SiN/ebeam_MMI_2x2_5050_te1310.gds deleted file mode 100644 index a2bc6eda..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/ebeam_MMI_2x2_5050_te1310.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/ebeam_Polarizer_TM_1550_UQAM.gds b/ubcpdk/gds/EBeam_SiN/ebeam_Polarizer_TM_1550_UQAM.gds deleted file mode 100644 index 34eb9ba4..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/ebeam_Polarizer_TM_1550_UQAM.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/ebeam_YBranch_895.gds b/ubcpdk/gds/EBeam_SiN/ebeam_YBranch_895.gds deleted file mode 100644 index 2799b568..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/ebeam_YBranch_895.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/ebeam_YBranch_te1310.gds b/ubcpdk/gds/EBeam_SiN/ebeam_YBranch_te1310.gds deleted file mode 100644 index 03d5832c..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/ebeam_YBranch_te1310.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/ebeam_gc_te895.gds b/ubcpdk/gds/EBeam_SiN/ebeam_gc_te895.gds deleted file mode 100644 index 42a9011d..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/ebeam_gc_te895.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/ebeam_terminator_SiN_1310.gds b/ubcpdk/gds/EBeam_SiN/ebeam_terminator_SiN_1310.gds deleted file mode 100644 index e63d1833..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/ebeam_terminator_SiN_1310.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/ebeam_terminator_SiN_1550.gds b/ubcpdk/gds/EBeam_SiN/ebeam_terminator_SiN_1550.gds deleted file mode 100644 index 2ed1cc5d..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/ebeam_terminator_SiN_1550.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/ebeam_terminator_SiN_te895.gds b/ubcpdk/gds/EBeam_SiN/ebeam_terminator_SiN_te895.gds deleted file mode 100644 index 324ae43c..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/ebeam_terminator_SiN_te895.gds and /dev/null differ diff --git a/ubcpdk/gds/EBeam_SiN/taper_SiN_750_3000.gds b/ubcpdk/gds/EBeam_SiN/taper_SiN_750_3000.gds deleted file mode 100644 index 8a477845..00000000 Binary files a/ubcpdk/gds/EBeam_SiN/taper_SiN_750_3000.gds and /dev/null differ diff --git a/ubcpdk/import_gds.py b/ubcpdk/import_gds.py deleted file mode 100644 index 03d3ec34..00000000 --- a/ubcpdk/import_gds.py +++ /dev/null @@ -1,112 +0,0 @@ -from collections.abc import Callable -from functools import cache -from pathlib import Path -from typing import Any - -import gdsfactory as gf -import kfactory as kf -from gdsfactory.component import Component -from kfactory import KCLayout - -from ubcpdk.tech import LAYER - - -def kcell_to_component( - kcell: kf.kcell.ProtoTKCell[Any], load_meta: bool = False -) -> Component: - kcell.set_meta_data() - - if load_meta: - for ci in kcell.called_cells(): - kcell.kcl[ci].set_meta_data() - - c = Component() - c.name = kcell.name - c.kdb_cell.copy_tree(kcell.kdb_cell) - if load_meta: - c.copy_meta_info(kcell.kdb_cell) - c.get_meta_data() - - for ci in c.called_cells(): - c.kcl[ci].get_meta_data() - - return c - - -@cache -def import_gds( - gdspath: str | Path, - cellname: str | None = None, - port_type="optical", - layer_pin=LAYER.PORT, - layer_port=LAYER.WG, - post_process: Callable[[Component], Component] | None = None, - convert_paths_to_polygons: bool = True, - auto_rename_ports: bool = True, -) -> Component: - """Returns klayout cell from GDS. - - Args: - gdspath: path to gds. - cellname: cell name. If None uses top cell. - port_type: port type. - layer_pin: layer where pins are drawn. - layer_port: layer where ports are drawn. - post_process: function to apply to component after import. - convert_paths_to_polygons: convert paths to polygons. - auto_rename_ports: rename ports. - """ - temp_kcl = KCLayout(name=str(gdspath)) - temp_kcl.read(gdspath) - cellname = cellname or temp_kcl.top_cell().name - kcell = temp_kcl[cellname] - - c = kcell_to_component(kcell) - if post_process: - post_process(c) - - layer_pin = gf.get_layer_info(layer_pin) - - for shape in c.shapes(layer_pin).each(kf.kdb.Shapes.SPaths): - path = shape.path - assert isinstance(path, kf.kdb.Path) - dpath = path.to_dtype(gf.kcl.dbu) - p1, p2 = list(dpath.each_point()) - v = p2 - p1 - if v.x < 0: - orientation = 2 - elif v.x > 0: - orientation = 0 - elif v.y > 0: - orientation = 1 - else: - orientation = 3 - - c.create_port( - width=gf.snap.snap_to_grid(path.width / 1e3, nm=2), - trans=kf.kdb.Trans(orientation, False, path.bbox().center().to_v()), - layer=layer_port, - port_type=port_type, - ) - - if convert_paths_to_polygons: - for layer in c.kcl.layer_indexes(): - paths = list(c.shapes(layer).each(kf.kdb.Shapes.SPaths)) - - for shape in paths: - poly = shape.path.polygon() - c.shapes(layer).erase(shape) - c.shapes(layer).insert(poly) - - if auto_rename_ports: - c.auto_rename_ports() - c.function_name = cellname - return c - - -if __name__ == "__main__": - from ubcpdk.config import PATH - - c = import_gds(PATH.gds / "ebeam_gc_te1310_8deg.gds") - c.pprint_ports() - c.show() diff --git a/ubcpdk/klayout/tech/drc/ELEC463 Doping.lydrc b/ubcpdk/klayout/tech/drc/ELEC463 Doping.lydrc deleted file mode 100644 index 30457a00..00000000 --- a/ubcpdk/klayout/tech/drc/ELEC463 Doping.lydrc +++ /dev/null @@ -1,71 +0,0 @@ - - - - - drc - - - - false - false - - true - drc_scripts - tools_menu.drc.end - dsl - drc-dsl-xml - # DRC deck for EBeam PDK, for ELEC463-2018 -# Lukas Chrostowski, 2018 -''' -Chip1 process: - - partial etch on layer Si - - oxide - - metal heater - -Process Layers - - Si 1/0 - - Si N++: 24/0 - - Metal (12_M2): 12/0 - - Text: for automated measurement labels - -''' - -# Read about DRC scripts in the User Manual under "Design Rule Check (DRC)" -# http://klayout.de/doc/manual/drc_basic.html - -report("DRC ELEC463-2018 Chip2") - -# Layers: -LayerSi=input(1,0) -LayerM=input(12,0) -LayerNpp=input(24,0) -DevRec=input(68,0) -LayerFP=input(99) - -# minimum feature size: - -# minimum feature size of 60nm -LayerSi.width(0.06, angle_limit(80)).output("Si_width","Si minimum feature size violation; min 60 nm") -LayerSi.space(0.06).output("Si_space","Si minimum space violation; min 60 nm") - -# minimum feature size of 3 µm -LayerM.width(3.0, angle_limit(80)).output("M_width","Metal minimum feature size violation; min 3 µm") -LayerM.space(3.0).output("M_space","Metal minimum space violation; min 5 µm") - -# minimum feature size of 3 µm -LayerNpp.width(3.0, angle_limit(80)).output("Npp_width","Doping minimum feature size violation; min 3 µm") -LayerNpp.space(5.0).output("Npp_space","Doping minimum space violation; min 5 µm") - -# minimum separation: -LayerM.separation(LayerSi, 4.0).output("M_Si_separation","Metal-Si minimum separation violation; min 4 µm") -LayerNpp.separation(LayerSi, 4.0).output("Npp_Si_separation","Npp-Si minimum separation violation; min 4 µm") - -# minimum overlap: -LayerM.overlap(LayerNpp, 7.0).output("M_Npp_overlap","Metal-Npp minimum overlap violation; min 7 µm") - - -# make sure the devices are within the floor plan layer region; -LayerSi.outside(LayerFP).output("Boundary","devices are out of boundary") - - - diff --git a/ubcpdk/klayout/tech/drc/ELEC463 Metal Heater.lydrc b/ubcpdk/klayout/tech/drc/ELEC463 Metal Heater.lydrc deleted file mode 100644 index 9796fc0e..00000000 --- a/ubcpdk/klayout/tech/drc/ELEC463 Metal Heater.lydrc +++ /dev/null @@ -1,55 +0,0 @@ - - - - - drc - - - - false - false - - true - drc_scripts - tools_menu.drc.end - dsl - drc-dsl-xml - # DRC deck for EBeam PDK, for ELEC463-2018 -# Lukas Chrostowski, 2018 -''' -Chip1 process: - - partial etch on layer Si - - oxide - - metal heater - -Process Layers - - Si 1/0 - - M Heater: 47/0 - - Text: for automated measurement labels - -''' - -# Read about DRC scripts in the User Manual under "Design Rule Check (DRC)" -# http://klayout.de/doc/manual/drc_basic.html - -report("DRC ELEC463-2018 Chip1") - -# Layers: -LayerSi=input(1,0) -LayerM=input(47,0) -DevRec=input(68,0) -LayerFP=input(99) - -# minimum feature size of 60nm -LayerSi.width(0.06, angle_limit(80)).output("Si_width","Si minimum feature size violation; min 60 nm") -LayerSi.space(0.06).output("Si_space","Si minimum space violation; min 60 nm") - -# minimum feature size of 3 µm -LayerM.width(3.0, angle_limit(80)).output("M_width","Si minimum feature size violation; min 3 µm") -LayerM.space(3.0).output("M_space","Metal minimum space violation; min 3 µm") - -# make sure the devices are within the floor plan layer region; -LayerSi.outside(LayerFP).output("Boundary","devices are out of boundary") - - - diff --git a/ubcpdk/klayout/tech/drc/SiEPIC_EBeam_DRC.lyp b/ubcpdk/klayout/tech/drc/SiEPIC_EBeam_DRC.lyp deleted file mode 100644 index 6d11e4ad..00000000 --- a/ubcpdk/klayout/tech/drc/SiEPIC_EBeam_DRC.lyp +++ /dev/null @@ -1,119 +0,0 @@ - - - KLayout Design Rule Check (DRC) - EBeam - - drc - - - - false - false - D - true - - siepic_menu.verification.begin - dsl - drc-dsl-xml - # Basic DRC deck for SiEPIC_EBeam_PDK -# Lukas Chrostowski, 2016 -# Mustafa Hammood, 2020 update -# Lukas Chrostowski, 2021 update - -# Read about DRC scripts in the User Manual under "Design Rule Check (DRC)" -# http://klayout.de/doc/manual/drc_basic.html - -report("SiEPIC-EBeam-PDK DRC") - -# Layers: -LayerSi=input(1,0) -LayerSip6nm=input(31,0) -LayerSi_rib=input(2,0) -DevRec=input(68,0) -PinRec=input(1,10) -LayerFP=input(99) -LayerM1=input(11,0) -LayerM2=input(12,0) -LayerMLOpen=input(13,0) -LayerVC=input(40,0) -LayerN=input(20,0) -LayerNpp=input(24,0) - -################# -# non-physical checks -################# - -# Check device overlaps (functional check) -overlaps = DevRec.merged(2) -output(overlaps, "Devices","Devices cannot be overlapping") - -# make sure the devices are within the floor plan layer region; -LayerSi.outside(LayerFP).output("Boundary","devices are out of boundary") - -################# -# physical checks -################# - -tol = 1e-3 # users typically shoot for exactly the min features - # for curves, this leads to lots of false errors. - -# minimum feature size of Si is 60 nm and minimum exclusion between Si is 60 nm -LayerSi.width(0.06-tol, angle_limit(80)).output("Si_width","Si minimum feature size violation; min 60 nm") -LayerSip6nm.width(0.06-tol, angle_limit(80)).output("Sip6nm_width","Si minimum feature size violation; min 60 nm") -LayerSi.space(0.06-tol, angle_limit(80)).output("Si_space","Si minimum space violation; min 60 nm") -LayerSip6nm.space(0.06-tol, angle_limit(80)).output("Sip6nm_space","Si minimum space violation; min 60 nm") - -# minimum feature size of Si rib is 100 nm and minimum exclusion between Si is 60 nm -LayerSi_rib.width(0.1-tol, angle_limit(80)).output("Si_rib_width","Si_rib minimum feature size violation; min 100 nm") - -# Metal rules based on the metalization process provided by Applied Nanotools, based on contact optical lithography. -# Metal heater, M1 -LayerM1.width(3.0-tol, angle_limit(70)).output("M1_width","M1 minimum feature size violation; min 3 µm") -LayerM1.space(3.0-tol).output("M1_space","M1 minimum space violation; min 3 µm") - -# Metal routing/contact, M2 -LayerM2.width(5.0-tol, angle_limit(70)).output("M2_width","M2 minimum feature size violation; min 5 µm") -LayerM2.space(8.0-tol).output("M2_space","M2 minimum space violation; min 8 µm") - -# Metal pad air opening, MLOpen -LayerMLOpen.width(10.0-tol).output("MLOpen_width","MLOpen minimum feature size violation; min 10 µm") -LayerMLOpen.space(10.0-tol).output("MLOpen_space","MLOpen minimum space violation; min 10 µm") - -# Doping rules based on the experimental process -# Oxide contact vias -LayerVC.width(5.0-tol, angle_limit(70)).output("VC_width","VC minimum feature size violation; min 5 µm") -LayerVC.space(5.0-tol).output("VC_space","VC minimum space violation; min 5 µm") - -# NPP Doping -LayerNpp.width(2.0-tol, angle_limit(70)).output("Npp_width","Npp Doping minimum feature size violation; min 2 µm") -LayerNpp.space(2.0-tol).output("Npp_space","Npp minimum space violation; min 2 µm") - -# N Doping -LayerN.width(2.0-tol, angle_limit(70)).output("N_width","N Doping minimum feature size violation; min 2 µm") -LayerN.space(2.0-tol).output("N_space","N minimum space violation; min 2 µm") - -# minimum separation between NPP and Si -LayerNpp.separation(LayerSi, 2.0-tol).output("Npp_Si_separation","Npp-Si minimum separation violation; min 2 µm") - -# minimum separation between VC and Si -LayerVC.separation(LayerSi, 3.0-tol).output("VC_Si_separation","VC-Si minimum separation violation; min 3 µm") - -# minimum overlap rules: -LayerM2.overlap(LayerM1,3.0-tol).output("M2_M1_overlap","M2 minimum overlap with M1 violation; min 3 µm") -LayerM2.overlap(LayerVC, 5.0-tol).output("M2_VC_overlap","Metal2-VC minimum overlap violation; min 5 µm") -LayerN.overlap(LayerNpp, 3.0-tol).output("N_Npp_overlap","N-Npp minimum overlap violation; min 3 µm") -LayerVC.overlap(LayerNpp, 5.0-tol).output("VC_Npp_overlap","VC-Npp minimum overlap violation; min 5 µm") - -# minimum inclusion rules: -LayerM2.enclosing(LayerVC, 1.0-tol).output("M2_VC_enclosure","M2-VC minimum enclosure violation; min 1 µm") -LayerSi_rib.enclosing(LayerVC, 1.0-tol).output("Si_rib_VC_enclosure","Si_rib-VC minimum enclosure violation; min 1 µm") - - -# Waveguide checks: -# disconnects, mismatched - - -PinRec.not_inside(LayerSi) # .and(PinRec.not_inside(another_material)) - .output( "SiEPIC-1a" , "Warning: Possible waveguide mismatch or waveguide disconnect: PinRec must enclose only one waveguide material." ) - - - diff --git a/ubcpdk/klayout/tech/layers.lyp b/ubcpdk/klayout/tech/layers.lyp deleted file mode 100644 index 87a22fbf..00000000 --- a/ubcpdk/klayout/tech/layers.lyp +++ /dev/null @@ -1,887 +0,0 @@ - - - - #ff9d9d - #ff9d9d - 0 - 0 - I2 - - true - true - false - 1 - false - false - 0 - Waveguide 1/0 - 1/0@1 - - - #ff9d9d - #ff9d9d - 0 - 0 - I2 - - true - true - false - 1 - false - false - 0 - Waveguide2 31/0 - 31/0@1 - - - #00ffff - #00ffff - 0 - 0 - I3 - - true - true - true - 1 - false - false - 0 - SLAB150 2/0 - 2/0@1 - - - #ebc634 - #ebc634 - 0 - 0 - I1 - - true - true - false - - false - false - 0 - M1_HEATER 11/0 - 11/0@1 - - - #008080 - #800057 - 0 - 0 - I2 - - true - true - false - - false - false - 0 - M2_ROUTER 12/0 - 12/0@1 - - - #808080 - #808080 - 0 - 0 - I1 - - true - true - false - - false - false - 0 - M_Open 13/0 - 13/0@1 - - - #ff8000 - #ff8000 - 0 - 0 - - - true - true - true - 1 - false - false - 0 - MH 47/0 - 47/0@1 - - - #9999cc - #9999cc - 0 - 0 - I4 - - true - true - false - 1 - false - false - 0 - DEEPTRENCH 4/0 - 4/0@1 - - - #808080 - #808080 - 0 - 0 - - - true - true - false - 1 - false - false - 0 - OXIDE_ETCH 6/0 - 6/0@1 - - - #808080 - #808080 - 0 - 0 - - - true - true - false - 1 - false - false - 0 - TEXT 10/0 - 10/0@1 - - - #0000ff - #0000ff - 0 - 0 - - - true - true - true - 1 - false - false - 0 - TE 203/0 - 203/0@1 - - - #ff0000 - #ff0000 - 0 - 0 - - - true - true - false - 1 - false - false - 0 - TM 204/0 - 204/0@1 - - - #808080 - #808080 - 0 - 0 - - - true - true - false - - false - false - 0 - LABEL_INSTANCES 206/0 - 206/0@1 - - - #808080 - #808080 - 0 - 0 - I1 - - true - true - false - - false - false - 0 - FLOORPLAN 99/0 - 99/0@1 - - - #800057 - #800057 - 0 - 0 - - - true - true - false - 3 - false - false - 0 - Lumerical - 733/0@1 - - - #800057 - #800057 - 0 - 0 - - - true - true - false - 3 - false - false - 0 - WAFER - 999/0@1 - - - #004080 - #004080 - 0 - 0 - I1 - - true - true - true - 1 - false - false - 0 - DevRec - 68/0@1 - - - #404040 - #404040 - 0 - 0 - - - true - true - false - - false - false - 0 - PinRec - 1/10@1 - - - #004080 - #004080 - 0 - 0 - - - true - true - false - 2 - false - false - 0 - FbrTgt - 81/0@1 - - - #0000ff - #0000ff - 0 - 0 - - - true - true - false - 1 - false - false - 0 - Text - 66/0@1 - - - #0000ff - #0000ff - 0 - 0 - - - true - true - false - 1 - false - false - 0 - Errors - 69/0@1 - - - #004080 - #004080 - 0 - 0 - - - true - true - false - 1 - false - false - 0 - PinRecM - 1/11@1 - - - - - 0 - 0 - - - true - true - false - - false - false - 0 - XSECTION - */*@* - - #f3ff80 - #f3ff80 - 0 - 0 - I0 - - true - true - false - 1 - false - false - 0 - XS_BOX 300/0 - 300/0@1 - - - #808080 - #808080 - 0 - 0 - I0 - - true - true - false - 1 - false - false - 0 - XS_SI 301/0 - 301/0@1 - - - #808080 - #808080 - 0 - 0 - I0 - - true - true - false - 1 - false - false - 0 - XS_SIN 319/0 - 319/0@1 - - - #008ca5 - #008ca5 - 0 - 0 - I0 - - true - true - false - 1 - false - false - 0 - XS_N 320/0 - 320/0@1 - - - #004ca5 - #004ca5 - 0 - 0 - I0 - - true - true - false - 1 - false - false - 0 - XS_NPP 321/0 - 321/0@1 - - - #00f233 - #00f233 - 0 - 0 - I0 - - true - true - false - 1 - false - false - 0 - XS_P 330/0 - 330/0@1 - - - #00f233 - #00f233 - 0 - 0 - I0 - - true - true - false - 1 - false - false - 0 - XS_PDPP 327/0 - 327/0@1 - - - #00b233 - #00b233 - 0 - 0 - I0 - - true - true - false - 1 - false - false - 0 - XS_PPP 331/0 - 331/0@1 - - - #80a8ff - #80a8ff - 0 - 0 - - - true - true - false - 1 - false - false - 0 - XS_SI_SLAB 313/0 - 313/0@1 - - - #0000ff - #0000ff - 0 - 0 - - - true - true - false - 1 - false - false - 0 - XS_OVERLAY 311/0 - 311/0@1 - - - #f3ff80 - #f3ff80 - 0 - 0 - - - true - true - false - 1 - false - false - 0 - XS_OX_SI 302/0 - 302/0@1 - - - #004ca5 - #004ca5 - 0 - 0 - - - true - true - false - 1 - false - false - 0 - XS_GE 315/0 - 315/0@1 - - - #808080 - #808080 - 0 - 0 - - - true - true - false - 1 - false - false - 0 - XS_VIAC 303/0 - 303/0@1 - - - #008000 - #008000 - 0 - 0 - - - true - true - false - 1 - false - false - 0 - XS_M1 304/0 - 304/0@1 - - - #f3ff80 - #f3ff80 - 0 - 0 - - - true - true - false - 1 - false - false - 0 - XS_OXIDE_M1 305/0 - 305/0@1 - - - #008000 - #008000 - 0 - 0 - - - true - true - false - 1 - false - false - 0 - XS_MH 306/0 - 306/0@1 - - - #f3ff80 - #f3ff80 - 0 - 0 - - - true - true - false - 1 - false - false - 0 - XS_OXIDE_M2 307/0 - 307/0@1 - - - #f3ff80 - #f3ff80 - 0 - 0 - - - true - true - false - 1 - false - false - 0 - XS_OXIDE_MH 317/0 - 317/0@1 - - - #f3ff80 - #f3ff80 - 0 - 0 - - - true - true - false - 1 - false - false - 0 - XS_OXIDE_ML 309/0 - 309/0@1 - - - #805000 - #805000 - 0 - 0 - - - true - true - false - 1 - false - false - 0 - XS_M2 399/0 - 399/0@1 - - - #808080 - #808080 - 0 - 0 - - - true - true - false - 1 - false - false - 0 - XS_VIA2 310/0 - 310/0@1 - - - #805000 - #805000 - 0 - 0 - - - true - true - false - 1 - false - false - 0 - XS_SIN2 305/0 - 305/0@1 - - - - #ff0000 - #ff0000 - 0 - 0 - - - true - true - true - 3 - false - false - 0 - DRC_MARKER 205/0 - 205/0@1 - - - #ff0000 - #ff0000 - 0 - 0 - - - true - true - true - 3 - false - false - 0 - ERROR_MARKER 207/0 - 207/0@1 - - - #ff80a8 - #ff80a8 - 0 - 0 - - - true - true - false - - false - false - 0 - SHOW_PORTS 1/12 - 1/12@1 - - - - - 0 - 0 - - - true - true - false - - false - false - 0 - simulation - */*@* - - #808080 - #808080 - 0 - 0 - - - true - true - false - - false - false - 0 - SIM_REGION 100/0 - 100/0@1 - - - #0000ff - #0000ff - 0 - 0 - - - true - true - false - - false - false - 0 - MONITOR 101/0 - 101/0@1 - - - #ff0000 - #ff0000 - 0 - 0 - - - true - true - false - - false - false - 0 - SOURCE 110/0 - 110/0@1 - - - diff --git a/ubcpdk/klayout/tech/layers2.lyp b/ubcpdk/klayout/tech/layers2.lyp deleted file mode 100644 index 66b41c4a..00000000 --- a/ubcpdk/klayout/tech/layers2.lyp +++ /dev/null @@ -1,136 +0,0 @@ - - - - #000000 - #000000 - 0 - 0 - I2 - - true - true - false - 1 - false - false - 0 - 1/0 - WG - 1/0@1 - - - #c0c0c0 - #c0c0c0 - 0 - 0 - I3 - - true - false - false - 1 - false - false - 0 - 111/0 - WGCLAD - 111/0@1 - - - #ff80a8 - #ff80a8 - 0 - 0 - I9 - - true - true - false - - false - false - 0 - 1/10 - PIN - 1/10@1 - - - #0000ff - #0000ff - 0 - 0 - I5 - true - true - false - - false - 0 - 10/0 - TEXT - 10/0@1 - - - #004080 - #004080 - 0 - 0 - I1 - - true - false - true - 1 - false - false - 0 - 68/0 - DEVREC - 68/0@1 - - - #000000 - #000000 - 0 - 0 - I1 - - true - true - false - - false - false - 0 - 99/0 - FLOORPLAN - 99/0@1 - - - #800057 - #800057 - 0 - 0 - I1 - - true - true - false - 3 - false - false - 0 - 733/0 - LUMERICAL - 733/0@1 - - - #004080 - #004080 - 0 - 0 - I9 - true - true - false - 2 - false - 0 - FbrTgt - 81/0@1 - - all - diff --git a/ubcpdk/klayout/tech/pymacros/klayout_Library.lym b/ubcpdk/klayout/tech/pymacros/klayout_Library.lym deleted file mode 100644 index 68027777..00000000 --- a/ubcpdk/klayout/tech/pymacros/klayout_Library.lym +++ /dev/null @@ -1,277 +0,0 @@ - - - import_ubcpdk_PCells - - pymacros - - - - false - false - 0 - - true - - ubcpdk.begin - python - - -import pya -import sys -import pathlib -import os -from functools import partial -from inspect import Parameter, signature, Signature -import json -import numpy as np - -config_file = os.path.expanduser(pathlib.Path('~/.gdsfactory/gf-config.json')) - -cfg = {} -with open(config_file, 'a+') as j: - j.seek(0) - try: - cfg = json.loads(j.read()) - except: - cfg = {} - - if "conda-env" not in cfg.keys(): - env_dir_str = pya.FileDialog.ask_existing_dir("Select directory of Python environment to link:", "") - - if env_dir_str is None: - quit() - - cfg["conda-env"] = env_dir_str - - json.dump(cfg, j, sort_keys=True, indent=4) -j.close() - -env_dir = pathlib.Path(cfg["conda-env"]) - -if env_dir is None: - quit() - -sys.path.append(str(pathlib.Path(f'{env_dir}/site-packages/'))) - -try: - import flayout as fl - from flayout.pcell import _klayout_type, _validate_parameter, copy_tree - import ubcpdk.components as gfc - import ubcpdk - import gdsfactory as gf - from gdsfactory.routing.manhattan import route_manhattan - from gdsfactory.routing.route_bundle import route_bundle - from gdsfactory.routing import route_single_electrical, route_single_electrical_m2, route_single_electrical_multilayer, route_single_sbend, route_singles_bend180 -except Exception as e: - pya.MessageBox.info('import error', str(e), pya.MessageBox.Ok) - -# Create layout for the library -layout = pya.Layout() -for layer in gf.LAYER: - layout.layer(*layer[1]) - -pcells_in_layout = {} -routers = { - 'route_manhattan': route_manhattan, - 'route_bundle': route_bundle, - 'route_single_electrical': route_single_electrical, - 'route_single_electrical_m2': route_single_electrical_m2, - 'route_single_electrical_multilayer': route_single_electrical_multilayer, - 'route_single_sbend': route_single_sbend, - 'route_singles_bend180': route_singles_bend180, -} - -# PCell class that creates the PCell -class PCellFactory(pya.PCellDeclarationHelper): - def __init__(self, component) -> None: - """Create a PCell from a ubcpdk component.""" - super().__init__() - self.gf_component = component.func if isinstance(component, partial) else component # this is a function that returns a component - self.sig = self._extract_sig(self.gf_component) or {} - params = self._pcell_parameters(self.sig) # Create pcell parameters - self._param_keys = list(params.keys()) - self._param_values = [] - for name, param in params.items(): - # Add the parameter to the PCell - self._param_values.append( - self.param( - name=name, - value_type=_klayout_type(param), - description=name.replace("_", " "), - default=param.default, - ) - ) - - def produce_impl(self): - """Produce the PCell.""" - params = dict(zip(self._param_keys, self._param_values)) - cell = self.gdsfactory_to_klayout(**params) - # Add the cell to the layout - cell.name = params['name'] if 'name' in params.keys() else self.gf_component.__name__ - copy_tree(cell, self.cell, on_same_name="replace") - - def _pcell_parameters(self, sig: Signature): - """Get the parameters of a function.""" - # NOTE: There could be a better way to do this, than use __signature__. - new_params = {} - - new_params = {'name': Parameter('name', kind=Parameter.KEYWORD_ONLY, default=self.gf_component.__name__ or None, annotation=str)} - params = sig.parameters - for name, param in params.items(): - try: - new_params[name] = _validate_parameter(name, param) - except ValueError as e: - raise ValueError(f'Parameter {name} is not valid: {e}') - comp_ports = self.gf_component().copy().ports.keys() - new_params.update({'routes': Parameter('routes', kind=Parameter.KEYWORD_ONLY, default=[f'{port}->{None}@{None}' for port in comp_ports], annotation=list)}) - new_params.update({'route_function': Parameter('route_function', kind=Parameter.KEYWORD_ONLY, default="route_manhattan", annotation=str)}) - return new_params - - def _extract_sig(self, component): - """Extract the signature of a function.""" - sig = signature(component) - ignore_params = [] - params = sig.parameters - - for name, param in params.items(): - try: - _validate_parameter(name, param) - except: - # Ignore parameters that are not accepted by KLayout - ignore_params.append(name) - - ignore_params.append('cross_section') - - sig_new = Signature( - [param for name, param in params.items() if name not in ignore_params] - ) or {} - return sig_new - - def gdsfactory_to_klayout(self, **kwargs): - gf.clear_cache() # Clear cache to be able to reload components without changing the name - # Add routes - def _route_components(routes: str, router, c) -> None: - port1, component2_port2 = routes[0].split('->') - component2, port2 = component2_port2.split('@') - component2_pcell = pcells_in_layout[component2] - component2_ = component2_pcell['pcell'].gf_component(**component2_pcell['settings']) - current_layout: pya.Layout = pya.Application.instance().main_window().current_view().active_cellview().layout() - - # Get the pcells - # Also update the routes of the component2 - # There is no elegant way of getting pcell variants by name in KLayout with 'self.gf_component' attribute - # So we have to iterate over all pcells in the layout. - # TODO: Find a better way to do this - for cell_ in current_layout.top_cells(): - for cell in cell_.each_inst(): - if cell.cell.is_pcell_variant(): - if cell.pcell_parameter('name') == component2: - center = cell.bbox().center() - c2_cell = cell - if cell.pcell_parameter('name') == c.name: - center_ = cell.bbox().center() - c_name = c.name - c = c.dmove(c.center, (center_.dx* layout.dbu, center_.dy* layout.dbu)) # Move the component to the center of the cell - c.name = c_name - component2_ = component2_.dmove(component2_.center, (center.dx* layout.dbu, center.dy* layout.dbu)) # Move the component to the center of the cell - - port1 = c.ports[port1] - port2 = component2_.ports[port2] - - route_ = router(port1, port2) # Get the route - # Add the route to the layout - route_component = gf.Component(f'route_{c.name}@{port1.name}_{component2}@{port2.name}') - route_component.add(route_.references) - - polygons = route_component.get_polygons(True) - for layer, polygons in polygons.items(): - layer_idx = layout.layer(*layer) - - # Add pya.Polygon for every gdsfactory Polygon - for polygon in polygons: - polygon = np.array(polygon) * 1000 - points_pya = [pya.Point(*p) for p in polygon] - # Add the polygon to the layout top cell - current_layout.top_cells()[0].shapes(layer_idx).insert(pya.Polygon(points_pya)) - - c2_routes = c2_cell.pcell_parameter('routes') - new_routes = [] - for route in c2_routes: - port1_ = route.split('->')[0] - if port1_ == port2.name: - new_routes.append(f'{port1_}->{c.name}@{port1.name}') - else: - new_routes.append(route) - - # Get the component and route - routes = kwargs.pop('routes', []) - router = kwargs.pop('route_function', 'route_manhattan') - c = self.gf_component(**kwargs) - # Get the cell - if 'name' in kwargs.keys(): - top = layout.create_cell(kwargs['name']) - else: - top = layout.create_cell(c.name) - - polygons = c.get_polygons(True) - for layer, polygons in polygons.items(): - layer_idx = layout.layer(*layer) - - # Add pya.Polygon for every gdsfactory Polygon - for polygon in polygons: - polygon = np.array(polygon) - polygon = polygon * 1000 - points_pya = [pya.Point(*p) for p in polygon] - top.shapes(layer_idx).insert(pya.Polygon(points_pya)) - - # Keep track of PCell instances - # NOTE: This is a hack to be able to get the component from the PCell - # instance. This is needed to be able to route the components. - # KLayout creates PCells in a "hidden" layout, so we need to get the "real" - # PCell instance from the layout. - # TODO: Find a better way to do this. - pcells_in_layout.setdefault(top.name, {}).setdefault('pcell', self) - pcellid = ubcpdk_lib.layout().pcell_declaration(self.cell.name).id() - layout.add_pcell_variant(ubcpdk_lib, pcellid, dict(zip(self._param_keys, self._param_values))) - - # Add routes - router = routers[router] - current_routes = pcells_in_layout[top.name]['routes'] if 'routes' in pcells_in_layout[top.name].keys() else [] - - for route_ in routes: - if isinstance(route_, str): - route_ = [route_] - if route_ not in ([''], []) and 'None' not in route_[0] and route_[0] not in current_routes: - _route_components(route_, router, c) - - # Keep track of routes - pcells_in_layout[top.name].setdefault('routes', current_routes) - pcells_in_layout[top.name].setdefault('settings', kwargs) - top.__doc__ = self.gf_component.__doc__.split('\n\n')[0] # Cell description is the first line of the docstring - - return top - -ubcpdk_lib = fl.library( - "ubcpdk PDK", - pcells=[], - cells=[], - description="GDSFactory ubcpdk PCell Library", -) -# Would be nice to add SiEPIC pins to all of these -pb = pya.AbsoluteProgress("Importing ubcpdk components", len(ubcpdk.cells.keys())) -for i, cell in enumerate(ubcpdk.cells.items()): - - pb.set(i / len(ubcpdk.cells.items()) * 100, True) - - try: - # Cell function signature, used by flayout - - func = PCellFactory(cell[1]) # Cell function - ubcpdk_lib.layout().register_pcell(cell[0], func) # Register the PCell - - except Exception as e: - pass # Ignore components that cannot be converted to PCells -pb.set(100, True) - - - diff --git a/ubcpdk/klayout/tech/pymacros/set_menus.lym b/ubcpdk/klayout/tech/pymacros/set_menus.lym deleted file mode 100644 index 319fe4c8..00000000 --- a/ubcpdk/klayout/tech/pymacros/set_menus.lym +++ /dev/null @@ -1,34 +0,0 @@ - - - set_menus - - pymacros - - - - true - false - - false - - ubcpdk.begin - python - - -import pya - -__version__ = "3.3.5" - - -def set_menu(): - menu = pya.Application.instance().main_window().menu() - - s0 = "ubcpdk" - if not (menu.is_menu(s0)): - menu.insert_menu("macros_menu", s0, f"ubcpdk {__version__}") - - -if __name__ == "__main__": - set_menu() - - diff --git a/ubcpdk/klayout/tech/tech.lyt b/ubcpdk/klayout/tech/tech.lyt deleted file mode 100644 index fc9f8809..00000000 --- a/ubcpdk/klayout/tech/tech.lyt +++ /dev/null @@ -1,216 +0,0 @@ - - - UBCPDK - - - 0.001 - - /home/jmatres/ubc/ubcpdk/klayout/tech - layers.lyp - true - - - 1 - true - true - - - true - layer_map() - true - true - - - true - layer_map() - 0.001 - true - #1 - true - #1 - false - #1 - true - OUTLINE - true - PLACEMENT_BLK - true - REGIONS - true - - 0 - true - .PIN - 2 - true - .PIN - 2 - true - .FILL - 5 - true - .OBS - 3 - true - .BLK - 4 - true - .LABEL - 1 - true - .LABEL - 1 - true - - 0 - true - - 0 - VIA_ - true - default - false - - - - false - true - true - 64 - 0 - 1 - 0 - DATA - 0 - 0 - BORDER - layer_map() - true - - - 0.001 - 1 - 100 - 100 - 0 - 0 - 0 - false - false - false - true - layer_map() - - - 0 - 0.001 - layer_map() - true - false - - - 1 - 0.001 - layer_map() - true - false - true - - - - - - GDS2 - - true - false - false - false - false - false - 8000 - 32000 - EBeam - - - 2 - false - false - 1 - * - false - - - 0 - - - false - false - - - 0 - - true - - - - # Provide z stack information here -# -# Each line is one layer. The specification consists of a layer specification, a colon and arguments. -# The arguments are named (like "x=...") or in serial. Parameters are separated by comma or blanks. -# Named arguments are: -# -# zstart The lower z position of the extruded layer in µm -# zstop The upper z position of the extruded layer in µm -# height The height of the extruded layer in µm -# -# 'height', 'zstart' and 'zstop' can be used in any combination. If no value is given for 'zstart', -# the upper level of the previous layer will be used. -# -# If a single unnamed parameter is given, it corresponds to 'height'. Two parameters correspond to -# 'zstart' and 'zstop'. -# -# Examples: -# 1: 0.5 1.5 # extrude layer 1/0 from 0.5 to 1.5 vertically -# 1/0: 0.5 1.5 # same with explicit datatype -# 1: zstop=1.5, zstart=0.5 # same with named parameters -# 1: height=1.0, zstop=1.5 # same with z stop minus height -# 1: 1.0 zstop=1.5 # same with height as unnamed parameter -# -# VARIABLES -# -# You can declare variables with: -# var name = value -# -# You can use variables inside numeric expressions. -# Example: -# var hmetal = 0.48 -# 7/0: 0.5 0.5+hmetal*2 # 2x thick metal -# -# You cannot use variables inside layer specifications currently. -# -# CONDITIONALS -# -# You can enable or disable branches of the table using 'if', 'else', 'elseif' and 'end': -# Example: -# var thick_m1 = true -# if thickm1 -# 1: 0.5 1.5 -# else -# 1: 0.5 1.2 -# end -1/0: 0.0 0.22 -111/0: 0.0 3.0 -2/0: 0.0 0.15 -3/0: 0.0 0.09 -34/0: 0.32 0.67 -5/0: 0.22 0.72 -40/0: 0.09 1.1900000000000002 -41/0: 1.32 2.0700000000000003 -47/0: 1.32 2.0700000000000003 -44/0: 2.0700000000000003 3.5700000000000003 -45/0: 3.5700000000000003 5.57 - - - - diff --git a/ubcpdk/layers.yaml b/ubcpdk/layers.yaml deleted file mode 100644 index d8dab9c1..00000000 --- a/ubcpdk/layers.yaml +++ /dev/null @@ -1,262 +0,0 @@ -LayerViews: - Waveguide: - layer: [1, 0] - layer_in_name: true - width: 1 - color: "#ff9d9d" - hatch_pattern: dotted - Waveguide2: - layer: [31, 0] - layer_in_name: true - width: 1 - color: "#ff9d9d" - hatch_pattern: dotted - SLAB150: - layer: [2, 0] - layer_in_name: true - transparent: true - width: 1 - color: "cyan" - hatch_pattern: coarsely dotted - M1_HEATER: - layer: [11, 0] - layer_in_name: true - color: "#ebc634" - hatch_pattern: hollow - M2_ROUTER: - layer: [12, 0] - layer_in_name: true - frame_color: "teal" - fill_color: "#800057" - hatch_pattern: dotted - M_Open: - layer: [13, 0] - layer_in_name: true - color: "gray" - hatch_pattern: hollow - MH: - layer: [47, 0] - layer_in_name: true - transparent: true - width: 1 - color: "#ff8000" - DEEPTRENCH: - layer: [4, 0] - layer_in_name: true - width: 1 - color: "#9999cc" - hatch_pattern: left-hatched - OXIDE_ETCH: - layer: [6, 0] - layer_in_name: true - width: 1 - color: "gray" - TEXT: - layer: [10, 0] - layer_in_name: true - width: 1 - color: "gray" - TE: - layer: [203, 0] - layer_in_name: true - transparent: true - width: 1 - color: "blue" - TM: - layer: [204, 0] - layer_in_name: true - width: 1 - color: "red" - LABEL_INSTANCES: - layer: [206, 0] - layer_in_name: true - color: "gray" - FLOORPLAN: - layer: [99, 0] - layer_in_name: true - color: "gray" - hatch_pattern: hollow - Lumerical: - layer: [733, 0] - width: 3 - color: "#800057" - WAFER: - layer: [999, 0] - width: 3 - color: "#800057" - DevRec: - layer: [68, 0] - visible: true - transparent: true - width: 1 - color: "#004080" - hatch_pattern: hollow - PinRec: - layer: [1, 10] - color: "#404040" - FbrTgt: - layer: [81, 0] - width: 2 - color: "#004080" - Text: - layer: [66, 0] - width: 1 - color: "blue" - Errors: - layer: [69, 0] - width: 1 - color: "blue" - PinRecM: - layer: [1, 11] - width: 1 - color: "#004080" - XSECTION: - group_members: - XS_BOX: - layer: [300, 0] - layer_in_name: true - width: 1 - color: "#f3ff80" - hatch_pattern: solid - XS_SI: - layer: [301, 0] - layer_in_name: true - width: 1 - color: "gray" - hatch_pattern: solid - XS_SIN: - layer: [319, 0] - layer_in_name: true - width: 1 - color: "gray" - hatch_pattern: solid - XS_N: - layer: [320, 0] - layer_in_name: true - width: 1 - color: "#008ca5" - hatch_pattern: solid - XS_NPP: - layer: [321, 0] - layer_in_name: true - width: 1 - color: "#004ca5" - hatch_pattern: solid - XS_P: - layer: [330, 0] - layer_in_name: true - width: 1 - color: "#00f233" - hatch_pattern: solid - XS_PDPP: - layer: [327, 0] - layer_in_name: true - width: 1 - color: "#00f233" - hatch_pattern: solid - XS_PPP: - layer: [331, 0] - layer_in_name: true - width: 1 - color: "#00b233" - hatch_pattern: solid - XS_SI_SLAB: - layer: [313, 0] - layer_in_name: true - width: 1 - color: "#80a8ff" - XS_OVERLAY: - layer: [311, 0] - layer_in_name: true - width: 1 - color: "blue" - XS_OX_SI: - layer: [302, 0] - layer_in_name: true - width: 1 - color: "#f3ff80" - XS_GE: - layer: [315, 0] - layer_in_name: true - width: 1 - color: "#004ca5" - XS_VIAC: - layer: [303, 0] - layer_in_name: true - width: 1 - color: "grey" - XS_M1: - layer: [304, 0] - layer_in_name: true - width: 1 - color: "green" - XS_OXIDE_M1: - layer: [305, 0] - layer_in_name: true - width: 1 - color: "#f3ff80" - XS_MH: - layer: [306, 0] - layer_in_name: true - width: 1 - color: "green" - XS_OXIDE_M2: - layer: [307, 0] - layer_in_name: true - width: 1 - color: "#f3ff80" - XS_OXIDE_MH: - layer: [317, 0] - layer_in_name: true - width: 1 - color: "#f3ff80" - XS_OXIDE_ML: - layer: [309, 0] - layer_in_name: true - width: 1 - color: "#f3ff80" - XS_M2: - layer: [399, 0] - layer_in_name: true - width: 1 - color: "#805000" - XS_VIA2: - layer: [310, 0] - layer_in_name: true - width: 1 - color: "grey" - XS_SIN2: - layer: [305, 0] - layer_in_name: true - width: 1 - color: "#805000" - DRC_MARKER: - layer: [205, 0] - layer_in_name: true - transparent: true - width: 3 - color: "red" - ERROR_MARKER: - layer: [207, 0] - layer_in_name: true - transparent: true - width: 3 - color: "red" - SHOW_PORTS: - layer: [1, 12] - layer_in_name: true - color: "#ff80a8" - simulation: - group_members: - SIM_REGION: - layer: [100, 0] - layer_in_name: true - color: "gray" - MONITOR: - layer: [101, 0] - layer_in_name: true - color: "blue" - SOURCE: - layer: [110, 0] - layer_in_name: true - color: "red" diff --git a/ubcpdk/models.py b/ubcpdk/models.py deleted file mode 100644 index 5a4dfaec..00000000 --- a/ubcpdk/models.py +++ /dev/null @@ -1,159 +0,0 @@ -"""SAX models for Sparameter circuit simulations.""" - -from __future__ import annotations - -import inspect -from collections.abc import Callable - -import jax.numpy as jnp -import sax -import sax.models as sm -from numpy.typing import NDArray - -sax.set_port_naming_strategy("optical") - -nm = 1e-3 - - -def straight( - wl: float | NDArray = 1.55, - length: float = 10.0, - neff: float = 2.4, - ng: float = 4.2, - wl0: float = 1.55, - loss_dB_cm: float = 3.0, -) -> sax.SDict: - """Dispersive straight waveguide model. - - ``` - in0 out0 - o1 =========== o2 - ``` - - Args: - wl: The wavelength in micrometers. - wl0: The center wavelength used for dispersion calculation. - neff: The Effective refractive index at the center wavelength. - ng: The Group refractive index at the center wavelength. - length: The length of the waveguide in micrometers. - loss_dB_cm: The Propagation loss in dB/cm. - """ - return sm.straight( - wl=wl, wl0=wl0, neff=neff, ng=ng, length=length, loss_dB_cm=loss_dB_cm - ) - - -def bend_euler( - wl: float | NDArray = 1.55, - wl0: float = 1.55, - neff: float = 2.4, - ng: float = 4.2, - length: float = 10.0, - loss_dB_cm: float = 3.0, -) -> sax.SDict: - """Simple waveguide bend model. - - ``` - out0 - o2 - - / - __.' - o1 - in0 - ``` - - Args: - wl: Operating wavelength in micrometers. Can be a scalar or array for - multi-wavelength simulations. Defaults to 1.55 μm. - wl0: Reference wavelength in micrometers used for dispersion calculation. - This is typically the design wavelength where neff is specified. - Defaults to 1.55 μm. - neff: Effective refractive index at the reference wavelength. This value - represents the fundamental mode effective index and determines the - phase velocity. Defaults to 2.34 (typical for silicon). - ng: Group refractive index at the reference wavelength. Used to calculate - chromatic dispersion: ng = neff - lambda * d(neff)/d(lambda). - Typically ng > neff for normal dispersion. Defaults to 3.4. - length: Physical length of the waveguide in micrometers. Determines both - the total phase accumulation and loss. Defaults to 10.0 μm. - loss_dB_cm: Propagation loss in dB/cm. Includes material absorption, - scattering losses, and other loss mechanisms. Set to 0.0 for - lossless modeling. Defaults to 0.0 dB/cm. - """ - return sm.bend( - wl=wl, wl0=wl0, neff=neff, ng=ng, length=length, loss_dB_cm=loss_dB_cm - ) - - -################ -# MMIs -################ - - -coupler = sm.coupler - - -def straight_heater_metal( - wl: float = 1.55, - neff: float = 2.34, - voltage: float = 0, - vpi: float = 1.0, # Voltage required for π-phase shift - length: float = 10, - loss: float = 0.0, -) -> sax.SDict: - """Returns simple phase shifter model. - - Args: - wl: wavelength. - neff: effective index. - voltage: applied voltage. - vpi: voltage required for a π-phase shift. - length: length. - loss: loss. - """ - # Calculate additional phase shift due to applied voltage. - deltaphi = (voltage / vpi) * jnp.pi - phase = 2 * jnp.pi * neff * length / wl + deltaphi - amplitude = jnp.asarray(10 ** (-loss * length / 20), dtype=complex) - transmission = amplitude * jnp.exp(1j * phase) - return sax.reciprocal( - { - ("o1", "o2"): transmission, - ("l_e1", "r_e1"): 0.0, - ("l_e2", "r_e2"): 0.0, - ("l_e3", "r_e3"): 0.0, - ("l_e4", "r_e4"): 0.0, - } - ) - - -################ -# Models Dict -################ - - -def get_models() -> dict[str, Callable[..., sax.SDict]]: - """Return a dictionary of all models in this module.""" - models = {} - for name, func in list(globals().items()): - # Skip get_models itself and private functions - if name == "get_models" or name.startswith("_"): - continue - if not callable(func): - continue - try: - sig = inspect.signature(func) - except (ValueError, TypeError): - continue - # Check for sax.SDict return type (case-insensitive) - return_anno = str(sig.return_annotation) - if "sdict" in return_anno.lower(): - models[name] = func - return models - - -_models = get_models() - -if __name__ == "__main__": - print(sorted(_models.keys())) diff --git a/ubcpdk/models/__init__.py b/ubcpdk/models/__init__.py deleted file mode 100644 index ced0c6d4..00000000 --- a/ubcpdk/models/__init__.py +++ /dev/null @@ -1,282 +0,0 @@ -"""SAX models for Sparameter circuit simulations.""" - -from __future__ import annotations - -import inspect -from collections.abc import Callable - -import jax.numpy as jnp -import sax -import sax.models as sm -from numpy.typing import NDArray - -from .couplers import * -from .waveguides import * - -sax.set_port_naming_strategy("optical") - -nm = 1e-3 - -FloatArray = NDArray[jnp.floating] -Float = float | FloatArray - - -################ -# MMIs -################ - - -def mmi1x2( - wl: float | NDArray = 1.55, - fwhm: float = 0.2, - loss_dB: float = 0.3, -) -> sax.SDict: - """1x2 MMI model for 1550 nm with custom parameters. - - Args: - wl: Wavelength in micrometers. Can be a scalar or array for multi-wavelength - simulations. Defaults to 1.55 μm. - fwhm: Full-width half-maximum bandwidth in micrometers. Defines the - wavelength range over which the MMI operates effectively. Typical - values are around 0.2 μm (200 nm). - loss_dB: Excess loss in dB. Represents additional insertion loss of the - MMI beyond ideal splitting. Typical values are around 0.3 dB. - """ - return sm.mmi1x2(wl=wl, fwhm=fwhm, loss_dB=loss_dB) - - -def mmi2x2( - wl: float | NDArray = 1.55, - fwhm: float = 0.2, - loss_dB: float = 0.3, -) -> sax.SDict: - """2x2 MMI model for 1550 nm with custom parameters. - Args: - wl: Wavelength in micrometers. Can be a scalar or array for multi-wavelength - simulations. Defaults to 1.55 μm. - fwhm: Full-width half-maximum bandwidth in micrometers. Defines the - wavelength range over which the MMI operates effectively. Typical - values are around 0.2 μm (200 nm). - loss_dB: Excess loss in dB. Represents additional insertion loss of the - MMI beyond ideal splitting. Typical values are around 0.3 dB. - """ - return sm.mmi2x2(wl=wl, fwhm=fwhm, loss_dB=loss_dB) - - -def ebeam_y_1550( - wl: float | NDArray = 1.55, - fwhm: float = 0.2, - loss_dB: float = 0.3, -) -> sax.SDict: - """Y-branch model for 1550 nm with custom parameters. - Args: - wl: Wavelength in micrometers. Can be a scalar or array for multi-wavelength - simulations. Defaults to 1.55 μm. - fwhm: Full-width half-maximum bandwidth in micrometers. Defines the - wavelength range over which the Y-branch operates effectively. Typical - values are around 0.2 μm (200 nm). - loss_dB: Excess loss in dB. Represents additional insertion loss of the - Y-branch beyond ideal splitting. Typical values are around 0.3 dB. - """ - return sm.mmi1x2(wl=wl, fwhm=fwhm, loss_dB=loss_dB) - - -############################## -# grating couplers -############################## - - -def gc_te1550( - wl: float | NDArray = 1.55, - loss: float = 6, - bandwidth: float = 35 * nm, - wl0: float = 1.55, -) -> sax.SDict: - """Grating coupler model for TE polarization at 1550 nm with custom parameters. - Args: - wl: Wavelength in micrometers. Can be a scalar or array for multi-wavelength - simulations. Defaults to 1.55 μm. - loss: Coupling loss in dB. Represents the insertion loss of the grating - coupler. Typical values are around 6 dB. - bandwidth: 3 dB bandwidth in micrometers. Defines the wavelength range - over which the coupler operates effectively. Typical values are - around 35 nm (0.035 μm). - wl0: Center wavelength in micrometers. The wavelength at which the - coupler is optimized. Defaults to 1.55 μm. - """ - return sm.grating_coupler(wl=wl, loss=loss, bandwidth=bandwidth, wl0=wl0) - - -def gc_te1550_broadband( - wl: float | NDArray = 1.55, - loss: float = 6, - bandwidth: float = 50 * nm, - wl0: float = 1.55, -) -> sax.SDict: - """Grating coupler model for TE polarization at 1550 nm with custom parameters. - Args: - wl: Wavelength in micrometers. Can be a scalar or array for multi-wavelength - simulations. Defaults to 1.55 μm. - loss: Coupling loss in dB. Represents the insertion loss of the grating - coupler. Typical values are around 6 dB. - bandwidth: 3 dB bandwidth in micrometers. Defines the wavelength range - over which the coupler operates effectively. Typical values are - around 50 nm (0.05 μm). - wl0: Center wavelength in micrometers. The wavelength at which the - coupler is optimized. Defaults to 1.55 μm. - """ - return sm.grating_coupler(wl=wl, loss=loss, bandwidth=bandwidth, wl0=wl0) - - -def gc_tm1550( - wl: float | NDArray = 1.55, - loss: float = 6, - bandwidth: float = 35 * nm, - wl0: float = 1.55, -) -> sax.SDict: - """Grating coupler model for TM polarization at 1550 nm with custom parameters. - Args: - wl: Wavelength in micrometers. Can be a scalar or array for multi-wavelength - simulations. Defaults to 1.55 μm. - loss: Coupling loss in dB. Represents the insertion loss of the grating - coupler. Typical values are around 6 dB. - bandwidth: 3 dB bandwidth in micrometers. Defines the wavelength range - over which the coupler operates effectively. Typical values are - around 35 nm (0.035 μm). - wl0: Center wavelength in micrometers. The wavelength at which the - coupler is optimized. Defaults to 1.55 μm. - """ - return sm.grating_coupler(wl=wl, loss=loss, bandwidth=bandwidth, wl0=wl0) - - -def gc_te1310_broadband( - wl: float | NDArray = 1.31, - loss: float = 6, - bandwidth: float = 50 * nm, - wl0: float = 1.31, -) -> sax.SDict: - """Grating coupler model for TE polarization at 1310 nm with custom parameters. - Args: - wl: Wavelength in micrometers. Can be a scalar or array for multi-wavelength - simulations. Defaults to 1.31 μm. - loss: Coupling loss in dB. Represents the insertion loss of the grating - coupler. Typical values are around 6 dB. - bandwidth: 3 dB bandwidth in micrometers. Defines the wavelength range - over which the coupler operates effectively. Typical values are - around 50 nm (0.05 μm). - wl0: Center wavelength in micrometers. The wavelength at which the - coupler is optimized. Defaults to 1.31 μm. - """ - return sm.grating_coupler(wl=wl, loss=loss, bandwidth=bandwidth, wl0=wl0) - - -def gc_te1310( - wl: float | NDArray = 1.31, - loss: float = 6, - bandwidth: float = 35 * nm, - wl0: float = 1.31, -) -> sax.SDict: - """Grating coupler model for TE polarization at 1310 nm with custom parameters. - Args: - wl: Wavelength in micrometers. Can be a scalar or array for multi-wavelength - simulations. Defaults to 1.31 μm. - loss: Coupling loss in dB. Represents the insertion loss of the grating - coupler. Typical values are around 6 dB. - bandwidth: 3 dB bandwidth in micrometers. Defines the wavelength range - over which the coupler operates effectively. Typical values are - around 35 nm (0.035 μm). - wl0: Center wavelength in micrometers. The wavelength at which the - coupler is optimized. Defaults to 1.31 μm. - """ - return sm.grating_coupler(wl=wl, loss=loss, bandwidth=bandwidth, wl0=wl0) - - -################ -# Imported -################ - - -def heater() -> sax.SDict: - """Heater model.""" - raise NotImplementedError("No model for 'heater'") - - -def straight_heater_metal( - wl: float = 1.55, - neff: float = 2.34, - voltage: float = 0, - vpi: float = 1.0, # Voltage required for π-phase shift - length: float = 10, - loss_dB_cm: sax.FloatArrayLike = 3.0, -) -> sax.SDict: - """Returns simple phase shifter model. - - Args: - wl: wavelength. - neff: effective index. - voltage: applied voltage. - vpi: voltage required for a π-phase shift. - length: length. - loss_dB_cm: The Propagation loss in dB/cm. - - - ``` - - o1 =========== o2 - ``` - """ - # Calculate additional phase shift due to applied voltage. - deltaphi = (voltage / vpi) * jnp.pi - phase = 2 * jnp.pi * neff * length / wl + deltaphi - amplitude = jnp.asarray(10 ** (-1e-4 * loss_dB_cm * length / 20), dtype=complex) - transmission = amplitude * jnp.exp(1j * phase) - return sax.reciprocal( - { - ("o1", "o2"): transmission, - ("l_e1", "r_e1"): 0.0, - ("l_e2", "r_e2"): 0.0, - ("l_e3", "r_e3"): 0.0, - ("l_e4", "r_e4"): 0.0, - } - ) - - -def crossing_rib( - *, - wl: Float = 1.55, -) -> sax.SDict: - """Crossing rib model.""" - return sm.crossing_ideal(wl=wl) - - -def crossing( - *, - wl: Float = 1.55, -) -> sax.SDict: - """Crossing model.""" - return sm.crossing_ideal(wl=wl) - - -################ -# Models Dict -################ - - -def get_models() -> dict[str, Callable[..., sax.SDict]]: - """Return a dictionary of all models in this module.""" - models = {} - for name, func in list(globals().items()): - # Skip get_models itself and private functions - if name == "get_models" or name.startswith("_"): - continue - if not callable(func): - continue - try: - sig = inspect.signature(func) - except (ValueError, TypeError): - continue - # Check for sax.SDict return type (case-insensitive) - return_anno = str(sig.return_annotation) - if "sdict" in return_anno.lower(): - models[name] = func - return models diff --git a/ubcpdk/models/coupler_racetrack_strip.nc b/ubcpdk/models/coupler_racetrack_strip.nc deleted file mode 100644 index 8124351f..00000000 Binary files a/ubcpdk/models/coupler_racetrack_strip.nc and /dev/null differ diff --git a/ubcpdk/models/couplers.py b/ubcpdk/models/couplers.py deleted file mode 100644 index c39f1fcd..00000000 --- a/ubcpdk/models/couplers.py +++ /dev/null @@ -1,310 +0,0 @@ -"""Directional Couplers.""" - -from pathlib import Path -from typing import TYPE_CHECKING - -import jax -import jax.numpy as jnp -import sax -import xarray as xr -from jaxtyping import ArrayLike - -from .waveguides import bend_euler, straight_strip - -if TYPE_CHECKING: - SDict = sax.SDict -else: - SDict = "sax.SDict" - -CWD = Path(__file__).resolve().parent - -with jax.ensure_compile_time_eval(): - xarr_dc_strip = ( - xr.open_dataarray(CWD / "directional_coupler_strip.nc") - .load() - .expand_dims({"kappa": ["kappa"]}, -1) - ) - xarr_racetrack_strip = ( - xr.open_dataarray(CWD / "coupler_racetrack_strip.nc") - .load() - .expand_dims({"kappa": ["kappa"]}, -1) - ) - - -def _interpolate_kappa(xarr: xr.DataArray, **kwargs: ArrayLike) -> jnp.ndarray: - # Extract interpolation dims from xarray - dims = [d for d in xarr.coords if d != "kappa"] - - # Ensure required args are provided - missing = [d for d in dims if d not in kwargs] - if missing: - raise ValueError(f"Missing required interpolation inputs: {missing}") - - # Broadcast all input arrays - arrays = [jnp.asarray(kwargs[dim]) for dim in dims] - broadcasted = jnp.broadcast_arrays(*arrays) - shape = broadcasted[0].shape - - # Prepare kwargs for interpolation - interp_args = {dim: arr.ravel() for dim, arr in zip(dims, broadcasted, strict=True)} - - # Interpolate - result = sax.interpolate_xarray(xarr, **interp_args)["kappa"] - return result.reshape(shape) - - -def directional_coupler_no_phase( - *, - wl: float = 1.3, - coupler_length: float = 10.0, - gap: float = 0.5, - offset: float = 20, - bend_radius: float = 25, - width: float = 1.0, - cross_section: str = "strip", -) -> SDict: - r"""Ring coupler model. - - Semi-analytical model for ring couplers developed by GDSFactory. - Use at your own risk. - - Args: - wl: wavelength [µm]; between 1.5 and 1.6 µm. - gap: gap between the two waveguides [µm]; between 0.05 and 1.5 µm. - coupler_length: length of the ring coupler [µm]; between 0 and 100 µm. - offset: offset between the two waveguides [µm]; between 5 and 100 µm. - bend_radius: bend radius of the ring coupler [µm]; between 5 and 100 µm. - width: width of the waveguides [µm]; between 0.1 and 10 µm. - cross_section: cross section of the waveguide. - """ - if cross_section == "strip": - xarr = xarr_dc_strip - kappa = _interpolate_kappa( - xarr=xarr, - wavelength=wl, - radius=bend_radius, - gap=gap, - length_x=coupler_length, - v_offset=offset, - ) - - tau = jnp.sqrt(1 - jnp.array(kappa) ** 2) - - return sax.reciprocal( - { - ("o1", "o4"): tau, - ("o1", "o3"): 1j * kappa, - ("o2", "o4"): 1j * kappa, - ("o2", "o3"): tau, - } - ) - - -def directional_coupler( - *, - wl: float = 1.3, - length: float = 10.0, - gap: float = 0.5, - offset: float = 20, - bend_radius: float = 25, - width: float = 1.0, - with_euler: bool = False, - cross_section: str = "strip", -) -> SDict: - r"""Directional coupler model. - - Semi-analytical model for directional couplers developed by GDSFactory. - Use at your own risk. - - Args: - wl: wavelength [µm] - gap: gap between the two waveguides [µm] - length: length of the ring coupler [µm] - offset: offset between the two waveguides [µm] - bend_radius: bend radius of the ring coupler [µm] - with_euler: if True, the directional coupler will have an Euler bend. - width: width of the waveguides [µm]. - cross_section: cross section of the waveguide. - """ - if with_euler: - raise NotImplementedError("Euler bend is not implemented yet") - - coupler_length = length - - def sbend_length(radius: float, offset: float) -> float: - return float(2 * radius * jnp.arccos(1 - offset / 2 / radius)) - - coupler_circuit, info = sax.circuit( - netlist={ - "instances": { - "s1": "straight", - "s2": "straight", - "s3": "straight", - "s4": "straight", - "dc": "coupling_area", - }, - "connections": { - "s1,o1": "dc,o1", - "s2,o1": "dc,o2", - "s3,o1": "dc,o3", - "s4,o1": "dc,o4", - }, - "ports": { - "o1": "s1,o2", - "o2": "s2,o2", - "o3": "s3,o2", - "o4": "s4,o2", - }, - }, - models={ - "straight": straight_strip, - "coupling_area": directional_coupler_no_phase, - }, - ) - - s = coupler_circuit( - wl=wl, - dc={ - "coupler_length": coupler_length, - "gap": gap, - "bend_radius": bend_radius, - "cross_section": cross_section, - }, - s1={"length": coupler_length / 2 + sbend_length(bend_radius, offset)}, - s2={"length": coupler_length / 2 + sbend_length(bend_radius, offset)}, - s3={"length": coupler_length / 2 + sbend_length(bend_radius, offset)}, - s4={"length": coupler_length / 2 + sbend_length(bend_radius, offset)}, - ) - - return sax.reciprocal( - { - ("o1", "o4"): s["o1", "o4"], - ("o1", "o3"): s["o1", "o3"], - ("o2", "o4"): s["o2", "o4"], - ("o2", "o3"): s["o2", "o3"], - } - ) - - -coupler_strip = directional_coupler -coupler = directional_coupler - - -def coupler_ring_coupling_area( - *, - wl: float = 1.3, - gap: float = 0.1, - radius: float = 5.0, - length_x: float = 1.0, - cross_section: str = "strip", -) -> SDict: - r"""Ring coupler model. - - This is a semi-analytical model developed by GDSFactory. - GDSFactory does not guarantee the accuracy of this model. - This model has not been validated by the foundry. - Please use at your own discretion. - - Args: - wl: wavelength [µm]; between 1.2 and 1.4 µm. - gap: gap between the two waveguides [µm]; between 0.05 and 1.1 µm. - radius: radius of the ring [µm]; between 5 and 200 µm. - length_x: length of the ring coupler [µm]; between 0 and 20 µm. - cross_section: cross section of the waveguide. - """ - if cross_section == "strip": - xarr = xarr_racetrack_strip - - kappa = _interpolate_kappa( - xarr=xarr, - wavelength=wl, - gap=gap, - radius=radius, - length_x=length_x, - ) - - tau = jnp.sqrt(1 - jnp.array(kappa) ** 2) - - kappa *= 0.95 # adding 5% loss to the coupler - tau *= 0.95 # adding 5% loss to the coupler - - return sax.reciprocal( - { - ("o1", "o4"): tau, - ("o1", "o3"): 1j * kappa, - ("o2", "o4"): 1j * kappa, - ("o2", "o3"): tau, - } - ) - - -def coupler_ring( # this is not the complete model!!!! - *, - wl: float = 1.3, - gap: float = 0.1, - radius: float = 40.0, - length_x: float = 1.0, - p: float = 0, - wl0: float = 0, # this is not used in the model - cross_section: str = "strip", -) -> SDict: - r"""Ring coupler model. - - This is a semi-analytical model developed by GDSFactory. - GDSFactory does not guarantee the accuracy of this model. - This model has not been validated by the foundry. - Please use at your own discretion. - - Args: - wl: wavelength [µm]; between 1.5 and 1.6 µm. - gap: gap between the two waveguides [µm]; between 0.01 and 1.5 µm. - radius: radius of the ring [µm]; between 25 and 200 µm. - length_x: length of the ring coupler [µm]; between 0 and 20 µm. - p: bend parameter percentage (0: circular, 1: euler). - wl0: center wavelength (um). - cross_section: cross section of the waveguide. - """ - coupler_circuit, info = sax.circuit( - netlist={ - "instances": { - "bl": "bend_euler", - "c": "coupler_ring", - "br": "bend_euler", - }, - "connections": { - "bl,o2": "c,o2", - "c,o3": "br,o1", - }, - "ports": { - "o1": "c,o1", - "o2": "bl,o1", - "o3": "br,o2", - "o4": "c,o4", - }, - }, - models={ - "coupler_ring": coupler_ring_coupling_area, - "bend_euler": bend_euler, - }, - ) - - s = coupler_circuit( - wl=wl, - c={ - "length_x": length_x, - "gap": gap, - "radius": radius, - "cross_section": cross_section, - }, - bl={"radius": radius}, - br={"radius": radius}, - ) - - return sax.reciprocal( - { - ("o1", "o4"): s["o1", "o4"], - ("o1", "o3"): s["o1", "o3"], - ("o2", "o4"): s["o2", "o4"], - ("o2", "o3"): s["o2", "o3"], - } - ) diff --git a/ubcpdk/models/directional_coupler_strip.nc b/ubcpdk/models/directional_coupler_strip.nc deleted file mode 100644 index 3a18085e..00000000 Binary files a/ubcpdk/models/directional_coupler_strip.nc and /dev/null differ diff --git a/ubcpdk/models/waveguides.py b/ubcpdk/models/waveguides.py deleted file mode 100644 index 3ee00f6e..00000000 --- a/ubcpdk/models/waveguides.py +++ /dev/null @@ -1,240 +0,0 @@ -"""SAX models for Sparameter circuit simulations.""" - -from __future__ import annotations - -import jax.numpy as jnp -import sax -import sax.models as sm -from numpy.typing import NDArray - -sax.set_port_naming_strategy("optical") - -nm = 1e-3 - -FloatArray = NDArray[jnp.floating] -Float = float | FloatArray - -################ -# Straights -################ - - -def straight_strip( - *, - wl: Float = 1.55, - length: float = 10.0, - loss_dB_cm: float = 3.0, -) -> sax.SDict: - """Straight strip waveguide model.""" - return sm.straight( - wl=wl, - length=length, - loss_dB_cm=loss_dB_cm, - wl0=1.55, - neff=2.38, - ng=4.30, - ) - - -def straight_rib( - *, - wl: Float = 1.55, - length: float = 10.0, - loss_dB_cm: float = 3.0, -) -> sax.SDict: - """Straight rib waveguide model.""" - return sm.straight( - wl=wl, - length=length, - loss_dB_cm=loss_dB_cm, - wl0=1.55, - neff=2.38, - ng=4.30, - ) - - -def straight( - *, - wl: Float = 1.55, - length: float = 10.0, - loss_dB_cm: float = 3.0, - cross_section: str = "strip", -) -> sax.SDict: - """Straight waveguide model.""" - wl = jnp.asarray(wl) # type: ignore - fs = { - "strip": straight_strip, - "rib": straight_rib, - } - f = fs[cross_section] - return f( - wl=wl, # type: ignore - length=length, - loss_dB_cm=loss_dB_cm, - ) - - -################ -# Bends -################ - - -def wire_corner(*, wl: Float = 1.55) -> sax.SDict: - """Wire corner model.""" - wl = jnp.asarray(wl) # type: ignore - zero = jnp.zeros_like(wl) - return {"e1": zero, "e2": zero} # type: ignore - - -def bend_s( - *, - wl: Float = 1.55, - length: float = 10.0, - loss_dB_cm=3.0, - cross_section="strip", -) -> sax.SDict: - """Bend S model.""" - # NOTE: it is assumed that `bend_s` exposes it's length in its info dictionary! - return straight( - wl=wl, - length=length, - loss_dB_cm=loss_dB_cm, - cross_section=cross_section, - ) - - -def bend_euler( - *, - wl: Float = 1.55, - length: float = 10.0, - loss_dB_cm: float = 3, - cross_section="strip", - **kwargs, -) -> sax.SDict: - """Euler bend model.""" - # NOTE: it is assumed that `bend_euler` exposes it's length in its info dictionary! - return straight( - wl=wl, - length=length, - loss_dB_cm=loss_dB_cm, - cross_section=cross_section, - ) - - -def bend_euler_strip( - *, wl: Float = 1.55, length: float = 10.0, loss_dB_cm: float = 3, **kwargs -) -> sax.SDict: - """Euler bend strip model.""" - return bend_euler( - wl=wl, length=length, loss_dB_cm=loss_dB_cm, cross_section="strip", **kwargs - ) - - -def bend_euler_rib( - *, wl: Float = 1.55, length: float = 10.0, loss_dB_cm: float = 3, **kwargs -) -> sax.SDict: - """Euler bend rib model.""" - return bend_euler( - wl=wl, length=length, loss_dB_cm=loss_dB_cm, cross_section="rib", **kwargs - ) - - -################ -# Transitions -################ - - -def taper( - *, - wl: Float = 1.55, - length: float = 10.0, - loss_dB_cm: float = 0.0, - cross_section="strip", -) -> sax.SDict: - """Taper model.""" - # NOTE: it is assumed that `taper` exposes it's length in its info dictionary! - # TODO: take width1 and width2 into account. - return straight( - wl=wl, - length=length, - loss_dB_cm=loss_dB_cm, - cross_section=cross_section, - ) - - -def taper_rib( - *, - wl: Float = 1.55, - length: float = 10.0, - loss_dB_cm: float = 0.0, -) -> sax.SDict: - """Taper rib model.""" - return taper( - wl=wl, - length=length, - loss_dB_cm=loss_dB_cm, - cross_section="rib", - ) - - -def taper_strip_to_ridge( - *, - wl: Float = 1.55, - length: float = 10.0, - loss_dB_cm: float = 0.0, - cross_section="strip", -) -> sax.SDict: - """Taper strip to ridge model.""" - # NOTE: it is assumed that `taper_strip_to_ridge` exposes it's length in its info dictionary! - # TODO: take w_slab1 and w_slab2 into account. - return straight( - wl=wl, - length=length, - loss_dB_cm=loss_dB_cm, - cross_section=cross_section, - ) - - -def trans_rib10( - *, - wl: Float = 1.55, - loss_dB_cm: float = 0.0, - cross_section="strip", -) -> sax.SDict: - """Taper strip to ridge 10um model.""" - return taper_strip_to_ridge( - wl=wl, - length=10.0, - loss_dB_cm=loss_dB_cm, - cross_section=cross_section, - ) - - -def trans_rib20( - *, - wl: Float = 1.55, - loss_dB_cm: float = 0.0, - cross_section="strip", -) -> sax.SDict: - """Taper strip to ridge 20um model.""" - return taper_strip_to_ridge( - wl=wl, - length=20.0, - loss_dB_cm=loss_dB_cm, - cross_section=cross_section, - ) - - -def trans_rib50( - *, - wl: Float = 1.55, - loss_dB_cm: float = 0.0, - cross_section="strip", -) -> sax.SDict: - """Taper strip to ridge 50um model.""" - return taper_strip_to_ridge( - wl=wl, - length=50.0, - loss_dB_cm=loss_dB_cm, - cross_section=cross_section, - ) diff --git a/ubcpdk/samples/all_cells.py b/ubcpdk/samples/all_cells.py deleted file mode 100644 index 756161d6..00000000 --- a/ubcpdk/samples/all_cells.py +++ /dev/null @@ -1,40 +0,0 @@ -"""This script generates a reticle with all the cells in the library.""" - -import gdsfactory as gf - -from ubcpdk import LAYER, PDK - -skip = { - "all_cells", -} - - -@gf.cell -def all_cells() -> gf.Component: - """Returns a sample reticle with all cells.""" - c = gf.Component() - cells = [] - - for cell_name, cell in PDK.cells.items(): - try: - cell_instance = cell() - cells.append(cell_instance) - except Exception as e: - print(f"Error instantiating cell {cell_name}: {e}") - - cell_matrix = c << gf.pack(cells)[0] - floorplan = c << gf.c.rectangle( - size=(cell_matrix.xsize + 20, cell_matrix.ysize + 20), - layer=LAYER.FLOORPLAN, - ) - floorplan.dcenter = cell_matrix.dcenter - return c - - -if __name__ == "__main__": - PDK.activate() - c = gf.get_component("wire_corner45_straight") - # c = all_cells() - # gdspath = c.write_gds() - # gf.show(gdspath) - c.show() diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num10_1272.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num10_1272.mat deleted file mode 100644 index 0944547f..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num10_1272.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num11_1273.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num11_1273.mat deleted file mode 100644 index ca2a3634..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num11_1273.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num12_1271.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num12_1271.mat deleted file mode 100644 index de43cb73..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num12_1271.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num13_1278.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num13_1278.mat deleted file mode 100644 index ddac9ed7..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num13_1278.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num14_1276.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num14_1276.mat deleted file mode 100644 index 56ab7e84..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num14_1276.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num15_1277.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num15_1277.mat deleted file mode 100644 index 39eb738a..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num15_1277.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num16_1275.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num16_1275.mat deleted file mode 100644 index fd2a9edf..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num16_1275.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num17_1282.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num17_1282.mat deleted file mode 100644 index d8a92238..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num17_1282.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num18_1280.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num18_1280.mat deleted file mode 100644 index 45df6935..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num18_1280.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num19_1281.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num19_1281.mat deleted file mode 100644 index 9ea8e557..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num19_1281.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num1_1266.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num1_1266.mat deleted file mode 100644 index 42f1b098..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num1_1266.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num20_1279.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num20_1279.mat deleted file mode 100644 index 8b7a848e..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num20_1279.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num21_1286.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num21_1286.mat deleted file mode 100644 index 4cc520ff..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num21_1286.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num22_1284.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num22_1284.mat deleted file mode 100644 index 29a6922a..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num22_1284.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num23_1285.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num23_1285.mat deleted file mode 100644 index 21476191..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num23_1285.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num24_1283.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num24_1283.mat deleted file mode 100644 index 8b81a36f..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num24_1283.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num2_1264.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num2_1264.mat deleted file mode 100644 index 956af386..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num2_1264.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num3_1265.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num3_1265.mat deleted file mode 100644 index 1555530f..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num3_1265.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num4_1263.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num4_1263.mat deleted file mode 100644 index 363dff17..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num4_1263.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num5_1270.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num5_1270.mat deleted file mode 100644 index 8aea7038..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num5_1270.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num6_1268.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num6_1268.mat deleted file mode 100644 index e5a5b89f..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num6_1268.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num7_1269.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num7_1269.mat deleted file mode 100644 index f42414f7..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num7_1269.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num8_1267.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num8_1267.mat deleted file mode 100644 index 136ed6aa..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num8_1267.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num9_1274.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num9_1274.mat deleted file mode 100644 index fd035d51..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet1Num9_1274.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num10_1248.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num10_1248.mat deleted file mode 100644 index acaafaad..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num10_1248.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num11_1249.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num11_1249.mat deleted file mode 100644 index 6943c607..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num11_1249.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num12_1247.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num12_1247.mat deleted file mode 100644 index 8c8663b0..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num12_1247.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num13_1254.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num13_1254.mat deleted file mode 100644 index 919c4f75..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num13_1254.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num14_1252.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num14_1252.mat deleted file mode 100644 index 76ae6f0c..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num14_1252.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num15_1253.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num15_1253.mat deleted file mode 100644 index 326cae95..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num15_1253.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num16_1251.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num16_1251.mat deleted file mode 100644 index d0350338..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num16_1251.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num17_1258.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num17_1258.mat deleted file mode 100644 index 8db62db6..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num17_1258.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num18_1256.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num18_1256.mat deleted file mode 100644 index d3bd1039..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num18_1256.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num19_1257.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num19_1257.mat deleted file mode 100644 index 56e57ec9..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num19_1257.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num1_1242.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num1_1242.mat deleted file mode 100644 index 72319474..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num1_1242.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num20_1255.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num20_1255.mat deleted file mode 100644 index 5a5d3aa8..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num20_1255.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num21_1262.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num21_1262.mat deleted file mode 100644 index 20030059..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num21_1262.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num22_1260.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num22_1260.mat deleted file mode 100644 index 93053dcd..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num22_1260.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num23_1261.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num23_1261.mat deleted file mode 100644 index 9a6d1e00..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num23_1261.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num24_1259.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num24_1259.mat deleted file mode 100644 index b9dd9161..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num24_1259.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num2_1240.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num2_1240.mat deleted file mode 100644 index 499b7c04..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num2_1240.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num3_1241.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num3_1241.mat deleted file mode 100644 index f30064b4..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num3_1241.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num4_1239.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num4_1239.mat deleted file mode 100644 index 1a13dd2e..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num4_1239.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num5_1246.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num5_1246.mat deleted file mode 100644 index f610e0d5..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num5_1246.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num6_1244.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num6_1244.mat deleted file mode 100644 index ed1f887a..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num6_1244.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num7_1245.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num7_1245.mat deleted file mode 100644 index 6524f5fa..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num7_1245.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num8_1243.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num8_1243.mat deleted file mode 100644 index 7f53fb9c..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num8_1243.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num9_1250.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num9_1250.mat deleted file mode 100644 index fcd4bc33..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet2Num9_1250.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num10_1200.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num10_1200.mat deleted file mode 100644 index af31a317..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num10_1200.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num11_1201.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num11_1201.mat deleted file mode 100644 index a809a2de..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num11_1201.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num12_1199.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num12_1199.mat deleted file mode 100644 index e381f4c2..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num12_1199.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num13_1206.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num13_1206.mat deleted file mode 100644 index aaefc05b..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num13_1206.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num14_1204.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num14_1204.mat deleted file mode 100644 index 0fc613a1..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num14_1204.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num15_1205.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num15_1205.mat deleted file mode 100644 index 3fb31f94..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num15_1205.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num16_1203.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num16_1203.mat deleted file mode 100644 index f3169ee4..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num16_1203.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num17_1210.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num17_1210.mat deleted file mode 100644 index 48a66b91..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num17_1210.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num18_1208.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num18_1208.mat deleted file mode 100644 index 10505a5c..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num18_1208.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num19_1209.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num19_1209.mat deleted file mode 100644 index 6f6639a7..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num19_1209.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num1_1194.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num1_1194.mat deleted file mode 100644 index 56f6ac47..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num1_1194.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num20_1207.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num20_1207.mat deleted file mode 100644 index 86393842..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num20_1207.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num21_1214.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num21_1214.mat deleted file mode 100644 index 7d596e25..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num21_1214.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num22_1212.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num22_1212.mat deleted file mode 100644 index e22b4645..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num22_1212.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num23_1213.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num23_1213.mat deleted file mode 100644 index 1b82bf13..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num23_1213.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num24_1211.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num24_1211.mat deleted file mode 100644 index ea6c82fc..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num24_1211.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num2_1192.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num2_1192.mat deleted file mode 100644 index fe4e27de..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num2_1192.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num3_1193.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num3_1193.mat deleted file mode 100644 index b19fdcaf..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num3_1193.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num4_1191.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num4_1191.mat deleted file mode 100644 index 935790eb..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num4_1191.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num5_1198.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num5_1198.mat deleted file mode 100644 index a66a6d3f..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num5_1198.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num6_1196.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num6_1196.mat deleted file mode 100644 index fdaf42a9..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num6_1196.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num7_1197.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num7_1197.mat deleted file mode 100644 index 5a039ea5..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num7_1197.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num8_1195.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num8_1195.mat deleted file mode 100644 index c357f53f..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num8_1195.mat and /dev/null differ diff --git a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num9_1202.mat b/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num9_1202.mat deleted file mode 100644 index 7490ccd2..00000000 Binary files a/ubcpdk/samples/data/bragg/ELEC_413_lukasc_BraggSet4Num9_1202.mat and /dev/null differ diff --git a/ubcpdk/samples/data/mzi/EB486A_URChip3Coords.txt b/ubcpdk/samples/data/mzi/EB486A_URChip3Coords.txt deleted file mode 100755 index 3af2372c..00000000 --- a/ubcpdk/samples/data/mzi/EB486A_URChip3Coords.txt +++ /dev/null @@ -1,10 +0,0 @@ -%,,,,,, -223.85,29.15,TE,1550,device,LukasChrostowski_MZI2, 1394.5 -892.6,145.4,TE,1550,device,ZiheGao_MZI17,219.366 -772.6,145.4,TE,1550,device,ZiheGao_MZI8, 217.649 -652.6,145.4,TE,1550,device,ZiheGao_MZI6, 215.932 -532.6,145.4,TE,1550,device,ZiheGao_MZI5, 206.703125 -412.6,145.4,TE,1550,device,ZiheGao_MZI4, 207.08945 -292.6,145.4,TE,1550,device,ZiheGao_MZI3, 214.215 -172.6,145.4,TE,1550,device,ZiheGao_MZI2, 111.915 -33.85,29.15,TE,1550,device,LukasChrostowski_MZI1, 26.8 diff --git a/ubcpdk/samples/data/mzi/EB486A_URChip3Coords1.txt b/ubcpdk/samples/data/mzi/EB486A_URChip3Coords1.txt deleted file mode 100755 index 9ff52b56..00000000 --- a/ubcpdk/samples/data/mzi/EB486A_URChip3Coords1.txt +++ /dev/null @@ -1,9 +0,0 @@ -%,,,,,, -223.85,29.15,TE,1550,device,LukasChrostowski_MZI2, 1394.5 -892.6,145.4,TE,1550,device,ZiheGao_MZI17,219.366 -772.6,145.4,TE,1550,device,ZiheGao_MZI8, 217.649 -652.6,145.4,TE,1550,device,ZiheGao_MZI6, 215.932 -532.6,145.4,TE,1550,device,ZiheGao_MZI5, 206.703125 -412.6,145.4,TE,1550,device,ZiheGao_MZI4, 207.08945 -292.6,145.4,TE,1550,device,ZiheGao_MZI3, 214.215 -172.6,145.4,TE,1550,device,ZiheGao_MZI2, 111.915 diff --git a/ubcpdk/samples/data/mzi/LukasChrostowski_MZI1_135_Scan1.mat b/ubcpdk/samples/data/mzi/LukasChrostowski_MZI1_135_Scan1.mat deleted file mode 100755 index aebc1e33..00000000 Binary files a/ubcpdk/samples/data/mzi/LukasChrostowski_MZI1_135_Scan1.mat and /dev/null differ diff --git a/ubcpdk/samples/data/mzi/LukasChrostowski_MZI2_136_Scan1.mat b/ubcpdk/samples/data/mzi/LukasChrostowski_MZI2_136_Scan1.mat deleted file mode 100755 index c75892a8..00000000 Binary files a/ubcpdk/samples/data/mzi/LukasChrostowski_MZI2_136_Scan1.mat and /dev/null differ diff --git a/ubcpdk/samples/data/mzi/README.md b/ubcpdk/samples/data/mzi/README.md deleted file mode 100755 index 85071740..00000000 --- a/ubcpdk/samples/data/mzi/README.md +++ /dev/null @@ -1,75 +0,0 @@ -Measuring optical waveguide length: -- measure the vertical path, from centre to centre (path is the one with sharp angles)\ -- determine radius (from PCell)\ -- add the radial bend waveguide, subtract the path in that same place\ -- -MZI1:\ -dL_wg=0\ -\ -MZI2: \ -r=5\ -dL_path = (208.40000 - 148.15000) * 2\ -dL_wg = dL_path + 2*pi*r - 4*2*r \ -= 111.915\ -\ -MZI3:\ -r=5\ -dL_path = (259.55000-148.15000) * 2\ -dL_wg = dL_path + 2*pi*r - 4*2*r ; dL_wg\ -= 214.215\ -\ -MZI4:\ -r1 = 435.90000-427.60000; r1\ -r2 = 10\ -dL_path = (259.55000-148.15000) * 2\ -dL_wg = dL_path + pi*(r1+r2) - 4*(r1+r2) ; dL_wg\ -= 207.08945\ -\ -MZI5: \ -r1 = 556.35000-547.60000; r1\ -r2 = 10\ -dL_path = (259.55000-148.15000) * 2\ -dL_wg = dL_path + pi*(r1+r2) - 4*(r1+r2) ; dL_wg\ -= 206.703125\ -\ -MZI6:\ -r=4\ -dL_path = (259.55000-148.15000) * 2\ -dL_wg = dL_path + 2*pi*r - 4*2*r ; dL_wg\ -= 215.932\ -\ -MZI8:\ -r=3\ -dL_path = (259.55000-148.15000) * 2\ -dL_wg = dL_path + 2*pi*r - 4*2*r ; dL_wg\ -= 217.649\ -\ -MZI17:\ -r=2\ -dL_path = (259.55000-148.15000) * 2\ -dL_wg = dL_path + 2*pi*r - 4*2*r ; dL_wg\ - - -## Lukas - -Measuring optical waveguide length:\ -- measure the horizontal path, from centre to centre (path is the one with sharp angles)\ -- add 2 * ybranch output separation\ -\ -Can also measure the waveguide by finding the total area\ -{\field{\*\fldinst{HYPERLINK "http://www.klayout.de/useful_scripts.html#calc_area.rbm"}}{\fldrslt http://www.klayout.de/useful_scripts.html#calc_area.rbm}}\ -then divide by the waveguide width\ -\ -MZI1:\ -dL_wg=(85.10000-77.20000)*2 +5.5*2; dL_wg\ -= 26.8\ -\ -or, \ -area1 = 80.210502\ -area2 = 66.810502\ -dL_wg = (80.210502-66.810502)/0.5; dL_wg\ -= 26.8\ -\ -MZI2:\ -dL_wg=(768.95000-77.20000)*2 +5.5*2; dL_wg\ -= 1394.5\ diff --git a/ubcpdk/samples/data/mzi/ZiheGao_MZI17_265_Scan1.mat b/ubcpdk/samples/data/mzi/ZiheGao_MZI17_265_Scan1.mat deleted file mode 100755 index c558d3c5..00000000 Binary files a/ubcpdk/samples/data/mzi/ZiheGao_MZI17_265_Scan1.mat and /dev/null differ diff --git a/ubcpdk/samples/data/mzi/ZiheGao_MZI1_272_Scan1.mat b/ubcpdk/samples/data/mzi/ZiheGao_MZI1_272_Scan1.mat deleted file mode 100755 index 02cb9cbb..00000000 Binary files a/ubcpdk/samples/data/mzi/ZiheGao_MZI1_272_Scan1.mat and /dev/null differ diff --git a/ubcpdk/samples/data/mzi/ZiheGao_MZI1_273_Scan1.mat b/ubcpdk/samples/data/mzi/ZiheGao_MZI1_273_Scan1.mat deleted file mode 100755 index c232c38e..00000000 Binary files a/ubcpdk/samples/data/mzi/ZiheGao_MZI1_273_Scan1.mat and /dev/null differ diff --git a/ubcpdk/samples/data/mzi/ZiheGao_MZI2_271_Scan1.mat b/ubcpdk/samples/data/mzi/ZiheGao_MZI2_271_Scan1.mat deleted file mode 100755 index d8b30c74..00000000 Binary files a/ubcpdk/samples/data/mzi/ZiheGao_MZI2_271_Scan1.mat and /dev/null differ diff --git a/ubcpdk/samples/data/mzi/ZiheGao_MZI3_270_Scan1.mat b/ubcpdk/samples/data/mzi/ZiheGao_MZI3_270_Scan1.mat deleted file mode 100755 index 4fe9f3de..00000000 Binary files a/ubcpdk/samples/data/mzi/ZiheGao_MZI3_270_Scan1.mat and /dev/null differ diff --git a/ubcpdk/samples/data/mzi/ZiheGao_MZI4_269_Scan1.mat b/ubcpdk/samples/data/mzi/ZiheGao_MZI4_269_Scan1.mat deleted file mode 100755 index a63fa1ab..00000000 Binary files a/ubcpdk/samples/data/mzi/ZiheGao_MZI4_269_Scan1.mat and /dev/null differ diff --git a/ubcpdk/samples/data/mzi/ZiheGao_MZI5_268_Scan1.mat b/ubcpdk/samples/data/mzi/ZiheGao_MZI5_268_Scan1.mat deleted file mode 100755 index 8d3584cc..00000000 Binary files a/ubcpdk/samples/data/mzi/ZiheGao_MZI5_268_Scan1.mat and /dev/null differ diff --git a/ubcpdk/samples/data/mzi/ZiheGao_MZI6_267_Scan1.mat b/ubcpdk/samples/data/mzi/ZiheGao_MZI6_267_Scan1.mat deleted file mode 100755 index 20ea18c2..00000000 Binary files a/ubcpdk/samples/data/mzi/ZiheGao_MZI6_267_Scan1.mat and /dev/null differ diff --git a/ubcpdk/samples/data/mzi/ZiheGao_MZI8_266_Scan1.mat b/ubcpdk/samples/data/mzi/ZiheGao_MZI8_266_Scan1.mat deleted file mode 100755 index da8f7a4f..00000000 Binary files a/ubcpdk/samples/data/mzi/ZiheGao_MZI8_266_Scan1.mat and /dev/null differ diff --git a/ubcpdk/samples/data/ring/LukasC_RingDoubleTER10g100_1495.mat b/ubcpdk/samples/data/ring/LukasC_RingDoubleTER10g100_1495.mat deleted file mode 100644 index 4919e866..00000000 Binary files a/ubcpdk/samples/data/ring/LukasC_RingDoubleTER10g100_1495.mat and /dev/null differ diff --git a/ubcpdk/samples/data/ring/LukasC_RingDoubleTER10g150_1494.mat b/ubcpdk/samples/data/ring/LukasC_RingDoubleTER10g150_1494.mat deleted file mode 100644 index 0967d3e6..00000000 Binary files a/ubcpdk/samples/data/ring/LukasC_RingDoubleTER10g150_1494.mat and /dev/null differ diff --git a/ubcpdk/samples/data/ring/LukasC_RingDoubleTER10g200_1493.mat b/ubcpdk/samples/data/ring/LukasC_RingDoubleTER10g200_1493.mat deleted file mode 100644 index 673589e0..00000000 Binary files a/ubcpdk/samples/data/ring/LukasC_RingDoubleTER10g200_1493.mat and /dev/null differ diff --git a/ubcpdk/samples/data/ring/LukasC_RingDoubleTER10g50_1496.mat b/ubcpdk/samples/data/ring/LukasC_RingDoubleTER10g50_1496.mat deleted file mode 100644 index 74be1524..00000000 Binary files a/ubcpdk/samples/data/ring/LukasC_RingDoubleTER10g50_1496.mat and /dev/null differ diff --git a/ubcpdk/samples/data/ring/LukasC_RingDoubleTER3g100_1498.mat b/ubcpdk/samples/data/ring/LukasC_RingDoubleTER3g100_1498.mat deleted file mode 100644 index bc2e5cda..00000000 Binary files a/ubcpdk/samples/data/ring/LukasC_RingDoubleTER3g100_1498.mat and /dev/null differ diff --git a/ubcpdk/samples/data/ring/LukasC_RingDoubleTER3g150_1497.mat b/ubcpdk/samples/data/ring/LukasC_RingDoubleTER3g150_1497.mat deleted file mode 100644 index e0fcb79a..00000000 Binary files a/ubcpdk/samples/data/ring/LukasC_RingDoubleTER3g150_1497.mat and /dev/null differ diff --git a/ubcpdk/samples/data/ring/LukasC_RingDoubleTMR30g150_1492.mat b/ubcpdk/samples/data/ring/LukasC_RingDoubleTMR30g150_1492.mat deleted file mode 100644 index c316f207..00000000 Binary files a/ubcpdk/samples/data/ring/LukasC_RingDoubleTMR30g150_1492.mat and /dev/null differ diff --git a/ubcpdk/samples/data/ring/LukasC_RingDoubleTMR30g200_1491.mat b/ubcpdk/samples/data/ring/LukasC_RingDoubleTMR30g200_1491.mat deleted file mode 100644 index 173b9949..00000000 Binary files a/ubcpdk/samples/data/ring/LukasC_RingDoubleTMR30g200_1491.mat and /dev/null differ diff --git a/ubcpdk/samples/data/ring/LukasC_RingDoubleTMR30g250_1490.mat b/ubcpdk/samples/data/ring/LukasC_RingDoubleTMR30g250_1490.mat deleted file mode 100644 index 7aa0e58b..00000000 Binary files a/ubcpdk/samples/data/ring/LukasC_RingDoubleTMR30g250_1490.mat and /dev/null differ diff --git a/ubcpdk/samples/data/ring/lukasc_RingResonator.txt b/ubcpdk/samples/data/ring/lukasc_RingResonator.txt deleted file mode 100644 index 0d0d485b..00000000 --- a/ubcpdk/samples/data/ring/lukasc_RingResonator.txt +++ /dev/null @@ -1,13 +0,0 @@ -Double-bus ring resonators -symmetrically coupled - -TE: -R = [3] -g = [ 50, 100, 150] - -R = [10] -g = [ 50, 100, 150, 200 ] - -TM: -R = [30] -g = [150, 200, 250] diff --git a/ubcpdk/samples/debug_port_positions.py b/ubcpdk/samples/debug_port_positions.py deleted file mode 100644 index e9eb0762..00000000 --- a/ubcpdk/samples/debug_port_positions.py +++ /dev/null @@ -1,40 +0,0 @@ -"""Debug cells with port position issues in library.""" - -import gdsfactory as gf - -from ubcpdk import PDK - -if __name__ == "__main__": - PDK.activate() - cell_name = "add_fiber_array_pads_rf" - cell_name = "ANT_MMI_1x2_te1550_3dB_BB" - cell_name = "crossing_horizontal" - cell_name = "crossing_manhattan" - cell_name = "crossing_SiN_1550" - cell_name = "crossing_SiN_1550_extended" - cell_name = "ebeam_DC_2m1_te895" - cell_name = "ebeam_DC_te895" - cell_name = "ebeam_dream_FaML_Si_1310_BB" - cell_name = "ebeam_dream_FaML_Si_1550_BB" - cell_name = "ebeam_dream_FaML_SiN_1550_BB" - cell_name = "ebeam_dream_FAVE_Si_1310_BB" - cell_name = "ebeam_dream_FAVE_Si_1550_BB" - cell_name = "ebeam_dream_FAVE_SiN_1310_BB" - cell_name = "ebeam_dream_FAVE_SiN_1550_BB" - cell_name = "ebeam_gc_te1550" - cell_name = "ebeam_gc_te1550_90nmSlab" - cell_name = "ebeam_gc_te1550_broadband" - cell_name = "ebeam_gc_te895" - cell_name = "ebeam_gc_tm1550" - cell_name = "ebeam_MMI_2x2_5050_te1310" - cell_name = "ebeam_sin_dream_splitter1x2_te1550_BB" - cell_name = "ebeam_terminator_SiN_1310" - cell_name = "ebeam_terminator_SiN_1550" - cell_name = "ebeam_terminator_SiN_te895" - cell_name = "ebeam_YBranch_895" - cell_name = "ebeam_YBranch_te1310" - cell_name = "GC_SiN_TE_1310_8degOxide_BB" - cell_name = "GC_SiN_TE_1550_8degOxide_BB" - cell_name = "taper_SiN_750_3000" - c = gf.get_component(cell_name) - c.show() diff --git a/ubcpdk/samples/sample_routing.py b/ubcpdk/samples/sample_routing.py deleted file mode 100644 index 66046ee3..00000000 --- a/ubcpdk/samples/sample_routing.py +++ /dev/null @@ -1,26 +0,0 @@ -"""Sample routing two straights with different widths using layer_transitions.""" - -import gdsfactory as gf - -from ubcpdk import PDK, cells, tech - - -@gf.cell -def sample_routing_different_widths() -> gf.Component: - """Route two straights with different widths to test auto-taper.""" - c = gf.Component() - s1 = c << cells.straight(length=10, cross_section=tech.strip(width=0.4)) - s2 = c << cells.straight(length=10, cross_section=tech.strip(width=1.0)) - s2.dmove((100, 50)) - tech.route_single( - c, - s1.ports["o2"], - s2.ports["o1"], - ) - return c - - -if __name__ == "__main__": - PDK.activate() - c = sample_routing_different_widths() - c.show() diff --git a/ubcpdk/samples/test_circuit_simulations.py b/ubcpdk/samples/test_circuit_simulations.py deleted file mode 100644 index 9ea19744..00000000 --- a/ubcpdk/samples/test_circuit_simulations.py +++ /dev/null @@ -1,34 +0,0 @@ -import jax.numpy as jnp -import matplotlib.pyplot as plt -import sax - -import ubcpdk -from ubcpdk import PDK - - -def test_mzi(): - c = ubcpdk.cells.mzi(delta_length=20) - netlist = c.get_netlist() - models = PDK.models - circuit, _ = sax.circuit(netlist, models=models) # type: ignore - wl = jnp.linspace(1.5, 1.6) - - S = circuit(wl=wl) - assert S - - -if __name__ == "__main__": - c = ubcpdk.cells.mzi(delta_length=20) - netlist = c.get_netlist() - models = PDK.models - circuit, _ = sax.circuit(netlist, models=models) # type: ignore - wl = jnp.linspace(1.5, 1.6) - - S = circuit(wl=wl) - plt.figure(figsize=(14, 4)) - plt.title("MZI") - plt.plot(1e3 * wl, jnp.abs(S["o1", "o2"]) ** 2) # type: ignore - plt.xlabel("λ [nm]") - plt.ylabel("T") - plt.grid(True) - plt.show() diff --git a/ubcpdk/samples/test_rings.py b/ubcpdk/samples/test_rings.py deleted file mode 100644 index a732ae29..00000000 --- a/ubcpdk/samples/test_rings.py +++ /dev/null @@ -1,80 +0,0 @@ -from functools import partial - -import gdsfactory as gf - -from ubcpdk import PDK, cells - -size = (440, 470) -pack = partial( - gf.pack, max_size=size, add_ports_prefix=False, add_ports_suffix=True, spacing=2 -) -add_gc = cells.add_fiber_array -length_x = 0.1 - - -@gf.cell -def EBeam_YourUserName_ring_double10() -> gf.Component: - gaps = [100, 150, 200] - radiuses = [10] - - rings = [ - cells.ring_double(radius=radius, length_x=length_x, gap=gap * 1e-3) - for radius in radiuses - for gap in gaps - ] - rings = [add_gc(ring) for ring in rings] - c = pack(rings) - if len(c) > 1: - raise ValueError(f"Failed to pack in 1 component of {size}, got {len(c)}") - return c[0] - - -@gf.cell -def EBeam_YourUserName_ring_double30() -> gf.Component: - gaps = [150, 200] - radiuses = [30] - rings = [ - cells.ring_double( - radius=radius, - length_x=length_x, - gap=gap * 1e-3, - ) - for radius in radiuses - for gap in gaps - ] - - rings = [add_gc(ring) for ring in rings] - - c = pack(rings) - if len(c) > 1: - raise ValueError(f"Failed to pack in 1 component of {size}, got {len(c)}") - return c[0] - - -@gf.cell -def EBeam_YourUserName_ring_double3() -> gf.Component: - gaps = [100, 150] - radiuses = [5] - rings = [ - cells.ring_double( - radius=radius, - length_x=length_x, - gap=gap * 1e-3, - ) - for radius in radiuses - for gap in gaps - ] - - rings = [add_gc(ring) for ring in rings] - - c = pack(rings) - if len(c) > 1: - raise ValueError(f"Failed to pack in 1 component of {size}, got {len(c)}") - return c[0] - - -if __name__ == "__main__": - PDK.activate() - c = EBeam_YourUserName_ring_double30() - # c.write_gds("extra/EBeam_YourUserName_ring_double3.gds") - c.show() diff --git a/ubcpdk/samples/test_ubc1.py b/ubcpdk/samples/test_ubc1.py deleted file mode 100644 index 86c86ede..00000000 --- a/ubcpdk/samples/test_ubc1.py +++ /dev/null @@ -1,34 +0,0 @@ -import gdsfactory as gf - -from ubcpdk import PDK, cells - - -@gf.cell -def EBeam_JoaquinMatres_1() -> gf.Component: - """Add DBR cavities.""" - size = (440, 470) - add_gc = cells.add_fiber_array - - e = [add_gc(cells.straight())] - e += [add_gc(cells.mzi(delta_length=dl)) for dl in [9.32, 93.19]] - e += [ - add_gc(cells.ring_single(radius=12, gap=gap, length_x=coupling_length)) - for gap in [0.2] - for coupling_length in [2.5, 4.5, 6.5] - ] - - c = gf.Component() - _ = c << gf.pack(e, max_size=size, spacing=2)[0] - _ = c << cells.die() - return c - - -def test_ubc1() -> None: - c = EBeam_JoaquinMatres_1() - assert c - - -if __name__ == "__main__": - PDK.activate() - c = EBeam_JoaquinMatres_1() - c.show() # show in klayout diff --git a/ubcpdk/samples/test_ubc2.py b/ubcpdk/samples/test_ubc2.py deleted file mode 100644 index 9eb445cb..00000000 --- a/ubcpdk/samples/test_ubc2.py +++ /dev/null @@ -1,29 +0,0 @@ -import gdsfactory as gf - -from ubcpdk import PDK, cells - - -@gf.cell -def EBeam_JoaquinMatres_2() -> gf.Component: - """spirals for extracting straight waveguide loss""" - size = (440, 470) - e = [ - cells.add_fiber_array(component=cells.spiral(n_loops=8, length=length)) - for length in [0, 100, 200] - ] - - c = gf.Component() - _ = c << gf.pack(e, max_size=size, spacing=2)[0] - _ = c << cells.die() - return c - - -def test_ubc2() -> None: - c = EBeam_JoaquinMatres_2() - assert c - - -if __name__ == "__main__": - PDK.activate() - c = EBeam_JoaquinMatres_2() - c.show() # show in klayout diff --git a/ubcpdk/samples/test_ubc3.py b/ubcpdk/samples/test_ubc3.py deleted file mode 100644 index 0b22f743..00000000 --- a/ubcpdk/samples/test_ubc3.py +++ /dev/null @@ -1,32 +0,0 @@ -import gdsfactory as gf - -from ubcpdk import PDK, cells - - -@gf.cell -def EBeam_JoaquinMatres_3() -> gf.Component: - """Contains mirror cavities and structures inside a resonator.""" - size = (440, 470) - add_gc = cells.add_fiber_array - - e = [] - e += [add_gc(cells.ebeam_crossing4())] - e += [add_gc(cells.ebeam_adiabatic_te1550())] - e += [add_gc(cells.ebeam_bdc_te1550())] - e += [add_gc(cells.ebeam_y_1550())] - e += [add_gc(cells.straight(), component_name=f"straight_{i}") for i in range(2)] - c = gf.Component() - _ = c << gf.pack(e, max_size=size, spacing=2)[0] - _ = c << cells.die() - return c - - -def test_ubc3() -> None: - c = EBeam_JoaquinMatres_3() - assert c - - -if __name__ == "__main__": - PDK.activate() - c = EBeam_JoaquinMatres_3() - c.show() # show in klayout diff --git a/ubcpdk/samples/test_ubc4.py b/ubcpdk/samples/test_ubc4.py deleted file mode 100644 index f3d1ec19..00000000 --- a/ubcpdk/samples/test_ubc4.py +++ /dev/null @@ -1,37 +0,0 @@ -from functools import partial - -import gdsfactory as gf - -from ubcpdk import PDK, cells - - -@gf.cell -def EBeam_JoaquinMatres_4() -> gf.Component: - """MZI interferometers.""" - size = (440, 470) - - mzi = partial(gf.components.mzi, splitter=cells.ebeam_y_1550) - mzis = [mzi(delta_length=delta_length) for delta_length in [10, 40, 100]] - mzis_gc = [cells.add_fiber_array(mzi) for mzi in mzis] - - mzis = [cells.mzi_heater(delta_length=delta_length) for delta_length in [40]] - mzis_heater_gc = [ - cells.add_fiber_array_pads_rf(mzi, orientation=90) for mzi in mzis - ] - - e = mzis_gc + mzis_heater_gc - c = gf.Component() - _ = c << gf.pack(e, max_size=size, spacing=2)[0] - _ = c << cells.die() - return c - - -def test_ubc4() -> None: - c = EBeam_JoaquinMatres_4() - assert c - - -if __name__ == "__main__": - PDK.activate() - c = EBeam_JoaquinMatres_4() - c.show() # show in klayout diff --git a/ubcpdk/samples/test_ubc5.py b/ubcpdk/samples/test_ubc5.py deleted file mode 100644 index 71c10093..00000000 --- a/ubcpdk/samples/test_ubc5.py +++ /dev/null @@ -1,31 +0,0 @@ -import gdsfactory as gf - -from ubcpdk import PDK, cells - - -@gf.cell -def EBeam_JoaquinMatres_5() -> gf.Component: - """Ring resonators.""" - size = (440, 470) - - rings = [] - for length_x in [4]: - ring = cells.ring_single_heater(length_x=length_x) - ring_gc = cells.add_fiber_array_pads_rf(ring) - rings.append(ring_gc) - - c = gf.Component() - _ = c << gf.pack(rings, max_size=size, spacing=2)[0] - _ = c << cells.die() - return c - - -def test_ubc5() -> None: - c = EBeam_JoaquinMatres_5() - assert c - - -if __name__ == "__main__": - PDK.activate() - c = EBeam_JoaquinMatres_5() - c.show() # show in klayout diff --git a/ubcpdk/simulation/__init__.py b/ubcpdk/simulation/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/ubcpdk/simulation/circuits/__init__.py b/ubcpdk/simulation/circuits/__init__.py deleted file mode 100644 index 1f0ad53e..00000000 --- a/ubcpdk/simulation/circuits/__init__.py +++ /dev/null @@ -1,14 +0,0 @@ -from ubcpdk.simulation.circuits.mzi_spectrum import ( - mzi_spectrum, -) -from ubcpdk.simulation.circuits.waveguide import ( - beta, - neff, -) - -__all__ = [ - "beta", - "mzi_spectrum", - "neff", - "waveguide", -] diff --git a/ubcpdk/simulation/circuits/mzi_spectrum.py b/ubcpdk/simulation/circuits/mzi_spectrum.py deleted file mode 100644 index 8a2d9b99..00000000 --- a/ubcpdk/simulation/circuits/mzi_spectrum.py +++ /dev/null @@ -1,41 +0,0 @@ -"""MZI spectrum model. - -based on https://github.com/SiEPIC-Kits/SiEPIC_Photonics_Package -""" - -import numpy as np - -from ubcpdk.simulation.circuits.waveguide import beta, neff, wavelength_um - - -def mzi_spectrum( - L1_um, - L2_um, - wavelength_um=wavelength_um, - beta=beta, - alpha=1e-3, - neff=neff, - n1=2.4, - n2=-1, - n3=0, -): - """Returns MZI spectrum. - - Args: - L1_um. - L2_um. - wavelength_um. - beta: propagation constant. - """ - if callable(beta): - beta = beta(wavelength_um, neff=neff, alpha=alpha, n1=n1, n2=n2, n3=n3) - - return 0.25 * np.abs(np.exp(-1j * beta * L1_um) + np.exp(-1j * beta * L2_um)) ** 2 - - -if __name__ == "__main__": - import matplotlib.pyplot as plt - - # plt.plot(wavelength_um, mzi_spectrum(100, 110)) - plt.plot(wavelength_um, 10 * np.log10(mzi_spectrum(L1_um=40, L2_um=255))) - plt.show() diff --git a/ubcpdk/simulation/circuits/waveguide.py b/ubcpdk/simulation/circuits/waveguide.py deleted file mode 100644 index a8838f3b..00000000 --- a/ubcpdk/simulation/circuits/waveguide.py +++ /dev/null @@ -1,47 +0,0 @@ -"""Wavelength dependent effective index model. - -based on https://github.com/SiEPIC-Kits/SiEPIC_Photonics_Package -""" - -import numpy as np - -wavelength_start = 1500e-9 -wavelength_stop = 1600e-9 -resolution = 0.001 -wavelength_um = ( - np.linspace( - wavelength_start, - wavelength_stop, - round((wavelength_stop - wavelength_start) * 1e9 / resolution), - ) - * 1e6 -) - - -def neff(wavelength_um=wavelength_um, n1=2.4, n2=-1.0, n3=0.0, wavelength0_um=1.55): - """Waveguide model neff.""" - w = wavelength_um - w0 = wavelength0_um - return n1 + n2 * (w - w0) + n3 * (w - w0) ** 2 - - -def beta(wavelength_um=wavelength_um, alpha=1e-3, neff=neff, n1=2.4, n2=-1, n3=0): - """Propagation constant. - - Args: - wavelength_um: in um. - alpha: propagation loss [micron^-1] constant. - """ - if callable(neff): - neff = neff(wavelength_um, n1=n1, n2=n2, n3=n3) - - return 2 * np.pi * neff / wavelength_um - 1j * alpha / 2 * np.ones( - np.size(wavelength_um) - ) - - -if __name__ == "__main__": - import matplotlib.pyplot as plt - - plt.plot(wavelength_um, neff(wavelength_um)) - plt.show() diff --git a/ubcpdk/simulation/find_neff_vs_width.csv b/ubcpdk/simulation/find_neff_vs_width.csv deleted file mode 100644 index 91cf2639..00000000 --- a/ubcpdk/simulation/find_neff_vs_width.csv +++ /dev/null @@ -1,13 +0,0 @@ -1,2,3,4,width -1.507516279000752,1.490839885168573,1.334428104508565,1.31883631979705,0.2 -1.698188818278546,1.5748821007032343,1.3865612186924492,1.363887878522382,0.27272727272727276 -2.051695539725326,1.6578679587399596,1.4070535408999676,1.3790662732636632,0.34545454545454546 -2.2815028968811437,1.7237278334388788,1.4142583859979936,1.4049267990405658,0.4181818181818182 -2.430127277033941,1.7797815493377667,1.4715685670218184,1.4187858689740733,0.49090909090909096 -2.5287293532486776,1.8274889022507173,1.5960108880397166,1.4231027277788306,0.5636363636363637 -2.597343774412331,1.8639854406271361,1.7874980200692214,1.4292258379398397,0.6363636363636365 -2.646915777907601,1.9815476906389085,1.8950573620696547,1.4403453771131784,0.7090909090909092 -2.684551652942098,2.1446838691288437,1.9216836186417265,1.5214094763971397,0.781818181818182 -2.710039181670572,2.2580252850892575,1.940138372823012,1.5751273922790152,0.8545454545454547 -2.7302029135994164,2.3474704545687093,1.9557489916983475,1.6674679214174426,0.9272727272727275 -2.7464778984099447,2.4189574803236544,1.969335587598912,1.8166096780006489,1.0 diff --git a/ubcpdk/simulation/lumerical/EBeam.cml b/ubcpdk/simulation/lumerical/EBeam.cml deleted file mode 100644 index d952bc84..00000000 Binary files a/ubcpdk/simulation/lumerical/EBeam.cml and /dev/null differ diff --git a/ubcpdk/simulation/lumerical/lumerical_process_file.lbr b/ubcpdk/simulation/lumerical/lumerical_process_file.lbr deleted file mode 100644 index 07e29ea2..00000000 --- a/ubcpdk/simulation/lumerical/lumerical_process_file.lbr +++ /dev/null @@ -1,8 +0,0 @@ - - silicon - - - - - - diff --git a/ubcpdk/simulation/modes_waveguide.py b/ubcpdk/simulation/modes_waveguide.py deleted file mode 100644 index adc95157..00000000 --- a/ubcpdk/simulation/modes_waveguide.py +++ /dev/null @@ -1,32 +0,0 @@ -"""MPB mode simulations.""" - -from functools import partial - -import gplugins.modes as gm - -from ubcpdk.config import PATH - -nm = 1e-3 - -find_modes_waveguide = partial( - gm.find_modes_waveguide, - wg_width=500 * nm, - wg_thickness=220 * nm, - slab_thickness=0 * nm, - resolution=20, - nmodes=4, - cache=PATH.modes, -) - - -find_neff_vs_width = partial( - gm.find_neff_vs_width, cache=PATH.modes, filepath="find_neff_vs_width.csv" -) - - -if __name__ == "__main__": - import matplotlib.pyplot as plt - - df = find_neff_vs_width() - gm.plot_neff_vs_width(df) - plt.show() diff --git a/ubcpdk/tech.py b/ubcpdk/tech.py deleted file mode 100644 index 7c39ae42..00000000 --- a/ubcpdk/tech.py +++ /dev/null @@ -1,399 +0,0 @@ -"""Technology definitions. - -- LayerStack -- cross_sections (xs_) -- constants (WIDTH, CLADDING_OFFSET ...) -""" - -import sys -from collections.abc import Callable -from functools import partial - -import gdsfactory as gf -from doroutes.bundles import add_bundle_astar -from gdsfactory.add_pins import add_pin_path -from gdsfactory.component import Component -from gdsfactory.cross_section import get_cross_sections -from gdsfactory.technology import LayerLevel, LayerMap, LayerStack -from gdsfactory.typings import Layer, LayerSpec -from pydantic import BaseModel - -from ubcpdk.config import PATH - -nm = 1e-3 -pin_length = 10 * nm -heater_width = 4 - - -class LayerMapUbc(LayerMap): - WG: Layer = (1, 0) - WG2: Layer = (31, 0) - M1_HEATER: Layer = (11, 0) - M2_ROUTER: Layer = (12, 0) - MTOP: Layer = (12, 0) - PAD_OPEN: Layer = (13, 0) - - DEVREC: Layer = (68, 0) - PORT: Layer = (1, 10) # PinRec - PORTE: Layer = (1, 11) # PinRecM - FLOORPLAN: Layer = (99, 0) - - TEXT: Layer = (10, 0) - LABEL_INSTANCE: Layer = (10, 0) - SHOW_PORTS: Layer = (1, 13) - PADDING: Layer = (67, 0) - SLAB150: Layer = (2, 0) - WAFER: Layer = (999, 0) - - -LAYER = LayerMapUbc - - -def add_labels_to_ports_optical( - component: Component, - label_layer: LayerSpec = LAYER.TEXT, - port_type: str | None = "optical", - **kwargs, -) -> Component: - """Add labels to component ports. - - Args: - component: to add labels. - label_layer: layer spec for the label. - port_type: to select ports. - - keyword Args: - layer: select ports with GDS layer. - prefix: select ports with prefix in port name. - orientation: select ports with orientation in degrees. - width: select ports with port width. - layers_excluded: List of layers to exclude. - port_type: select ports with port_type (optical, electrical, vertical_te). - clockwise: if True, sort ports clockwise, False: counter-clockwise. - """ - suffix = "o3_0" if len(component.ports) == 4 else "o2_0" - ports = component.ports.filter(port_type=port_type, suffix=suffix, **kwargs) - for port in ports: - component.add_label(text=port.name, position=port.center, layer=label_layer) - - return component - - -margin = 0.5 -add_bbox_siepic = partial(gf.add_padding, layers=(LAYER.DEVREC,), default=0) -add_bbox_siepic_top_bot = partial( - gf.add_padding, layers=(LAYER.DEVREC,), default=0, top=margin, bottom=margin -) -add_bbox_siepic_bot_right = partial( - gf.add_padding, layers=(LAYER.DEVREC,), default=0, right=margin, bottom=margin -) - - -def add_pins_siepic( - component: Component, - function: Callable = add_pin_path, - port_type: str = "optical", - layer_pin: LayerSpec = "PORT", - pin_length: float = pin_length, - **kwargs, -) -> Component: - """Add pins. - - Enables you to run SiEPIC verification tools: - To Run verification install SiEPIC-tools KLayout package - then hit V shortcut in KLayout to run verification - - - ensure no disconnected pins - - netlist extraction - - Args: - component: to add pins. - function: to add pin. - port_type: optical, electrical, ... - layer_pin: pin layer. - pin_length: length of the pin marker for the port. - - Keyword Args: - layer: select ports with GDS layer. - prefix: select ports with port name. - orientation: select ports with orientation in degrees. - width: select ports with port width. - layers_excluded: List of layers to exclude. - port_type: select ports with port_type (optical, electrical, vertical_te). - clockwise: if True, sort ports clockwise, False: counter-clockwise. - """ - for p in gf.port.get_ports_list(component, port_type=port_type, **kwargs): - function(component=component, port=p, layer=layer_pin, pin_length=pin_length) - - return component - - -add_pins_siepic_metal = partial( - add_pins_siepic, port_type="placement", layer_pin=LAYER.PORTE -) - - -def _add_pins_bbox_siepic( - component: Component, - function: Callable = add_pin_path, - port_type: str = "optical", - layer_pin: Layer = LAYER.PORT, - pin_length: float = pin_length, - bbox_layer: Layer = LAYER.DEVREC, - remove_layers: bool = False, -) -> Component: - """Add bounding box device recognition layer. - - Args: - component: to add pins. - function: to add pins. - port_type: optical, electrical... - layer_pin: for pin. - pin_length: in um. - bbox_layer: bounding box layer. - remove_layers: removes old layers. - """ - c = component - if remove_layers: - remove_layers = (layer_pin, bbox_layer, "TEXT") - c.remove_layers(layers=remove_layers) - - if bbox_layer not in c.layers: - polygon = gf.kdb.DPolygon(c.dbbox()) - bbox_layer_index = gf.get_layer(bbox_layer) - c.shapes(bbox_layer_index).insert(polygon) - - if layer_pin not in c.layers: - c = add_pins_siepic( - component=component, - function=function, - port_type=port_type, - layer_pin=layer_pin, - pin_length=pin_length, - ) - return c - - -add_pins_bbox_siepic = partial(gf.container, function=_add_pins_bbox_siepic) -add_pins_bbox_siepic_metal = partial( - add_pins_bbox_siepic, port_type="placement", layer_pin=LAYER.PORTE -) - - -def get_layer_stack( - thickness_wg: float = 220 * nm, - zmin_heater: float = 1.1, - thickness_heater: float = 700 * nm, - thickness_metal2: float = 700 * nm, - substrate_thickness: float = 10.0, - box_thickness: float = 3.0, -) -> LayerStack: - """Returns generic LayerStack. - - based on paper https://www.degruyter.com/document/doi/10.1515/nanoph-2013-0034/html - - Args: - thickness_wg: waveguide thickness in um. - zmin_heater: TiN heater. - thickness_heater: TiN thickness. - zmin_metal2: metal2. - thickness_metal2: metal2 thickness. - substrate_thickness: substrate thickness in um. - box_thickness: bottom oxide thickness in um. - """ - - return LayerStack( - layers=dict( - substrate=LayerLevel( - layer=LAYER.WAFER, - thickness=substrate_thickness, - zmin=-substrate_thickness - box_thickness, - material="si", - info={"mesh_order": 99}, - ), - box=LayerLevel( - layer=LAYER.WAFER, - thickness=box_thickness, - zmin=-box_thickness, - material="sio2", - info={"mesh_order": 99}, - ), - clad=LayerLevel( - layer=LAYER.WAFER, - thickness=zmin_heater + thickness_heater, - zmin=0, - material="sio2", - info={"mesh_order": 100}, - ), - core=LayerLevel( - layer=LAYER.WG, - thickness=thickness_wg, - zmin=0.0, - material="si", - info={"mesh_order": 1}, - sidewall_angle=10, - width_to_z=0.5, - ), - core2=LayerLevel( - layer=LAYER.WG2, - thickness=thickness_wg, - zmin=0.0, - material="si", - info={"mesh_order": 1}, - sidewall_angle=10, - width_to_z=0.5, - ), - heater=LayerLevel( - layer=LAYER.M1_HEATER, - thickness=750e-3, - zmin=zmin_heater, - material="TiN", - info={"mesh_order": 1}, - ), - metal2=LayerLevel( - layer=LAYER.M2_ROUTER, - thickness=thickness_metal2, - zmin=zmin_heater + thickness_heater, - material="Aluminum", - info={"mesh_order": 2}, - ), - ) - ) - - -class Tech(BaseModel): - fiber_array_spacing: float = 250.0 - wg_width: float = 0.5 - gap_strip: float = 0.2 - gap: float = 0.2 - radius: float = 10.0 - radius_strip: float = 10.0 - width: float = 0.5 - width_metal: float = 1.5 - - -TECH = Tech() -LAYER_STACK = get_layer_stack() -LAYER_VIEWS = gf.technology.LayerViews(PATH.lyp_yaml) - - -strip_wg_simulation_info = dict( - model="ebeam_wg_integral_1550", - layout_model_property_pairs=dict( - # interconnect_property_name=(layout_property_name, scaling_value) - wg_length=("length", 1e-6), - wg_width=("width", 1e-6), - ), - layout_model_port_pairs=dict(o1="port 1", o2="port 2"), - properties=dict(annotate=False), -) - -cladding_layers_optical_siepic = ("DEVREC",) # for SiEPIC verification -cladding_offsets_optical_siepic = (0.5,) # for SiEPIC verification -# cladding_layers_optical_siepic = None -# cladding_offsets_optical_siepic = None - - -############################ -# Cross-sections functions -############################ -cross_section = partial( - gf.cross_section.cross_section, - radius_min=5, -) - -strip = partial( - cross_section, - cladding_layers=cladding_layers_optical_siepic, - cladding_offsets=cladding_offsets_optical_siepic, -) -strip_unclad = strip_simple = cross_section -strip_heater_metal = partial( - gf.cross_section.strip_heater_metal, - layer="WG", - heater_width=heater_width, - layer_heater=LAYER.M1_HEATER, - cladding_layers=cladding_layers_optical_siepic, - cladding_offsets=cladding_offsets_optical_siepic, -) - -strip_bbox = partial( - cross_section, - bbox_layers=cladding_layers_optical_siepic, - bbox_offsets=cladding_offsets_optical_siepic, -) - -metal_routing = partial( - gf.cross_section.metal_routing, - layer=LAYER.M2_ROUTER, - width=10.0, - port_names=gf.cross_section.port_names_electrical, - port_types=gf.cross_section.port_types_electrical, - radius=None, -) -heater_metal = partial(metal_routing, width=heater_width, layer=LAYER.M1_HEATER) -cross_sections = get_cross_sections(sys.modules[__name__]) - -############################ -# Routing functions -############################ - -route_single = partial(gf.routing.route_single, cross_section="strip") -route_bundle = partial(gf.routing.route_bundle, cross_section="strip") - - -route_bundle_rib = partial( - route_bundle, - cross_section="rib", -) -route_bundle_metal = partial( - route_bundle, - straight="straight_metal", - bend="bend_metal", - taper=None, - cross_section="metal_routing", - port_type="electrical", -) -route_bundle_metal_corner = partial( - route_bundle, - straight="straight_metal", - bend="wire_corner", - taper=None, - cross_section="metal_routing", - port_type="electrical", -) - -route_astar = partial( - add_bundle_astar, - layers=["WG"], - bend="bend_euler", - straight="straight", - grid_unit=500, - spacing=3, -) - -route_astar_metal = partial( - add_bundle_astar, - layers=["M2_ROUTER"], - bend="wire_corner", - straight="straight_metal", - grid_unit=500, - spacing=15, -) - - -routing_strategies = dict( - route_bundle=route_bundle, - route_bundle_rib=route_bundle_rib, - route_bundle_metal=route_bundle_metal, - route_bundle_metal_corner=route_bundle_metal_corner, - route_astar=route_astar, - route_astar_metal=route_astar_metal, -) - - -if __name__ == "__main__": - # LAYER_VIEWS = gf.technology.LayerViews(filepath=PATH.lyp) - # LAYER_VIEWS.to_yaml(PATH.layers_yaml) - # LAYER_VIEWS = gf.technology.LayerViews(PATH.lyp_yaml) - LAYER_VIEWS.to_lyp(PATH.lyp) diff --git a/update_source.sh b/update_source.sh deleted file mode 100755 index f8417c8f..00000000 --- a/update_source.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash - -export VERSION=0.3.41 -export CML_VER=2022_02_01 - -export GIT_REPO=https://github.com/SiEPIC/SiEPIC_EBeam_PDK - -export REPO_TECH=SiEPIC_EBeam_PDK-${VERSION}/klayout_dot_config/tech/EBeam -export UBC_TECH=ubcpdk/klayout/tech -export LUM_DIR=ubcpdk/simulation/lumerical -export GDS_DIR=ubcpdk/gds - - -# Download EBeam PDK archive and extract it here -wget ${GIT_REPO}/archive/refs/tags/v${VERSION}.tar.gz -tar -xvf v${VERSION}.tar.gz - -# Copy files from tech -cp -r ${REPO_TECH}/klayout_Layers_EBeam.lyp ${UBC_TECH}/layers.lyp -cp -r ${REPO_TECH}/EBeam.lyt ${UBC_TECH}/tech.lyt -cp -r ${REPO_TECH}/EBeam_v${CML_VER}.cml ${LUM_DIR}/EBeam.cml -cp -r ${REPO_TECH}/lumerical_process_file.lbr ${LUM_DIR}/lumerical_process_file.lbr - -# TODO: Make this work with the naming used by SiEPIC -# gf gds layermap_to_dataclass ${UBC_TECH}/layers.lyp - -# Copy files from gds -cp -r ${REPO_TECH}/gds/development/*.gds ${GDS_DIR} -cp -r ${REPO_TECH}/gds/mature/*.gds ${GDS_DIR} - -# Clean up -rm -r v${VERSION}.tar.gz SiEPIC_EBeam_PDK-${VERSION}