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

# -*- coding: utf-8 -*-

from ....Methods.Slot.Slot import SlotCheckError
from ....Methods.Slot.SlotM16 import *


[docs]def check(self): """Check that the SlotM16 object is correct Parameters ---------- self : SlotM16 A SlotM16 object Returns ------- None Raises ------- S29_W01CheckError You must have W0 < W1 """ if self.W1 <= self.W0: raise S16_W01CheckError("You must have W0 < W1")