mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 21:55:41 -04:00
Rename openmc.data.container to openmc.data.function
This commit is contained in:
parent
5647db18b6
commit
cf59208f34
10 changed files with 9 additions and 9 deletions
|
|
@ -3,7 +3,7 @@ from .neutron import *
|
|||
from .reaction import *
|
||||
from .ace import *
|
||||
from .angle_distribution import *
|
||||
from .container import *
|
||||
from .function import *
|
||||
from .energy_distribution import *
|
||||
from .product import *
|
||||
from .angle_energy import *
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ import numpy as np
|
|||
|
||||
import openmc.checkvalue as cv
|
||||
from openmc.stats import Univariate, Tabular, Uniform
|
||||
from .container import INTERPOLATION_SCHEME
|
||||
from .function import INTERPOLATION_SCHEME
|
||||
|
||||
|
||||
class AngleDistribution(object):
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ import numpy as np
|
|||
|
||||
import openmc.checkvalue as cv
|
||||
from openmc.stats import Tabular, Univariate, Discrete, Mixture, Uniform
|
||||
from .container import INTERPOLATION_SCHEME
|
||||
from .function import INTERPOLATION_SCHEME
|
||||
from .angle_energy import AngleEnergy
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ from warnings import warn
|
|||
|
||||
import numpy as np
|
||||
|
||||
from openmc.data.container import Tabulated1D, INTERPOLATION_SCHEME
|
||||
from .function import Tabulated1D, INTERPOLATION_SCHEME
|
||||
from openmc.stats.univariate import Univariate, Tabular, Discrete, Mixture
|
||||
import openmc.checkvalue as cv
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ import numpy as np
|
|||
|
||||
import openmc.checkvalue as cv
|
||||
from openmc.stats import Tabular, Univariate, Discrete, Mixture
|
||||
from .container import Tabulated1D, INTERPOLATION_SCHEME
|
||||
from .function import Tabulated1D, INTERPOLATION_SCHEME
|
||||
from .angle_energy import AngleEnergy
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ import h5py
|
|||
|
||||
from . import atomic_symbol
|
||||
from .ace import Table, get_table
|
||||
from .container import Tabulated1D
|
||||
from .function import Tabulated1D
|
||||
from .product import Product
|
||||
from .reaction import Reaction, _get_photon_products
|
||||
from .urr import ProbabilityTables
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ import numpy as np
|
|||
from numpy.polynomial.polynomial import Polynomial
|
||||
|
||||
import openmc.checkvalue as cv
|
||||
from .container import Tabulated1D
|
||||
from .function import Tabulated1D
|
||||
from .angle_energy import AngleEnergy
|
||||
|
||||
if sys.version_info[0] >= 3:
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ import openmc.checkvalue as cv
|
|||
from openmc.stats import Uniform
|
||||
from .angle_distribution import AngleDistribution
|
||||
from .angle_energy import AngleEnergy
|
||||
from .container import Tabulated1D
|
||||
from .function import Tabulated1D
|
||||
from .data import reaction_name
|
||||
from .product import Product
|
||||
from .uncorrelated import UncorrelatedAngleEnergy
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ import h5py
|
|||
import openmc.checkvalue as cv
|
||||
from .ace import Table, get_table
|
||||
from .angle_energy import AngleEnergy
|
||||
from .container import Tabulated1D
|
||||
from .function import Tabulated1D
|
||||
from .correlated import CorrelatedAngleEnergy
|
||||
from openmc.stats import Discrete, Tabular
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue