mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 14:15:42 -04:00
95 lines
2.1 KiB
Python
95 lines
2.1 KiB
Python
from numbers import Integral
|
|
import sys
|
|
|
|
from openmc.checkvalue import check_type
|
|
|
|
if sys.version_info[0] >= 3:
|
|
basestring = str
|
|
|
|
|
|
class Nuclide(object):
|
|
"""A nuclide that can be used in a material.
|
|
|
|
Parameters
|
|
----------
|
|
name : str
|
|
Name of the nuclide, e.g. U-235
|
|
xs : str
|
|
Cross section identifier, e.g. 71c
|
|
|
|
Attributes
|
|
----------
|
|
name : str
|
|
Name of the nuclide, e.g. U-235
|
|
xs : str
|
|
Cross section identifier, e.g. 71c
|
|
zaid : int
|
|
1000*(atomic number) + mass number. As an example, the zaid of U-235
|
|
would be 92235.
|
|
|
|
"""
|
|
|
|
def __init__(self, name='', xs=None):
|
|
# Initialize class attributes
|
|
self._name = ''
|
|
self._xs = None
|
|
self._zaid = None
|
|
|
|
# Set the Material class attributes
|
|
self.name = name
|
|
|
|
if xs is not None:
|
|
self.xs = xs
|
|
|
|
def __eq__(self, nuclide2):
|
|
# Check type
|
|
if not isinstance(nuclide2, Nuclide):
|
|
return False
|
|
|
|
# Check name
|
|
elif self._name != nuclide2._name:
|
|
return False
|
|
|
|
# Check xs
|
|
elif self._xs != nuclide2._xs:
|
|
return False
|
|
|
|
else:
|
|
return True
|
|
|
|
def __hash__(self):
|
|
return hash((self._name, self._xs))
|
|
|
|
@property
|
|
def name(self):
|
|
return self._name
|
|
|
|
@property
|
|
def xs(self):
|
|
return self._xs
|
|
|
|
@property
|
|
def zaid(self):
|
|
return self._zaid
|
|
|
|
@name.setter
|
|
def name(self, name):
|
|
check_type('name', name, basestring)
|
|
self._name = name
|
|
|
|
@xs.setter
|
|
def xs(self, xs):
|
|
check_type('cross-section identifier', xs, basestring)
|
|
self._xs = xs
|
|
|
|
@zaid.setter
|
|
def zaid(self, zaid):
|
|
check_type('zaid', zaid, Integral)
|
|
self._zaid = zaid
|
|
|
|
def __repr__(self):
|
|
string = 'Nuclide - {0}\n'.format(self._name)
|
|
string += '{0: <16}{1}{2}\n'.format('\tXS', '=\t', self._xs)
|
|
if self._zaid is not None:
|
|
string += '{0: <16}{1}{2}\n'.format('\tZAID', '=\t', self._zaid)
|
|
return string
|