Source code for pyleecan.Methods.Slot.SlotDC.comp_height_active

from numpy import sqrt


[docs]def comp_height_active(self): """Compute the height of the winding area Parameters ---------- self : SlotDC A SlotDC object Returns ------- Hwind: float Height of the winding area [m] """ return self.R3 + self.H3 + self.H2 + sqrt((self.D1 / 2) ** 2 - (self.W1 / 2) ** 2)