Allowing Supervision Modifications
The steps required for manual configuration are explained below. Users should ensure that any modifications they make are compatible with their IEDs and ICT tool.
The supervision plugin requires that either on the first instantiated supervision (LN
) or on the referenced DataTypeTemplate
(LNodeType
) that the setSrcRef
data attribute for the GoCBRef
data object is configured to allow modifications with:
-
valImport="true"
-
valKind
set to either"RO"
or"Conf"
1. Examples
1.1. Set on the Supervision Node
An example DOI within a GOOSE supervision logical node is shown below:
valImport
and valKind
on setSrcRef
for a DOI
<LN lnType="someTypeReference" lnClass="LGOS" inst="1" prefix="">
...
<DOI name="GoCBRef">
...
<DAI name="setSrcRef" valKind="RO" valImport="true"> (1)
<Val>XAT_288_MU1MUGO/LLN0.AdjBusCouplerInd</Val> (2)
</DAI>
</DOI>
</LN>
1 | Note that valKind and valImport are set |
2 | An object reference which the plugin changes to assign a supervision |
1.2. Set on the Supervision Type
Alternatively these can be specified on the type rather than the instantiated LN.
For a supervision LN
which refers to a data type:
LGOS
supervision node referring to a type<LN lnType="someTypeReference" (1)
lnClass="LGOS" inst="1" prefix="">
...
<DOI name="GoCBRef">
<DAI name="setSrcRef"> (2)
<Val>XAT_288_MU1MUGO/LLN0.AdjBusCouplerInd</Val>
</DAI>
</DOI>
...
</LN>
1 | Reference to an LNodeType |
2 | No valKind or valImport set |
The LN
refers to an LNodeType
which then refers to a DOType
LNodeType
for an LGOS
supervision node<LNodeType id="someTypeReference" lnClass="LGOS">
...
<DO name="GoCBRef" type="SomeDOType"/> (1)
...
</LNodeType>
1 | Reference to data object type |
On the DOType
reference typically valKind
and valImport
are configured.
DOType
referenced by an LGOS
LNodeType
<DOType id="SomeDOType" cdc="ORG">
...
<DA name="setSrcRef" fc="SP" dchg="true" bType="ObjRef"
valKind="RO" valImport="true"/> (1)
...
</DOType>
1 | valImport and valKind set |
For some manufacturers, it is possible to set valKind
and valImport
on the type for an IED and this will be correctly written to an IED and not removed by ICT tools.
Care should be taken to make sure the DOType only refers to the intended supervision nodes and creating a separate type is recommended if the same type is used in other places where an SCT should not be allowed to make modifications.
|