CN110968738B - Intelligent station description file data type template embedded ring detection method and system - Google Patents

Intelligent station description file data type template embedded ring detection method and system Download PDF

Info

Publication number
CN110968738B
CN110968738B CN201911137160.XA CN201911137160A CN110968738B CN 110968738 B CN110968738 B CN 110968738B CN 201911137160 A CN201911137160 A CN 201911137160A CN 110968738 B CN110968738 B CN 110968738B
Authority
CN
China
Prior art keywords
node
traversed
dotype
stack
sdo
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active
Application number
CN201911137160.XA
Other languages
Chinese (zh)
Other versions
CN110968738A (en
Inventor
陈健琦
杨冰
焦之明
巩方波
陈杰
纪洪伟
李翔
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Intelligent Electrical Branch of Shandong Luneng Software Technology Co Ltd
Original Assignee
Shandong Luruan Digital Technology Co ltd Smart Energy Branch
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Shandong Luruan Digital Technology Co ltd Smart Energy Branch filed Critical Shandong Luruan Digital Technology Co ltd Smart Energy Branch
Priority to CN201911137160.XA priority Critical patent/CN110968738B/en
Publication of CN110968738A publication Critical patent/CN110968738A/en
Application granted granted Critical
Publication of CN110968738B publication Critical patent/CN110968738B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/80Information retrieval; Database structures therefor; File system structures therefor of semi-structured data, e.g. markup language structured data such as SGML, XML or HTML
    • G06F16/83Querying

Abstract

The invention discloses a method and a system for detecting a template embedded ring of a description file data type of an intelligent station, wherein the method comprises the following steps: taking a DOType node as an example, collecting all DOType nodes including the SDO node; for each non-traversed DOType, each SDO child node thereof is traversed. Taking the DOType node and the order of the SDO node in the DOType as the nodes of the stack, and pushing the stack; judging whether the DOType node referenced by the SDO node is in a stack or not; if the node is in the stack, forming a nested ring from the quoted node to the father node of the SDO node, outputting the node in the nested ring, and popping the last node; if not, continuing to traverse the non-traversed DOType nodes until all nodes are traversed. Judging whether nested ring information is output, if yes, outputting true, otherwise outputting false. The method can realize automatic detection of the embedded ring, has high error detection speed, improves the working efficiency, and avoids boring and odorless manual searching work.

Description

Intelligent station description file data type template embedded ring detection method and system
Technical Field
The invention relates to the technical field of intelligent station description files, in particular to a method and a system for detecting a data type template embedded ring of an intelligent station description file.
Background
The statements in this section merely provide background information related to the present disclosure and may not necessarily constitute prior art.
The intelligent station description file includes a configuration description file (SCD file) of the intelligent substation, an intelligent electronic device capability description file (ICD file), and a configured intelligent electronic device description file (CID file).
The file comprises five major parts
Header, substation, communication, IED, dataTypeTemplates. Because the file is based on the XML, information in the file and the relevance among the information are displayed, a great deal of work is done by a plurality of manufacturers in this aspect, and a great deal of configuration tools appear like spring bamboo shoots after raining. The configuration process typically avoids editing operations such as insertion, deletion, etc. of IEDs.
The handling of data type templates during IED insertion and deletion is a difficulty. During insertion, deletion or modification, a nested ring is easily formed. The data type templates with nested loops, while conforming to the schema syntax, cannot effectively reference, query and expose information of nodes within the loops.
Data type templates (DataTypeTemplates) are the most complex part of the class file in which there are a large number of reference relationships. Once nested loops appear in the referencing process, either the referencing, querying, or the presentation of templates can cause fatal disasters. In the model, if the nodes in the data type template are fewer and a small embedded ring exists, a manual detection method can be adopted to ensure the acyclic nature of the data type template. However, the actual data type template is often complex, and the manual detection method is often very heavy in workload and low in efficiency.
At present, a quick and effective detection method for the problem of the collar embedding of the data type template does not exist.
Disclosure of Invention
In order to solve the problems, the invention provides the method and the system for detecting the embedded ring of the template of the description file data type of the intelligent station, which provide convenience for users such as engineering personnel to detect model errors, reduce boring and odorless searching work, and improve the error detection speed, thereby improving the working efficiency.
In some embodiments, the following technical solutions are disclosed:
a method for detecting a nested loop of a data type template of an intelligent station description file comprises the following steps:
setting a stack, wherein the node type in the stack is { DOType node id, and the ith SDO node in the DOType node id }; i is calculated from 1;
(1) Collecting all N DOType type nodes containing SDO nodes in a data type template;
(2) Let the node to be traversed be (M, i); if a node of a certain DOType type has been traversed, marking that the node has been traversed and N=N-1, otherwise N remains unchanged;
(3) Stacking nodes to be traversed; judging whether the DOType node referenced by the ith SDO child node is in a stack or not, if so, forming an embedded ring from the DOType node referenced by the ith SDO child node to the DOType node where the ith SDO child node is located in the stack, and executing the step (4); otherwise, executing the step (6);
(4) Outputting and storing DOType type nodes contained in the embedded ring, and popping the last node to be stacked;
(5) Judging whether the node to be traversed has an SDO child node which is not traversed;
if present, let i=i+1, repeating steps (2) - (5);
otherwise, performing stack top node pop, wherein the DOType node after the pop is the node to be traversed, repeating the step (5) until the stack is empty, and switching to the step (8);
(6) Traversing DOType nodes M 'referenced by the ith SDO child node, namely enabling the nodes to be traversed to be (M', i), wherein i=1;
(7) Repeating steps (2) - (6);
(8) Selecting a node of a DOType type which is not traversed, and repeating the steps (2) - (7) until N=0;
(9) Judging whether nested ring information is output, if yes, outputting true, otherwise outputting false.
In other embodiments, the following technical solutions are disclosed:
a method for detecting a nested loop of a data type template of an intelligent station description file comprises the following steps:
setting a stack, wherein the node type in the stack is { datatype node id, and the i-th btype= "Struct" BDA node }, i is calculated from 1, and the btype of the following BDA node is equal to Struct for convenience in description and is not repeated;
(1) Collecting all N DATtype nodes containing BDA nodes in a data type template;
(2) Let the node to be traversed be (P, i); if a certain datatype node has been traversed, marking that the node has been traversed and n=n-1, otherwise N remains unchanged;
(3) Stacking nodes to be traversed; judging whether the DATtype node referenced by the ith BDA sub-node is in a stack or not, if so, forming an embedded ring from the DATtype node referenced by the ith BDA sub-node to the DATtype node where the ith BDA sub-node is located in the stack, and executing (4); otherwise, executing (6);
(4) The DAType node contained in the embedded ring is output and stored, and the last node which is put into the stack is popped;
(5) Judging whether a non-traversed BDA child node exists in the nodes to be traversed;
if present, let i=i+1, repeating steps (2) - (5);
otherwise, executing stack top node pop, wherein the node of the type DAType after the pop is the node to be traversed, repeating the step (5) until the stack is empty, and executing the step (8);
(6) Traversing a DAType node P 'referenced by an ith BDA child node, namely, enabling the node to be traversed to be (P', i), wherein i=1;
(7) Repeating steps (2) - (6);
(8) Selecting a node of a DAType which is not traversed, and repeating the steps (2) - (7) until N=0;
(9) Judging whether nested ring information is output, if yes, outputting true, otherwise outputting false.
In other embodiments, the following technical solutions are disclosed:
a terminal device comprising a processor and a computer-readable storage medium, the processor configured to implement instructions; the computer readable storage medium is for storing a plurality of instructions adapted to be loaded by a processor and to perform the intelligent station profile data type template nested loop detection method described above.
In other embodiments, the following technical solutions are disclosed:
a computer readable storage medium having stored therein a plurality of instructions adapted to be loaded by a processor of a terminal device and to perform the above-described intelligent station profile data type template nested loop detection method.
Compared with the prior art, the invention has the beneficial effects that:
the invention designs the definition of the intelligent station description file data type template embedded ring, and provides possibility for automatic and effective detection of the embedded ring; the method solves the problem that the prior art cannot effectively refer to, inquire and display node information in the ring because the nested ring existing in the data type template cannot be known.
The invention designs an automatic error detection technology for the configuration information of the intelligent substation, which is an effective means for detecting the error of a data type template; the algorithm of the invention has fast error detection speed and high error detection efficiency, and effectively solves the problems of large workload, low efficiency and high error rate of the manual detection method in the prior art.
Drawings
FIG. 1 is a schematic diagram of a nested ring detection of a DOType type node in an embodiment of the present invention;
FIG. 2 is a schematic diagram illustrating a nested ring detection of DOType type nodes in another embodiment of the present invention;
fig. 3 is a schematic diagram of nested ring detection of a datatype node according to an embodiment of the present invention.
Detailed Description
It should be noted that the following detailed description is illustrative and is intended to provide further explanation of the present application. Unless defined otherwise, all technical and scientific terms used herein have the same meaning as commonly understood by one of ordinary skill in the art to which this application belongs.
It is noted that the terminology used herein is for the purpose of describing particular embodiments only and is not intended to be limiting of example embodiments in accordance with the present application. As used herein, the singular is also intended to include the plural unless the context clearly indicates otherwise, and furthermore, it is to be understood that the terms "comprises" and/or "comprising" when used in this specification are taken to specify the presence of stated features, steps, operations, devices, components, and/or combinations thereof.
Example 1
In one or more embodiments, an intelligent station profile data type template nested loop detection method is disclosed.
First, the embodiment of the present invention is defined as follows for the nested ring:
d= { E }, where E is a DOType node (hereinafter referred to as a DOType node), and D is a finite set of E.
The attribute of the DOType node contains an id attribute, and the child node of the DOType node contains a type attribute.
The DOType node with id= "X" is simply referred to as X node.
Assuming that the child node type of the a node is an SDO node, and the attribute type= "B", the SDO node refers to a B node, which is a path a- > B in the data type template, where a, B are two DOType nodes on the path. If the cited node B contains the SDO type child node, the searching is continued, and the cycle is repeated.
If starting from a certain node, it is finally possible to return to the node, it is called a nested ring.
Note that the result of all the following operational calculations is a minimum nested ring, i.e. at most one nested ring is included in the nested ring, such as the ring C- > D- > B shown in fig. 2 is a nested ring, which contains only one small nested ring B- > D, and the nested ring a- > C- > D- > B contains more than one small nested ring, and is therefore not a minimum nested ring.
Referring to fig. 1, there are two SDO subnodes in the a node, which are the SDO subnode of type= "B" and the SDO subnode of type= "C", respectively. the SDO child node of type= "B" refers to node B, one of the nodes has a SDO child node of type= "C", one of the nodes refers to node C, and one of the nodes has a SDO child node of type= "a", so a- > B- > C forms a nested ring.
Based on the definition of the embedded ring, in this embodiment, the method for detecting the embedded ring of the intelligent station description file data type template specifically includes the following steps:
setting a stack, wherein the node type in the stack is { DOType node id, and the ith SDO node in the DOType node id }; i is calculated from 1;
(1) Collecting all N DOType type nodes containing SDO nodes in a data type template;
(2) Let the node to be traversed be (M, i); if a node of a certain DOType type has been traversed, marking that the node has been traversed and N=N-1, otherwise N remains unchanged;
(3) Stacking nodes to be traversed; judging whether the DOType node referenced by the ith SDO child node is in a stack or not, if so, forming an embedded ring from the DOType node referenced by the ith SDO child node to the DOType node where the ith SDO child node is located in the stack, and executing the step (4); otherwise, executing the step (6);
(4) Outputting and storing DOType type nodes contained in the embedded ring, and popping the last node to be stacked;
(5) Judging whether the node to be traversed has an SDO child node which is not traversed;
if present, let i=i+1, repeating steps (2) - (5);
otherwise, performing stack top node pop, wherein the DOType node after the pop is the node to be traversed, repeating the step (5) until the stack is empty, and switching to the step (8);
(6) Traversing DOType nodes M 'referenced by the ith SDO child node, namely enabling the nodes to be traversed to be (M', i), wherein i=1;
(7) Repeating steps (2) - (6);
(8) Selecting a node of a DOType type which is not traversed, and repeating the steps (2) - (7) until N=0;
(9) Judging whether nested ring information is output, if yes, outputting true, otherwise outputting false.
The following describes a nested ring detection method according to the present embodiment by taking the nested ring schematic diagram shown in fig. 1 as an example:
1): the nodes which meet the condition of containing SDO are found to have 3 nodes A, B and C. Traversing from a, the first SDO node type= "B" in node a, push { a,1}, stack. The SDO node references a node B node, is not in the stack,
2): traversing node B, only one SDO node in the node, its type= "C", push { B,1}, stack.
3): the SDO node references node C, which is not in the stack, and is traversed next, and only one SDO node of this node, whose type= "a", is pushed onto the stack { C, 1}.
4): the SDO node references node A, A in the stack, i.e., { A,1}. Thus, a ring is formed, the ring information is saved, A- > B- > C, and the last node { C,1} is popped off the stack, with { A,1} { B,1} remaining in the stack.
5): there are no other child nodes in node C, the { B,1} node is popped off, and only { A,1} node is in the stack. Returning to the node B, wherein only one node in the node B has traversed, popping { A,1}, and checking whether the node A has non-traversed child nodes or not when the stack is empty.
6): the child nodes of type= "C" are not traversed in the A node, the { A,2} is pushed, the SDO node refers to the node C node and is not in the stack, so the C node is traversed, only one SDO node is traversed in the node, the type= "A" is pushed in the stack, the { C,1} is pushed in the stack, the referenced node A is { A,2}, a nested ring A- > C is formed, the last node in the stack is popped out, at the moment, all child nodes in the remaining { A,2} in the stack are traversed, the last node in the last stack is popped out, and at the moment, the stack is empty.
7): and continuing to fall back to the node A, wherein all child nodes in the node A are traversed completely and the stack is empty, exiting the cycle, and finishing the algorithm if all the nodes in the graph are traversed completely.
In order to more fully describe the method disclosed in this embodiment, a nested ring detection method of this embodiment is described below by taking a nested ring schematic diagram shown in fig. 2 as an example:
referring to fig. 2, the nodes satisfying the condition containing SDO are found to have 4 nodes a, B, C, D in total.
1) Traversing from node a, the first SDO node type= "B" in node a, pushes { a,1} to the stack. The SDO node references node B and is not in the stack. Traversing the node B next;
2) There are 2 SDO nodes in the node B, SDO node type 1= "C", and { B,1} is stacked. The SDO node references the C node, which is not in the stack, and is traversed next.
3) There are 2 SDO nodes in the C node, SDO node type 1= "a", and { C,1} is stacked. The SDO node references node A, A in the stack, i.e., { A,1}. Thus, a ring is formed, the ring information is saved, A- > B- > C, and the last node { C,1} is popped off the stack, with { A,1} { B,1} remaining in the stack.
4) Traversing the 2 nd child node in node C, { C,2} pushes on the stack, where { A,1} { B,1} { C,2} remains in the stack. This node type= "D", D is not in the stack, and the D node is traversed next.
5) Only one child node in the node D is put in the stack { D,1}, where { a,1} { B,1} { C,2} { D,1} the child node type= "B", and the node B forms a ring in the stack, B- > C- > D. { D,1} pop-up, leave { A,1} { B,1} { C,2} in the stack.
6) Returning to node C, there are no more other non-traversed child nodes in C, { C,2} popped off the stack, leaving { A,1} { B,1}, in the stack.
7) Returning to the node B, and a child node in the node B, firstly popping { B,1} off the stack, and remaining { A,1} in the stack. Type= "D" of the 2 nd child node, D is not in the stack, node { B,2} is pushed on, and the information in the stack is { a,1} { B,2}. The next step traverses node D.
8) Only one child node in node D,1 is stacked, with a { a,1} { B,2} { D,1} stack. The child node type= "B", the B node forms a ring in the stack, B- > D. { D,1} pop-up, leave { A,1} { B,2} in the stack. At this point all SDO nodes in the node B have traversed, { B,2} pop off the stack, leaving { A,1} in the stack.
9) And returning to the node A, wherein the first child node is traversed, the stack is popped { A,1} and is empty.
10 The child node of type= "C" is not traversed in node a, the method is the same as above, wherein loop a- > C is obtained when traversing the first SDO node, and the steps are not repeated. At this time, all nodes in the graph are traversed, the stack is empty, and the algorithm is ended.
Example two
In one or more embodiments, an intelligent station profile data type template nested loop detection method is disclosed.
First, the embodiment of the present invention is defined as follows for the nested ring:
d= { E }, where E is a datatype node, and btype= "Struct" (a condition of btype= "Struct" is not described in detail below for convenience of description, abbreviated to datatype node), D is a finite set of E.
The attribute of the datatype node contains an id attribute, and the child node of the datatype node contains a type attribute.
The datae node of id= "X '" is simply referred to as X' node; assuming that the child node type of the a ' node is a BDA child node, its attribute type= "B '", the BDA child node refers to a corresponding B ' node, which is one path a ' - > B ' in the composition data type template, where a ', B ' are two nodes on the path.
If the referenced node B contains the BDA type child node and the attribute bType= "Struct", the searching is continued and the cycle is repeated.
If starting from a certain node, it is finally possible to return to the node, it is called a nested ring.
In fig. 3, there is one BDA child node in the a 'node, whose attribute btype= "Struct", type= "B'"; the child node of type= "B '" refers to the B' node, there is one BDA node of type= "C '" in this node, and the BDA node of attribute btype= "Struct", type= "C'" refers to the a 'node, so a' - > B '- > C' constitutes a nested ring.
In this embodiment, the method for detecting the nested loop of the intelligent station description file data type template includes the following steps:
setting a stack, wherein the node type in the stack is { DAType node id, i BDA node in the DAType node id }; i is calculated from 1;
(1) Collecting all N DATtype nodes containing BDA nodes in a data type template;
(2) Let the node to be traversed be (P, i); if a certain datatype node has been traversed, marking that the node has been traversed and n=n-1, otherwise N remains unchanged;
(3) Stacking nodes to be traversed; judging whether the DATtype node referenced by the ith BDA sub-node is in the stack or not, if so, forming an embedded ring from the DATtype node referenced by the ith BDA sub-node to the DATtype node where the ith BDA sub-node is located in the stack, and executing the step (4); otherwise, executing the step (6);
(4) The DAType node contained in the embedded ring is output and stored, and the last node which is put into the stack is popped;
(5) Judging whether a non-traversed BDA child node exists in the nodes to be traversed;
if present, let i=i+1, repeating steps (2) - (5);
otherwise, executing stack top node pop, wherein the node of the type DAType after the pop is the node to be traversed, repeating the step (5) until the stack is empty, and switching to the step (8);
(6) Traversing a DAType node P 'referenced by an ith BDA child node, namely enabling the node to be traversed to be (P', i), wherein i=1;
(7) Repeating steps (2) - (6);
(8) Selecting a node of a DAType which is not traversed, and repeating the steps (2) - (7) until N=0;
(9) Judging whether nested ring information is output, if yes, outputting true, otherwise outputting false.
The method for detecting the nested ring shown in fig. 3 is the same as the method for detecting the nested ring shown in fig. 1 in the first embodiment, and will not be described again.
It should be noted that, in the above embodiment, the type of DOType, the type of dataype, the type of SDO, and the type of BDA are all existing data type structures, and the definition refers to IEC61850-6.
By adopting the nested ring detection method in the embodiment, assuming that the number of SDO nodes in the model is m and the number of DOTypes containing the SDO nodes is n, the reference number of each DOType node is determined by the number of the SDO nodes, so that each DOType node has m references at most. Since there are at most n DOType nodes, the time complexity is O (m×n), thereby improving the working efficiency.
Example III
In one or more embodiments, a terminal device is disclosed that includes a processor for implementing instructions and a computer-readable storage medium; the computer readable storage medium is configured to store a plurality of instructions adapted to be loaded by a processor and to perform the intelligent station profile data type template nested loop detection method described in embodiment one or embodiment two.
In other embodiments, a computer readable storage medium is disclosed, in which a plurality of instructions are stored, wherein the instructions are adapted to be loaded by a processor of a terminal device and to perform the intelligent station description file data type template nested loop detection method described in embodiment one or embodiment two.
While the foregoing description of the embodiments of the present invention has been presented in conjunction with the drawings, it should be understood that it is not intended to limit the scope of the invention, but rather, it is intended to cover all modifications or variations within the scope of the invention as defined by the claims of the present invention.

