mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-21 22:45:33 -04:00
The depletion function openmc.deplete.predictor has been removed in favor of a class-based approach. The following syntax will replicate the behavior of the predictor integration scheme: >>> from openmc.deplete import PredictorIntegrator >>> predictor = PredictorIntegrator(operator, time, power) >>> predictor.integrate()` The expression can be reduced to a single line: >>> PredictorIntegrator(operator, time, power).integrate() |
||
|---|---|---|
| .. | ||
| base.rst | ||
| capi.rst | ||
| data.rst | ||
| deplete.rst | ||
| examples.rst | ||
| index.rst | ||
| mgxs.rst | ||
| model.rst | ||
| openmoc.rst | ||
| stats.rst | ||