This commit is contained in:
@@ -54,6 +54,9 @@ import SplitHeading from '@/components/blog/SplitHeading';
|
||||
import PostNavigation from '@/components/blog/PostNavigation';
|
||||
import PowerCTA from '@/components/blog/PowerCTA';
|
||||
import TableOfContents from '@/components/blog/TableOfContents';
|
||||
import StickyNarrative from '@/components/blog/StickyNarrative';
|
||||
import TechnicalGrid from '@/components/blog/TechnicalGrid';
|
||||
import ComparisonGrid from '@/components/blog/ComparisonGrid';
|
||||
|
||||
const components = {
|
||||
VisualLinkPreview,
|
||||
@@ -64,6 +67,9 @@ const components = {
|
||||
ChatBubble,
|
||||
PowerCTA,
|
||||
SplitHeading,
|
||||
StickyNarrative,
|
||||
TechnicalGrid,
|
||||
ComparisonGrid,
|
||||
h1: () => null,
|
||||
a: ({ href, children, ...props }: any) => {
|
||||
if (href?.startsWith('/')) {
|
||||
|
||||
50
components/blog/ComparisonGrid.tsx
Normal file
50
components/blog/ComparisonGrid.tsx
Normal file
@@ -0,0 +1,50 @@
|
||||
import React from 'react';
|
||||
|
||||
interface ComparisonGridItem {
|
||||
label: string;
|
||||
leftValue: string;
|
||||
rightValue: string;
|
||||
}
|
||||
|
||||
interface ComparisonGridProps {
|
||||
title?: string;
|
||||
leftLabel: string;
|
||||
rightLabel: string;
|
||||
items: ComparisonGridItem[];
|
||||
}
|
||||
|
||||
export default function ComparisonGrid({ title, leftLabel, rightLabel, items }: ComparisonGridProps) {
|
||||
return (
|
||||
<div className="my-16 not-prose">
|
||||
{title && (
|
||||
<h3 className="text-2xl font-bold text-text-primary mb-8">
|
||||
{title}
|
||||
</h3>
|
||||
)}
|
||||
<div className="border border-neutral-200 rounded-3xl overflow-hidden shadow-sm bg-white">
|
||||
<div className="grid grid-cols-3 bg-neutral-50 border-b border-neutral-200">
|
||||
<div className="p-4 md:p-6"></div>
|
||||
<div className="p-4 md:p-6 text-center font-bold text-primary uppercase tracking-widest border-l border-neutral-200 text-xs md:text-sm">
|
||||
{leftLabel}
|
||||
</div>
|
||||
<div className="p-4 md:p-6 text-center font-bold text-primary uppercase tracking-widest border-l border-neutral-200 text-xs md:text-sm">
|
||||
{rightLabel}
|
||||
</div>
|
||||
</div>
|
||||
{items.map((item, index) => (
|
||||
<div key={index} className="grid grid-cols-3 border-b border-neutral-200 last:border-0 hover:bg-neutral-50 transition-colors group">
|
||||
<div className="p-4 md:p-6 font-bold text-text-primary flex items-center text-sm md:text-base">
|
||||
{item.label}
|
||||
</div>
|
||||
<div className="p-4 md:p-6 text-center text-text-secondary border-l border-neutral-200 flex items-center justify-center group-hover:text-text-primary transition-colors text-sm md:text-base">
|
||||
{item.leftValue}
|
||||
</div>
|
||||
<div className="p-4 md:p-6 text-center text-text-secondary border-l border-neutral-200 flex items-center justify-center group-hover:text-text-primary transition-colors text-sm md:text-base">
|
||||
{item.rightValue}
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
36
components/blog/StickyNarrative.tsx
Normal file
36
components/blog/StickyNarrative.tsx
Normal file
@@ -0,0 +1,36 @@
|
||||
import React from 'react';
|
||||
|
||||
interface StickyNarrativeItem {
|
||||
title: string;
|
||||
content: string;
|
||||
}
|
||||
|
||||
interface StickyNarrativeProps {
|
||||
title: string;
|
||||
items: StickyNarrativeItem[];
|
||||
}
|
||||
|
||||
export default function StickyNarrative({ title, items }: StickyNarrativeProps) {
|
||||
return (
|
||||
<div className="my-24 grid grid-cols-1 lg:grid-cols-12 gap-12 lg:gap-20 items-start not-prose">
|
||||
<div className="lg:col-span-4 lg:sticky lg:top-32">
|
||||
<h3 className="text-3xl md:text-4xl font-bold text-primary leading-tight">
|
||||
{title}
|
||||
</h3>
|
||||
<div className="w-16 h-1.5 bg-accent mt-8 rounded-full" />
|
||||
</div>
|
||||
<div className="lg:col-span-8 space-y-12 md:space-y-16">
|
||||
{items.map((item, index) => (
|
||||
<div key={index} className="group border-b border-neutral-200 pb-12 last:border-0 last:pb-0">
|
||||
<h4 className="text-xl md:text-2xl font-bold text-text-primary mb-4 group-hover:text-primary transition-colors">
|
||||
{item.title}
|
||||
</h4>
|
||||
<div className="text-lg text-text-secondary leading-relaxed">
|
||||
{item.content}
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
43
components/blog/TechnicalGrid.tsx
Normal file
43
components/blog/TechnicalGrid.tsx
Normal file
@@ -0,0 +1,43 @@
|
||||
import React from 'react';
|
||||
import Scribble from '@/components/Scribble';
|
||||
|
||||
interface TechnicalGridItem {
|
||||
label: string;
|
||||
value: string;
|
||||
}
|
||||
|
||||
interface TechnicalGridProps {
|
||||
title?: string;
|
||||
items: TechnicalGridItem[];
|
||||
}
|
||||
|
||||
export default function TechnicalGrid({ title, items }: TechnicalGridProps) {
|
||||
return (
|
||||
<div className="my-16 not-prose">
|
||||
{title && (
|
||||
<h3 className="text-2xl font-bold text-text-primary mb-8 flex items-center gap-4 relative">
|
||||
<span className="relative inline-block">
|
||||
{title}
|
||||
<Scribble
|
||||
variant="underline"
|
||||
className="absolute -bottom-2 left-0 w-full h-3 text-accent/40"
|
||||
/>
|
||||
</span>
|
||||
</h3>
|
||||
)}
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||||
{items.map((item, index) => (
|
||||
<div key={index} className="bg-white p-8 rounded-2xl border border-neutral-200 shadow-sm hover:shadow-md transition-all duration-300 group relative overflow-hidden">
|
||||
<div className="absolute top-0 right-0 w-16 h-16 bg-primary/5 -mr-8 -mt-8 rotate-45 transition-transform group-hover:scale-110" />
|
||||
<span className="block text-xs font-bold text-primary uppercase tracking-[0.2em] mb-3 opacity-70">
|
||||
{item.label}
|
||||
</span>
|
||||
<span className="text-lg text-text-secondary leading-relaxed group-hover:text-text-primary transition-colors">
|
||||
{item.value}
|
||||
</span>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -11,33 +11,16 @@ Die Vision ist klar: Ein Europa, das seinen Strom zu 100 % aus erneuerbaren Ener
|
||||
Am Ende geht es nicht nur um mehr Strom, sondern um kluge Netze, die ihn zuverlässig und verlustarm transportieren können.
|
||||
## **Das Problem: Alte Netze für eine neue Energiezukunft**
|
||||
Die heutige Strominfrastruktur wurde für zentrale Großkraftwerke gebaut. Doch erneuerbare Energien funktionieren anders: Sie sind dezentral, wetterabhängig und benötigen flexible Netze. Das führt zu einem massiven **Umbau-Bedarf**.
|
||||
### **Warum unser Netz aktuell überfordert ist:**
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Problem</th>
|
||||
<th>Ursache</th>
|
||||
<th>Lösung?</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Netzengpässe</td>
|
||||
<td>Alte Leitungen für zentrale Kraftwerke, nicht für dezentrale Energie</td>
|
||||
<td>Neue Hoch- & Mittelspannungskabel</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Abregelung von Solar- & Windstrom</td>
|
||||
<td>Netz kann nicht genug Strom aufnehmen</td>
|
||||
<td>Smart Grids & Speicherlösungen</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Lange Transportwege</td>
|
||||
<td>Erzeugung oft weit entfernt vom Verbrauch</td>
|
||||
<td>Hochleistungskabel & lokale Netze</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<StickyNarrative
|
||||
title="Herausforderungen im Stromnetz"
|
||||
items={[
|
||||
{ title: "Netzengpässe", content: "**Ursache:** Alte Leitungen für zentrale Kraftwerke, nicht für dezentrale Energie. **Lösung:** Neue Hoch- & Mittelspannungskabel." },
|
||||
{ title: "Abregelung von Solar- & Windstrom", content: "**Ursache:** Netz kann nicht genug Strom aufnehmen. **Lösung:** Smart Grids & Speicherlösungen." },
|
||||
{ title: "Lange Transportwege", content: "**Ursache:** Erzeugung oft weit entfernt vom Verbrauch. **Lösung:** Hochleistungskabel & lokale Netze." }
|
||||
]}
|
||||
/>
|
||||
|
||||
⚠️ Ein Netz aus der Vergangenheit kann keine Zukunftsenergie transportieren!
|
||||
Wer heute nur in erneuerbare Energieanlagen investiert, aber die Kabelinfrastruktur ignoriert, wird morgen teuren ungenutzten Strom haben.
|
||||
## **Welche Kabel brauchen wir für die Energiewende?**
|
||||
@@ -51,39 +34,19 @@ Nicht jedes Kabel ist gleich – und nicht jedes Kabel ist für die Herausforder
|
||||
💡 Je besser das Kabel, desto weniger Strom geht unterwegs verloren – und desto grüner wird die Energie!
|
||||
## Solar- und Windparks allein reichen nicht
|
||||
Ohne passende Kabel bleibt der Strom dort, wo er erzeugt wird. Doch welcher Netzausbau macht wirklich Sinn?
|
||||
### Erdkabel vs. Freileitungen – Was ist die bessere Wahl?
|
||||
Ein zentrales Thema beim Netzausbau ist die Frage, ob neue Stromtrassen als Freileitungen oder als Erdkabel verlegt werden sollen. Beide Varianten haben ihre Vor- und Nachteile, doch langfristig bietet die Erdverkabelung deutliche Vorteile in Sachen Zuverlässigkeit, Umweltschutz und Netzstabilität.
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Kriterium</th>
|
||||
<th>Erdkabel</th>
|
||||
<th>Freileitung</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Netzstabilität</td>
|
||||
<td>Sehr hoch</td>
|
||||
<td>Mittel</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Umweltverträglichkeit</td>
|
||||
<td>Unauffällig, keine Eingriffe ins Landschaftsbild</td>
|
||||
<td>Sichtbar, problematisch für Vögel</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Wartung & Lebensdauer</td>
|
||||
<td>Kaum Wartung, langlebig</td>
|
||||
<td>Witterungsanfällig, kürzere Lebensdauer</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Kosten</td>
|
||||
<td>Höher in der Installation, aber effizienter im Betrieb</td>
|
||||
<td>Günstiger zu errichten, aber höhere Folgekosten</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<ComparisonGrid
|
||||
title="Erdkabel vs. Freileitungen – Was ist die bessere Wahl?"
|
||||
leftLabel="Erdkabel"
|
||||
rightLabel="Freileitung"
|
||||
items={[
|
||||
{ label: "Netzstabilität", leftValue: "Sehr hoch", rightValue: "Mittel" },
|
||||
{ label: "Umweltverträglichkeit", leftValue: "Unauffällig, keine Eingriffe ins Landschaftsbild", rightValue: "Sichtbar, problematisch für Vögel" },
|
||||
{ label: "Wartung & Lebensdauer", leftValue: "Kaum Wartung, langlebig", rightValue: "Witterungsanfällig, kürzere Lebensdauer" },
|
||||
{ label: "Kosten", leftValue: "Höher in der Installation, aber effizienter im Betrieb", rightValue: "Günstiger zu errichten, aber höhere Folgekosten" }
|
||||
]}
|
||||
/>
|
||||
|
||||
Während Freileitungen in der Vergangenheit aufgrund der geringeren Baukosten bevorzugt wurden, sprechen moderne Anforderungen an Netzstabilität, Umweltschutz und Ästhetik zunehmend für Erdkabel. In vielen Ländern setzt sich daher die Erdverkabelung als Standard für neue Hoch- und Mittelspannungstrassen durch.
|
||||
Wer sich detaillierter mit diesem Thema befassen möchte, findet hier eine umfassende Analyse der Unterschiede zwischen Erdkabeln und Freileitungen. [https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel](https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel)
|
||||
<VisualLinkPreview
|
||||
|
||||
@@ -17,33 +17,17 @@ Moderne Onshore-Windparks bestehen nicht nur aus Turbinen, sondern aus einem kom
|
||||
Was viele unterschätzen: Die Kabelstrecken in einem Windpark machen oft einen erheblichen Teil der Gesamtinvestition aus. Sie sind nicht nur Verbindungsglied – sie sind die **kritische Infrastruktur**, auf der alles aufbaut.
|
||||
## Ganzheitliche Planung: Grundlage für nachhaltige Infrastruktur
|
||||
Die Integration von Windparks in das Stromnetz erfordert eine systemische Herangehensweise. Eine fundierte Planung berücksichtigt dabei nicht nur die Leistungsanforderungen, sondern auch Umgebungsbedingungen, Ausbauszenarien und Genehmigungsprozesse.
|
||||
**Zu den zentralen Planungsaspekten zählen:**
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Bereich</th>
|
||||
<th>Planungsschwerpunkt</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Trassenführung</td>
|
||||
<td>Geologie, Eigentumsverhältnisse, Schutzgebiete</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Netzanschluss</td>
|
||||
<td>Spannungsebene, Einspeisepunkte, Redundanz</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Lastprofil</td>
|
||||
<td>Bemessung für Dauer- und Spitzenlasten</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Skalierbarkeit</td>
|
||||
<td>Erweiterungspotenziale für zukünftige Anlagen</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<StickyNarrative
|
||||
title="Zentrale Planungsaspekte"
|
||||
items={[
|
||||
{ title: "Trassenführung", content: "Geologie, Eigentumsverhältnisse, Schutzgebiete" },
|
||||
{ title: "Netzanschluss", content: "Spannungsebene, Einspeisepunkte, Redundanz" },
|
||||
{ title: "Lastprofil", content: "Bemessung für Dauer- und Spitzenlasten" },
|
||||
{ title: "Skalierbarkeit", content: "Erweiterungspotenziale für zukünftige Anlagen" }
|
||||
]}
|
||||
/>
|
||||
|
||||
Professionelle Planung schafft nicht nur Versorgungssicherheit, sondern senkt langfristig die Betriebskosten und ermöglicht eine flexible Reaktion auf Netzanforderungen.
|
||||
Hier finden Sie weitere Informationen, wie Windenergie grundlegend funktioniert:
|
||||
|
||||
|
||||
@@ -9,62 +9,32 @@ category: Kabel Technologie
|
||||
### **Wachstum braucht Struktur**
|
||||
**Wachstum klingt gut –** mehr Projekte, mehr Kunden, mehr Umsatz.<br />Aber echtes, nachhaltiges Wachstum braucht mehr als nur Tempo: Es braucht **Transparenz, Planung und Kontrolle**.
|
||||
Damit aus ehrgeizigen Zielen kein Blindflug wird, haben wir entschieden, uns gezielt zu verstärken. Denn je größer die Projekte werden, desto wichtiger wird die Fähigkeit, Entwicklungen frühzeitig zu erkennen und gezielt zu steuern.
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>**Warum wir unser Controlling ausbauen**</th>
|
||||
<th>**Was wir damit erreichen wollen**</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Mehr Projekte im In- und Ausland</td>
|
||||
<td>Klare Zahlen und belastbare Prognosen</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Steigende Anforderungen im Vertrieb</td>
|
||||
<td>Bessere Übersicht über Trends und Margen</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Komplexere Prozesse</td>
|
||||
<td>Schnellere, fundierte Entscheidungen</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Nachhaltiges Wachstum</td>
|
||||
<td>Stabilität statt Zufall</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<TechnicalGrid
|
||||
title="Warum wir unser Controlling ausbauen"
|
||||
items={[
|
||||
{ label: "Mehr Projekte im In- und Ausland", value: "Klare Zahlen und belastbare Prognosen" },
|
||||
{ label: "Steigende Anforderungen im Vertrieb", value: "Bessere Übersicht über Trends und Margen" },
|
||||
{ label: "Komplexere Prozesse", value: "Schnellere, fundierte Entscheidungen" },
|
||||
{ label: "Nachhaltiges Wachstum", value: "Stabilität statt Zufall" }
|
||||
]}
|
||||
/>
|
||||
|
||||
**Kurz gesagt:** Wir wollen nicht einfach nur wachsen – wir wollen verstehen, <em>wie</em> wir wachsen.<br />Deshalb setzen wir künftig noch stärker auf **qualitatives Controlling** und freuen uns über Unterstützung, die genau das möglich macht.
|
||||
### **Neue Stärke im Team**
|
||||
Mit [**Julia Havasi**](https://www.linkedin.com/in/julia-havasi-18556b233/) haben wir genau die Verstärkung gefunden, die wir gesucht haben: analytisch stark, strukturiert im Denken und mit einem guten Gespür für die Dynamik zwischen Zahlen und Menschen.
|
||||
Als **Senior Financial & Sales Controller** übernimmt Julia künftig die Verantwortung für unser Finanz- und Vertriebscontrolling. Ihr Ziel: **mehr Klarheit, mehr Weitblick, mehr Substanz** in jeder Entscheidung.
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>**Aufgabenbereich**</th>
|
||||
<th>**Ziel**</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>**Finanzcontrolling**</td>
|
||||
<td>Saubere Zahlen, klare Strukturen und nachvollziehbare Reports</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Sales Controlling**</td>
|
||||
<td>Vertriebszahlen analysieren, Potenziale erkennen, Trends ableiten</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Prognosen & Analysen**</td>
|
||||
<td>Frühzeitige Einschätzung von Marktbewegungen und Investitionschancen</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Reporting & Kommunikation**</td>
|
||||
<td>Komplexe Daten so aufbereiten, dass sie jeder versteht – schnell und präzise</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<TechnicalGrid
|
||||
title="Aufgabenbereiche & Ziele"
|
||||
items={[
|
||||
{ label: "Finanzcontrolling", value: "Saubere Zahlen, klare Strukturen und nachvollziehbare Reports" },
|
||||
{ label: "Sales Controlling", value: "Vertriebszahlen analysieren, Potenziale erkennen, Trends ableiten" },
|
||||
{ label: "Prognosen & Analysen", value: "Frühzeitige Einschätzung von Marktbewegungen und Investitionschancen" },
|
||||
{ label: "Reporting & Kommunikation", value: "Komplexe Daten so aufbereiten, dass sie jeder versteht – schnell und präzise" }
|
||||
]}
|
||||
/>
|
||||
|
||||
Julia wird damit eine zentrale Rolle in der weiteren Entwicklung von KLZ spielen – als Schnittstelle zwischen **Management, Vertrieb und Strategie**.<br />Oder, um es etwas lockerer zu sagen: Sie sorgt dafür, dass wir nicht nur wissen, **wo wir stehen**, sondern auch **wohin wir gehen**.
|
||||
### **Erfahrung, die verbindet**
|
||||
**Zahlenverständnis trifft Praxiserfahrung.**<br />Mit über 13 Jahren Erfahrung im Controlling und Vertrieb bringt [**Julia Havasi**](https://www.linkedin.com/in/julia-havasi-18556b233/) das ideale Zusammenspiel aus analytischer Präzision und unternehmerischem Denken mit.
|
||||
|
||||
@@ -9,48 +9,21 @@ category: Kabel Technologie
|
||||
Gerade bei Kabeln wie **NA2XS(F)2Y** oder **NAYY **für** Windkraftanlagen** entscheidet die Materialwahl über Kosten, Leistung und Lebensdauer. Kupfer überzeugt durch eine hohe elektrische Leitfähigkeit, während Aluminium mit niedrigen Kosten und geringem Gewicht punktet. Doch welches Material ist **technisch **und** wirtschaftlich** langfristig die bessere Wahl? Dieser Artikel liefert eine detaillierte Analyse der Vor- und Nachteile beider Optionen.
|
||||
## Elektrische und mechanische Eigenschaften im Vergleich
|
||||
Kupfer ist seit Jahrzehnten das bevorzugte Material für elektrische Leitungen. Es besitzt eine hohe Leitfähigkeit und eine ausgezeichnete mechanische Stabilität. Aluminium hingegen ist deutlich leichter, hat aber eine geringere elektrische Leitfähigkeit. Das bedeutet, dass Aluminiumkabel für die gleiche Stromübertragung einen größeren Querschnitt benötigen.
|
||||
### Vergleich der Eigenschaften
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Eigenschaft</th>
|
||||
<th>Kupfer</th>
|
||||
<th>Aluminium</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>**Elektrische Leitfähigkeit**</td>
|
||||
<td>58 MS/m</td>
|
||||
<td>35 MS/m</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Dichte (g/cm³)**</td>
|
||||
<td>8,96</td>
|
||||
<td>2,70</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Korrosionsbeständigkeit**</td>
|
||||
<td>Sehr hoch</td>
|
||||
<td>Mittel (Oxidbildung)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Mechanische Festigkeit**</td>
|
||||
<td>Hoch</td>
|
||||
<td>Mittel</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Gewicht**</td>
|
||||
<td>Hoch</td>
|
||||
<td>Gering</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Preis pro Tonne**</td>
|
||||
<td>8.000 – 9.000 €</td>
|
||||
<td>2.300 – 2.500 €</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<ComparisonGrid
|
||||
title="Vergleich der Eigenschaften"
|
||||
leftLabel="Kupfer"
|
||||
rightLabel="Aluminium"
|
||||
items={[
|
||||
{ label: "Elektrische Leitfähigkeit", leftValue: "58 MS/m", rightValue: "35 MS/m" },
|
||||
{ label: "Dichte (g/cm³)", leftValue: "8,96", rightValue: "2,70" },
|
||||
{ label: "Korrosionsbeständigkeit", leftValue: "Sehr hoch", rightValue: "Mittel (Oxidbildung)" },
|
||||
{ label: "Mechanische Festigkeit", leftValue: "Hoch", rightValue: "Mittel" },
|
||||
{ label: "Gewicht", leftValue: "Hoch", rightValue: "Gering" },
|
||||
{ label: "Preis pro Tonne", leftValue: "8.000 – 9.000 €", rightValue: "2.300 – 2.500 €" }
|
||||
]}
|
||||
/>
|
||||
|
||||
Aluminium kann zwar durch seine Gewichtsersparnis bei Transport und Installation Vorteile bieten, benötigt aber größere Querschnitte, um die gleiche Leistung zu übertragen. Dies kann sich auf die Platzanforderungen in Kabeltrassen und die mechanische Stabilität auswirken. Zudem neigt Aluminium stärker zur Oxidation, was zu Kontaktproblemen führen kann, während Kupfer seine Leitfähigkeit über lange Zeiträume ohne große Qualitätseinbußen behält. Besonders in feuchten oder salzhaltigen Umgebungen, wie Offshore-Windparks, kann dies ein entscheidender Faktor sein.
|
||||
## Kosten: Anschaffung, Installation und Betrieb
|
||||
### Materialkosten
|
||||
@@ -106,53 +79,22 @@ Sowohl Kupfer als auch Aluminium sind vollständig recycelbar, allerdings gibt e
|
||||
### Langfristige Nachhaltigkeit in Windparks
|
||||
Aluminium bietet klare Vorteile in der Herstellung und im Recycling, während Kupfer aufgrund seiner Langlebigkeit und geringen Wartungsanforderungen langfristig nachhaltiger sein kann. Für Windparks bedeutet dies, dass die Wahl des richtigen Materials auch eine ökologische Entscheidung ist.
|
||||
Fazit: Aluminium punktet durch seinen geringeren CO₂-Fußabdruck in der Herstellung und seine hervorragende Recyclingfähigkeit, während Kupfer durch seine Langlebigkeit weniger häufig ersetzt werden muss und dadurch ebenfalls zur Nachhaltigkeit beiträgt.
|
||||
## Welche Lösung ist die beste für Windparks?
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Faktor</th>
|
||||
<th>Kupfer</th>
|
||||
<th>Aluminium</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>**Effizienz**</td>
|
||||
<td>Besser</td>
|
||||
<td>Höhere Verluste</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Kosten (Material & Anschaffung)**</td>
|
||||
<td>Teurer</td>
|
||||
<td>Günstiger</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Installationsaufwand**</td>
|
||||
<td>Schwerer, aufwendiger</td>
|
||||
<td>Leichter, einfacher</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Betriebskosten (Verluste & Wartung)**</td>
|
||||
<td>Geringer</td>
|
||||
<td>Höher</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Korrosionsbeständigkeit**</td>
|
||||
<td>Sehr gut</td>
|
||||
<td>Mittel</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Lebensdauer**</td>
|
||||
<td>Länger</td>
|
||||
<td>Kürzer</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Umweltfreundlichkeit**</td>
|
||||
<td>Hoher Energieaufwand</td>
|
||||
<td>Besser mit Recycling</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<ComparisonGrid
|
||||
title="Welche Lösung ist die beste für Windparks?"
|
||||
leftLabel="Kupfer"
|
||||
rightLabel="Aluminium"
|
||||
items={[
|
||||
{ label: "Effizienz", leftValue: "Besser", rightValue: "Höhere Verluste" },
|
||||
{ label: "Kosten (Material & Anschaffung)", leftValue: "Teurer", rightValue: "Günstiger" },
|
||||
{ label: "Installationsaufwand", leftValue: "Schwerer, aufwendiger", rightValue: "Leichter, einfacher" },
|
||||
{ label: "Betriebskosten (Verluste & Wartung)", leftValue: "Geringer", rightValue: "Höher" },
|
||||
{ label: "Korrosionsbeständigkeit", leftValue: "Sehr gut", rightValue: "Mittel" },
|
||||
{ label: "Lebensdauer", leftValue: "Länger", rightValue: "Kürzer" },
|
||||
{ label: "Umweltfreundlichkeit", leftValue: "Hoher Energieaufwand", rightValue: "Besser mit Recycling" }
|
||||
]}
|
||||
/>
|
||||
|
||||
### Empfohlene Anwendung je nach Einsatzzweck
|
||||
- Aluminium eignet sich für lange **Mittelspannungs-Trassen**, wo Gewicht und Kosten entscheidend sind.
|
||||
- Kupfer ist ideal für **Netzübergänge, Umspannwerke **und** kritische Bereiche**, wo Effizienz und Langlebigkeit im Fokus stehen.
|
||||
|
||||
@@ -20,37 +20,18 @@ Projekte im Bereich von 10 bis 30 kV bringen wiederkehrende Anforderungen mit
|
||||
Die Realität auf der Baustelle zeigt: Ein Kabel, das nicht flexibel genug ist, zu hohe Biegeradien hat oder thermisch schnell an seine Grenzen kommt, verzögert nicht nur die Umsetzung – es gefährdet auch die Betriebssicherheit.
|
||||
<h4>Was das NA2XS(F)2Y für moderne Energieinfrastruktur interessant macht</h4>
|
||||
Das [**NA2XS(F)2Y**](/de/products/medium-voltage-cables/na2xsf2y/) begegnet diesen Anforderungen mit einer durchdachten, praxisbewährten Konstruktion. Es ist ausgelegt für den **langfristigen Einsatz unter Last** und zeigt seine Stärken besonders in industriellen und energietechnischen Netzen.
|
||||
**Wichtige Merkmale im Überblick:**
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Merkmal</th>
|
||||
<th>Vorteil für Ihr Projekt</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>**Aluminiumleiter**</td>
|
||||
<td>Hohe Leitfähigkeit, geringe Übertragungsverluste</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**XLPE-Isolierung**</td>
|
||||
<td>Hohe thermische Belastbarkeit, langlebig und stabil</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**EMV-optimiertes Design**</td>
|
||||
<td>Störungsfreier Betrieb in sensiblen Netzumgebungen</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Normgerechter Aufbau (IEC)**</td>
|
||||
<td>Sicherheit bei Ausschreibung, Prüfung und Betrieb</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Robuste Außenkonstruktion**</td>
|
||||
<td>Geeignet für alle gängigen Verlegeverfahren</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<TechnicalGrid
|
||||
title="Wichtige Merkmale im Überblick"
|
||||
items={[
|
||||
{ label: "Aluminiumleiter", value: "Hohe Leitfähigkeit, geringe Übertragungsverluste" },
|
||||
{ label: "XLPE-Isolierung", value: "Hohe thermische Belastbarkeit, langlebig und stabil" },
|
||||
{ label: "EMV-optimiertes Design", value: "Störungsfreier Betrieb in sensiblen Netzumgebungen" },
|
||||
{ label: "Normgerechter Aufbau (IEC)", value: "Sicherheit bei Ausschreibung, Prüfung und Betrieb" },
|
||||
{ label: "Robuste Außenkonstruktion", value: "Geeignet für alle gängigen Verlegeverfahren" }
|
||||
]}
|
||||
/>
|
||||
|
||||
Das bedeutet: Mit dem [NA2XS(F)2Y](/de/products/medium-voltage-cables/na2xsf2y/) lassen sich Netze realisieren, die nicht nur auf dem Papier funktionieren, sondern auch im praktischen Betrieb – dauerhaft, wartungsarm und sicher.
|
||||
Warum der Netzausbau wichtig ist, erfahren Sie hier:
|
||||
<VisualLinkPreview
|
||||
|
||||
@@ -13,33 +13,16 @@ Ohne ein durchdachtes Recyclingkonzept würden enorme Mengen an Holz, Stahl und
|
||||
##
|
||||
### Materialien und ihre Wiederverwertung
|
||||
Kabeltrommeln bestehen aus unterschiedlichen Materialien, die jeweils verschiedene Recyclingmöglichkeiten bieten. Eine gezielte Rückführung hängt davon ab, ob das Material wiederverwertet oder weiterverarbeitet werden kann.
|
||||
<h4>Hauptmaterialien von Kabeltrommeln und ihre Recyclingoptionen</h4>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>**Material**</th>
|
||||
<th>**Eigenschaften**</th>
|
||||
<th>**Recyclingmöglichkeiten**</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>**Holz**</td>
|
||||
<td>Biologisch abbaubar, leicht zu reparieren</td>
|
||||
<td>Upcycling, Biomasse, Palettenbau</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Stahl**</td>
|
||||
<td>Stabil, wiederverwendbar, korrosionsbeständig</td>
|
||||
<td>Einschmelzen, Wiederverwertung</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Kunststoff**</td>
|
||||
<td>Witterungsbeständig, leicht, langlebig</td>
|
||||
<td>Granulat-Herstellung, Upcycling</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<StickyNarrative
|
||||
title="Materialien und ihre Wiederverwertung"
|
||||
items={[
|
||||
{ title: "Holz", content: "**Eigenschaften:** Biologisch abbaubar, leicht zu reparieren. **Recycling:** Upcycling, Biomasse, Palettenbau." },
|
||||
{ title: "Stahl", content: "**Eigenschaften:** Stabil, wiederverwendbar, korrosionsbeständig. **Recycling:** Einschmelzen, Wiederverwertung." },
|
||||
{ title: "Kunststoff", content: "**Eigenschaften:** Witterungsbeständig, leicht, langlebig. **Recycling:** Granulat-Herstellung, Upcycling." }
|
||||
]}
|
||||
/>
|
||||
|
||||
Je nach Zustand der Trommeln können sie direkt wiederverwendet, repariert oder in ihre Einzelbestandteile zerlegt werden. Besonders Holz kann vielseitig genutzt werden, während Stahl und Kunststoff wertvolle Rohstoffe für neue Produkte liefern.
|
||||
Um Rohstoffverluste zu vermeiden, ist es entscheidend, beschädigte Kabeltrommeln nicht als Abfall zu betrachten, sondern als wertvolle Ressource.
|
||||
### Der Recyclingprozess: Von der Rücknahme zur Wiederverwertung
|
||||
|
||||
@@ -10,33 +10,16 @@ Eine sichere und nachhaltige Energiezukunft ist nur mit neuen Technologien, smar
|
||||
Doch wie sieht die Energieversorgung der Zukunft aus? Welche Rolle spielen Solarenergie, Windkraft und Kabelinfrastruktur? In diesem Artikel werfen wir einen Blick auf die wichtigsten Entwicklungen – von intelligenter Netzsteuerung bis hin zu nachhaltigen Kabelsystemen.
|
||||
## Solarenergie: Die Revolution auf unseren Dächern und Feldern
|
||||
Solarenergie hat sich längst von einer Nischenlösung zur tragenden Säule der Energiewende entwickelt. Neue Technologien machen Photovoltaik effizienter, flexibler und wirtschaftlicher – und das nicht nur auf Hausdächern, sondern auch auf Ackerflächen, in Fassaden und schwimmend auf Seen.
|
||||
### Die wichtigsten Innovationen in der Photovoltaik
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Technologie</th>
|
||||
<th>Beschreibung</th>
|
||||
<th>Vorteil</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>**Tandem-Solarzellen**</td>
|
||||
<td>Kombination aus Silizium und Perowskit für höhere Effizienz</td>
|
||||
<td>Bis zu 30 % mehr Leistung</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Agri-PV**</td>
|
||||
<td>Solarmodule über landwirtschaftlichen Flächen</td>
|
||||
<td>Doppelte Flächennutzung für Energie und Ernte</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Bifaziale Module**</td>
|
||||
<td>Nutzen Licht von beiden Seiten</td>
|
||||
<td>10–20 % mehr Ertrag durch Reflexion</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<StickyNarrative
|
||||
title="Innovationen in der Photovoltaik"
|
||||
items={[
|
||||
{ title: "Tandem-Solarzellen", content: "**Beschreibung:** Kombination aus Silizium und Perowskit für höhere Effizienz. **Vorteil:** Bis zu 30 % mehr Leistung." },
|
||||
{ title: "Agri-PV", content: "**Beschreibung:** Solarmodule über landwirtschaftlichen Flächen. **Vorteil:** Doppelte Flächennutzung für Energie und Ernte." },
|
||||
{ title: "Bifaziale Module", content: "**Beschreibung:** Nutzen Licht von beiden Seiten. **Vorteil:** 10–20 % mehr Ertrag durch Reflexion." }
|
||||
]}
|
||||
/>
|
||||
|
||||
Doch die größte Herausforderung bleibt die Netzintegration: Solarenergie wird vor allem tagsüber produziert – doch unser Strombedarf ist morgens und abends am höchsten. Die Lösung? Smarte Speichertechnologien und intelligente Netzsteuerung, die Sonnenstrom genau dann verfügbar macht, wenn er gebraucht wird.
|
||||
## Windkraft: Höher, stärker, effizienter
|
||||
Windkraft ist neben der Solarenergie der wichtigste Pfeiler der erneuerbaren Energien. Während Offshore-Windparks auf dem Meer gigantische Mengen Strom liefern, sind Onshore-Windkraftanlagen nach wie vor das Rückgrat der nachhaltigen Energieversorgung.
|
||||
|
||||
@@ -17,29 +17,15 @@ Netzanschlusskabel für Windparks sind nicht einfach nur dickere Versionen von S
|
||||
- **Teilentladungen**, die über Jahre hinweg die Isolierung schädigen können
|
||||
- Elektromagnetische Einflüsse, die **Schirmung und Erdung** der Kabel erforderlich machen
|
||||
|
||||
### Thermische Belastungen
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Belastungsfaktor</th>
|
||||
<th>Auswirkung auf das Kabel</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>**Temperaturwechsel**</td>
|
||||
<td>Materialausdehnung, Risse in der Isolation</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Dauerbelastung durch hohe Ströme**</td>
|
||||
<td>Erwärmung der Kabeladern</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Wärmeableitung**</td>
|
||||
<td>Entscheidend für die zulässige Strombelastbarkeit</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<TechnicalGrid
|
||||
title="Thermische Belastungen"
|
||||
items={[
|
||||
{ label: "Temperaturwechsel", value: "Materialausdehnung, Risse in der Isolation" },
|
||||
{ label: "Dauerbelastung", value: "Erwärmung der Kabeladern durch hohe Ströme" },
|
||||
{ label: "Wärmeableitung", value: "Entscheidend für die zulässige Strombelastbarkeit" }
|
||||
]}
|
||||
/>
|
||||
|
||||
### Umwelteinflüsse
|
||||
🌧 **Feuchtigkeit & Wasser** – Eindringen von Wasser kann die Isolation zerstören<br />🔥 **UV-Strahlung & extreme Temperaturen** – Gerade bei oberirdischer Verlegung relevant<br />🌍 **Chemische Einwirkungen & Bodenbewegungen** – Besonders bei Erdkabeln ein kritischer Faktor
|
||||
## Material und Konstruktion – Was macht ein gutes Netzanschlusskabel aus?
|
||||
|
||||
@@ -37,37 +37,18 @@ Niederspannung ist der Einstiegspunkt jeder elektrischen Infrastruktur. Kabel di
|
||||
In der Windkraftinfrastruktur wird das **NAYY** häufig für Beleuchtung, Kontrollsysteme oder die interne Stromverteilung in Betriebsgebäuden genutzt. Es ist robust, wartungsarm und bewährt sich seit Jahrzehnten in der Praxis.
|
||||
## Mittelspannungskabel – Die Arbeitstiere im Windpark
|
||||
Mittelspannungskabel sind das Rückgrat eines jeden Windparks. Sie decken den Spannungsbereich von **1 kV bis 45 kV** ab und sind essenziell für die Energieverteilung zwischen Windenergieanlagen und den Sammelpunkten. Diese Kabel sind enorm belastbar, müssen hohen Temperaturen, Spannungsfeldern und mechanischen Einflüssen standhalten.
|
||||
### Aufbau (am Beispiel NA2XS(F)2Y):
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Komponente</th>
|
||||
<th>Funktion</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Leiter</td>
|
||||
<td>Stromübertragung (Kupfer oder Aluminium)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Innenleiterschicht</td>
|
||||
<td>Feldsteuerung, Spannungsoptimierung</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Isolierung (XLPE)</td>
|
||||
<td>Hohe elektrische Festigkeit, temperaturbeständig</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Schirmung</td>
|
||||
<td>Schutz vor Störungen, Erdung</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Außenmantel</td>
|
||||
<td>Mechanischer Schutz, UV- und wasserresistent</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<TechnicalGrid
|
||||
title="Aufbau (am Beispiel NA2XS(F)2Y)"
|
||||
items={[
|
||||
{ label: "Leiter", value: "Stromübertragung (Kupfer oder Aluminium)" },
|
||||
{ label: "Innenleiterschicht", value: "Feldsteuerung, Spannungsoptimierung" },
|
||||
{ label: "Isolierung (XLPE)", value: "Hohe elektrische Festigkeit, temperaturbeständig" },
|
||||
{ label: "Schirmung", value: "Schutz vor Störungen, Erdung" },
|
||||
{ label: "Außenmantel", value: "Mechanischer Schutz, UV- und wasserresistent" }
|
||||
]}
|
||||
/>
|
||||
|
||||
**Typische Kabeltypen:**
|
||||
- NA2XS(F)2Y (Aluminiumleiter, mit Feldsteuerung)
|
||||
- N2XSY (Kupferleiter, besonders leitfähig)
|
||||
|
||||
@@ -26,33 +26,17 @@ Typische Ursachen für Verzögerungen:
|
||||
- fehlende Abstimmung zwischen Lieferanten, Tiefbau und Montage
|
||||
|
||||
Gerade bei **Windparkprojekten** mit mehreren Kilometern des [**NA2XS(F)2Y**](/de/products/medium-voltage-cables/na2xsf2y/) ist eine exakte **Lieferkoordination** entscheidend. Teil- und Komplettlieferungen müssen so geplant sein, dass sie sich an den tatsächlichen **Baufortschritt** anpassen.
|
||||
**Effiziente Logistiklösungen können hier den Unterschied machen:**
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Herausforderung</th>
|
||||
<th>Lösung</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Unterschiedliche Baufortschritte pro Turbine</td>
|
||||
<td>Teil- und Abschnittslieferungen passend zum Bauplan</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Eng getaktete Montagefenster</td>
|
||||
<td>Just-in-Time-Kabellieferung auf Baustelle</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Fehlende Lagerflächen vor Ort</td>
|
||||
<td>Temporäre, projektbezogene Zwischenlagerung</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Witterungsabhängige Arbeiten</td>
|
||||
<td>Flexible Umlenkung von Lieferterminen und Materialzuteilung</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<TechnicalGrid
|
||||
title="Effiziente Logistiklösungen"
|
||||
items={[
|
||||
{ label: "Unterschiedliche Baufortschritte pro Turbine", value: "Teil- und Abschnittslieferungen passend zum Bauplan" },
|
||||
{ label: "Eng getaktete Montagefenster", value: "Just-in-Time-Kabellieferung auf Baustelle" },
|
||||
{ label: "Fehlende Lagerflächen vor Ort", value: "Temporäre, projektbezogene Zwischenlagerung" },
|
||||
{ label: "Witterungsabhängige Arbeiten", value: "Flexible Umlenkung von Lieferterminen und Materialzuteilung" }
|
||||
]}
|
||||
/>
|
||||
|
||||
Mit einer präzisen Planung der [**Kabelkapazitäten**](https://www.a-eberle.de/infobrief/infobrief-20/) und einer reaktionsfähigen Logistik lässt sich auch unter hohem Zeitdruck effizient arbeiten. So bleibt der **Netzanschluss des Windparks** termingerecht – und der Energiefluss gesichert.
|
||||
Sie möchten wissen, welche Kabelarten in einem Windpark verlegt werden? Dann schauen Sie sich diesen Artikel an:
|
||||
|
||||
@@ -62,32 +46,17 @@ Sie möchten wissen, welche Kabelarten in einem Windpark verlegt werden? Dann sc
|
||||
summary="Die Verkabelung ist ein zentrales Element jeder Windkraftanlage und beeinflusst maßgeblich die Effizienz, Sicherheit und Wirtschaftlichkeit eines Windparks.…"
|
||||
image="https://wind-turbine.com/i/53689/68738caa5e58ffdf06031cf2/2/1200/630/68738c85497af_KabelfreinenWindparkpng.png"
|
||||
/>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Herausforderung</th>
|
||||
<th>Praxisgerechte Lösung</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Hohe Liefermengen auf engem Baustellenareal</td>
|
||||
<td>Projektbezogene Lagerung in regionalen Hubs</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Unterschiedliche Trommelgrößen für Mittelspannung und Niederspannung</td>
|
||||
<td>Abstimmung der Trommelabmessungen auf Zugkraft und Trommelgewicht</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Empfindliche Kabelmäntel bei Lagerung im Freien</td>
|
||||
<td>Witterungsbeständige Spezialverpackung und UV-Schutz</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Fehlende Übersicht bei vielen Kabellieferungen</td>
|
||||
<td>Digitale Lieferübersichten und klare Trommelkennzeichnung</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<TechnicalGrid
|
||||
title="Herausforderungen in der Praxis"
|
||||
items={[
|
||||
{ label: "Hohe Liefermengen auf engem Baustellenareal", value: "Projektbezogene Lagerung in regionalen Hubs" },
|
||||
{ label: "Unterschiedliche Trommelgrößen", value: "Abstimmung der Trommelabmessungen auf Zugkraft und Trommelgewicht" },
|
||||
{ label: "Empfindliche Kabelmäntel", value: "Witterungsbeständige Spezialverpackung und UV-Schutz" },
|
||||
{ label: "Fehlende Übersicht", value: "Digitale Lieferübersichten und klare Trommelkennzeichnung" }
|
||||
]}
|
||||
/>
|
||||
|
||||
Eine klare [**Kabellogistikstrategie**](https://logistik-heute.de/galerien/mammutprojekt-kabellogistik-wie-kommen-tausende-tonnen-hgue-erdkabel-fuer-die-energiewende-zum-einsatzort-40875.html) ist der Schlüssel, um Materialengpässe und teure Stillstände zu vermeiden. So bleibt der Überblick gewahrt – selbst bei Projekten mit mehreren dutzend Kilometern **Windparkverkabelung**.
|
||||
Wer die **Verpackung, Lagerung und Kennzeichnung** frühzeitig in die Planung integriert, stellt sicher, dass die **Windpark Kabel** genau dort ankommen, wo sie gebraucht werden – ohne Zeitverlust und ohne Risiko für die Bauabfolge.
|
||||
## Herausforderung 3: Kurzfristige Projektänderungen
|
||||
|
||||
@@ -35,48 +35,21 @@ Während Standardleitungen bei extremen Temperaturen, mechanischen Belastungen o
|
||||
Kurz gesagt: Das H1Z2Z2-K 6mm² ist keine Lösung von der Stange – es ist ein spezialisiertes Energiekabel für eine Branche, die keine Kompromisse kennt.
|
||||
## Technische Daten und Aufbau im Detail
|
||||
Eine der Stärken dieses Kabels liegt in seinem Materialaufbau und der daraus resultierenden thermischen und mechanischen Belastbarkeit.
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>**Eigenschaft**</th>
|
||||
<th>**Wert / Beschreibung**</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Leiter</td>
|
||||
<td>Feindrähtiger, verzinnter Kupferleiter (Klasse 5)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Nennspannung</td>
|
||||
<td>1500 V DC (EN 50618 konform)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Prüfspannung</td>
|
||||
<td>6.5 kV</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Temperaturbereich Betrieb</td>
|
||||
<td>-40 °C bis +90 °C (Leiter max. +120 °C)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Isolierung und Mantel</td>
|
||||
<td>Vernetztes Polyolefin, halogenfrei</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Außendurchmesser (6mm²)</td>
|
||||
<td>ca. 6,4 mm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Biegeradius</td>
|
||||
<td>min. 4 × Kabeldurchmesser</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Max. Strombelastbarkeit (frei verlegt)</td>
|
||||
<td>bis 70 A (je nach Umgebungstemperatur)</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<TechnicalGrid
|
||||
title="Technische Daten & Aufbau"
|
||||
items={[
|
||||
{ label: "Leiter", value: "Feindrähtiger, verzinnter Kupferleiter (Klasse 5)" },
|
||||
{ label: "Nennspannung", value: "1500 V DC (EN 50618 konform)" },
|
||||
{ label: "Prüfspannung", value: "6.5 kV" },
|
||||
{ label: "Temperaturbereich Betrieb", value: "-40 °C bis +90 °C (Leiter max. +120 °C)" },
|
||||
{ label: "Isolierung und Mantel", value: "Vernetztes Polyolefin, halogenfrei" },
|
||||
{ label: "Außendurchmesser (6mm²)", value: "ca. 6,4 mm" },
|
||||
{ label: "Biegeradius", value: "min. 4 × Kabeldurchmesser" },
|
||||
{ label: "Max. Strombelastbarkeit", value: "bis 70 A (je nach Umgebungstemperatur)" }
|
||||
]}
|
||||
/>
|
||||
|
||||
## Normen und Zertifizierungen: EN 50618 & Co.
|
||||
Das H1Z2Z2-K 6mm² erfüllt alle wesentlichen Standards für den Einsatz in Photovoltaikanlagen. Diese Normen garantieren Sicherheit, Langlebigkeit und Konformität mit gesetzlichen Vorgaben.
|
||||
### EN 50618 – europäischer Standard für Solarkabel
|
||||
|
||||
@@ -11,33 +11,16 @@ The vision is clear: A Europe powered 100% by renewable energy. But while solar
|
||||
In the end, it’s not just about generating more power, but about smart grids that can transport it reliably and with minimal losses.
|
||||
## The problem: Old grids for a new energy future
|
||||
Today’s power infrastructure was built for centralized large-scale power plants. But renewable energy works differently: It is decentralized, weather-dependent, and requires flexible grids. This creates a massive need for restructuring.
|
||||
### Why our grid is currently overwhelmed:
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Problem</th>
|
||||
<th>Cause</th>
|
||||
<th>Solution?</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>**Grid bottlenecks**</td>
|
||||
<td>Old power lines designed for central plants, not decentralized energy</td>
|
||||
<td>New high- & medium-voltage cables</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Curtailment of solar & wind power**</td>
|
||||
<td>Grid cannot absorb enough electricity</td>
|
||||
<td>Smart grids & storage solutions</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Long transmission distances**</td>
|
||||
<td>Generation is often far from consumption</td>
|
||||
<td>High-performance cables & local grids</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<StickyNarrative
|
||||
title="Why our grid is currently overwhelmed"
|
||||
items={[
|
||||
{ title: "Grid bottlenecks", content: "**Cause:** Old power lines designed for central plants, not decentralized energy. **Solution:** New high- & medium-voltage cables." },
|
||||
{ title: "Curtailment of solar & wind power", content: "**Cause:** Grid cannot absorb enough electricity. **Solution:** Smart grids & storage solutions." },
|
||||
{ title: "Long transmission distances", content: "**Cause:** Generation is often far from consumption. **Solution:** High-performance cables & local grids." }
|
||||
]}
|
||||
/>
|
||||
|
||||
⚠️ A grid from the past cannot transport the energy of the future!
|
||||
Anyone investing only in renewable energy systems today while ignoring cable infrastructure will be left with expensive, unused electricity tomorrow.
|
||||
## Which cables do we need for the energy transition?
|
||||
@@ -48,39 +31,19 @@ Not all cables are created equal – and not every cable is suited for the chall
|
||||
💡 The better the cable, the less electricity is lost along the way – and the greener the energy becomes!
|
||||
## Solar and wind farms aren’t enough
|
||||
Without the right cables, electricity stays where it’s generated. But what kind of grid expansion really makes sense?
|
||||
### Underground cables vs. overhead lines – which is the better choice?
|
||||
A key question in grid expansion is whether new power lines should be built as overhead lines or underground cables. Both options have pros and cons, but in the long run, underground cabling offers significant advantages in terms of reliability, environmental protection, and grid stability.
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Criteria</th>
|
||||
<th>Underground Cable</th>
|
||||
<th>Overhead Line</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>**Grid stability**</td>
|
||||
<td>Very high</td>
|
||||
<td>Moderate</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Environmental impact**</td>
|
||||
<td>Unobtrusive, no disruption to landscapes</td>
|
||||
<td>Visible, problematic for birds</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Maintenance & lifespan**</td>
|
||||
<td>Minimal maintenance, long lifespan</td>
|
||||
<td>Weather-sensitive, shorter lifespan</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Costs**</td>
|
||||
<td>Higher installation costs, but more efficient operation</td>
|
||||
<td>Cheaper to build, but higher long-term costs</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<ComparisonGrid
|
||||
title="Underground cables vs. overhead lines – which is the better choice?"
|
||||
leftLabel="Underground Cable"
|
||||
rightLabel="Overhead Line"
|
||||
items={[
|
||||
{ label: "Grid stability", leftValue: "Very high", rightValue: "Moderate" },
|
||||
{ label: "Environmental impact", leftValue: "Unobtrusive, no disruption to landscapes", rightValue: "Visible, problematic for birds" },
|
||||
{ label: "Maintenance & lifespan", leftValue: "Minimal maintenance, long lifespan", rightValue: "Weather-sensitive, shorter lifespan" },
|
||||
{ label: "Costs", leftValue: "Higher installation costs, but more efficient operation", rightValue: "Cheaper to build, but higher long-term costs" }
|
||||
]}
|
||||
/>
|
||||
|
||||
In the past, overhead lines were favored due to lower construction costs. However, modern demands for grid stability, environmental protection, and aesthetics increasingly support underground cables. As a result, many countries are now adopting underground cabling as the standard for new high- and medium-voltage power lines.
|
||||
For those who want to dive deeper into the topic, here’s a **detailed analysis** comparing overhead lines and underground cables:
|
||||
<VisualLinkPreview
|
||||
|
||||
@@ -9,48 +9,21 @@ category: Kabel Technologie
|
||||
Particularly with cables such as **NA2XS(F)2Y** or **NAYY** for **wind turbines**, the choice of material determines costs, performance and service life. Copper impresses with its high electrical conductivity, while aluminum scores with low costs and low weight. But which material is technically and economically the better choice in the long term? This article provides a detailed analysis of the advantages and disadvantages of both options.
|
||||
### Electrical and Mechanical Properties Compared
|
||||
Copper has been the preferred material for electrical wiring for decades. It offers high conductivity and excellent mechanical stability. Aluminum, on the other hand, is significantly lighter but has lower electrical conductivity. This means aluminum cables require a larger cross-section to transmit the same current.
|
||||
<h4>Comparison of Properties</h4>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Property</th>
|
||||
<th>Copper</th>
|
||||
<th>Aluminum</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Electrical Conductivity</td>
|
||||
<td>58 MS/m</td>
|
||||
<td>35 MS/m</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Density (g/cm³)</td>
|
||||
<td>8.96</td>
|
||||
<td>2.70</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Corrosion Resistance</td>
|
||||
<td>Very high</td>
|
||||
<td>Medium (oxidation)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Mechanical Strength</td>
|
||||
<td>High</td>
|
||||
<td>Medium</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Weight</td>
|
||||
<td>High</td>
|
||||
<td>Low</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Price per ton</td>
|
||||
<td>€8,000 – 9,000</td>
|
||||
<td>€2,300 – 2,500</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<ComparisonGrid
|
||||
title="Comparison of Properties"
|
||||
leftLabel="Copper"
|
||||
rightLabel="Aluminum"
|
||||
items={[
|
||||
{ label: "Electrical Conductivity", leftValue: "58 MS/m", rightValue: "35 MS/m" },
|
||||
{ label: "Density (g/cm³)", leftValue: "8.96", rightValue: "2.70" },
|
||||
{ label: "Corrosion Resistance", leftValue: "Very high", rightValue: "Medium (oxidation)" },
|
||||
{ label: "Mechanical Strength", leftValue: "High", rightValue: "Medium" },
|
||||
{ label: "Weight", leftValue: "High", rightValue: "Low" },
|
||||
{ label: "Price per ton", leftValue: "€8,000 – 9,000", rightValue: "€2,300 – 2,500" }
|
||||
]}
|
||||
/>
|
||||
|
||||
Although aluminum offers weight savings in transport and installation, it requires larger cross-sections to achieve the same performance. This can impact space requirements in cable trays and mechanical stability. Additionally, aluminum is more prone to oxidation, which can lead to contact issues, whereas copper maintains its conductivity over long periods without significant quality loss. In humid or salty environments, such as offshore wind farms, this can be a crucial factor.
|
||||
### Costs: Acquisition, Installation, and Operation
|
||||
<h4>Material Costs</h4>
|
||||
@@ -110,54 +83,22 @@ Aluminum excels in **production efficiency and recycling**, while **copper’s d
|
||||
- **Copper** lasts longer, requires **fewer replacements**, and thus also contributes to sustainability.
|
||||
|
||||
Ultimately, the best choice depends on **whether short-term efficiency or long-term durability** is the priority.
|
||||
### Which Solution is Best for Wind Farms?
|
||||
<h4>Comparison of Key Factors</h4>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Factor</th>
|
||||
<th>Copper</th>
|
||||
<th>Aluminum</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>**Efficiency**</td>
|
||||
<td>Better</td>
|
||||
<td>Higher losses</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Cost (Material & Purchase)**</td>
|
||||
<td>More expensive</td>
|
||||
<td>Cheaper</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Installation Effort**</td>
|
||||
<td>Heavier, more complex</td>
|
||||
<td>Lighter, easier</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Operating Costs (Losses & Maintenance)**</td>
|
||||
<td>Lower</td>
|
||||
<td>Higher</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Corrosion Resistance**</td>
|
||||
<td>Very good</td>
|
||||
<td>Medium</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Lifespan**</td>
|
||||
<td>Longer</td>
|
||||
<td>Shorter</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Environmental Impact**</td>
|
||||
<td>High energy consumption</td>
|
||||
<td>Better with recycling</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<ComparisonGrid
|
||||
title="Which Solution is Best for Wind Farms?"
|
||||
leftLabel="Copper"
|
||||
rightLabel="Aluminum"
|
||||
items={[
|
||||
{ label: "Efficiency", leftValue: "Better", rightValue: "Higher losses" },
|
||||
{ label: "Cost (Material & Purchase)", leftValue: "More expensive", rightValue: "Cheaper" },
|
||||
{ label: "Installation Effort", leftValue: "Heavier, more complex", rightValue: "Lighter, easier" },
|
||||
{ label: "Operating Costs (Losses & Maintenance)", leftValue: "Lower", rightValue: "Higher" },
|
||||
{ label: "Corrosion Resistance", leftValue: "Very good", rightValue: "Medium" },
|
||||
{ label: "Lifespan", leftValue: "Longer", rightValue: "Shorter" },
|
||||
{ label: "Environmental Impact", leftValue: "High energy consumption", rightValue: "Better with recycling" }
|
||||
]}
|
||||
/>
|
||||
|
||||
### Recommended Applications
|
||||
- **Aluminum** is ideal for **long medium-voltage routes**, where weight and cost are crucial factors.
|
||||
- **Copper** is the better choice for **grid connections, substations, and critical areas**, where **efficiency and longevity** matter most.
|
||||
|
||||
@@ -56,34 +56,15 @@ Typical causes of delays:
|
||||
|
||||
Especially for **wind farm projects** involving several kilometers of [**NA2XS(F)2Y**](/en/products/medium-voltage-cables/na2xsf2y/), precise **delivery coordination** is essential. Partial and complete deliveries must be scheduled to match the actual **construction progress**.
|
||||
|
||||
**Efficient logistics solutions can make the difference:**
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Challenge</th>
|
||||
<th>Solution</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Different construction progress per turbine</td>
|
||||
<td>Partial and phased deliveries matched to the build schedule</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Tight installation windows</td>
|
||||
<td>Just-in-time cable delivery to site</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Limited storage space on site</td>
|
||||
<td>Temporary, project-specific intermediate storage</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Weather-dependent operations</td>
|
||||
<td>Flexible adjustment of delivery schedules and material allocation</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<TechnicalGrid
|
||||
title="Efficient Logistics Solutions"
|
||||
items={[
|
||||
{ label: "Different construction progress per turbine", value: "Partial and phased deliveries matched to the build schedule" },
|
||||
{ label: "Tight installation windows", value: "Just-in-time cable delivery to site" },
|
||||
{ label: "Limited storage space on site", value: "Temporary, project-specific intermediate storage" },
|
||||
{ label: "Weather-dependent operations", value: "Flexible adjustment of delivery schedules and material allocation" }
|
||||
]}
|
||||
/>
|
||||
|
||||
With precise [**cable capacity**](https://www.a-eberle.de/infobrief/infobrief-20/) planning and responsive logistics, even high-pressure timelines can be handled efficiently. This ensures the **wind farm’s grid connection** stays on schedule – and energy flows reliably.
|
||||
|
||||
@@ -114,34 +95,15 @@ The bigger the project, the more complex the **material coordination** becomes:
|
||||
|
||||
**Our experience shows:** Planning for storage and packaging units in advance not only saves time but also reduces the risk of material loss and reorders.
|
||||
|
||||
**Typical requirements and solutions:**
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Challenge</th>
|
||||
<th>Practical solution</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>High delivery volumes on tight site space</td>
|
||||
<td>Project-specific storage in regional hubs</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Different drum sizes for medium- and low-voltage</td>
|
||||
<td>Adjust drum dimensions to pulling force and weight</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Sensitive cable sheaths when stored outdoors</td>
|
||||
<td>Weatherproof packaging and UV protection</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Lack of overview with many cable deliveries</td>
|
||||
<td>Digital delivery summaries and clear drum labeling</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<TechnicalGrid
|
||||
title="Typical Requirements and Solutions"
|
||||
items={[
|
||||
{ label: "High delivery volumes on tight site space", value: "Project-specific storage in regional hubs" },
|
||||
{ label: "Different drum sizes", value: "Adjust drum dimensions to pulling force and weight" },
|
||||
{ label: "Sensitive cable sheaths", value: "Weatherproof packaging and UV protection" },
|
||||
{ label: "Lack of overview", value: "Digital delivery summaries and clear drum labeling" }
|
||||
]}
|
||||
/>
|
||||
|
||||
A clear [**cable logistics strategy**](https://logistik-heute.de/galerien/mammutprojekt-kabellogistik-wie-kommen-tausende-tonnen-hgue-erdkabel-fuer-die-energiewende-zum-einsatzort-40875.html) is the key to avoiding material shortages and costly downtime. This helps maintain control – even for projects involving dozens of kilometers of **wind farm cabling**.
|
||||
|
||||
|
||||
@@ -10,33 +10,16 @@ A secure and sustainable energy future is only possible with new technologies, s
|
||||
But what will the energy supply of the future look like? What role will solar energy, wind power and cable infrastructure play? In this article, we take a look at the most important developments – from intelligent grid control to sustainable cable systems.
|
||||
## Solar Energy: the revolution on our roofs and fields
|
||||
Solar energy has long evolved from a niche solution into a cornerstone of the energy transition. New technologies are making photovoltaics more efficient, flexible, and economical—not just on rooftops but also on farmland, building facades, and even floating on lakes.
|
||||
### The most important innovations in photovoltaics
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Technology</th>
|
||||
<th>Description</th>
|
||||
<th>Advantage</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Tandem solar cells</td>
|
||||
<td>Combination of silicon and perovskite for higher efficiency</td>
|
||||
<td>Up to 30% more power output</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Agri-PV</td>
|
||||
<td>Solar panels above agricultural land</td>
|
||||
<td>Dual land use for energy and crops</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Bifacial modules</td>
|
||||
<td>Capture light from both sides</td>
|
||||
<td>10–20% higher yield through reflection</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<StickyNarrative
|
||||
title="Innovations in Photovoltaics"
|
||||
items={[
|
||||
{ title: "Tandem solar cells", content: "**Description:** Combination of silicon and perovskite for higher efficiency. **Advantage:** Up to 30% more power output." },
|
||||
{ title: "Agri-PV", content: "**Description:** Solar panels above agricultural land. **Advantage:** Dual land use for energy and crops." },
|
||||
{ title: "Bifacial modules", content: "**Description:** Capture light from both sides. **Advantage:** 10–20% higher yield through reflection." }
|
||||
]}
|
||||
/>
|
||||
|
||||
However, the biggest challenge remains grid integration: Solar energy is primarily generated during the day, but our electricity demand peaks in the morning and evening. The solution? Smart storage technologies and intelligent grid management that make solar power available exactly when it’s needed.
|
||||
## Wind Power: higher, stronger, more efficient
|
||||
Wind power is, alongside solar energy, the most important pillar of renewable energy. While offshore wind farms at sea generate massive amounts of electricity, onshore wind turbines remain the backbone of sustainable energy supply.
|
||||
|
||||
@@ -17,33 +17,17 @@ Modern onshore wind farms consist not only of turbines, but of a complex network
|
||||
What many underestimate: The cable routes in a wind farm often make up a significant part of the total investment. They are not just a link – they are the **critical infrastructure** on which everything is built.
|
||||
## Holistic Planning: Foundation for Sustainable Infrastructure
|
||||
Integrating wind farms into the power grid requires a systemic approach. Sound planning takes into account not only performance requirements, but also environmental conditions, expansion scenarios and approval processes.
|
||||
**Key planning aspects include:**
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Area</th>
|
||||
<th>Planning Focus</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Route Guidance</td>
|
||||
<td>Geology, ownership, protected areas</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Grid Connection</td>
|
||||
<td>Voltage level, feed-in points, redundancy</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Load Profile</td>
|
||||
<td>Design for base and peak loads</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Scalability</td>
|
||||
<td>Expansion potential for future systems</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<StickyNarrative
|
||||
title="Key Planning Aspects"
|
||||
items={[
|
||||
{ title: "Route Guidance", content: "Geology, ownership, protected areas" },
|
||||
{ title: "Grid Connection", content: "Voltage level, feed-in points, redundancy" },
|
||||
{ title: "Load Profile", content: "Design for base and peak loads" },
|
||||
{ title: "Scalability", content: "Expansion potential for future systems" }
|
||||
]}
|
||||
/>
|
||||
|
||||
Professional planning not only ensures security of supply, but also reduces operating costs in the long term and enables flexible responses to grid requirements.
|
||||
You can find more information here on how wind energy basically works:
|
||||
|
||||
|
||||
@@ -9,62 +9,32 @@ category: Cable Technology
|
||||
### **Growth needs structure**
|
||||
**Growth sounds good –** more projects, more customers, more revenue.<br />But real, sustainable growth needs more than just speed: it needs **transparency, planning, and control**.
|
||||
To ensure that ambitious goals don't turn into a blind flight, we have decided to specifically strengthen our team. Because the larger the projects become, the more important the ability to recognize developments early and steer them specifically becomes.
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>**Why we are expanding our controlling**</th>
|
||||
<th>**What we want to achieve with it**</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>More projects at home and abroad</td>
|
||||
<td>Clear figures and reliable forecasts</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Increasing requirements in sales</td>
|
||||
<td>Better overview of trends and margins</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>More complex processes</td>
|
||||
<td>Faster, well-founded decisions</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Sustainable growth</td>
|
||||
<td>Stability instead of coincidence</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<TechnicalGrid
|
||||
title="Why we are expanding our controlling"
|
||||
items={[
|
||||
{ label: "More projects at home and abroad", value: "Clear figures and reliable forecasts" },
|
||||
{ label: "Increasing requirements in sales", value: "Better overview of trends and margins" },
|
||||
{ label: "More complex processes", value: "Faster, well-founded decisions" },
|
||||
{ label: "Sustainable growth", value: "Stability instead of coincidence" }
|
||||
]}
|
||||
/>
|
||||
|
||||
**In short:** We don't just want to grow – we want to understand <em>how</em> we grow.<br />That's why we will rely even more on **qualitative controlling** in the future and are happy about support that makes exactly that possible.
|
||||
### **New strength in the team**
|
||||
With [**Julia Havasi**](https://www.linkedin.com/in/julia-havasi-18556b233/) we have found exactly the reinforcement we were looking for: analytically strong, structured in thinking, and with a good sense for the dynamics between numbers and people.
|
||||
As **Senior Financial & Sales Controller**, Julia will be responsible for our financial and sales controlling in the future. Her goal: **more clarity, more foresight, more substance** in every decision.
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>**Area of responsibility**</th>
|
||||
<th>**Goal**</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>**Financial Controlling**</td>
|
||||
<td>Clean figures, clear structures, and comprehensible reports</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Sales Controlling**</td>
|
||||
<td>Analyze sales figures, identify potential, derive trends</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Forecasts & Analyses**</td>
|
||||
<td>Early assessment of market movements and investment opportunities</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Reporting & Communication**</td>
|
||||
<td>Prepare complex data so that everyone understands it – quickly and precisely</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<TechnicalGrid
|
||||
title="Areas of Responsibility & Goals"
|
||||
items={[
|
||||
{ label: "Financial Controlling", value: "Clean figures, clear structures, and comprehensible reports" },
|
||||
{ label: "Sales Controlling", value: "Analyze sales figures, identify potential, derive trends" },
|
||||
{ label: "Forecasts & Analyses", value: "Early assessment of market movements and investment opportunities" },
|
||||
{ label: "Reporting & Communication", value: "Prepare complex data so that everyone understands it – quickly and precisely" }
|
||||
]}
|
||||
/>
|
||||
|
||||
Julia will thus play a central role in the further development of KLZ – as an interface between **management, sales, and strategy**.<br />Or, to put it more casually: she ensures that we not only know **where we stand**, but also **where we are going**.
|
||||
### **Experience that connects**
|
||||
**Understanding of numbers meets practical experience.**<br />With over 13 years of experience in controlling and sales, [**Julia Havasi**](https://www.linkedin.com/in/julia-havasi-18556b233/) brings the ideal combination of analytical precision and entrepreneurial thinking.
|
||||
|
||||
@@ -11,33 +11,16 @@ Cable drums play a crucial role in the wind power industry—they ensure the saf
|
||||
Without a well-thought-out recycling concept, vast amounts of wood, steel, and plastic would go to waste. However, efficient solutions already exist to return cable drums to the raw material cycle and minimize environmental impact.
|
||||
### Materials and their reuse
|
||||
Cable drums are made from different materials, each offering unique recycling possibilities. The way they are reintegrated into the circular economy depends on whether the material can be directly reused or needs further processing.
|
||||
<h4>Main materials of cable drums and their recycling options</h4>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>**Material**</th>
|
||||
<th>**Properties**</th>
|
||||
<th>**Recycling options**</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>**Wood**</td>
|
||||
<td>Biodegradable, easy to repair</td>
|
||||
<td>Upcycling, biomass, pallet production</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Steel**</td>
|
||||
<td>Durable, reusable, corrosion-resistant</td>
|
||||
<td>Melting down, reprocessing</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Plastic**</td>
|
||||
<td>Weather-resistant, lightweight, long-lasting</td>
|
||||
<td>Granulate production, upcycling</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<StickyNarrative
|
||||
title="Materials and their Reuse"
|
||||
items={[
|
||||
{ title: "Wood", content: "**Properties:** Biodegradable, easy to repair. **Recycling:** Upcycling, biomass, pallet production." },
|
||||
{ title: "Steel", content: "**Properties:** Durable, reusable, corrosion-resistant. **Recycling:** Melting down, reprocessing." },
|
||||
{ title: "Plastic", content: "**Properties:** Weather-resistant, lightweight, long-lasting. **Recycling:** Granulate production, upcycling." }
|
||||
]}
|
||||
/>
|
||||
|
||||
Depending on their condition, cable drums can be directly reused, repaired, or dismantled into their individual components. Wood, in particular, offers versatile reuse possibilities, while steel and plastic serve as valuable raw materials for new products.
|
||||
To prevent raw material waste, it is essential to view damaged cable drums not as disposable waste but as a valuable resource.
|
||||
### The recycling process: from return to reuse
|
||||
|
||||
@@ -42,48 +42,21 @@ While standard cables quickly reach their limits under extreme temperatures, mec
|
||||
In short: the H1Z2Z2-K 6mm² is no off-the-shelf solution – it’s a specialized energy cable for an industry that doesn’t compromise.
|
||||
## Technical specifications and construction in detail
|
||||
One of the strengths of this cable lies in its material structure and the resulting thermal and mechanical durability.
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>**Property**</th>
|
||||
<th>**Value / Description**</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Conductor</td>
|
||||
<td>Fine-stranded, tinned copper conductor (Class 5)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Rated voltage</td>
|
||||
<td>1500 V DC (compliant with EN 50618)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Test voltage</td>
|
||||
<td>6.5 kV</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Operating temperature range</td>
|
||||
<td>-40 °C to +90 °C (conductor max. +120 °C)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Insulation and sheath</td>
|
||||
<td>Cross-linked polyolefin, halogen-free</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Outer diameter (6mm²)</td>
|
||||
<td>approx. 6.4 mm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Bending radius</td>
|
||||
<td>min. 4 × cable diameter</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Max. current capacity (free laid)</td>
|
||||
<td>up to 70 A (depending on ambient temperature)</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<TechnicalGrid
|
||||
title="Technical Specifications & Construction"
|
||||
items={[
|
||||
{ label: "Conductor", value: "Fine-stranded, tinned copper conductor (Class 5)" },
|
||||
{ label: "Rated voltage", value: "1500 V DC (compliant with EN 50618)" },
|
||||
{ label: "Test voltage", value: "6.5 kV" },
|
||||
{ label: "Operating temperature range", value: "-40 °C to +90 °C (conductor max. +120 °C)" },
|
||||
{ label: "Insulation and sheath", value: "Cross-linked polyolefin, halogen-free" },
|
||||
{ label: "Outer diameter (6mm²)", value: "approx. 6.4 mm" },
|
||||
{ label: "Bending radius", value: "min. 4 × cable diameter" },
|
||||
{ label: "Max. current capacity", value: "up to 70 A (depending on ambient temperature)" }
|
||||
]}
|
||||
/>
|
||||
|
||||
## Standards and certifications: EN 50618 & more
|
||||
The H1Z2Z2-K 6mm² meets all key standards for use in photovoltaic systems. These standards ensure safety, durability, and compliance with legal requirements.
|
||||
### EN 50618 – European standard for solar cables
|
||||
|
||||
@@ -20,37 +20,18 @@ Projects in the 10 to 30 kV range bring recurring demands – regardless of whet
|
||||
The reality on construction sites shows: a cable that lacks flexibility, has large bending radii, or reaches its thermal limits too quickly not only delays implementation – it also endangers operational safety.
|
||||
<h4>Why the NA2XS(F)2Y is ideal for modern energy infrastructure</h4>
|
||||
The [**NA2XS(F)2Y**](/en/products/medium-voltage-cables/na2xsf2y/) meets these requirements with a well-thought-out, field-proven design. It is built for **long-term operation under load** and shows its strengths particularly in industrial and energy networks.
|
||||
**Key features at a glance:**
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Feature</th>
|
||||
<th>Benefit for your project</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>**Aluminum conductor**</td>
|
||||
<td>High conductivity, low transmission losses</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**XLPE insulation**</td>
|
||||
<td>High thermal resistance, durable and stable</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**EMC-optimized design**</td>
|
||||
<td>Interference-free operation in sensitive network environments</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Standard-compliant design (IEC)**</td>
|
||||
<td>Safety in tenders, testing, and operation</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>**Robust outer construction**</td>
|
||||
<td>Suitable for all common installation methods</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<TechnicalGrid
|
||||
title="Key Features at a Glance"
|
||||
items={[
|
||||
{ label: "Aluminum conductor", value: "High conductivity, low transmission losses" },
|
||||
{ label: "XLPE insulation", value: "High thermal resistance, durable and stable" },
|
||||
{ label: "EMC-optimized design", value: "Interference-free operation in sensitive network environments" },
|
||||
{ label: "Standard-compliant design (IEC)", value: "Safety in tenders, testing, and operation" },
|
||||
{ label: "Robust outer construction", value: "Suitable for all common installation methods" }
|
||||
]}
|
||||
/>
|
||||
|
||||
In other words: with the [NA2XS(F)2Y](/en/products/medium-voltage-cables/na2xsf2y/), you can build networks that not only work on paper but also perform reliably in practice – long-term, low-maintenance, and safe.
|
||||
Learn more about why grid expansion is so important here:
|
||||
|
||||
|
||||
@@ -14,29 +14,16 @@ Grid connection cables for wind farms are not just thicker versions of standard
|
||||
✔ High tensile forces when pulling and laying the cables<br />✔ Bending radii that must be maintained to prevent insulation damage<br />✔ Vibrations from wind turbines that transfer through the foundations to the cables
|
||||
### **Electrical stress**
|
||||
High voltage spikes due to sudden feed-in fluctuations<br />Partial discharges that can damage insulation over the years<br />Electromagnetic influences requiring shielding and grounding of the cables
|
||||
### **Thermal loads**
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Load factor</th>
|
||||
<th>Impact on the cable</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Temperature fluctuations</td>
|
||||
<td>Material expansion, cracks in the insulation</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Continuous high current load</td>
|
||||
<td>Heating of the cable conductors</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Heat dissipation</td>
|
||||
<td>Crucial for permissible current capacity</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<TechnicalGrid
|
||||
title="Thermal Loads"
|
||||
items={[
|
||||
{ label: "Temperature fluctuations", value: "Material expansion, cracks in the insulation" },
|
||||
{ label: "Continuous high current load", value: "Heating of the cable conductors" },
|
||||
{ label: "Heat dissipation", value: "Crucial for permissible current capacity" }
|
||||
]}
|
||||
/>
|
||||
|
||||
### **Environmental influences**
|
||||
🌧 Moisture & water – Water ingress can destroy insulation<br />🔥 UV radiation & extreme temperatures – Particularly relevant for above-ground installation<br />🌍 Chemical exposure & ground movements – A critical factor, especially for underground cables
|
||||
## **Material and construction – What makes a good grid connection cable?**
|
||||
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user