@@ -66,13 +66,9 @@ class IndependentOperator(OpenMCOperator):
66
66
Dictionary of nuclides and their fission Q values [eV]. If not given,
67
67
values will be pulled from the ``chain_file``. Only applicable if
68
68
``"normalization_mode" == "fission-q"``.
69
- reduce_chain : bool, optional
70
- If True, use :meth:`openmc.deplete.Chain.reduce` to reduce the depletion
71
- chain up to ``reduce_chain_level``.
72
69
reduce_chain_level : int, optional
73
- Depth of the search when reducing the depletion chain. Only used if
74
- ``reduce_chain`` evaluates to true. The default value of ``None``
75
- implies no limit on the depth.
70
+ Depth of the search when reducing the depletion chain. The default
71
+ value of ``None`` implies no limit on the depth.
76
72
fission_yield_opts : dict of str to option, optional
77
73
Optional arguments to pass to the
78
74
:class:`openmc.deplete.helpers.FissionYieldHelper` object. Will be
@@ -119,7 +115,6 @@ def __init__(self,
119
115
normalization_mode = 'fission-q' ,
120
116
fission_q = None ,
121
117
prev_results = None ,
122
- reduce_chain = False ,
123
118
reduce_chain_level = None ,
124
119
fission_yield_opts = None ):
125
120
# Validate micro-xs parameters
@@ -157,7 +152,6 @@ def __init__(self,
157
152
prev_results = prev_results ,
158
153
fission_q = fission_q ,
159
154
helper_kwargs = helper_kwargs ,
160
- reduce_chain = reduce_chain ,
161
155
reduce_chain_level = reduce_chain_level )
162
156
163
157
@classmethod
@@ -170,7 +164,6 @@ def from_nuclides(cls, volume, nuclides,
170
164
normalization_mode = 'fission-q' ,
171
165
fission_q = None ,
172
166
prev_results = None ,
173
- reduce_chain = False ,
174
167
reduce_chain_level = None ,
175
168
fission_yield_opts = None ):
176
169
"""
@@ -206,13 +199,9 @@ def from_nuclides(cls, volume, nuclides,
206
199
applicable if ``"normalization_mode" == "fission-q"``.
207
200
prev_results : Results, optional
208
201
Results from a previous depletion calculation.
209
- reduce_chain : bool, optional
210
- If True, use :meth:`openmc.deplete.Chain.reduce` to reduce the
211
- depletion chain up to ``reduce_chain_level``. Default is False.
212
202
reduce_chain_level : int, optional
213
- Depth of the search when reducing the depletion chain. Only used
214
- if ``reduce_chain`` evaluates to true. The default value of
215
- ``None`` implies no limit on the depth.
203
+ Depth of the search when reducing the depletion chain. The default
204
+ value of ``None`` implies no limit on the depth.
216
205
fission_yield_opts : dict of str to option, optional
217
206
Optional arguments to pass to the
218
207
:class:`openmc.deplete.helpers.FissionYieldHelper` class. Will be
@@ -232,7 +221,6 @@ def from_nuclides(cls, volume, nuclides,
232
221
normalization_mode = normalization_mode ,
233
222
fission_q = fission_q ,
234
223
prev_results = prev_results ,
235
- reduce_chain = reduce_chain ,
236
224
reduce_chain_level = reduce_chain_level ,
237
225
fission_yield_opts = fission_yield_opts )
238
226
0 commit comments