Bus Constructor (String, Complex, Double, Nullable Point )ElecNetKit Documentation
Instantiates a new Bus. This is the single-phase/balanced three-phase constructor. Use this only if your model will be used for balanced network analysis.

Namespace: ElecNetKit.NetworkModelling
Assembly: ElecNetKit.Core (in ElecNetKit.Core.dll) Version: 1.1.4771.27370 (1.1.0.0)
Syntax

public Bus(
	string ID,
	Complex Voltage,
	double BaseVoltage,
	Nullable<Point> Location
)

Parameters

ID
Type: OnlineSystem String
The ID of the bus. Should be unique among buses, but does not need to be unique amongst all network elements.
Voltage
Type: OnlineSystem.Numerics Complex
The single-phase absolute voltage of the bus (in Volts).
BaseVoltage
Type: OnlineSystem Double
The single-phase base voltage of the bus (in Volts).
Location
Type: OnlineSystem Nullable OnlinePoint 
The XY coordinates of the bus. Used for graphing the network.
See Also