> For the complete documentation index, see [llms.txt](https://docs.enlyze.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.enlyze.com/konzepte/stillstaende/erkennung.md).

# Erkennung

ENLYZE erkennt Stillstände automatisch anhand von Maschinendaten. Das Prinzip: Eine Variable, die zuverlässig anzeigt, ob die Maschine produziert, wird kontinuierlich überwacht. Fällt ihr Wert unter einen definierten Schwellwert, wird ein Stillstand erkannt.

## Leitvariable und Schwellwert

Die Grundlage der Stillstandserkennung sind zwei Konfigurationsparameter:

* **Leitvariable**: Eine Variable, die eindeutig anzeigt, ob die Maschine produziert. Typischerweise eine Geschwindigkeit, ein Durchsatz oder ein Takt.
* **Schwellwert**: Der Grenzwert, unterhalb dessen ein Stillstand erkannt wird.

### Beispiel

Eine Extrusionslinie hat eine Wicklergeschwindigkeit als Leitvariable. Der Schwellwert ist auf 5 m/min konfiguriert:

* Werte **unter 5 m/min**: Die Maschine steht (Stillstand).
* Werte **ab 5 m/min**: Die Maschine produziert.

Die Erkennung erfolgt sekundengenau und vollständig automatisch. Es ist keine manuelle Eingabe erforderlich.

### Typische Leitvariablen nach Maschinentyp

| Maschinentyp  | Typische Leitvariable                         |
| ------------- | --------------------------------------------- |
| Extrusion     | Abzugsgeschwindigkeit, Wicklergeschwindigkeit |
| Druckmaschine | Liniengeschwindigkeit                         |
| Montagelinie  | Stück pro Minute                              |
| Verpackung    | Taktzeit, Stückzähler                         |

## Mindestdauer

Um kurzzeitiges "Flackern" zu vermeiden (z. B. wenn die Geschwindigkeit kurz unter den Schwellwert fällt und sofort wieder steigt), kann eine Mindestdauer konfiguriert werden. Nur Stillstände, die länger als die Mindestdauer andauern, werden erfasst.

## Boolean-Variablen

Neben numerischen Variablen können auch Boolean-Variablen (True/False) als Leitvariable genutzt werden. In diesem Fall wird konfiguriert, ob `True` oder `False` einen Stillstand darstellt.

## Vorteile der automatischen Erkennung

* **Objektiv**: Keine subjektive Einschätzung durch Mitarbeitende.
* **Lückenlos**: Jeder Stillstand wird erfasst, auch nachts oder am Wochenende.
* **Sekundengenau**: Genaue Start- und Endzeiten statt geschätzter Angaben.
* **Automatisch**: Kein manueller Aufwand für die Grunderfassung.

{% hint style="info" %}
Wie du die Stillstandserkennung in der ENLYZE App konfigurierst, erfährst du unter [OEE-Erfassung einrichten](/produktionsoptimierung/oee.md).
{% endhint %}

## Weiterführende Themen

* [Kategorien & Zuordnung](/konzepte/stillstaende/kategorien-und-zuordnung.md): Wie erkannte Stillstände mit Gründen versehen werden.
* [Verfügbarkeit](/konzepte/oee-verstehen/verfugbarkeit.md): Wie Stillstände die OEE-Verfügbarkeit beeinflussen.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.enlyze.com/konzepte/stillstaende/erkennung.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