Claims (4)

1. The intelligent station description file data type template nested ring detection method is characterized by comprising the following steps of:
setting a stack, wherein the node type in the stack is { DOType node id, and the ith SDO node in the DOType node id }; i is calculated from 1;
(1) Collecting all N DOType type nodes containing SDO nodes in a data type template;
(2) Let the node to be traversed be (M, i); if a node of a certain DOType type has been traversed, marking that the node has been traversed and N=N-1, otherwise N remains unchanged;
(3) Stacking nodes to be traversed; judging whether the DOType node referenced by the ith SDO child node is in a stack or not, if so, forming an embedded ring from the DOType node referenced by the ith SDO child node to the DOType node where the ith SDO child node is located in the stack, and executing the step (4); otherwise, executing the step (6);
(4) Outputting and storing DOType type nodes contained in the embedded ring, and popping the last node to be stacked;
(5) Judging whether the node to be traversed has an SDO child node which is not traversed;
if present, let i=i+1, repeating steps (2) - (5);
otherwise, performing stack top node pop, wherein the DOType node after the pop is the node to be traversed, repeating the step (5) until the stack is empty, and switching to the step (8);
(6) Traversing DOType nodes M 'referenced by the ith SDO child node, namely enabling the nodes to be traversed to be (M', i), wherein i=1;
(7) Repeating steps (2) - (6);
(8) Selecting a node of a DOType type which is not traversed, and repeating the steps (2) - (7) until N=0;
(9) Judging whether nested ring information is output, if yes, outputting true, otherwise, outputting false;
the DOType node comprises an id attribute, and the DOType node with id= "X" is simply called X node; the SDO child node of the DOType type node contains a type attribute;
assuming an SDO child node of the a node, whose attribute type= "B", the SDO child node refers to the B node, and forms a path a- > B in the data type template; if the node B contains the SDO sub-node, continuing to search the DOType type node referenced by the SDO sub-node, and continuing in this way;
if a node of a type DOType is considered to be the last node that can be returned, it is called a nested ring.
2. The intelligent station description file data type template nested ring detection method is characterized by comprising the following steps of:
setting a stack, wherein the node type in the stack is { DAType node id, i BDA node in the DAType node id }; i is calculated from 1;
(1) Collecting all N DATtype nodes containing BDA nodes in a data type template;
(2) Let the node to be traversed be (P, i); if a certain datatype node has been traversed, marking that the node has been traversed and n=n-1, otherwise N remains unchanged;
(3) Stacking nodes to be traversed; judging whether the DATtype node referenced by the ith BDA sub-node is in the stack or not, if so, forming an embedded ring from the DATtype node referenced by the ith BDA sub-node to the DATtype node where the ith BDA sub-node is located in the stack, and executing the step (4); otherwise, executing the step (6);
(4) The DAType node contained in the embedded ring is output and stored, and the last node which is put into the stack is popped;
(5) Judging whether a non-traversed BDA child node exists in the nodes to be traversed;
if present, let i=i+1, repeating steps (2) - (5);
otherwise, executing stack top node pop, wherein the node of the type DAType after the pop is the node to be traversed, repeating the step (5) until the stack is empty, and turning to the step (8);
(6) Traversing a DAType node P 'referenced by an ith BDA child node, namely enabling the node to be traversed to be (P', i), wherein i=1;
(7) Repeating steps (2) - (6);
(8) Selecting a node of a DAType which is not traversed, and repeating the steps (2) - (7) until N=0;
(9) Judging whether nested ring information is output, if yes, outputting true, otherwise, outputting false;
the DATtype node comprises an id attribute, and the DATtype node with id= "X '" is simply called as X' "node; the BDA child node of the DATtype node contains a type attribute and a bType attribute;
assuming a BDA child node of the a 'node, its attribute type= "B'" and btype= "Struct"; the BDA child node refers to the B ' node and forms a path A ' - > B ' in the data type template; if the B' node contains the BDA sub-node, continuing to search the DAType node referenced by the BDA sub-node, and continuing in this way;
if a node of a datatype is started and can be returned finally, the node is called a nested ring.
3. A terminal device comprising a processor and a computer-readable storage medium, the processor configured to implement instructions; a computer readable storage medium for storing a plurality of instructions adapted to be loaded by a processor and to perform the intelligent station profile data type template nested loop detection method of any of claims 1-2.
4. A computer readable storage medium having stored therein a plurality of instructions adapted to be loaded by a processor of a terminal device and to perform the intelligent station profile data type template nested loop detection method of any one of claims 1-2.
CN201911137160.XA 2019-11-19 2019-11-19 Intelligent station description file data type template embedded ring detection method and system Active CN110968738B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201911137160.XA CN110968738B (en) 2019-11-19 2019-11-19 Intelligent station description file data type template embedded ring detection method and system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201911137160.XA CN110968738B (en) 2019-11-19 2019-11-19 Intelligent station description file data type template embedded ring detection method and system

