Source code for openmc.macroscopic

from six import string_types

from openmc.checkvalue import check_type


[docs]class Macroscopic(object): """A Macroscopic object that can be used in a material. Parameters ---------- name : str Name of the macroscopic data, e.g. UO2 Attributes ---------- name : str Name of the nuclide, e.g. UO2 """ def __init__(self, name=''): # Initialize class attributes self._name = '' # Set the Macroscopic class attributes self.name = name def __eq__(self, other): if isinstance(other, Macroscopic): if self.name != other.name: return False else: return True elif isinstance(other, string_types) and other == self.name: return True else: return False def __ne__(self, other): return not self == other def __hash__(self): return hash((self._name)) def __repr__(self): string = 'Macroscopic - {0}\n'.format(self._name) return string @property def name(self): return self._name @name.setter def name(self, name): check_type('name', name, string_types) self._name = name