├── .github ├── environment.yml └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml ├── src └── openmc_cad_adapter │ ├── __init__.py │ ├── cubit_util.py │ ├── geom_util.py │ ├── gqs.py │ ├── surfaces.py │ └── to_cubit_journal.py └── test ├── __init__.py ├── assembly.jou ├── conftest.py ├── cylinder.jou ├── geometry.xml ├── gold ├── assembly.jou ├── cylinder.jou ├── ellipsoid.jou ├── lattice-hexagonal.jou ├── nested_spheres.jou ├── pincell.jou ├── pincell_cell1.jou ├── pincell_cell2.jou ├── pincell_cell3.jou ├── pincell_cell4.jou ├── plane.jou ├── x_cone.jou ├── x_torus.jou ├── xcylinder.jou ├── y_cone.jou ├── y_torus.jou ├── ycylinder.jou ├── z_cone.jou └── z_torus.jou ├── lattice-hexagonal.jou ├── local_tests.py ├── materials.xml ├── pincell.jou ├── pincell_cell1.jou ├── pincell_cell2.jou ├── pincell_cell3.jou ├── pincell_cell4.jou ├── plots.xml ├── settings.xml ├── tallies.xml ├── test_examples.py ├── test_local.py ├── test_quadric.py ├── test_utilities.py ├── xcylinder.jou └── ycylinder.jou /.github/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/.github/environment.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | __pycache__ 3 | *.egg-info 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/openmc_cad_adapter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/src/openmc_cad_adapter/__init__.py -------------------------------------------------------------------------------- /src/openmc_cad_adapter/cubit_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/src/openmc_cad_adapter/cubit_util.py -------------------------------------------------------------------------------- /src/openmc_cad_adapter/geom_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/src/openmc_cad_adapter/geom_util.py -------------------------------------------------------------------------------- /src/openmc_cad_adapter/gqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/src/openmc_cad_adapter/gqs.py -------------------------------------------------------------------------------- /src/openmc_cad_adapter/surfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/src/openmc_cad_adapter/surfaces.py -------------------------------------------------------------------------------- /src/openmc_cad_adapter/to_cubit_journal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/src/openmc_cad_adapter/to_cubit_journal.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/assembly.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/assembly.jou -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/cylinder.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/cylinder.jou -------------------------------------------------------------------------------- /test/geometry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/geometry.xml -------------------------------------------------------------------------------- /test/gold/assembly.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/assembly.jou -------------------------------------------------------------------------------- /test/gold/cylinder.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/cylinder.jou -------------------------------------------------------------------------------- /test/gold/ellipsoid.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/ellipsoid.jou -------------------------------------------------------------------------------- /test/gold/lattice-hexagonal.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/lattice-hexagonal.jou -------------------------------------------------------------------------------- /test/gold/nested_spheres.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/nested_spheres.jou -------------------------------------------------------------------------------- /test/gold/pincell.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/pincell.jou -------------------------------------------------------------------------------- /test/gold/pincell_cell1.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/pincell_cell1.jou -------------------------------------------------------------------------------- /test/gold/pincell_cell2.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/pincell_cell2.jou -------------------------------------------------------------------------------- /test/gold/pincell_cell3.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/pincell_cell3.jou -------------------------------------------------------------------------------- /test/gold/pincell_cell4.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/pincell_cell4.jou -------------------------------------------------------------------------------- /test/gold/plane.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/plane.jou -------------------------------------------------------------------------------- /test/gold/x_cone.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/x_cone.jou -------------------------------------------------------------------------------- /test/gold/x_torus.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/x_torus.jou -------------------------------------------------------------------------------- /test/gold/xcylinder.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/xcylinder.jou -------------------------------------------------------------------------------- /test/gold/y_cone.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/y_cone.jou -------------------------------------------------------------------------------- /test/gold/y_torus.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/y_torus.jou -------------------------------------------------------------------------------- /test/gold/ycylinder.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/ycylinder.jou -------------------------------------------------------------------------------- /test/gold/z_cone.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/z_cone.jou -------------------------------------------------------------------------------- /test/gold/z_torus.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/gold/z_torus.jou -------------------------------------------------------------------------------- /test/lattice-hexagonal.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/lattice-hexagonal.jou -------------------------------------------------------------------------------- /test/local_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/local_tests.py -------------------------------------------------------------------------------- /test/materials.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/materials.xml -------------------------------------------------------------------------------- /test/pincell.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/pincell.jou -------------------------------------------------------------------------------- /test/pincell_cell1.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/pincell_cell1.jou -------------------------------------------------------------------------------- /test/pincell_cell2.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/pincell_cell2.jou -------------------------------------------------------------------------------- /test/pincell_cell3.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/pincell_cell3.jou -------------------------------------------------------------------------------- /test/pincell_cell4.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/pincell_cell4.jou -------------------------------------------------------------------------------- /test/plots.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/plots.xml -------------------------------------------------------------------------------- /test/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/settings.xml -------------------------------------------------------------------------------- /test/tallies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/tallies.xml -------------------------------------------------------------------------------- /test/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/test_examples.py -------------------------------------------------------------------------------- /test/test_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/test_local.py -------------------------------------------------------------------------------- /test/test_quadric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/test_quadric.py -------------------------------------------------------------------------------- /test/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/test_utilities.py -------------------------------------------------------------------------------- /test/xcylinder.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/xcylinder.jou -------------------------------------------------------------------------------- /test/ycylinder.jou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-dev/openmc_cad_adapter/HEAD/test/ycylinder.jou --------------------------------------------------------------------------------