Source code for pyleecan.Methods.Machine.CondType11.comp_surface

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


[docs]def comp_surface(self): """Compute the surface of the conductor Parameters ---------- self : CondType11 A CondType11 object Returns ------- S: float Surface of the conductor (with insulation) [m**2] """ S = self.comp_height() * self.comp_width() return S