├── .gitignore ├── README.md ├── example ├── create_ptrac.inp ├── event.png └── ptrac ├── mcnpy ├── __init__.py ├── ace │ ├── __init__.py │ └── reader.py ├── mcnp_wrapper.py └── ptrac │ ├── __init__.py │ ├── plotter.py │ └── reader.py └── tests ├── __init__.py ├── ace └── test_ace_reader.py ├── data_files ├── 92235.710nc ├── U_235_300K.ace ├── ptrac └── xsdir └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abnowack/mcnpy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abnowack/mcnpy/HEAD/README.md -------------------------------------------------------------------------------- /example/create_ptrac.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abnowack/mcnpy/HEAD/example/create_ptrac.inp -------------------------------------------------------------------------------- /example/event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abnowack/mcnpy/HEAD/example/event.png -------------------------------------------------------------------------------- /example/ptrac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abnowack/mcnpy/HEAD/example/ptrac -------------------------------------------------------------------------------- /mcnpy/__init__.py: -------------------------------------------------------------------------------- 1 | from mcnp_wrapper import run_mcnp -------------------------------------------------------------------------------- /mcnpy/ace/__init__.py: -------------------------------------------------------------------------------- 1 | from reader import * 2 | -------------------------------------------------------------------------------- /mcnpy/ace/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abnowack/mcnpy/HEAD/mcnpy/ace/reader.py -------------------------------------------------------------------------------- /mcnpy/mcnp_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abnowack/mcnpy/HEAD/mcnpy/mcnp_wrapper.py -------------------------------------------------------------------------------- /mcnpy/ptrac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abnowack/mcnpy/HEAD/mcnpy/ptrac/__init__.py -------------------------------------------------------------------------------- /mcnpy/ptrac/plotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abnowack/mcnpy/HEAD/mcnpy/ptrac/plotter.py -------------------------------------------------------------------------------- /mcnpy/ptrac/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abnowack/mcnpy/HEAD/mcnpy/ptrac/reader.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ace/test_ace_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abnowack/mcnpy/HEAD/tests/ace/test_ace_reader.py -------------------------------------------------------------------------------- /tests/data_files/92235.710nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abnowack/mcnpy/HEAD/tests/data_files/92235.710nc -------------------------------------------------------------------------------- /tests/data_files/U_235_300K.ace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abnowack/mcnpy/HEAD/tests/data_files/U_235_300K.ace -------------------------------------------------------------------------------- /tests/data_files/ptrac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abnowack/mcnpy/HEAD/tests/data_files/ptrac -------------------------------------------------------------------------------- /tests/data_files/xsdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abnowack/mcnpy/HEAD/tests/data_files/xsdir -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abnowack/mcnpy/HEAD/tests/utils.py --------------------------------------------------------------------------------