Adding new interpolation entry.

This commit is contained in:
Patrick Shriwise 2022-08-01 17:34:39 -05:00
parent bdf73abb06
commit d78a9b1885
2 changed files with 3 additions and 2 deletions

View file

@ -318,7 +318,8 @@ enum class Interpolation {
lin_lin = 2,
lin_log = 3,
log_lin = 4,
log_log = 5
log_log = 5,
cubic = 6
};
enum class RunMode {

View file

@ -13,7 +13,7 @@ from openmc.mixin import EqualityMixin
from .data import EV_PER_MEV
INTERPOLATION_SCHEME = {1: 'histogram', 2: 'linear-linear', 3: 'linear-log',
4: 'log-linear', 5: 'log-log'}
4: 'log-linear', 5: 'log-log', 6 : 'cubic'}
def sum_functions(funcs):