Source code for pyleecan.Methods.Machine.CondType12.comp_surface_active

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

from numpy import pi


[docs]def comp_surface_active(self): """Compute the active surface of the conductor Parameters ---------- self : CondType12 A CondType12 object Returns ------- Sact: float Surface without insulation [m**2] """ Sact = ((self.Wwire / 2.0) ** 2) * pi * self.Nwppc return Sact