mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-23 19:45:34 -04:00
163 lines
5.1 KiB
Python
163 lines
5.1 KiB
Python
from collections.abc import Mapping, Iterable
|
|
from ctypes import c_int, c_int32, c_double, c_char_p, POINTER
|
|
from weakref import WeakValueDictionary
|
|
|
|
import numpy as np
|
|
from numpy.ctypeslib import as_array
|
|
|
|
from openmc.exceptions import AllocationError, InvalidIDError
|
|
from . import _dll
|
|
from .core import _FortranObjectWithID
|
|
from .error import _error_handler
|
|
from .material import Material
|
|
|
|
__all__ = ['Cell', 'cells']
|
|
|
|
# Cell functions
|
|
_dll.openmc_extend_cells.argtypes = [c_int32, POINTER(c_int32), POINTER(c_int32)]
|
|
_dll.openmc_extend_cells.restype = c_int
|
|
_dll.openmc_extend_cells.errcheck = _error_handler
|
|
_dll.openmc_cell_get_id.argtypes = [c_int32, POINTER(c_int32)]
|
|
_dll.openmc_cell_get_id.restype = c_int
|
|
_dll.openmc_cell_get_id.errcheck = _error_handler
|
|
_dll.openmc_cell_get_fill.argtypes = [
|
|
c_int32, POINTER(c_int), POINTER(POINTER(c_int32)), POINTER(c_int32)]
|
|
_dll.openmc_cell_get_fill.restype = c_int
|
|
_dll.openmc_cell_get_fill.errcheck = _error_handler
|
|
_dll.openmc_cell_set_fill.argtypes = [
|
|
c_int32, c_int, c_int32, POINTER(c_int32)]
|
|
_dll.openmc_cell_set_fill.restype = c_int
|
|
_dll.openmc_cell_set_fill.errcheck = _error_handler
|
|
_dll.openmc_cell_set_id.argtypes = [c_int32, c_int32]
|
|
_dll.openmc_cell_set_id.restype = c_int
|
|
_dll.openmc_cell_set_id.errcheck = _error_handler
|
|
_dll.openmc_cell_set_temperature.argtypes = [
|
|
c_int32, c_double, POINTER(c_int32)]
|
|
_dll.openmc_cell_set_temperature.restype = c_int
|
|
_dll.openmc_cell_set_temperature.errcheck = _error_handler
|
|
_dll.openmc_get_cell_index.argtypes = [c_int32, POINTER(c_int32)]
|
|
_dll.openmc_get_cell_index.restype = c_int
|
|
_dll.openmc_get_cell_index.errcheck = _error_handler
|
|
|
|
|
|
class Cell(_FortranObjectWithID):
|
|
"""Cell stored internally.
|
|
|
|
This class exposes a cell that is stored internally in the OpenMC
|
|
library. To obtain a view of a cell with a given ID, use the
|
|
:data:`openmc.capi.cells` mapping.
|
|
|
|
Parameters
|
|
----------
|
|
index : int
|
|
Index in the `cells` array.
|
|
|
|
Attributes
|
|
----------
|
|
id : int
|
|
ID of the cell
|
|
|
|
"""
|
|
__instances = WeakValueDictionary()
|
|
|
|
def __new__(cls, uid=None, new=True, index=None):
|
|
mapping = cells
|
|
if index is None:
|
|
if new:
|
|
# Determine ID to assign
|
|
if uid is None:
|
|
uid = max(mapping, default=0) + 1
|
|
else:
|
|
if uid in mapping:
|
|
raise AllocationError('A cell with ID={} has already '
|
|
'been allocated.'.format(uid))
|
|
|
|
index = c_int32()
|
|
_dll.openmc_extend_cells(1, index, None)
|
|
index = index.value
|
|
else:
|
|
index = mapping[uid]._index
|
|
|
|
if index not in cls.__instances:
|
|
instance = super().__new__(cls)
|
|
instance._index = index
|
|
if uid is not None:
|
|
instance.id = uid
|
|
cls.__instances[index] = instance
|
|
|
|
return cls.__instances[index]
|
|
|
|
@property
|
|
def id(self):
|
|
cell_id = c_int32()
|
|
_dll.openmc_cell_get_id(self._index, cell_id)
|
|
return cell_id.value
|
|
|
|
@id.setter
|
|
def id(self, cell_id):
|
|
_dll.openmc_cell_set_id(self._index, cell_id)
|
|
|
|
@property
|
|
def fill(self):
|
|
fill_type = c_int()
|
|
indices = POINTER(c_int32)()
|
|
n = c_int32()
|
|
_dll.openmc_cell_get_fill(self._index, fill_type, indices, n)
|
|
|
|
if fill_type.value == 1:
|
|
if n.value > 1:
|
|
return [Material(index=i) for i in indices[:n.value]]
|
|
else:
|
|
return Material(index=indices[0])
|
|
else:
|
|
raise NotImplementedError
|
|
|
|
@fill.setter
|
|
def fill(self, fill):
|
|
if isinstance(fill, Iterable):
|
|
n = len(fill)
|
|
indices = (c_int32*n)(*(m._index if m is not None else -1
|
|
for m in fill))
|
|
_dll.openmc_cell_set_fill(self._index, 1, n, indices)
|
|
elif isinstance(fill, Material):
|
|
indices = (c_int32*1)(fill._index)
|
|
_dll.openmc_cell_set_fill(self._index, 1, 1, indices)
|
|
elif fill is None:
|
|
indices = (c_int32*1)(-1)
|
|
_dll.openmc_cell_set_fill(self._index, 1, 1, indices)
|
|
|
|
def set_temperature(self, T, instance=None):
|
|
"""Set the temperature of a cell
|
|
|
|
Parameters
|
|
----------
|
|
T : float
|
|
Temperature in K
|
|
instance : int or None
|
|
Which instance of the cell
|
|
|
|
"""
|
|
_dll.openmc_cell_set_temperature(self._index, T, instance)
|
|
|
|
|
|
class _CellMapping(Mapping):
|
|
def __getitem__(self, key):
|
|
index = c_int32()
|
|
try:
|
|
_dll.openmc_get_cell_index(key, index)
|
|
except (AllocationError, InvalidIDError) as e:
|
|
# __contains__ expects a KeyError to work correctly
|
|
raise KeyError(str(e))
|
|
return Cell(index=index.value)
|
|
|
|
def __iter__(self):
|
|
for i in range(len(self)):
|
|
yield Cell(index=i + 1).id
|
|
|
|
def __len__(self):
|
|
return c_int32.in_dll(_dll, 'n_cells').value
|
|
|
|
def __repr__(self):
|
|
return repr(dict(self))
|
|
|
|
cells = _CellMapping()
|