Node¶
- class scqubits.core.symbolic_circuit_graph.Node(index, marker=0)[source]¶
Class representing a circuit node, and handled by Circuit. The attribute branches is a list of Branch objects containing all branches connected to the node.
- Parameters:
Methods
Node.__init__(index[, marker])Node.connected_nodes(branch_type)Returns a list of all nodes directly connected by branches to the current node, either considering all branches or a specified branch_type - ("C", "L", "JJ", "all") for capacitive, inductive, Josephson junction, or all types of branches.
Returns a bool if the node is a ground node (Node with index set to 0).