Source code for pyleecan.Methods.Slot.HoleM58.comp_radius
[docs]def comp_radius(self):
"""Compute the radius of the min and max circle that contains the hole
Parameters
----------
self : HoleM58
A HoleM58 object
Returns
-------
(Rmin,Rmax): tuple
Radius of the circle that contains the hole [m]
"""
Rext = self.get_Rext()
Rmax = Rext - self.H1
Rmin = Rext - self.H0 - self.H2
return (Rmin, Rmax)