Move openmc.deplete.integrator into openmc.deplete

Much of the previous API is intact, with the major change
being CRAM functions are imported from openmc.deplete.cram
in the test_deplete_cram.

The integrator abstract classes are placed in
openmc/deplete/abc.py with all concrete classes going in to
openmc/deplete/integrators.py

Documentation updated accordingly
This commit is contained in:
Andrew Johnson 2019-08-07 10:51:19 -05:00
parent 5adc3b5816
commit 0bc7800a92
No known key found for this signature in database
GPG key ID: 253418E91B7F6FEB
17 changed files with 1210 additions and 1267 deletions

View file

@ -6,7 +6,7 @@ Compares a few Mathematica matrix exponentials to CRAM16/CRAM48.
from pytest import approx
import numpy as np
import scipy.sparse as sp
from openmc.deplete.integrator import CRAM16, CRAM48
from openmc.deplete.cram import CRAM16, CRAM48
def test_CRAM16():