Source code for pyleecan.Methods.Slot.SlotW15.comp_surface_opening
# -*- coding: utf-8 -*-
from numpy import cos, sin
[docs]def comp_surface_opening(self):
"""Compute the Slot opening surface (by analytical computation).
Caution, the bottom of the Slot is an Arc
Parameters
----------
self : SlotW15
A SlotW15 object
Returns
-------
S: float
Slot opening surface [m**2]
"""
Rbo = self.get_Rbo()
# The bottom is an arc
alpha = self.comp_angle_opening()
Sarc = (Rbo ** 2.0) / 2.0 * (alpha - sin(alpha))
Harc = float(Rbo * (1 - cos(alpha / 2)))
S1 = (self.H0 + Harc) * self.W0
# Because Slamination = S - Zs * Sslot
if self.is_outwards():
return S1 - Sarc