├── .github └── workflows │ ├── ci.yml │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── openmc_plotter ├── __init__.py ├── __main__.py ├── assets │ ├── openmc_logo.png │ └── splash.png ├── custom_widgets.py ├── docks.py ├── main_window.py ├── overlays.py ├── plot_colors.py ├── plotgui.py ├── plotmodel.py ├── scientific_spin_box.py ├── statepointmodel.py └── tools.py ├── pyproject.toml ├── pytest.ini ├── screenshots ├── atr.png ├── beavrs.png ├── beavrs_zoomed.png ├── color_dialog.png ├── dagmc.png ├── pincell_tally.png ├── shortcuts.png └── source-sites.png └── tests ├── __init__.py ├── conftest.py └── setup_test ├── geometry.xml ├── materials.xml ├── ref.png ├── ref1.png ├── settings.xml ├── test.pltvw ├── test.py └── test1.pltvw /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | __pycache__ 3 | plot_settings.pkl 4 | *.egg-info 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/README.md -------------------------------------------------------------------------------- /openmc_plotter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/openmc_plotter/__init__.py -------------------------------------------------------------------------------- /openmc_plotter/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/openmc_plotter/__main__.py -------------------------------------------------------------------------------- /openmc_plotter/assets/openmc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/openmc_plotter/assets/openmc_logo.png -------------------------------------------------------------------------------- /openmc_plotter/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/openmc_plotter/assets/splash.png -------------------------------------------------------------------------------- /openmc_plotter/custom_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/openmc_plotter/custom_widgets.py -------------------------------------------------------------------------------- /openmc_plotter/docks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/openmc_plotter/docks.py -------------------------------------------------------------------------------- /openmc_plotter/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/openmc_plotter/main_window.py -------------------------------------------------------------------------------- /openmc_plotter/overlays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/openmc_plotter/overlays.py -------------------------------------------------------------------------------- /openmc_plotter/plot_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/openmc_plotter/plot_colors.py -------------------------------------------------------------------------------- /openmc_plotter/plotgui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/openmc_plotter/plotgui.py -------------------------------------------------------------------------------- /openmc_plotter/plotmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/openmc_plotter/plotmodel.py -------------------------------------------------------------------------------- /openmc_plotter/scientific_spin_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/openmc_plotter/scientific_spin_box.py -------------------------------------------------------------------------------- /openmc_plotter/statepointmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/openmc_plotter/statepointmodel.py -------------------------------------------------------------------------------- /openmc_plotter/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/openmc_plotter/tools.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/pytest.ini -------------------------------------------------------------------------------- /screenshots/atr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/screenshots/atr.png -------------------------------------------------------------------------------- /screenshots/beavrs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/screenshots/beavrs.png -------------------------------------------------------------------------------- /screenshots/beavrs_zoomed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/screenshots/beavrs_zoomed.png -------------------------------------------------------------------------------- /screenshots/color_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/screenshots/color_dialog.png -------------------------------------------------------------------------------- /screenshots/dagmc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/screenshots/dagmc.png -------------------------------------------------------------------------------- /screenshots/pincell_tally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/screenshots/pincell_tally.png -------------------------------------------------------------------------------- /screenshots/shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/screenshots/shortcuts.png -------------------------------------------------------------------------------- /screenshots/source-sites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/screenshots/source-sites.png -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/setup_test/geometry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/tests/setup_test/geometry.xml -------------------------------------------------------------------------------- /tests/setup_test/materials.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/tests/setup_test/materials.xml -------------------------------------------------------------------------------- /tests/setup_test/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/tests/setup_test/ref.png -------------------------------------------------------------------------------- /tests/setup_test/ref1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/tests/setup_test/ref1.png -------------------------------------------------------------------------------- /tests/setup_test/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/tests/setup_test/settings.xml -------------------------------------------------------------------------------- /tests/setup_test/test.pltvw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/tests/setup_test/test.pltvw -------------------------------------------------------------------------------- /tests/setup_test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/tests/setup_test/test.py -------------------------------------------------------------------------------- /tests/setup_test/test1.pltvw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/plotter/HEAD/tests/setup_test/test1.pltvw --------------------------------------------------------------------------------