├── .github └── workflows │ ├── anaconda-publish.yml │ ├── ci_with_install.yml │ └── python-publish.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── conda ├── conda_build_config.yaml └── meta.yaml ├── docs └── source │ ├── conf.py │ ├── index.rst │ ├── magnetic_flux.rst │ └── model.rst ├── examples ├── plot_ITER_plasmas.py └── plot_NSTX.py ├── manifest.in ├── plasmaboundaries ├── __init__.py ├── magnetic_flux.py ├── model.py └── parameters.py ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── test_model.py └── test_version.py /.github/workflows/anaconda-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/.github/workflows/anaconda-publish.yml -------------------------------------------------------------------------------- /.github/workflows/ci_with_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/.github/workflows/ci_with_install.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/README.md -------------------------------------------------------------------------------- /conda/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/conda/conda_build_config.yaml -------------------------------------------------------------------------------- /conda/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/conda/meta.yaml -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/magnetic_flux.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/docs/source/magnetic_flux.rst -------------------------------------------------------------------------------- /docs/source/model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/docs/source/model.rst -------------------------------------------------------------------------------- /examples/plot_ITER_plasmas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/examples/plot_ITER_plasmas.py -------------------------------------------------------------------------------- /examples/plot_NSTX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/examples/plot_NSTX.py -------------------------------------------------------------------------------- /manifest.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/manifest.in -------------------------------------------------------------------------------- /plasmaboundaries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/plasmaboundaries/__init__.py -------------------------------------------------------------------------------- /plasmaboundaries/magnetic_flux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/plasmaboundaries/magnetic_flux.py -------------------------------------------------------------------------------- /plasmaboundaries/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/plasmaboundaries/model.py -------------------------------------------------------------------------------- /plasmaboundaries/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/plasmaboundaries/parameters.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/tests/test_model.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/plasmaboundaries/HEAD/tests/test_version.py --------------------------------------------------------------------------------