Publications (2)

Publication Number Publication Date
CN110968738A CN110968738A (en) 2020-04-07
CN110968738B true CN110968738B (en) 2023-06-20

Family

ID=70030895

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201911137160.XA Active CN110968738B (en) 2019-11-19 2019-11-19 Intelligent station description file data type template embedded ring detection method and system

Country Status (1)

Country Link
CN (1) CN110968738B (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113672369A (en) * 2021-08-20 2021-11-19 北京明略软件系统有限公司 Method and device for verifying ring of directed acyclic graph, electronic equipment and storage medium

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107169646A (en) * 2017-05-10 2017-09-15 祥云供电有限公司 A kind of power network connectivity analysis methods based on static topological island
CN109872112A (en) * 2017-12-05 2019-06-11 国家电网公司 A kind of full-automatic closed loop detection method and device of intelligent substation

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6681221B1 (en) * 2000-10-18 2004-01-20 Docent, Inc. Method and system for achieving directed acyclic graph (DAG) representations of data in XML
CN107193942A (en) * 2017-05-19 2017-09-22 西安邮电大学 The rapid generation of all connected subgraphs in a kind of digraph
CN108334563A (en) * 2018-01-09 2018-07-27 北京明略软件系统有限公司 A kind of method and device of data query
US11327114B2 (en) * 2018-06-15 2022-05-10 State Grid Hebei Electric Power Research Institute Fully-automatic closed-loop detection method and device for intelligent substation

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107169646A (en) * 2017-05-10 2017-09-15 祥云供电有限公司 A kind of power network connectivity analysis methods based on static topological island
CN109872112A (en) * 2017-12-05 2019-06-11 国家电网公司 A kind of full-automatic closed loop detection method and device of intelligent substation

Non-Patent Citations (6)

* Cited by examiner, † Cited by third party
Title
南方电网调控一体化运行管理模式研究;李翔;《工程科技Ⅱ辑》;全文 *
变电站中关于61850模型版本管理的探讨;代小翔等;《2015年中国电机工程学会年会》;全文 *
基于IEC61850的数字化变电站新型系统配置器设计;王斌;《工程科技Ⅱ辑》;全文 *
工业企业变电站监控系统的应用研究;陈杰;《工程科技Ⅱ辑》;全文 *
智能变电站二次仿真自动测试系统设计与实现;韩伟;《工程科技Ⅱ辑》;全文 *
智能变电站验收帮助系统的设计与实现;张周晶;《工程科技Ⅱ辑》;全文 *

Also Published As

Publication number Publication date
CN110968738A (en) 2020-04-07

Similar Documents

Publication Publication Date Title
US10394778B2 (en) Minimal representation of connecting walks
JP5241738B2 (en) Method and apparatus for building tree structure data from tables
CN110515896B (en) Model resource management method, model file manufacturing method, device and system
CN103593457B (en) Method for converting document format
CN109189469A (en) Android application micro services method and system based on reflection
CN109189374A (en) Object formation code generating method and system based on object reference chain
US20070078816A1 (en) Common sub-expression elimination for inverse query evaluation
CN114880504A (en) Graph data query method, device and equipment
US20180165333A1 (en) Big data calculation method and system
CN111666468A (en) Method for searching personalized influence community in social network based on cluster attributes
CN110968738B (en) Intelligent station description file data type template embedded ring detection method and system
US7472130B2 (en) Select indexing in merged inverse query evaluations
CN109933589B (en) Data structure conversion method for data summarization based on ElasticSearch aggregation operation result
CN117150095B (en) Hierarchical tree node searching method, electronic equipment and medium
CN111553001B (en) Method for extracting or deleting component from IFC file
US8914356B2 (en) Optimized queries for file path indexing in a content repository
CN101968747B (en) Cluster application management system and application management method thereof
CN110032366B (en) Code positioning method and device
CN112764749A (en) Method and system for generating software functional interface group
CN112837026A (en) Method, device and equipment for analyzing delivery cycle dependence and storage medium
CN112659118A (en) Method and device for exporting and importing robot path information and readable storage medium
CN106570172A (en) Stream processing-based mode updating method
CN116340270B (en) Concurrent traversal enumeration method, device, equipment and storage medium
CN103699574A (en) Retrieval optimization method and system for complex retrieval formula
CN109814842B (en) Tree-type logic software design method for dual-power automatic transfer switch

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
TA01 Transfer of patent application right

Effective date of registration: 20201211

Address after: Room 902, 9 / F, block B, Yinhe building, 2008 Xinluo street, hi tech Zone, Jinan City, Shandong Province

Applicant after: Shandong Luneng Software Technology Co.,Ltd. intelligent electrical branch

Address before: 250101 power intelligent robot production project 101 south of Feiyue Avenue and east of No.26 Road (in ICT Industrial Park) in Suncun District of Gaoxin, Jinan City, Shandong Province

Applicant before: National Network Intelligent Technology Co.,Ltd.

TA01 Transfer of patent application right
CB02 Change of applicant information

Address after: Room 902, 9 / F, block B, Yinhe building, 2008 Xinluo street, hi tech Zone, Jinan City, Shandong Province

Applicant after: Shandong luruan Digital Technology Co.,Ltd. smart energy branch

Address before: Room 902, 9 / F, block B, Yinhe building, 2008 Xinluo street, hi tech Zone, Jinan City, Shandong Province

Applicant before: Shandong Luneng Software Technology Co.,Ltd. intelligent electrical branch

CB02 Change of applicant information
GR01 Patent grant
GR01 Patent grant