- New Balancing mode - HMI Interface for Inverterdata implemented - Adjusted GVL_CONFIG values - Read inverter data even when inverter is off - Added OPC UA settings to inverter data hmi interface - Added multisettings to safety project for strings
54 lines
1.4 KiB
XML
54 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<TcPlcObject Version="1.1.0.1" ProductVersion="3.1.4024.12">
|
|
<DUT Name="ST_SUNSPEC_CURRENT_VALUES" Id="{429ce2f6-f580-460c-8eb4-3ddb289effd4}">
|
|
<Declaration><![CDATA[TYPE ST_SUNSPEC_CURRENT_VALUES :
|
|
STRUCT
|
|
// Current DC current (A)
|
|
{attribute 'OPC.UA.DA' := '1'}
|
|
{attribute 'OPC.UA.DA.Access' := '1'}
|
|
rActDCCurrent : REAL;
|
|
|
|
// Current DC voltage (V)
|
|
{attribute 'OPC.UA.DA' := '1'}
|
|
{attribute 'OPC.UA.DA.Access' := '1'}
|
|
rActDCVoltage : REAL;
|
|
|
|
// Current DC power (W)
|
|
{attribute 'OPC.UA.DA' := '1'}
|
|
{attribute 'OPC.UA.DA.Access' := '1'}
|
|
rActDCPower : REAL;
|
|
|
|
// Current AC power (W)
|
|
{attribute 'OPC.UA.DA' := '1'}
|
|
{attribute 'OPC.UA.DA.Access' := '1'}
|
|
rActACPower : REAL;
|
|
|
|
// Current AC frequency (Hz)
|
|
{attribute 'OPC.UA.DA' := '1'}
|
|
{attribute 'OPC.UA.DA.Access' := '1'}
|
|
rActACFreq : REAL;
|
|
|
|
// Current AC apparent power (VA)
|
|
{attribute 'OPC.UA.DA' := '1'}
|
|
{attribute 'OPC.UA.DA.Access' := '1'}
|
|
rActApparentPower : REAL;
|
|
|
|
// Current AC reactive power (VAr)
|
|
{attribute 'OPC.UA.DA' := '1'}
|
|
{attribute 'OPC.UA.DA.Access' := '1'}
|
|
rActReactivePower : REAL;
|
|
|
|
// Current AC power factor
|
|
{attribute 'OPC.UA.DA' := '1'}
|
|
{attribute 'OPC.UA.DA.Access' := '1'}
|
|
rActPowerFactor : REAL;
|
|
|
|
// Current inverter status
|
|
{attribute 'OPC.UA.DA' := '1'}
|
|
{attribute 'OPC.UA.DA.Access' := '1'}
|
|
uiStatus : UINT;
|
|
END_STRUCT
|
|
END_TYPE
|
|
]]></Declaration>
|
|
</DUT>
|
|
</TcPlcObject> |