mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 22:26:08 -04:00
missing setting of prompt in NuFissionMatrixXS
This commit is contained in:
parent
6ce91c2b96
commit
f1c17ad150
1 changed files with 10 additions and 0 deletions
|
|
@ -4669,6 +4669,16 @@ class NuFissionMatrixXS(MatrixMGXS):
|
|||
self._hdf5_key = 'prompt-nu-fission matrix'
|
||||
self._estimator = 'analog'
|
||||
self._valid_estimators = ['analog']
|
||||
self.prompt = prompt
|
||||
|
||||
@property
|
||||
def prompt(self):
|
||||
return self._prompt
|
||||
|
||||
@prompt.setter
|
||||
def prompt(self, prompt):
|
||||
cv.check_type('prompt', prompt, bool)
|
||||
self._prompt = prompt
|
||||
|
||||
def __deepcopy__(self, memo):
|
||||
clone = super(NuFissionMatrixXS, self).__deepcopy__(memo)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue