Correlation Table Template

To propagate failure modes using a correlation table, you need a template to define the correlation table. This table defines how the propagation works.

You also need to define a template for the FMEA table, which is linked with the correlation table.

The following examples present the propagation of failure modes using a correlation table in the case of testability analysis.

This page discusses:

See Also
Propagating Failure Modes

Extract of a Template of a Correlation Table

{
    "mode": "FMEA",
    "title": "Correlation Table",
    "columns": [{
        "text": "Mono Failure",
        "dataIndex": "directEffect",
        "width": "250px"
    }, {
        "text": "Multi Failures",
        "dataIndex": "higherLevelEffects",
        "width": "300px",
    }],
    "groups": ["cause"]
}

Extract of a Template of a Corresponding FMEA Table

{
    "mode": "FMEA",
    "title": "FMEA with Correlations",
    "columns": [{
        "text": "Component",
        "dataIndex": "causeOccurrence",
        "width": "200px"
    }, {
        "text": "Failure Mode",
        "dataIndex": "causeFailureMode",
        "width": "200px"
    }, {
        "text": "Symptoms",
        "dataIndex": "higherLevelEffects",
        "width": "250px",
        "qualifiers": [
            {"global": "true", "name": "Visibility", "text": "Visibility"},
            {"global": "true", "name": "Symptom Rank", "text": "Rank", "readOnly": "true"},
        ]
    }],
    "groups": ["cause"]
}