cad-to-dagmc


Namecad-to-dagmc JSON
Version 0.8.2 PyPI version JSON
download
home_pageNone
SummaryConverts CAD files to a DAGMC h5m file
upload_time2025-02-03 16:24:45
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords dagmc geometry plot slice
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
[![N|Python](https://www.python.org/static/community_logos/python-powered-w-100x40.png)](https://www.python.org)

[![CI with Conda install](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_conda_install.yml/badge.svg)](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_conda_install.yml) Testing package and running examples with dependencies installed via Conda

[![CI with pip install](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_pip_install.yml/badge.svg)](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_pip_install.yml) Testing package and running examples with dependencies installed vua PIP

[![CI with model benchmark zoo](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_benchmarks.yml/badge.svg?branch=main)](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_benchmarks.yml) Testing with [Model Benchmark Zoo](https://github.com/fusion-energy/model_benchmark_zoo)

[![Upload Python Package](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/python-publish.yml/badge.svg)](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/python-publish.yml)

[![PyPI](https://img.shields.io/pypi/v/cad_to_dagmc?color=brightgreen&label=pypi&logo=grebrightgreenen&logoColor=green)](https://pypi.org/project/cad_to_dagmc/)


A minimal package that converts CAD geometry to [DAGMC](https://github.com/svalinn/DAGMC/) (h5m) files, [unstructured mesh](https://docs.openmc.org/en/latest/pythonapi/generated/openmc.UnstructuredMesh.html) files (vtk) and Gmsh (msh) files ready for use in neutronics simulations.

cad-to-dagmc can create DAGMC compatible:
- surface meshes / faceted geometry / triangular meshes
- unstructured mesh / tetrahedral meshes / volume meshes

cad-to-dagmc can convert the following in to DAGMC compatible meshes:
- STEP files
- CadQuery objects (in memory)
- Gmsh meshes

Cad-to-dagmc offers a wide range of features including.
- Geometry scaling with ```scale_factor``` argument
- Model wide mesh size parameters with ```min_mesh_size``` and ```max_mesh_size``` arguments
- Volume specific mesh sizing parameters with the ```set_size``` argument
- Parallel meshing to quickly mesh the geometry using multiple CPU cores
- Imprint and merging of CAD geometry, or disable with the ```imprint``` argument
- Add geometry from multiple sources ([STEP](http://www.steptools.com/stds/step/) files, [CadQuery](https://cadquery.readthedocs.io) objects and [Gmsh](https://gmsh.info/) meshes)
- Ability to tag the DAGMC implicit complement material using the ```implicit_complement_material_tag``` argument
- Selected different Gmesh mesh algorithms (defaults to 1) using the ```mesh_algorithm``` argument
- Pass CadQuery objects in memory for fast transfer of geometry using the ```method``` argument
- Easy to install with [pip](https://pypi.org/project/cad-to-dagmc/) and [Conda/Mamba](https://anaconda.org/conda-forge/cad_to_dagmc)
- Well tested both with [CI unit tests](https://github.com/fusion-energy/cad_to_dagmc/tree/main/tests), integration tests and the CSG [Model Benchmark Zoo](https://github.com/fusion-energy/model_benchmark_zoo).
- Compatible with [Paramak](https://github.com/fusion-energy/paramak) geometry for fusion simulations.


# Installation options

- Install using Mamba
- Install using Conda
- Install using pip and source compilations

## Install using Mamba

In principle, installing any Conda/Mamba distribution will work. A few Conda/Mamba options are:
- [Miniforge](https://github.com/conda-forge/miniforge) (recommended as it includes mamba)
- [Anaconda](https://www.anaconda.com/download)
- [Miniconda](https://docs.conda.io/en/latest/miniconda.html)

This example assumes you have installed the Miniforge option or separately have installed Mamba with ```conda install -c conda-forge mamba -y```

Create a new environment, I've chosen Python 3.10 here but newer versions are
also supported.
```bash
mamba create --name new_env python=3.10 -y
```

Activate the environment
```bash
mamba activate new_env
```

Then you can install the cad_to_dagmc package
```bash
mamba install -y -c conda-forge cad_to_dagmc
```

## Install using Conda

In principle, installing any Conda/Mamba distribution will work. A few Conda/Mamba options are:
- [Miniforge](https://github.com/conda-forge/miniforge) (recommended as it includes mamba)
- [Anaconda](https://www.anaconda.com/download)
- [Miniconda](https://docs.conda.io/en/latest/miniconda.html)

Create a new environment, I've chosen Python 3.10 here but newer versions are
also supported.
```bash
conda create --name new_env python=3.10 -y
```

Activate the environment
```bash
conda activate new_env
```

Then you can install the cad_to_dagmc package
```bash
conda install -y -c conda-forge cad_to_dagmc
```

## Install using pip and source compilations

It is also possible to avoid the use of conda/mamba and installing using pip.

First ensure hdf5 is installed as this is needed by MOAB pip install command

```
sudo apt-get install libhdf5-dev
```

Then clone the latest version of MOAB and cd into the moab directory.

```
git clone  master https://bitbucket.org/fathomteam/moab/
cd moab
```

Ensure pip is up to date as a new version is needed
```
python -m pip install --upgrade pip
```

Run the pip install command with cmake arguments.
```
pip install . --config-settings=cmake.args=-DENABLE_HDF5=ON
```

Then you can install the cad_to_dagmc package with ```pip```

```bash
pip install cad_to_dagmc
```

## Install with OpenMC or other particle transport codes

You may also want to install OpenMC with DAGMC to make use of the h5m geometry files produced in simulations. However you could also use other supported particle transport codes such as MCNP, FLUKA and others [link to DAGMC documentation](https://svalinn.github.io/DAGMC/).

To install OpenMC you can run ```mamba install -c conda-forge openmc``` however this more specific command makes sure the latest version of OpenMC which contains DAGMC is chosen by conda / mamba
```bash
mamba install -c conda-forge -y "openmc=0.15.0=dagmc*nompi*"
```

It might not be possible to install OpenMC and cad-to-dagmc in the same conda/mamba python environment so you may have to create a new conda/mamba environment and install OpenMC there.

Another option would be to [install OpenMC from source](https://docs.openmc.org/en/stable/quickinstall.html) which would also need compiling with MOAB and DAGMC options.


# Known incompatibilities

The package requires newer versions of Linux. For example the package does not work on Ubuntu 18.04 or older.

The package requires newer versions of pip. It is recommended to ensure that your version of pip is up to date. This can be done with ```python -m pip install --upgrade pip```

Installing one of the package dependancies (Gmsh) with pip appears to result in errors when passing cad objects in memory between cadquery / ocp and gmsh. The default method of passing cad objects is via file so this should not impact most users. The conda install gmsh appears to work fine with in memory passing of cad objects as the version of OCP matches between Gmsh and CadQuery.


# Usage

For examples showing creation of DAGMC h5m files, vtk files and usage within OpenMC transport code see the [examples folder](https://github.com/fusion-energy/cad_to_dagmc/tree/main/examples)

For more examples see the CAD tasks in the [neutronics-workshop](https://github.com/fusion-energy/neutronics-workshop) and [model benchmark zoo](https://github.com/fusion-energy/model_benchmark_zoo)

# Related software

Also checkout these other software projects that also create DAGMC geometry [CAD-to-OpenMC](https://github.com/openmsr/CAD_to_OpenMC), [Stellarmesh](https://github.com/Thea-Energy/stellarmesh) and [Coreform Cubit](https://coreform.com/products/coreform-cubit/).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "cad-to-dagmc",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "dagmc, geometry, plot, slice",
    "author": null,
    "author_email": "Jonathan Shimwell <mail@jshimwell.com>",
    "download_url": "https://files.pythonhosted.org/packages/60/63/54d936a55a5adb7a5062fb1870eda0b798fcc98096c8b62b960747489018/cad_to_dagmc-0.8.2.tar.gz",
    "platform": null,
    "description": "\n[![N|Python](https://www.python.org/static/community_logos/python-powered-w-100x40.png)](https://www.python.org)\n\n[![CI with Conda install](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_conda_install.yml/badge.svg)](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_conda_install.yml) Testing package and running examples with dependencies installed via Conda\n\n[![CI with pip install](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_pip_install.yml/badge.svg)](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_pip_install.yml) Testing package and running examples with dependencies installed vua PIP\n\n[![CI with model benchmark zoo](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_benchmarks.yml/badge.svg?branch=main)](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_benchmarks.yml) Testing with [Model Benchmark Zoo](https://github.com/fusion-energy/model_benchmark_zoo)\n\n[![Upload Python Package](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/python-publish.yml/badge.svg)](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/python-publish.yml)\n\n[![PyPI](https://img.shields.io/pypi/v/cad_to_dagmc?color=brightgreen&label=pypi&logo=grebrightgreenen&logoColor=green)](https://pypi.org/project/cad_to_dagmc/)\n\n\nA minimal package that converts CAD geometry to [DAGMC](https://github.com/svalinn/DAGMC/) (h5m) files, [unstructured mesh](https://docs.openmc.org/en/latest/pythonapi/generated/openmc.UnstructuredMesh.html) files (vtk) and Gmsh (msh) files ready for use in neutronics simulations.\n\ncad-to-dagmc can create DAGMC compatible:\n- surface meshes / faceted geometry / triangular meshes\n- unstructured mesh / tetrahedral meshes / volume meshes\n\ncad-to-dagmc can convert the following in to DAGMC compatible meshes:\n- STEP files\n- CadQuery objects (in memory)\n- Gmsh meshes\n\nCad-to-dagmc offers a wide range of features including.\n- Geometry scaling with ```scale_factor``` argument\n- Model wide mesh size parameters with ```min_mesh_size``` and ```max_mesh_size``` arguments\n- Volume specific mesh sizing parameters with the ```set_size``` argument\n- Parallel meshing to quickly mesh the geometry using multiple CPU cores\n- Imprint and merging of CAD geometry, or disable with the ```imprint``` argument\n- Add geometry from multiple sources ([STEP](http://www.steptools.com/stds/step/) files, [CadQuery](https://cadquery.readthedocs.io) objects and [Gmsh](https://gmsh.info/) meshes)\n- Ability to tag the DAGMC implicit complement material using the ```implicit_complement_material_tag``` argument\n- Selected different Gmesh mesh algorithms (defaults to 1) using the ```mesh_algorithm``` argument\n- Pass CadQuery objects in memory for fast transfer of geometry using the ```method``` argument\n- Easy to install with [pip](https://pypi.org/project/cad-to-dagmc/) and [Conda/Mamba](https://anaconda.org/conda-forge/cad_to_dagmc)\n- Well tested both with [CI unit tests](https://github.com/fusion-energy/cad_to_dagmc/tree/main/tests), integration tests and the CSG [Model Benchmark Zoo](https://github.com/fusion-energy/model_benchmark_zoo).\n- Compatible with [Paramak](https://github.com/fusion-energy/paramak) geometry for fusion simulations.\n\n\n# Installation options\n\n- Install using Mamba\n- Install using Conda\n- Install using pip and source compilations\n\n## Install using Mamba\n\nIn principle, installing any Conda/Mamba distribution will work. A few Conda/Mamba options are:\n- [Miniforge](https://github.com/conda-forge/miniforge) (recommended as it includes mamba)\n- [Anaconda](https://www.anaconda.com/download)\n- [Miniconda](https://docs.conda.io/en/latest/miniconda.html)\n\nThis example assumes you have installed the Miniforge option or separately have installed Mamba with ```conda install -c conda-forge mamba -y```\n\nCreate a new environment, I've chosen Python 3.10 here but newer versions are\nalso supported.\n```bash\nmamba create --name new_env python=3.10 -y\n```\n\nActivate the environment\n```bash\nmamba activate new_env\n```\n\nThen you can install the cad_to_dagmc package\n```bash\nmamba install -y -c conda-forge cad_to_dagmc\n```\n\n## Install using Conda\n\nIn principle, installing any Conda/Mamba distribution will work. A few Conda/Mamba options are:\n- [Miniforge](https://github.com/conda-forge/miniforge) (recommended as it includes mamba)\n- [Anaconda](https://www.anaconda.com/download)\n- [Miniconda](https://docs.conda.io/en/latest/miniconda.html)\n\nCreate a new environment, I've chosen Python 3.10 here but newer versions are\nalso supported.\n```bash\nconda create --name new_env python=3.10 -y\n```\n\nActivate the environment\n```bash\nconda activate new_env\n```\n\nThen you can install the cad_to_dagmc package\n```bash\nconda install -y -c conda-forge cad_to_dagmc\n```\n\n## Install using pip and source compilations\n\nIt is also possible to avoid the use of conda/mamba and installing using pip.\n\nFirst ensure hdf5 is installed as this is needed by MOAB pip install command\n\n```\nsudo apt-get install libhdf5-dev\n```\n\nThen clone the latest version of MOAB and cd into the moab directory.\n\n```\ngit clone  master https://bitbucket.org/fathomteam/moab/\ncd moab\n```\n\nEnsure pip is up to date as a new version is needed\n```\npython -m pip install --upgrade pip\n```\n\nRun the pip install command with cmake arguments.\n```\npip install . --config-settings=cmake.args=-DENABLE_HDF5=ON\n```\n\nThen you can install the cad_to_dagmc package with ```pip```\n\n```bash\npip install cad_to_dagmc\n```\n\n## Install with OpenMC or other particle transport codes\n\nYou may also want to install OpenMC with DAGMC to make use of the h5m geometry files produced in simulations. However you could also use other supported particle transport codes such as MCNP, FLUKA and others [link to DAGMC documentation](https://svalinn.github.io/DAGMC/).\n\nTo install OpenMC you can run ```mamba install -c conda-forge openmc``` however this more specific command makes sure the latest version of OpenMC which contains DAGMC is chosen by conda / mamba\n```bash\nmamba install -c conda-forge -y \"openmc=0.15.0=dagmc*nompi*\"\n```\n\nIt might not be possible to install OpenMC and cad-to-dagmc in the same conda/mamba python environment so you may have to create a new conda/mamba environment and install OpenMC there.\n\nAnother option would be to [install OpenMC from source](https://docs.openmc.org/en/stable/quickinstall.html) which would also need compiling with MOAB and DAGMC options.\n\n\n# Known incompatibilities\n\nThe package requires newer versions of Linux. For example the package does not work on Ubuntu 18.04 or older.\n\nThe package requires newer versions of pip. It is recommended to ensure that your version of pip is up to date. This can be done with ```python -m pip install --upgrade pip```\n\nInstalling one of the package dependancies (Gmsh) with pip appears to result in errors when passing cad objects in memory between cadquery / ocp and gmsh. The default method of passing cad objects is via file so this should not impact most users. The conda install gmsh appears to work fine with in memory passing of cad objects as the version of OCP matches between Gmsh and CadQuery.\n\n\n# Usage\n\nFor examples showing creation of DAGMC h5m files, vtk files and usage within OpenMC transport code see the [examples folder](https://github.com/fusion-energy/cad_to_dagmc/tree/main/examples)\n\nFor more examples see the CAD tasks in the [neutronics-workshop](https://github.com/fusion-energy/neutronics-workshop) and [model benchmark zoo](https://github.com/fusion-energy/model_benchmark_zoo)\n\n# Related software\n\nAlso checkout these other software projects that also create DAGMC geometry [CAD-to-OpenMC](https://github.com/openmsr/CAD_to_OpenMC), [Stellarmesh](https://github.com/Thea-Energy/stellarmesh) and [Coreform Cubit](https://coreform.com/products/coreform-cubit/).\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Converts CAD files to a DAGMC h5m file",
    "version": "0.8.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/fusion-energy/cad_to_dagmc/issues",
        "Homepage": "https://github.com/fusion-energy/cad_to_dagmc"
    },
    "split_keywords": [
        "dagmc",
        " geometry",
        " plot",
        " slice"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8d7d345ce2e68d21687715a2122453e171317148bd229f7feb68321c5117747",
                "md5": "056772c32518e8b23715d69dcd1d526c",
                "sha256": "abcca2a40c8531c350400a12aea8df6d6ab6bc8781bb798d5ad35eda634b8c38"
            },
            "downloads": -1,
            "filename": "cad_to_dagmc-0.8.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "056772c32518e8b23715d69dcd1d526c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 12194,
            "upload_time": "2025-02-03T16:24:44",
            "upload_time_iso_8601": "2025-02-03T16:24:44.149368Z",
            "url": "https://files.pythonhosted.org/packages/c8/d7/d345ce2e68d21687715a2122453e171317148bd229f7feb68321c5117747/cad_to_dagmc-0.8.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "606354d936a55a5adb7a5062fb1870eda0b798fcc98096c8b62b960747489018",
                "md5": "2abbe1d32fc6f6c0f4e0fef060e401aa",
                "sha256": "5487f3172f8b8bd765492c6748bebc9baa295e86f30a673d1f420136efa6ae78"
            },
            "downloads": -1,
            "filename": "cad_to_dagmc-0.8.2.tar.gz",
            "has_sig": false,
            "md5_digest": "2abbe1d32fc6f6c0f4e0fef060e401aa",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 1011266,
            "upload_time": "2025-02-03T16:24:45",
            "upload_time_iso_8601": "2025-02-03T16:24:45.285425Z",
            "url": "https://files.pythonhosted.org/packages/60/63/54d936a55a5adb7a5062fb1870eda0b798fcc98096c8b62b960747489018/cad_to_dagmc-0.8.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-03 16:24:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "fusion-energy",
    "github_project": "cad_to_dagmc",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "cad-to-dagmc"
}
        
Elapsed time: 0.37722s