cbadc.circuit.components.passives.Inductor

class cbadc.circuit.components.passives.Inductor(instance_name: str, value: float)[source]

Bases: CircuitElement

Inductor class

Parameters
  • terminals (List[Terminal]) – The terminals of the inductor

  • value (SPICE_VALUE) – The value of the inductor

  • instance_name (str, optional) – The instance name of the inductor, by default None

Methods

__init__(instance_name, value)

add_terminal(terminal[, index])

Add a terminal to the component

add_terminals(terminals)

Add multiple terminals to the component

get_ngspice(connections)

Get the ngspice call for the component

get_spectre(connections)

Get the spectre call for the component

get_terminals()

Get the terminals of the component

Attributes

l

add_terminal(terminal: Terminal, index: int = -1)

Add a terminal to the component

Parameters
  • terminal (Terminal) – The terminal to add

  • index (int, optional) – The index to add the terminal at, by default -1, i.e., at the end

add_terminals(terminals: List[Terminal])

Add multiple terminals to the component

Parameters

terminals (List[Terminal]) – The terminals to add

get_ngspice(connections: Dict[Terminal, Port])[source]

Get the ngspice call for the component

get_spectre(connections: Dict[Terminal, Port])[source]

Get the spectre call for the component

get_terminals() List[Terminal]

Get the terminals of the component