From 93028b443ec04b0238e103747d4e33ba204b554e Mon Sep 17 00:00:00 2001 From: Benjamin Admin Date: Tue, 12 May 2026 09:54:56 +0200 Subject: [PATCH] =?UTF-8?q?feat(iace):=20FMEA=20Bedienungsanleitung=20?= =?UTF-8?q?=E2=80=94=20ausklappbare=20Info-Box?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Erklaert S/O/D Skalen, RPZ + AP Kennzahlen, konkretes Beispiel (SPS Kommunikationsausfall), Workflow-Schritte. Fuer Nicht-Experten. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../app/sdk/iace/[projectId]/fmea/page.tsx | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/admin-compliance/app/sdk/iace/[projectId]/fmea/page.tsx b/admin-compliance/app/sdk/iace/[projectId]/fmea/page.tsx index fb4c28d..f70961c 100644 --- a/admin-compliance/app/sdk/iace/[projectId]/fmea/page.tsx +++ b/admin-compliance/app/sdk/iace/[projectId]/fmea/page.tsx @@ -1,5 +1,6 @@ 'use client' +import { useState } from 'react' import { useParams } from 'next/navigation' import { useFMEA, type FMEARow } from './_hooks/useFMEA' @@ -46,6 +47,9 @@ export default function FMEAPage() {

+ {/* Info Box */} + + {/* Export Button */}
+ + {open && ( +
+

FMEA (Fehlermoeglich- und Einflussanalyse) ist eine systematische Methode zur vorbeugenden Qualitaetssicherung nach AIAG-VDA (2019).

+
+ Bewertungsskalen (je 1-10): +
    +
  • S (Severity) — Schwere der Auswirkung: 1 = kaum merkbar, 10 = katastrophal (Lebensgefahr)
  • +
  • O (Occurrence) — Auftretenswahrscheinlichkeit: 1 = praktisch ausgeschlossen, 10 = sehr haeufig
  • +
  • D (Detection) — Entdeckbarkeit: 1 = sofort erkennbar, 10 = nicht erkennbar
  • +
+
+
+ Kennzahlen: +
    +
  • RPZ = S x O x D (1-1000). Ab RPZ > 100: Massnahme erforderlich.
  • +
  • AP (Action Priority) — AIAG-VDA Standard: H = sofort handeln, M = planen, L = beobachten
  • +
+
+
+ Beispiel: SPS-Steuerung → Kommunikationsausfall (S=8, O=3, D=5) → RPZ=120, AP=M → Massnahme: Redundante Kommunikation implementieren. +
+
+ Workflow: 1. Komponente waehlen → 2. Fehlerart identifizieren → 3. S/O/D bewerten → 4. AP pruefen → 5. Bei H/M: Massnahme definieren → 6. Nach Massnahme: neu bewerten +
+
+ )} +
+ ) +} + function StatCard({ label, value, color }: { label: string; value: number; color: string }) { const colors: Record = { gray: 'bg-gray-50 text-gray-700 border-gray-200',