Bus Constructor (String, Phased<Complex>, Double, Nullable<Point>)ElecNetKit Documentation
Instantiates a new Bus. This constructor supports arbitrarily-phased networks, including three-phase balanced and single-phase.

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

public Bus(
	string ID,
	Phased<Complex> VoltagePhased,
	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.
VoltagePhased
Type: ElecNetKit.NetworkModelling.Phasing.Phased<OnlineComplex>
The absolute line-neutral voltage of each phase of the bus.
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