|
<< Click to Display Table of Contents >> GetTrfrResults Method
|
![]() ![]()
|
![]()
function GetTrfrResults(
const FromBusName, ToBusName, Name: WideString;
out CurrentM, CurrentA, Loading: Double
): Integer;
![]()
Retrieves the Transformer's calculated results.
![]()
Input Parameter |
Usage |
FromBusName |
From Bus Name of the Transformer. |
ToBusName |
To Bus Name of the Transformer. |
Name |
Unique Name of the Transformer. |
Output Parameter |
Usage |
CurrentM |
Current Flow Magnitude in Amperes |
CurrentA |
Current Flow Angle in Degrees |
Loading |
Transformer Loading in Percentage |
![]()
0 - Not Successful
1 - Successful
![]()
Success := PowaMasterObj.GetTrfrResults( FromBusName, ToBusName, TrfrName, CurrentM, CurrentA, Loading);
if Success = 0 then ShowMessage('Error');
![]()
![]()