pyleecan.Classes.CondType21 module

Method code available at https://github.com/Eomys/pyleecan/tree/master/pyleecan/Methods/Machine/CondType21

class CondType21(Hbar=0.01, Wbar=0.01, Wins=0, cond_mat=- 1, ins_mat=- 1, init_dict=None, init_str=None)[source]

Bases: Conductor

single rectangular conductor has to be used for LamSquirrelCages’s conductor

VERSION = 1
comp_surface_active()

Compute the active surface of the conductor

Parameters:

self (CondType21) – A CondType21 object

Returns:

Sact – Surface without insulation [m**2]

Return type:

float

comp_height()

Compute the height of the conductor

Parameters:

self (CondType21) – A CondType21 object

Returns:

H – Height of the conductor (with insulation) [m]

Return type:

float

comp_surface()

Compute the surface of the conductor

Parameters:

self (CondType21) – A CondType21 object

Returns:

S – Surface of the conductor (with insulation) [m**2]

Return type:

float

comp_width()

Compute the width of the conductor

Parameters:

self (CondType21) – A CondType21 object

Returns:

W – Width of the conductor (with insulation) [m]

Return type:

float

plot(fig=None, ax=None)

Plot a Conductor in a matplotlib fig

Parameters:
  • self (CondType21) – A CondType21 object

  • fig (Matplotlib.figure.Figure) – existing figure to use if None create a new one

  • ax (Matplotlib.axes.Axes object) – Axis on which to plot the data

Returns:

  • fig (Matplotlib.figure.Figure) – Figure containing the plot

  • ax (Matplotlib.axes.Axes object) – Axis containing the plot

comp_width_wire()

Return bar width

Parameters:

self (CondType21) – A CondType21 object

Returns:

W – Width of the bar [m]

Return type:

float

comp_height_wire()

Return bar height

Parameters:

self (CondType21) – A CondType21 object

Returns:

H – Height of the bar [m]

Return type:

float

comp_nb_circumferential_wire()

Return number of adjacent wires in circumferential direction

Parameters:

self (CondType21) – A CondType21 object

Returns:

Nwppc_tan – Number of adjacent wires in circumferential direction

Return type:

int

comp_nb_radial_wire()

Return number of adjacent wires in radial direction

Parameters:

self (CondType21) – A CondType21 object

Returns:

Nwppc_tan – Number of adjacent wires in radial direction

Return type:

int

is_round_wire()

Return if wire is round

Parameters:

self (CondType21) – A CondType21 object

Returns:

is_round_wire – is_round_wire is always False since bar is rectangular

Return type:

bool

save(save_path='', is_folder=False, type_handle_old=2, type_compression=0)

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 (json only)

  • type_handle_old (int) – How to handle old file in folder mode (0:Nothing, 1:Delete, 2:Move to “Backup” folder)

  • type_compression (int) – Available only for json, 0: no compression, 1: gzip

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

compare(other, name='self', ignore_list=None, is_add_value=False)[source]

Compare two objects and return list of differences

as_dict(type_handle_ndarray=0, keep_function=False, **kwargs)[source]

Convert this object in a json serializable dict (can be use in __init__). type_handle_ndarray: int

How to handle ndarray (0: tolist, 1: copy, 2: nothing)

keep_functionbool

True to keep the function object, else return str

Optional keyword input parameter is for internal use only and may prevent json serializability.

copy()[source]

Creates a deepcopy of the object

property Hbar

Bar height

Type:

float

Min:

0

property Wbar

Bar width

Type:

float

Min:

0

property Wins

Width of insulation

Type:

float

Min:

0