Source code for pyleecan.Methods.Machine.LamHole.comp_periodicity

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


[docs]def comp_periodicity(self): """Compute the periodicity factor of the lamination Parameters ---------- self : LamHole A LamHole object Returns ------- per_a : int Number of spatial periodicities of the lamination is_antiper_a : bool True if an spatial anti-periodicity is possible after the periodicities per_t : int Number of time periodicities of the lamination is_antiper_t : bool True if an time anti-periodicity is possible after the periodicities """ return self.get_pole_pair_number(), True, self.get_pole_pair_number(), True