Source code for pyleecan.Methods.Slot.SlotW27.comp_surface_active

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


[docs]def comp_surface_active(self): """Compute the Slot inner surface for winding (by analytical computation) Parameters ---------- self : SlotW27 A SlotW27 object Returns ------- Swind: float Slot inner surface for winding [m**2] """ S2 = 0.5 * (self.W1 + self.W2) * self.H1 S3 = 0.5 * (self.W2 + self.W3) * self.H2 return S2 + S3