Source code for pyleecan.Methods.Machine.LamSlotMulti.comp_height_yoke
# -*- coding: utf-8 -*-
[docs]def comp_height_yoke(self):
"""Compute the yoke height
Parameters
----------
self : LamSlotMulti
A LamSlotMulti object
Returns
-------
Hy: float
yoke height [m]
"""
H = 0
for slot in self.slot_list:
H = max(H, slot.comp_height())
return self.Rext - self.Rint - H