Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions pyroll/core/grooves/equivalent_ripped_groove.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)

Expand Down