* * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /** * \file tools/selektivitaet.php * \ingroup elektroplanung * \brief Selektivitäts-Assistent nach VDE 0100-530 */ // Load Dolibarr environment $res = 0; if (!$res && file_exists("../../main.inc.php")) { $res = @include "../../main.inc.php"; } if (!$res && file_exists("../../../main.inc.php")) { $res = @include "../../../main.inc.php"; } if (!$res) { die("Include of main fails"); } require_once DOL_DOCUMENT_ROOT.'/core/lib/functions.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/html.form.class.php'; // Load translation files $langs->loadLangs(array("elektroplanung@elektroplanung")); // Security check if (!isModEnabled('elektroplanung')) { accessforbidden('Module not enabled'); } if (!$user->hasRight('elektroplanung', 'tools', 'read')) { accessforbidden('Permission denied'); } $form = new Form($db); // Page header llxHeader('', $langs->trans("ElektroplanungSelektivitaet"), '', '', 0, 0, array( 'https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js' ), array( '/elektroplanung/css/elektroplanung.css' ), '', 'mod-elektroplanung page-selektivitaet'); // Viewport für Mobile print ''; print load_fiche_titre($langs->trans("ElektroplanungSelektivitaet"), '', 'fa-project-diagram'); print '
'; ?>
trans("ElektroplanungSelPruefen"); ?>
trans("ElektroplanungSelKette"); ?>
trans("ElektroplanungSelTabellen"); ?>
trans("ElektroplanungSelVDE"); ?>
trans("ElektroplanungSelVorsicherung"); ?>
trans("ElektroplanungSelNachsicherung"); ?>
-
-
trans("ElektroplanungSelVorsicherung"); ?>: -
trans("ElektroplanungSelNachsicherung"); ?>: -
trans("ElektroplanungSelVerhaeltnis"); ?>: -
trans("ElektroplanungSelVDENorm"); ?>: -
trans("ElektroplanungSelKetteConfig"); ?>

trans("ElektroplanungSelKetteInfo"); ?>

trans("ElektroplanungSelKetteLeer"); ?>
-
-
trans("ElektroplanungSelTabelleSchmelz"); ?>

VDE 0100-530: trans("ElektroplanungSelSchmelzInfo"); ?>

trans("ElektroplanungSelNachsicherung"); ?> trans("ElektroplanungSelVorsicherung"); ?> (gG/gL) - trans("ElektroplanungSelMindestwert"); ?>
gG/gL 25A 32A 40A 50A 63A 80A 100A 125A
16A
20A ~
25A - ~
32A - - ~
40A - - - ~
50A - - - - ~
63A - - - - - ~

✓ = Selektiv | ~ = Teilselektiv (nur bei Überlast) | - = Nicht selektiv

trans("ElektroplanungSelTabelleSLS"); ?>

TAB 2019: trans("ElektroplanungSelSLSInfo"); ?>

SLS trans("ElektroplanungSelNachgeschaltet"); ?> LS-Schalter (B/C)
B10 B13 B16 B20 B25 B32
SLS 35A ~
SLS 50A ~
SLS 63A

✓ = Selektiv bis 10kA | ~ = Teilselektiv | ✗ = Nicht selektiv

trans("ElektroplanungSelTabelleRCD"); ?>

VDE 0100-530, 535.2.2: trans("ElektroplanungSelRCDInfo"); ?>

trans("ElektroplanungSelVorgeschaltet"); ?> trans("ElektroplanungSelNachgeschaltet"); ?> trans("ElektroplanungSelErgebnis"); ?>
RCD Typ S, 300mA RCD 30mA Selektiv (Faktor 10)
RCD Typ S, 100mA RCD 30mA Selektiv (Faktor 3,3)
RCD 300mA (nicht S) RCD 30mA Teilselektiv
RCD 100mA RCD 30mA Nicht selektiv

Vorgeschaltete RCD muss Typ S sein UND mindestens 3-fachen IΔn haben.

trans("ElektroplanungSelVDENormen"); ?>
trans("ElektroplanungSelNorm"); ?> trans("ElektroplanungSelInhalt"); ?> trans("ElektroplanungSelPflicht"); ?>
VDE 0100-530
535.1.2, 535.1.3, 535.2.2
Definition Selektivität, Hinweise zur Erreichung bei Überstrom- und Fehlerstrom-Schutzeinrichtungen Empfohlen
Keine explizite Forderung
VDE 0100-560
563.4
Elektrische Anlagen für Sicherheitszwecke (Notbeleuchtung, Brandmeldeanlage etc.) Pflicht
Selektivität gefordert
TAB 2019
Abschnitt 7
Selektivität zwischen Kundenanlage und Hauptstromversorgungssystem / Hausanschlusssicherung Pflicht
Zum Netz hin
VDE 0100-410
411.3.2
Schutz durch automatische Abschaltung - Abschaltzeiten Pflicht
Personenschutz
trans("ElektroplanungSelWichtig"); ?>
trans("ElektroplanungSelWichtigTitel"); ?>:
  • LS-Schalter untereinander: Grundsätzlich NICHT selektiv bei Kurzschluss! Nur bei Überlast durch Nennstromabstufung.
  • Schmelzsicherungen: Selektiv bei Faktor ≥ 1,6 (2 Nennstromstufen Abstand)
  • SLS vor LS: Speziell für Selektivität konstruiert - beste Lösung im Zählerbereich
  • RCD: Vorgeschaltete muss Typ S sein UND IΔn ≥ 3× nachgeschaltete
trans("ElektroplanungSelPraxistipps"); ?>
trans("ElektroplanungSelSituation"); ?> trans("ElektroplanungSelEmpfehlung"); ?>
Wohnung mit 63A HAK HAK NH 63A → SLS 35A/50A im ZS → LS B16 in UV
EFH mit Unterverteilung HAK NH 63A → SLS 63A → NH/D 35A für UV → LS B16
Gewerbe mit mehreren UV HAK NH 100A → NH 63A HV → NH 35A UV → LS B/C 16A
Sicherheitsbeleuchtung Eigener Stromkreis mit selektiver Absicherung (VDE 0100-560)
'; llxFooter(); $db->close();