Source code for pyleecan.Methods.Machine.EndWindingCirc.comp_length

from numpy import pi

from ....Classes.LamSlotWind import LamSlotWind


[docs]def comp_length(self): """Compute the end winding conductor length on one side for a half-turn excluding the straight conductor length outside of the lamination (winding.Lewout). Parameters ---------- self: EndWindingCirc A EndWindingCirc object Returns ------- end_wind_length : float End-winding length on one side for a half-turn [m]. """ # ckeck that Endwinding is in Winding of a Lamination with slots if ( self.parent is None or self.parent.parent is None or not isinstance(self.parent.parent, LamSlotWind) or self.parent.parent.slot is None ): self.get_logger.warning( "EndWindingCirc.comp_length(): " + "EndWindingCirc has to be in a lamination with slot winding to calculate " + "the end winding length. Returning zero lenght." ) return 0 # get the middle radius of the slots active area Rmid = self.parent.parent.slot.comp_radius_mid_active() Zs = self.parent.parent.slot.Zs p = self.parent.p # get the coil pitch (with some fall backs), first from the user definition # TODO utilize swat_em coil pitch calc. coil_pitch = self.coil_pitch if coil_pitch is None: # try to get coil_pitch of winding coil_pitch = getattr(self.parent, "coil_pitch", None) if coil_pitch is None: coil_pitch = Zs / p / 2 self.get_logger().warning( "EndWindingCirc.comp_length():" + "Using a coil pitch of one pole pitch for EW length calculation." ) # calculate the EW length as a quarter circle base on the circumferential length # TODO do better aprox. based on tooth width / slot width for tooth coil winding circ_length = 2 * pi * Rmid * coil_pitch / Zs end_wind_length = pi * circ_length / 4 return end_wind_length