├── .github └── workflows │ ├── black.yml │ ├── ci_with_install.yml │ ├── lint.yaml │ └── python-publish.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── environment.yml ├── examples ├── example_gamma_spec_plot.py ├── example_get_particle_data.py ├── example_plot_plasma_source_position.py ├── example_plot_source_direction.py ├── example_plot_source_energy.py ├── example_plot_source_position.py ├── example_plot_two_source_energies.py └── gamma_spec.png ├── pyproject.toml ├── src └── openmc_source_plotter │ ├── __init__.py │ ├── core.py │ └── material.py └── tests ├── test_core_with_model.py ├── test_core_with_settings.py ├── test_core_with_source.py └── todo.md /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/ci_with_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/.github/workflows/ci_with_install.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/environment.yml -------------------------------------------------------------------------------- /examples/example_gamma_spec_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/examples/example_gamma_spec_plot.py -------------------------------------------------------------------------------- /examples/example_get_particle_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/examples/example_get_particle_data.py -------------------------------------------------------------------------------- /examples/example_plot_plasma_source_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/examples/example_plot_plasma_source_position.py -------------------------------------------------------------------------------- /examples/example_plot_source_direction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/examples/example_plot_source_direction.py -------------------------------------------------------------------------------- /examples/example_plot_source_energy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/examples/example_plot_source_energy.py -------------------------------------------------------------------------------- /examples/example_plot_source_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/examples/example_plot_source_position.py -------------------------------------------------------------------------------- /examples/example_plot_two_source_energies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/examples/example_plot_two_source_energies.py -------------------------------------------------------------------------------- /examples/gamma_spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/examples/gamma_spec.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/openmc_source_plotter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/src/openmc_source_plotter/__init__.py -------------------------------------------------------------------------------- /src/openmc_source_plotter/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/src/openmc_source_plotter/core.py -------------------------------------------------------------------------------- /src/openmc_source_plotter/material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/src/openmc_source_plotter/material.py -------------------------------------------------------------------------------- /tests/test_core_with_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/tests/test_core_with_model.py -------------------------------------------------------------------------------- /tests/test_core_with_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/tests/test_core_with_settings.py -------------------------------------------------------------------------------- /tests/test_core_with_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/openmc_source_plotter/HEAD/tests/test_core_with_source.py -------------------------------------------------------------------------------- /tests/todo.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------