layout: distill title: (test, ignore) an introduction to fault diagnosis description: (test, ignore) a divulgative take at what fault diagnosis of dynamical systems is date: 2021-10-01

toc: true

authors:

bibliography: 2018-12-22-distill.bib

Below is an example of injecting additional post-specific styles.

If you use this post as a template, delete this _styles block.

_styles: > .fake-img { background: #bbb; border: 1px solid rgba(0, 0, 0, 0.1); box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1); margin-bottom: 12px; } .fake-img p { font-family: monospace; color: white; text-align: left; margin: 12px 0; text-align: center; font-size: 16px; }


Motivation

Let us try to include a reference here

Examples of systems where fault tolerance is a required property. On the left, an Airbus A321 jet liner. Middle, the Pernis refinery operated by Shell in Rotterdam. Right, the Perseverance autonomous planetary rover on Mars.
On the left, the path leading to a failure. On the right, the one leading to reliability and safety, even in the presence of faults.

State of the art

The kind of message you would never want to see on your car's dashboard. Not a great example of being fault tolerant, but hey this fault was detected!
Let us replace the word "fault" in "fault detector" with "cat". The classification problem now corresponds to detecting whether we do not have a cat (which means everything is fine) and having one (disclaimer: I love cats, but please just look at the evil eyes of these cats). As the cat detector is a binary classifier, we have the four possible scenarios depicted here. Two corresponds to correct classification (true negative and true positive), two to wrong ones (false positive and false negative).

I want to see a negative before I provide you with a positive

Dr. Tyrell, from the movie "Blade Runner"

Let us assume our cat detector is parameterized and that, for each possible value of this parameter, we compute the FPR and TPR over a given set of inputs to be classified. By doing this we can plot a trace, which is called the Receiver Operating Characteristic (ROC), where each point with coordinates (FPR,TPR) is obtained for one value of the parameter. Different detectors will correspond to different kind of curves in this plane. Some notable kinds are: the "flipping the coin" detectors, which randomly decides over the two possible decisions (actually they may be described by any point on the orange line, which one depends on the cat/not cat ratio of samples in the set being classified); good and better detectors, which are above the "flipping the coin" line; the "perfect detector", which is the idealized case to which increasingly better detectors will tend (here, everything is classified correctly, so we have only the (0,1) point); then three possible kind of very bad detectors, such as the "always cat" which will just say "cat" and corresponds to (1,1); the "always not cat" which corresponds to (0,0); the "perfectly malicious detector" which just says the opposite of the perfect detector, and has probably been coded by an evil cat to misguide us. Note: if we had a set of inputs containing only cats, the "always cat" detector may wrongly appear to us a perfect detector. Similarly, the "always not cat" would fool us in thinking it is perfect when presented only with non cat inputs. While this may seem obvious, this has important practical implications as most of the time a fault detector will be presented with non-faulty inputs.
Top: the general structure of a model-based fault detection scheme, where a mathematical model is used to generate the so-called residual and threshold. The residual is then tested against the threshold in order to generate an alarm. Bottom: a possible mechanism for generating a residual using an observer for a dynamical system.

this is an example of citation
in the middle of the page

Riccardo

back to top

Our contribution

A graphical, set-based visualization of existing thresholds definition from the literature (a) to d)). In e) the general set-based threshold proposed in (missing reference) and (missing reference) is illustrated. This latter approach allows the threshold set to have a more complex shape which can fit known samples of the healthy residual more tightly, and further allows to ignore rare values. These improvements lead to a smaller threshold, resulting in higher detectability in terms of TPR.

back to top

Open problems

I need to write something here.

