Class CircuitNodeLink
java.lang.Object
org.episteme.natural.physics.classical.waves.electromagnetism.circuit.CircuitNodeLink
Represents a link between a circuit node and a circuit element.
Each link identifies which terminal (post) of the element connects to the
node.
- Since:
- 1.0
- Author:
- Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe circuit element connected via this linkintThe terminal number on the element (0 = first post, 1 = second post, etc.) -
Constructor Summary
ConstructorsConstructorDescriptionCreates an empty node link.CircuitNodeLink(CircuitElement elm, int num) Creates a node link with the specified element and terminal. -
Method Summary
-
Field Details
-
num
public int numThe terminal number on the element (0 = first post, 1 = second post, etc.) -
elm
The circuit element connected via this link
-
-
Constructor Details
-
CircuitNodeLink
public CircuitNodeLink()Creates an empty node link. -
CircuitNodeLink
Creates a node link with the specified element and terminal.- Parameters:
elm- The circuit elementnum- The terminal number on the element
-