From 5abd01d4df7534b7be6aee8723791c6706afdd80 Mon Sep 17 00:00:00 2001 From: yardasol Date: Tue, 26 Apr 2022 13:49:21 -0500 Subject: [PATCH] add description of surfaces --- openmc/model/surface_composite.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/openmc/model/surface_composite.py b/openmc/model/surface_composite.py index 9a44d19550..c39439ed39 100644 --- a/openmc/model/surface_composite.py +++ b/openmc/model/surface_composite.py @@ -56,6 +56,10 @@ class CompositeSurface(ABC): class CylinderSector(CompositeSurface): """Infinite cylindrical sector composite surface + A cylinder sector is composed of two cylindrical and two planar surfaces. + The cylindrical surfaces are concentric, and the planar surfaces intersect + the central axis of the cylindrical surfaces. + This class acts as a proper surface, meaning that unary `+` and `-` operators applied to it will produce a half-space. The negative side is defined to be the region inside of the cylinder sector.