├── .github └── workflows │ ├── ci_with_docker_build.yml │ ├── ci_with_install.yml │ └── docker_publish.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── environment.yml ├── example_01_single_volume_cell_tally ├── 1_create_cad_and_convert_to_dagmc.py ├── 2_run_neutronics_simulation.py ├── README.md └── run_all.sh ├── example_02_multi_volume_cell_tally ├── 1_create_cad_and_convert_to_dagmc.py ├── 2_run_neutronics_simulation.py ├── README.md └── run_all.sh ├── example_04_multi_volume_regular_mesh_tally ├── 1_create_cad_and_convert_to_dagmc.py ├── 2_run_neutronics_simulation.py ├── 3_post_process_and_plot.py └── run_all.sh └── example_05_3D_unstructured_mesh_tally ├── 1_create_cad_and_convert_to_dagmc.py ├── 2_run_neutronics_simulation.py ├── README.md └── run_all.sh /.github/workflows/ci_with_docker_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/.github/workflows/ci_with_docker_build.yml -------------------------------------------------------------------------------- /.github/workflows/ci_with_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/.github/workflows/ci_with_install.yml -------------------------------------------------------------------------------- /.github/workflows/docker_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/.github/workflows/docker_publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/environment.yml -------------------------------------------------------------------------------- /example_01_single_volume_cell_tally/1_create_cad_and_convert_to_dagmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/example_01_single_volume_cell_tally/1_create_cad_and_convert_to_dagmc.py -------------------------------------------------------------------------------- /example_01_single_volume_cell_tally/2_run_neutronics_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/example_01_single_volume_cell_tally/2_run_neutronics_simulation.py -------------------------------------------------------------------------------- /example_01_single_volume_cell_tally/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/example_01_single_volume_cell_tally/README.md -------------------------------------------------------------------------------- /example_01_single_volume_cell_tally/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/example_01_single_volume_cell_tally/run_all.sh -------------------------------------------------------------------------------- /example_02_multi_volume_cell_tally/1_create_cad_and_convert_to_dagmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/example_02_multi_volume_cell_tally/1_create_cad_and_convert_to_dagmc.py -------------------------------------------------------------------------------- /example_02_multi_volume_cell_tally/2_run_neutronics_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/example_02_multi_volume_cell_tally/2_run_neutronics_simulation.py -------------------------------------------------------------------------------- /example_02_multi_volume_cell_tally/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/example_02_multi_volume_cell_tally/README.md -------------------------------------------------------------------------------- /example_02_multi_volume_cell_tally/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/example_02_multi_volume_cell_tally/run_all.sh -------------------------------------------------------------------------------- /example_04_multi_volume_regular_mesh_tally/1_create_cad_and_convert_to_dagmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/example_04_multi_volume_regular_mesh_tally/1_create_cad_and_convert_to_dagmc.py -------------------------------------------------------------------------------- /example_04_multi_volume_regular_mesh_tally/2_run_neutronics_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/example_04_multi_volume_regular_mesh_tally/2_run_neutronics_simulation.py -------------------------------------------------------------------------------- /example_04_multi_volume_regular_mesh_tally/3_post_process_and_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/example_04_multi_volume_regular_mesh_tally/3_post_process_and_plot.py -------------------------------------------------------------------------------- /example_04_multi_volume_regular_mesh_tally/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/example_04_multi_volume_regular_mesh_tally/run_all.sh -------------------------------------------------------------------------------- /example_05_3D_unstructured_mesh_tally/1_create_cad_and_convert_to_dagmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/example_05_3D_unstructured_mesh_tally/1_create_cad_and_convert_to_dagmc.py -------------------------------------------------------------------------------- /example_05_3D_unstructured_mesh_tally/2_run_neutronics_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/example_05_3D_unstructured_mesh_tally/2_run_neutronics_simulation.py -------------------------------------------------------------------------------- /example_05_3D_unstructured_mesh_tally/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/example_05_3D_unstructured_mesh_tally/README.md -------------------------------------------------------------------------------- /example_05_3D_unstructured_mesh_tally/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-energy/fusion_neutronics_workflow/HEAD/example_05_3D_unstructured_mesh_tally/run_all.sh --------------------------------------------------------------------------------