Source code for pyleecan.Methods.Slot.HoleM58.check

from ....Methods.Slot.Slot import SlotCheckError
from ....Methods.Slot.HoleM58 import *


[docs]def check(self): """Check that the HoleM58 object is correct Parameters ---------- self : HoleM58 A HoleM58 object Returns ------- None Raises _______ S58_WCheckError You must have W1+W2 <= W0 """ # Check that everything is set if self.W0 is None: raise S58_NoneError("You must set W0 !") elif self.W1 is None: raise S58_NoneError("You must set W1 !") elif self.W2 is None: raise S58_NoneError("You must set W2 !") elif self.W3 is None: raise S58_NoneError("You must set W3 !") elif self.R0 is None: raise S58_NoneError("You must set R0 !") elif self.H0 is None: raise S58_NoneError("You must set H0 !") elif self.H1 is None: raise S58_NoneError("You must set H1 !") elif self.H2 is None: raise S58_NoneError("You must set H2 !") Rext = self.get_Rext() if self.W0 < self.W1 + self.W2: raise S58_WCheckError("You must have W1+W2 <= W0")