* * 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/widerstandsrechner.php * \ingroup elektroplanung * \brief Widerstandsrechner für Potentialausgleich nach VDE 0100-534/540 */ // 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("ElektroplanungWiderstandsrechner"), '', '', 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-widerstandsrechner'); // Viewport für Mobile print ''; print load_fiche_titre($langs->trans("ElektroplanungWiderstandsrechner"), '', 'fa-microchip'); print '
'; ?>
trans("ElektroplanungWiderstandBerechnung"); ?>
trans("ElektroplanungQuerschnittErmitteln"); ?>
trans("ElektroplanungVDEAnforderungen"); ?>
trans("ElektroplanungAnwendungsfall"); ?>
trans("ElektroplanungLeitungsdaten"); ?>
trans("ElektroplanungVerbindungen"); ?>
0.000 Ω
-
trans("ElektroplanungLeitungswiderstand"); ?>: -
trans("ElektroplanungKlemmenwiderstand"); ?>: -
trans("ElektroplanungSchienenwiderstand"); ?>: -
trans("ElektroplanungMaxZulaessig"); ?>: -
trans("ElektroplanungReserve"); ?>: -
trans("ElektroplanungZielwerte"); ?>
- mm²
trans("ElektroplanungMindestquerschnitt"); ?>
trans("ElektroplanungBerechnet"); ?>: -
trans("ElektroplanungTatsWiderstand"); ?>: -
trans("ElektroplanungMaxLaenge"); ?>: -
trans("ElektroplanungVDEPotentialausgleich"); ?>

trans("ElektroplanungVDEPABeschreibung"); ?>

trans("ElektroplanungAnwendung"); ?> trans("ElektroplanungNorm"); ?> trans("ElektroplanungMaxWiderstand"); ?> trans("ElektroplanungMindestquerschnittCu"); ?>
trans("ElektroplanungHauptPA"); ?> VDE 0100-540 ≤ 1 Ω 6 mm² (Cu) / 16 mm² (Al)
trans("ElektroplanungZusatzPA"); ?> VDE 0100-410 ≤ 0.5 Ω Je nach Anwendung
trans("ElektroplanungSPDTyp1"); ?> VDE 0100-534 ≤ 0.5 Ω 16 mm² (Cu)
trans("ElektroplanungSPDTyp2"); ?> VDE 0100-534 ≤ 1 Ω 6 mm² (Cu)
trans("ElektroplanungBlitzschutz"); ?> VDE 0185-305 ≤ 0.2 Ω 25 mm² (Cu)
trans("ElektroplanungSPDAnschluss"); ?>

trans("ElektroplanungSPDBeschreibung"); ?>

HAK L ≤ 0.5m SPD Typ 1/2 PE PAS trans("ElektroplanungLegende"); ?>: HAK = Hausanschlusskasten SPD = Überspannungsschutz PAS = Potentialausgleichsschiene
trans("ElektroplanungWichtig"); ?>:
  • trans("ElektroplanungVDEHinweis1"); ?>
  • trans("ElektroplanungVDEHinweis2"); ?>
  • trans("ElektroplanungVDEHinweis3"); ?>
'; llxFooter(); $db->close();