-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Samir Romdhani <[email protected]>
- Loading branch information
1 parent
19c0efb
commit 8c35c14
Showing
5 changed files
with
157 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69 changes: 69 additions & 0 deletions
69
sct-commons/src/test/resources/scl-srv-import-ieds/dai_multiple_value_test.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<!-- SPDX-FileCopyrightText: 2021 2025 RTE FRANCE --> | ||
<!-- --> | ||
<!-- SPDX-License-Identifier: Apache-2.0 --> | ||
|
||
<SCL xmlns="http://www.iec.ch/61850/2003/SCL" version="2007" revision="B" release="4"> | ||
<Header id="HeaderID" version="version" revision="Revision" toolID="toolID"/> | ||
<IED name="IED_NAME1"> | ||
<AccessPoint name="AP_NAME"> | ||
<Server> | ||
<Authentication/> | ||
<LDevice inst="LD_INST11"> <!-- binder for signal from LD_INST11/LLNO --> | ||
<LN0 lnType="LN1" lnClass="LLN0" inst=""/> | ||
<LN lnType="LN2" lnClass="ANCR" inst="1"> | ||
<DOI name="Do21"> | ||
<DAI name="da1" valImport="true"> | ||
<Val>BBBB</Val> | ||
</DAI> | ||
</DOI> | ||
</LN> | ||
</LDevice> | ||
</Server> | ||
</AccessPoint> | ||
</IED> | ||
<DataTypeTemplates> | ||
<LNodeType id="LN1" lnClass="LLN0"> | ||
<DO name="Do11" type="DO11" transient="true"/> | ||
</LNodeType> | ||
<LNodeType id="LN2" lnClass="ANCR"> | ||
<DO name="Do21" type="DO11"/> | ||
</LNodeType> | ||
<DOType cdc="WYE" id="DO11"> | ||
<SDO name="sdo11" type="DO12"/> | ||
<DA name="da1" bType="Enum" fc="ST" type="RecCycModKind" valImport="true"> | ||
<Val>AAAA</Val> | ||
</DA> | ||
<SDO name="sdo21" type="DO12"/> | ||
<SDO name="sdo31" type="DO12"/> | ||
</DOType> | ||
<DOType cdc="WYE" id="DO12"> | ||
<SDO name="sdo12" type="DO13"/> | ||
<SDO name="sdo22" type="DO13"/> | ||
<SDO name="sdo32" type="DO13"/> | ||
</DOType> | ||
<DOType cdc="WYE" id="DO13"> | ||
<DA fc="ST" name="da11" bType="Struct" type="DA11"/> | ||
<DA fc="ST" name="da22" bType="Struct" type="DA11"/> | ||
<DA fc="ST" name="da32" bType="Struct" type="DA11"/> | ||
</DOType> | ||
<DAType id="DA11"> | ||
<BDA name="bda111" bType="Struct" type="DA12"/> | ||
<BDA name="bda221" bType="Struct" type="DA12"/> | ||
<BDA name="bda321" bType="Struct" type="DA12"/> | ||
</DAType> | ||
<DAType id="DA12"> | ||
<BDA name="bdapr" bType="VisString255"/> | ||
<BDA name="bda112" bType="Struct" type="DA13"/> | ||
<BDA name="bda222" bType="Struct" type="DA13"/> | ||
<BDA name="bda322" bType="Struct" type="DA13"/> | ||
</DAType> | ||
<DAType id="DA13"> | ||
<BDA name="bda113" bType="Enum" type="RecCycModKind" valImport="true"/> | ||
<BDA name="bda223" bType="Enum" type="RecCycModKind"/> | ||
<BDA name="bda323" bType="Enum" type="RecCycModKind"/> | ||
</DAType> | ||
<EnumType id="RecCycModKind"> | ||
<EnumVal ord="1">Completed-diff</EnumVal> | ||
</EnumType> | ||
</DataTypeTemplates> | ||
</SCL> |