Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents
maxLevel4

Fault Tree

Description

This module allows to create a fault tree diagram. Fault tree is a top-down, deductive method of analyzing in which undesired state of a system is represented and analyzed using Boolean logic to combine a series of low-level events.

Fault Tree XML Specification

Variables used to describe Fault Tree in XML

FaultTree Fields

   root - event tree identity

...

   scale - (LINEAR or LOGARITHMIC)

Root fields

   name

   triangleFunction→name - function name

...

Code Block
languagexml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<faultTree>
    <root>
        <name>root</name>
        <triangleFunction>
            <name></name>
        </triangleFunction>
    </root>
    <faultMap>
           <entry>
             ...
           </entry>
           <entry>
             ...
           </entry>
    </faultMap>
    <scale/>
</faultTree>

Entry

Entry and Entry → Value fields

...

   value→triangleFunction→name - function name

Parent fields

   name

   logicGateType - GATE_AND or GATE_OR

...