diff --git a/openmc/surface.py b/openmc/surface.py index b2f3c6710c..ac0cb1b0b2 100644 --- a/openmc/surface.py +++ b/openmc/surface.py @@ -432,6 +432,7 @@ class Surface(IDManagerMixin, ABC): kwargs = {} kwargs['surface_id'] = int(elem.get('id')) kwargs['boundary_type'] = elem.get('boundary', 'transmission') + kwargs['name'] = elem.get('name') coeffs = [float(x) for x in elem.get('coeffs').split()] kwargs.update(dict(zip(cls._coeff_keys, coeffs)))