Skip to content

Commit

Permalink
💡 Remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
je-cook committed Feb 5, 2024
1 parent 8e864e6 commit a187267
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions eudemo/eudemo/maintenance/lower_port/duct_designer.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ def run(self) -> Tuple[BluemiraFace, BluemiraFace, BluemiraWire, BluemiraWire]:
duct_straight_inner_extrude_boundary = self._straight_duct_inner_yz_boundary(
straight_top_inner_pt,
straight_bot_inner_pt,
# duct_angled_inner_extrude_boundary.bounding_box.y_max,
)

return (
Expand Down Expand Up @@ -178,7 +177,6 @@ def _straight_duct_inner_yz_boundary(
self,
straight_top_inner_pt: Tuple,
straight_bot_inner_pt: Tuple,
# angled_duct_ymax: float,
) -> BluemiraWire:
"""
Make the inner yz boundary of the straight duct.
Expand All @@ -189,7 +187,6 @@ def _straight_duct_inner_yz_boundary(
x_point = straight_top_inner_pt[0]

# restrict port size of angled duct to port_width
# y_size = max(angled_duct_ymax, self.port_width / 2)
y_size = self.port_width / 2

return make_polygon(
Expand Down Expand Up @@ -227,8 +224,6 @@ def _calc_y_point(x_point):
flat_y_max = self.port_width / 2
ib_inner_y = min(flat_y_max, _calc_y_point(ib_div_pt_padded[0]) - self.wall_tk)
ob_inner_y = min(flat_y_max, _calc_y_point(ob_div_pt_padded[0]) - self.wall_tk)
# ib_inner_y = _calc_y_point(ib_div_pt_padded[0]) - self.wall_tk
# ob_inner_y = _calc_y_point(ob_div_pt_padded[0]) - self.wall_tk

# check if the space between the y-points is large enough for the
# divertor to fit through:
Expand Down

0 comments on commit a187267

Please sign in to comment.