References


    NOTE: Citations, footnotes, and code blocks do not display correctly in the dark mode since distill does not support the dark mode by default. If you are interested in correctly adding dark mode support for distill, please open a discussion and let us know.

    Equations

    This theme supports rendering beautiful math in inline and display modes using MathJax 3 engine. You just need to surround your math expression with $$, like $$ E = mc^2 $$. If you leave it inside a paragraph, it will produce an inline expression, just like \(E = mc^2\).

    To use display mode, again surround your expression with $$ and place it as a separate paragraph. Here is an example:

    \[\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right)\]

    Note that MathJax 3 is a major re-write of MathJax that brought a significant improvement to the loading and rendering speed, which is now on par with KaTeX.


    Citations

    Citations are then used in the article body with the <d-cite> tag. The key attribute is a reference to the id provided in the bibliography. The key attribute can take multiple ids, separated by commas.

    The citation is presented inline like this: (a number that displays more information on hover). If you have an appendix, a bibliography is automatically created and populated in it.

    Distill chose a numerical inline citation style to improve readability of citation dense articles and because many of the benefits of longer citations are obviated by displaying more information on hover. However, we consider it good style to mention author last names if you discuss something at length and it fits into the flow well — the authors are human and it’s nice for them to have the community associate them with their work.


    Footnotes

    Just wrap the text you would like to show up in a footnote in a <d-footnote> tag. The number of the footnote will be automatically generated.This will become a hoverable footnote.


    Code Blocks

    Syntax highlighting is provided within <d-code> tags. An example of inline code snippets: <d-code language="html">let x = 10;</d-code>. For larger blocks of code, add a block attribute:

    var x = 25; function(x) { return x * x; }

    Note: <d-code> blocks do not look well in the dark mode. You can always use the default code-highlight using the highlight liquid tag:

    var x = 25;
    function(x) {
      return x * x;
    }

    Layouts

    The main text column is referred to as the body. It is the assumed layout of any direct descendants of the d-article element.

    .l-body

    For images you want to display a little larger, try .l-page:

    .l-page

    All of these have an outset variant if you want to poke out from the body text a little bit. For instance:

    .l-body-outset

    .l-page-outset

    Occasionally you’ll want to use the full browser width. For this, use .l-screen. You can also inset the element a little from the edge of the browser by using the inset variant.

    .l-screen

    .l-screen-inset

    The final layout is for marginalia, asides, and footnotes. It does not interrupt the normal flow of .l-body sized text except on mobile screen sizes.

    .l-gutter

    Emphasis, aka italics, with asterisks or underscores.

    Strong emphasis, aka bold, with asterisks or underscores.

    Combined emphasis with asterisks and underscores.

    Strikethrough uses two tildes. Scratch this.

    1. First ordered list item
    2. Another item ⋅⋅* Unordered sub-list.
    3. Actual numbers don’t matter, just that it’s a number ⋅⋅1. Ordered sub-list
    4. And another item.

    ⋅⋅⋅You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we’ll use three here to also align the raw Markdown).

    ⋅⋅⋅To have a line break without a paragraph, you will need to use two trailing spaces.⋅⋅ ⋅⋅⋅Note that this line is separate, but within the same paragraph.⋅⋅ ⋅⋅⋅(This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)

    I’m an inline-style link

    I’m an inline-style link with title

    I’m a reference-style link

    I’m a relative reference to a repository file

    You can use numbers for reference-style link definitions

    Or leave it empty and use the link text itself.

    URLs and URLs in angle brackets will automatically get turned into links. http://www.example.com or http://www.example.com and sometimes example.com (but not on Github, for example).

    Some text to show that the reference links can follow later.

    Here’s our logo (hover to see the title text):

    Inline-style: alt text

    Reference-style: alt text

    Inline code has back-ticks around it.

    var s = "JavaScript syntax highlighting";
    alert(s);
    
    s = "Python syntax highlighting"
    print s
    
    No language indicated, so no syntax highlighting. 
    But let's throw in a <b>tag</b>.
    

    Colons can be used to align columns.

    Tables Are Cool
    col 3 is right-aligned $1600
    col 2 is centered $12
    zebra stripes are neat $1

    There must be at least 3 dashes separating each header cell. The outer pipes (|) are optional, and you don’t need to make the raw Markdown line up prettily. You can also use inline Markdown.

    Markdown Less Pretty
    Still renders nicely
    1 2 3

    Blockquotes are very handy in email to emulate reply text. This line is part of the same quote.

    Quote break.

    This is a very long line that will still be quoted properly when it wraps. Oh boy let’s keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can put Markdown into a blockquote.

    Three or more…


    Hyphens


    Asterisks


    Underscores

    Here’s a line for us to start with.

    This line is separated from the one above by two newlines, so it will be a separate paragraph.

    This line is also a separate paragraph, but… This line is only separated by a single newline, so it’s a separate line in the same paragraph.