|
<< Click to Display Table of Contents >> CreateSeriesReactor Method
|
![]() ![]()
|
![]()
function CreateSeriesReactor(
const BranchName: WideString;
SectionID, Status: Integer;
const Name, Number, Descr: WideString;
Reactance, RatingA, RatingB: Double
): WideString;
![]()
Creates a Series Reactor onto a Branch with the parameters passed to the function.
Should there be a name conflict, it returns the actual name of the Series Reactor.
![]()
Parameter |
Usage |
BranchName |
Branch Name the Series Reactor should be connected to. |
SectionID |
Id of the section of the Branch on which to place the reactor |
Status |
Status of the Series Reactor(1 - in service, 0 - out of service) |
Name |
Unique Name. If not unique, it will be changed and the new name returned by the method. |
Number |
Unique Number |
Description |
A Description for the Series Reactor if it is required. |
Q |
Reactance in Ohms |
RatingA |
Normal Rating (Amps) |
RatingB |
Overload Rating (Amps) |
![]()
Unique Series Reactor Name.
![]()
NewName := PowaMasterObj.CreateSeriesReactor( BranchName, SectionID, Status, OldName, NumberStr, DescriptionStr, 2,100 110);
if CompareText(NewName, OldName) <> 0 then ShowMessage('The Name has been changed');
![]()
![]()