Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions mef/report_layer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ The following three categories are so frequent
that is it worth to normalize the way they are stored into XML files.

- Minimal cut sets (and prime implicants)
- Importance factors
- Statistical measures (with moments)
- Curves

Expand All @@ -108,6 +109,31 @@ to carry the relevant information.
:caption: The RNC schema for the XML representation of sums-of-products
:language: rnc

Importance factors
------------------

Importance factors are typically computed for basic events
with the same configurations as for probability analysis.
The following importance factors are long-established and commonly calculated:

- Fussel-Vesely Diagnosis Importance Factor (DIF)
- Birnbaum Marginal Importance Factor (MIF)
- Critical Importance Factor (CIF)
- Risk Reduction Worth (RRW)
- Risk Achievement Worth (RAW)

The definitions of these factors can be found in PSA/PRA literature.

In addition to the importance factors,
this report section may contain
the evaluated probability of an event and
the number of products it occurs in.

.. literalinclude:: schema/importance_factors.rnc
:name: schema_importance_factors
:caption: The RNC schema for the XML representation of importance factors
:language: rnc

Statistical measures
--------------------

Expand Down
19 changes: 19 additions & 0 deletions mef/schema/importance_factors.rnc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
importance =
element importance {
name?,
attribute description { text }?,
attribute basic-events { xsd:nonNegativeInteger }?,
importance-event*
}

importance-event =
element basic-event {
name,
attribute occurrence { xsd:nonNegativeInteger }?,
attribute probability { xsd:double }?,
attribute DIF { xsd:double }?,
attribute MIF { xsd:double }?,
attribute CIF { xsd:double }?,
attribute RRW { xsd:double }?,
attribute RAW { xsd:double }?,
}
3 changes: 3 additions & 0 deletions spelling_wordlist.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
Ai
Birnbaum
CCF
Fi
Fussel
LAnguage
Napierian
PSA
REgular
Ri
Schematron
Vesely
datatype
datatypes
formulae
Expand Down