Source code for pyleecan.Methods.Slot.SlotW11.comp_height

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

from numpy import cos


[docs]def comp_height(self): """Compute the height of the Slot. Caution, the bottom of the Slot is an Arc Parameters ---------- self : SlotW11 A SlotW11 object Returns ------- Htot: float Height of the slot [m] """ Rbo = self.get_Rbo() H1 = self.get_H1() # Computation of the arc height alpha = self.comp_angle_opening() / 2 Harc = float(Rbo * (1 - cos(alpha))) if self.is_outwards(): return ( abs(Rbo - Harc + self.H0 + H1 + self.H2 + 1j * (self.W2 / 2.0 - self.R1)) - Rbo ) else: return self.H0 + H1 + self.H2 + Harc