{% extends "base.html" %} {% block title %}SPC / Statistische Prozesslenkung{% endblock %} {% block heading %}📊 SPC · Statistische Prozesslenkung{% endblock %} {% block breadcrumb %}

Prüfmittel / SPC

{% endblock %} {% block content %}

Statistische Auswertung der Mess-Protokolle pro Template + Mess-Punkt. Cpk ≥ 1.67: ausgezeichnet · ≥ 1.33: gut · ≥ 1.0: ausreichend · < 1.0: kritisch. Pflicht für IATF-16949 / ISO-9001-Audit-Nachweise.

{{ templates|length }} Mess-Template{% if templates|length != 1 %}s{% endif %}

Mit hinterlegten Mess-Protokollen — Cpk-Berechnung über alle Records

{% for t in templates %}

{{ t.template_name }}

{{ t.record_count }} Mess-Protokolle
{% if t.description %}

{{ t.description }}

{% endif %} {% for p in t.points %} {% endfor %}
Mess-Punkt Nominal Stichprobe (n) Mittelwert Cpk Außer Spec Bewertung
{{ p.name }} {{ p.nominal }}{% if p.unit %} {{ p.unit }}{% endif %} {{ p.n }} {% if p.mean is not none %}{{ "%.4f"|format(p.mean) }}{% else %}—{% endif %} {% if p.cpk is not none %}{{ "%.2f"|format(p.cpk) }}{% else %}—{% endif %} {{ p.out_of_spec_count }} {% if p.status == 'excellent' %}🟢 Ausgezeichnet{% endif %} {% if p.status == 'good' %}🟢 Gut{% endif %} {% if p.status == 'ok' %}🟡 Ausreichend{% endif %} {% if p.status == 'critical' %}🔴 Kritisch{% endif %} {% if p.status == 'unknown' %}— Zu wenig Daten{% endif %} 📊 Chart
{% else %}

Keine Mess-Templates mit Daten vorhanden. Über Messprotokolle Werte erfassen.

{% endfor %}
{% endblock %}