finesse.components.electronics.TestPoint

Overview

class finesse.components.electronics.TestPoint(name, *args, **kwargs)[source]

Bases: Connector

A simple component which has an arbitrary number of test nodes that can be connected to and from.

Examples

You could make an electronic element that has three ports:

>>> from finesse.components.electronics import TestPoint
>>> model.add(TestPoint('test', 'A', 'B', 'C'))

The element is called test. This has three ports called A, B, and C, each with a single node called io, as it can be outputed to inputted to.