Skip to main content

A tool for making reproducible materials and standardizing use across several neutronics codes

Project description

N|Python CI testing codecov PyPI version Documentation Status Code Quality Score Code Grade

Neutronics Material Maker

The aim of this project is to facilitate the creation of materials for use in neutronics codes such as OpenMC, Serpent, MCNP and Fispact.

The hope is that by having this collection of materials it is easier to reuse materials across projects, use a common source with less room for user error.

One nice aspect of this material maker is the ability to change the density of a material based on isotope enrichment (e.g. inbuild lithium ceramics), temperature and pressure.

:point_right: Documentation

:point_right: Video presentation

Installation

Conda

To use the code you will need to have OpenMC installed OpenMC.

The recommended method is to install from Conda Forge which also installs all the dependencies including OpenMC.

conda create --name new_env python=3.8
conda activate new_env
conda install neutronics_material_maker -c conda-forge

Pip

Alternatively the code can be easily installed using pip. This method doesn't currently include OpenMC so that will have to be installed separately using Conda or compiled.

pip install neutronics_material_maker

To include the optional capability of calculating the density of coolants additional packages are needed (CoolProp). A slightly modified pip install is required in this case.

pip install "neutronics_material_maker[density]"

Features

Materials for using in neutronics codes have two main aspects; a list of isotopes along with their abundance and the material density.

This code contains an internal collection of materials with their isotope abundances and densities (sometimes temperature, pressure and enrichment dependant), but you may also import your own materials collection.

Usage - Finding Available Materials

Each of the materials available is stored in an internal dictionary that can be accessed using the AvailableMaterials() command.

import neutronics_material_maker as nmm
all_materials = nmm.AvailableMaterials()
print(all_materials.keys())

Usage - Material()

import neutronics_material_maker as nmm
my_mat = nmm.Material(
    name='my_custom_material',
    isotopes={'Li6':0.5, 'Li7':0.5},
    density=2.01,
    percent_type='ao',
    density_unit='g/cm3'
)
my_mat.openmc_material

Usage - Material from library

Here is an example that accesses a material from the internal collection called eurofer which has about 60 isotopes of a density of 7.78g/cm3.

import neutronics_material_maker as nmm
my_mat = nmm.Material.from_library('eurofer')
my_mat.openmc_material

Usage - Hot Pressurised Material

For several materials within the collection the temperature and the pressure impacts the density of the material. The neutronics_material_maker adjusts the density to take temperature and the pressure into account when appropriate. Densities are calculated either by a material specific formula (for example FLiBe) or using CoolProps (for example coolants)

import neutronics_material_maker as nmm
my_mat1 = nmm.Material.from_library(name='H2O', temperature=600, pressure=15e6)
my_mat1.openmc_material

For several materials within the collection the density is adjusted when the material is enriched. For breeder blankets in fusion it is common to enrich the lithium 6 content.

Usage - Enriched Material

Lithium ceramics used in fusion breeder blankets often contain enriched lithium-6 content. This slight change in density is accounted for by the neutronics_material_maker.

import neutronics_material_maker as nmm
my_mat2 = nmm.Material.from_library(name='Li4SiO4', enrichment=60)
my_mat2.openmc_material

Usage - Material.from_mixture

Materials can also be mixed together using the from_mixture method. This accepts a list of neutronics_material_maker.Materials or openmc.Material objects along with the material fractions (fracs).

import neutronics_material_maker as nmm
my_mat1 = nmm.Material.from_library(name='Li4SiO4', packing_fraction=0.64)
my_mat2 = nmm.Material.from_library(name='Be12Ti')
my_mat3 = nmm.Material.from_mixture(materials=[my_mat1, my_mat2],
                        fracs=[0.4, 0.6],
                        percent_type='vo')
my_mat3.openmc_material

Usage - Importing Your Own Material Library

Assuming you have a JSON file saved as mat_lib.json containing materials defined in the same format as the exisiting materials then you can import this file into the package using AddMaterialFromFile(). Another option is to use AddMaterialFromDir() to import a directory of json files.

import neutronics_material_maker as nmm
nmm.AddMaterialFromFile('mat_lib.json')
nmm.AvailableMaterials() # this will print the new larger list of materials

Usage - Exporting To Different Neutronics Codes

You can export to OpenMC, Serpent, MCNP and Fispact with the appropiate arguments.

import neutronics_material_maker as nmm
my_mat = nmm.Materialfrom_library('tungsten')

# openmc
my_mat.openmc_material

# mcnp - required a material_id to be set
my_mat.material_id = 1
my_mat.mcnp_material

# serpent
my_mat.serpent_material

# fispact - requires volume to be specified
my_mat.volume_in_cm3 = 1 / my_mat.density
my_mat.fispact_material

Further Examples

Further examples can be found in the neutronics workshop task 11 and in the Documentation

Acknowledgement

Inspired by software projects Pyne and making use of OpenMC functionality and the JSON file format and PNNL for many definitions.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

neutronics_material_maker-1.2.0.tar.gz (60.9 kB view details)

Uploaded Source

Built Distribution

neutronics_material_maker-1.2.0-py3-none-any.whl (44.6 kB view details)

Uploaded Python 3

File details

Details for the file neutronics_material_maker-1.2.0.tar.gz.

File metadata

File hashes

Hashes for neutronics_material_maker-1.2.0.tar.gz
Algorithm Hash digest
SHA256 8fbfd791eb5f5564fe31933fc723ca40be931326173f279c8e35cc4ae19d9dfa
MD5 f3bf4ea12731a4ea0774f1250ae1df55
BLAKE2b-256 20fba2153d60e3c72f11e3371e64c137a85c845b5d8c315501cebed1d10964ad

See more details on using hashes here.

File details

Details for the file neutronics_material_maker-1.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for neutronics_material_maker-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ec0226f3d5c0ffb8aa32f91feb52e78a2ebb6cd490915e82a1010b0eff7a2d1c
MD5 f5273aa8c00e9bb0887f5db726f70448
BLAKE2b-256 317ec047cbac8b5a857b2c508e8e0b47e3b4b1bce4e9f67e7af9b948bc8287a2

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page