29 const Real value_primary,
30 const Real value_secondary)
34 switch (interface_value_type)
37 result = (value_primary + value_secondary) * 0.5;
40 result = (value_primary - value_secondary);
43 result = (value_secondary - value_primary);
46 result = std::abs(value_secondary - value_primary);
49 result = value_primary;
52 result = value_secondary;
55 mooseError(
"InterfaceIntegralMaterialPropertyPostprocessor: the supplied integral "
56 "type is not in the list. Available options are: ",