bag3_magnetics.layout.inductor_spiral.ind_spiral_core

Module Contents

Classes

IndSpiralCore

Spiral inductor Core with multiple turns, 'R0' orientation

class bag3_magnetics.layout.inductor_spiral.ind_spiral_core.IndSpiralCore(temp_db: bag.layout.template.TemplateDB, params: bag.util.immutable.Param, **kwargs: Any)[source]

Bases: bag3_magnetics.layout.inductor_spiral.util.IndSpiralTemplate

Spiral inductor Core with multiple turns, ‘R0’ orientation

property vertex_out: bag.typing.PointType[source]

Outermost vertex of spiral

property vertex_in: bag.typing.PointType[source]

Innermost vertex of spiral

classmethod get_params_info() Mapping[str, str][source]

Returns a dictionary from parameter names to descriptions.

Returns:

param_info – dictionary from parameter names to descriptions.

Return type:

Mapping[str, str]

classmethod get_default_param_values() Mapping[str, Any][source]

Returns a dictionary containing default parameter values.

Override this method to define default parameter values. As good practice, you should avoid defining default values for technology-dependent parameters (such as channel length, transistor width, etc.), but only define default values for technology-independent parameters (such as number of tracks).

Returns:

default_params – dictionary of default parameter values.

Return type:

Mapping[str, Any]

draw_layout() None[source]

Draw the layout of this template.

Override this method to create the layout.

WARNING: you should never call this method yourself.