ImportGenMatrixSin (class)¶
Method code available at https://github.com/Eomys/pyleecan/tree/master/pyleecan/Methods/Import/ImportGenMatrixSin
-
class
ImportGenMatrixSin
(sin_list=-1, is_transpose=False, init_dict=None, init_str=None)[source]¶ Bases:
pyleecan.Classes.ImportMatrix.ImportMatrix
To generate a Sinus matrix
-
VERSION
= 1¶
-
get_data
()¶ Generate the sinus matrix
- Parameters
self (ImportGenMatrixSin) – An ImportGenMatrixSin object
- Returns
matrix – The generated sinus matrix
- Return type
ndarray
-
init_vector
(f, A, Phi, N, Tf)¶ Create the sin_list according to the input list
- Parameters
self (ImportGenMatrixSin) – An ImportGenMatrixSin object
f (list) – list of frequency for the sinus
A (list) – list of amplitude for the sinus
Phi (list) – list of phase for the sinus
N (int) – Number of point (same for all the sinus)
Tf (float) – End time (same for all the sinus)
-
save
(save_path='', is_folder=False)¶ Save the object to the save_path
- Parameters
self – A pyleecan object
save_path (str) – path to the folder to save the object
is_folder (bool) – to split the object in different files: separate simulation machine and materials
-
copy
()¶ Return a copy of the class
-
get_logger
()¶ Get the object logger or its parent’s one
- Parameters
obj – A pyleecan object
- Returns
logger – Pyleecan object dedicated logger
- Return type
logging.Logger
-
property
sin_list
¶ List of sinus vector to generate the matrix lines
- Type
[ImportGenVectSin]
-