diff --git a/pyroll/core/grooves/equivalent_ripped_groove.py b/pyroll/core/grooves/equivalent_ripped_groove.py index 98a87b07..ce970372 100644 --- a/pyroll/core/grooves/equivalent_ripped_groove.py +++ b/pyroll/core/grooves/equivalent_ripped_groove.py @@ -20,6 +20,7 @@ def __init__( nominal_outer_diameter: float, usable_width: float, depth: float, + rib_flank_angle: Optional[float] = None, pad_angle: float = 0, **kwargs @@ -42,6 +43,13 @@ def __init__( :param kwargs: more keyword arguments passed to the GenericElongationGroove constructor """ + self.nominal_outer_diameter = nominal_outer_diameter + self.base_body_height = base_body_height + self.rib_distance = rib_distance + self.rib_width = rib_width + self.rib_flank_angle = rib_flank_angle + + pad_angle = np.deg2rad(pad_angle) rib_angle = np.deg2rad(rib_angle)