wip
This commit is contained in:
@@ -156,92 +156,99 @@ export default async function BlogPost({ params: { locale, slug } }: BlogPostPro
|
||||
}
|
||||
|
||||
return (
|
||||
<article className="bg-gradient-to-b from-neutral-light/30 to-white min-h-screen">
|
||||
<article className="bg-white min-h-screen font-sans">
|
||||
{/* Featured Image Header */}
|
||||
{post.frontmatter.featuredImage && (
|
||||
<div className="relative w-full h-[300px] md:h-[500px] overflow-hidden">
|
||||
<img
|
||||
src={post.frontmatter.featuredImage}
|
||||
alt={post.frontmatter.title}
|
||||
className="w-full h-full object-cover"
|
||||
<div className="relative w-full h-[60vh] min-h-[400px] overflow-hidden group">
|
||||
<div
|
||||
className="absolute inset-0 bg-cover bg-center transition-transform duration-[2s] ease-out scale-105 group-hover:scale-100"
|
||||
style={{ backgroundImage: `url(${post.frontmatter.featuredImage})` }}
|
||||
/>
|
||||
<div className="absolute inset-0 bg-gradient-to-t from-black/70 via-black/30 to-transparent" />
|
||||
<div className="absolute inset-0 bg-gradient-to-t from-black/80 via-black/40 to-transparent" />
|
||||
|
||||
{/* Title overlay on image */}
|
||||
<div className="absolute bottom-0 left-0 right-0 p-8 md:p-12">
|
||||
<div className="container mx-auto max-w-4xl">
|
||||
<div className="absolute inset-0 flex flex-col justify-end p-8 md:p-16 lg:p-24">
|
||||
<div className="container mx-auto max-w-3xl">
|
||||
{post.frontmatter.category && (
|
||||
<span className="inline-block px-4 py-2 bg-primary text-white text-sm font-medium rounded-full mb-4">
|
||||
<span className="inline-block px-4 py-1.5 bg-primary/90 backdrop-blur-sm text-white text-sm font-bold uppercase tracking-wider rounded-full mb-6 shadow-lg transform transition-transform hover:scale-105">
|
||||
{post.frontmatter.category}
|
||||
</span>
|
||||
)}
|
||||
<h1 className="text-3xl md:text-5xl lg:text-6xl font-bold text-white mb-4 leading-tight drop-shadow-lg">
|
||||
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white mb-6 leading-tight drop-shadow-xl">
|
||||
{post.frontmatter.title}
|
||||
</h1>
|
||||
<time dateTime={post.frontmatter.date} className="text-white/90 text-sm md:text-base">
|
||||
{new Date(post.frontmatter.date).toLocaleDateString(locale, {
|
||||
year: 'numeric',
|
||||
month: 'long',
|
||||
day: 'numeric'
|
||||
})}
|
||||
</time>
|
||||
<div className="flex items-center gap-4 text-white/90 text-sm md:text-base font-medium">
|
||||
<time dateTime={post.frontmatter.date}>
|
||||
{new Date(post.frontmatter.date).toLocaleDateString(locale, {
|
||||
year: 'numeric',
|
||||
month: 'long',
|
||||
day: 'numeric'
|
||||
})}
|
||||
</time>
|
||||
<span className="w-1.5 h-1.5 bg-primary rounded-full" />
|
||||
<span>KLZ Cables</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Content */}
|
||||
<div className="container mx-auto px-4 py-12 md:py-16 max-w-4xl">
|
||||
<div className="container mx-auto px-4 py-16 md:py-24 max-w-3xl">
|
||||
{/* If no featured image, show header here */}
|
||||
{!post.frontmatter.featuredImage && (
|
||||
<header className="mb-12">
|
||||
<header className="mb-16 text-center">
|
||||
{post.frontmatter.category && (
|
||||
<div className="mb-4">
|
||||
<span className="inline-block px-4 py-2 bg-primary text-white text-sm font-medium rounded-full">
|
||||
<div className="mb-6">
|
||||
<span className="inline-block px-4 py-1.5 bg-primary/10 text-primary text-sm font-bold uppercase tracking-wider rounded-full">
|
||||
{post.frontmatter.category}
|
||||
</span>
|
||||
</div>
|
||||
)}
|
||||
<h1 className="text-4xl md:text-5xl lg:text-6xl font-bold text-text-primary mb-6 leading-tight">
|
||||
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-text-primary mb-8 leading-tight">
|
||||
{post.frontmatter.title}
|
||||
</h1>
|
||||
<time dateTime={post.frontmatter.date} className="text-text-secondary">
|
||||
{new Date(post.frontmatter.date).toLocaleDateString(locale, {
|
||||
year: 'numeric',
|
||||
month: 'long',
|
||||
day: 'numeric'
|
||||
})}
|
||||
</time>
|
||||
<div className="flex items-center justify-center gap-4 text-text-secondary font-medium">
|
||||
<time dateTime={post.frontmatter.date}>
|
||||
{new Date(post.frontmatter.date).toLocaleDateString(locale, {
|
||||
year: 'numeric',
|
||||
month: 'long',
|
||||
day: 'numeric'
|
||||
})}
|
||||
</time>
|
||||
<span className="w-1.5 h-1.5 bg-primary rounded-full" />
|
||||
<span>KLZ Cables</span>
|
||||
</div>
|
||||
</header>
|
||||
)}
|
||||
|
||||
{/* Excerpt/Lead paragraph if available */}
|
||||
{post.frontmatter.excerpt && (
|
||||
<div className="mb-12 p-6 md:p-8 bg-white rounded-xl shadow-sm border-l-4 border-primary">
|
||||
<p className="text-xl md:text-2xl text-text-primary leading-relaxed font-light">
|
||||
<div className="mb-16">
|
||||
<p className="text-xl md:text-2xl text-text-primary leading-relaxed font-medium border-l-4 border-primary pl-6 py-2">
|
||||
{post.frontmatter.excerpt}
|
||||
</p>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Main content with enhanced styling */}
|
||||
<div className="bg-white rounded-xl shadow-sm p-6 md:p-10">
|
||||
<div className="prose prose-lg max-w-none">
|
||||
<MDXRemote source={post.content} components={components} />
|
||||
</div>
|
||||
<div className="prose prose-lg md:prose-xl max-w-none prose-headings:font-bold prose-headings:text-text-primary prose-p:text-text-secondary prose-p:leading-relaxed prose-a:text-primary prose-a:no-underline hover:prose-a:underline prose-img:rounded-xl prose-img:shadow-lg">
|
||||
<MDXRemote source={post.content} components={components} />
|
||||
</div>
|
||||
|
||||
{/* Power CTA */}
|
||||
<PowerCTA locale={locale} />
|
||||
<div className="mt-20">
|
||||
<PowerCTA locale={locale} />
|
||||
</div>
|
||||
|
||||
{/* Post Navigation */}
|
||||
<PostNavigation prev={prev} next={next} locale={locale} />
|
||||
|
||||
{/* Back to blog link */}
|
||||
<div className="mt-12 pt-8 border-t border-neutral-dark/20 text-center">
|
||||
<div className="mt-16 pt-10 border-t border-neutral-200 text-center">
|
||||
<Link
|
||||
href={`/${locale}/blog`}
|
||||
className="inline-flex items-center gap-2 text-primary hover:underline font-medium text-lg group"
|
||||
className="inline-flex items-center gap-2 text-text-secondary hover:text-primary font-medium text-lg transition-colors group"
|
||||
>
|
||||
<svg className="w-5 h-5 transition-transform group-hover:-translate-x-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M15 19l-7-7 7-7" />
|
||||
|
||||
@@ -9,8 +9,6 @@ interface BlogIndexProps {
|
||||
}
|
||||
|
||||
export async function generateMetadata({ params: { locale } }: BlogIndexProps) {
|
||||
const t = await getTranslations({ locale, namespace: 'blog' });
|
||||
|
||||
return {
|
||||
title: locale === 'de' ? 'Neuigkeiten zu Kabeln und Energielösungen' : 'News on Cables and Energy Solutions',
|
||||
description: locale === 'de'
|
||||
@@ -21,84 +19,126 @@ export async function generateMetadata({ params: { locale } }: BlogIndexProps) {
|
||||
|
||||
export default async function BlogIndex({ params: { locale } }: BlogIndexProps) {
|
||||
const posts = await getAllPosts(locale);
|
||||
const t = await getTranslations({ locale, namespace: 'blog' });
|
||||
|
||||
// Sort posts by date descending
|
||||
const sortedPosts = [...posts].sort((a, b) =>
|
||||
new Date(b.frontmatter.date).getTime() - new Date(a.frontmatter.date).getTime()
|
||||
);
|
||||
|
||||
// Get unique categories
|
||||
const categories = Array.from(new Set(posts.map(post => post.frontmatter.category).filter(Boolean)));
|
||||
const featuredPost = sortedPosts[0];
|
||||
const remainingPosts = sortedPosts.slice(1);
|
||||
|
||||
return (
|
||||
<div className="container mx-auto px-4 py-12">
|
||||
<div className="text-center mb-12">
|
||||
<h1 className="text-4xl md:text-5xl font-bold text-primary mb-4">
|
||||
{locale === 'de' ? 'Neuigkeiten zu Kabeln und Energielösungen' : 'News on Cables and Energy Solutions'}
|
||||
</h1>
|
||||
<p className="text-lg text-text-secondary max-w-3xl mx-auto">
|
||||
{locale === 'de'
|
||||
? 'Bleiben Sie auf dem Laufenden! Lesen Sie aktuelle Themen und Insights zu Kabeltechnologie, Energielösungen und branchenspezifischen Innovationen.'
|
||||
: 'Stay up to date! Read current topics and insights on cable technology, energy solutions and industry-specific innovations.'}
|
||||
</p>
|
||||
<div className="bg-neutral-50 min-h-screen">
|
||||
{/* Hero Section */}
|
||||
<div className="bg-primary text-white py-20">
|
||||
<div className="container mx-auto px-4">
|
||||
<div className="max-w-3xl">
|
||||
<h1 className="text-5xl md:text-6xl font-extrabold mb-6 leading-tight">
|
||||
{locale === 'de' ? 'KLZ Blog' : 'KLZ Blog'}
|
||||
</h1>
|
||||
<p className="text-xl text-white/80 leading-relaxed">
|
||||
{locale === 'de'
|
||||
? 'Insights, News und technisches Know-how aus der Welt der Kabelinfrastruktur und erneuerbaren Energien.'
|
||||
: 'Insights, news and technical know-how from the world of cable infrastructure and renewable energies.'}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Category filter - could be made interactive with client component */}
|
||||
{categories.length > 0 && (
|
||||
<div className="mb-8 flex flex-wrap gap-2 justify-center">
|
||||
{categories.map((category) => (
|
||||
<span
|
||||
key={category}
|
||||
className="px-4 py-2 bg-neutral-light text-text-primary rounded-full text-sm font-medium"
|
||||
>
|
||||
{category}
|
||||
</span>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Masonry-style grid */}
|
||||
<div className="columns-1 md:columns-2 gap-8 space-y-8">
|
||||
{posts.map((post) => (
|
||||
<Link
|
||||
key={post.slug}
|
||||
href={`/${locale}/blog/${post.slug}`}
|
||||
className="group block break-inside-avoid mb-8"
|
||||
>
|
||||
<article className="bg-white rounded-lg shadow-sm overflow-hidden border border-neutral-dark transition-all hover:shadow-md hover:-translate-y-1">
|
||||
{post.frontmatter.featuredImage && (
|
||||
<div className="relative overflow-hidden">
|
||||
<div className="container mx-auto px-4 -mt-10 pb-20">
|
||||
{/* Featured Post */}
|
||||
{featuredPost && (
|
||||
<Link href={`/${locale}/blog/${featuredPost.slug}`} className="group block mb-16">
|
||||
<article className="bg-white rounded-2xl shadow-xl overflow-hidden flex flex-col lg:flex-row transition-all hover:shadow-2xl">
|
||||
{featuredPost.frontmatter.featuredImage && (
|
||||
<div className="lg:w-1/2 relative h-64 lg:h-auto overflow-hidden">
|
||||
<img
|
||||
src={post.frontmatter.featuredImage}
|
||||
alt={post.frontmatter.title}
|
||||
className="w-full h-auto object-cover transition-transform group-hover:scale-105"
|
||||
src={featuredPost.frontmatter.featuredImage}
|
||||
alt={featuredPost.frontmatter.title}
|
||||
className="absolute inset-0 w-full h-full object-cover transition-transform duration-700 group-hover:scale-105"
|
||||
/>
|
||||
{post.frontmatter.category && (
|
||||
<span className="absolute top-4 left-4 px-3 py-1 bg-primary text-white text-xs font-medium rounded-full">
|
||||
{post.frontmatter.category}
|
||||
</span>
|
||||
)}
|
||||
<div className="absolute inset-0 bg-gradient-to-r from-black/20 to-transparent" />
|
||||
</div>
|
||||
)}
|
||||
<div className="p-6">
|
||||
<div className="text-sm text-text-secondary mb-2">
|
||||
{new Date(post.frontmatter.date).toLocaleDateString(locale, {
|
||||
year: 'numeric',
|
||||
month: 'long',
|
||||
day: 'numeric'
|
||||
})}
|
||||
</div>
|
||||
<h2 className="text-xl font-bold text-text-primary mb-3 group-hover:text-primary transition-colors line-clamp-2">
|
||||
{post.frontmatter.title}
|
||||
</h2>
|
||||
{post.frontmatter.excerpt && (
|
||||
<p className="text-text-secondary line-clamp-3 mb-4">
|
||||
{post.frontmatter.excerpt}
|
||||
</p>
|
||||
<div className="lg:w-1/2 p-8 lg:p-12 flex flex-col justify-center">
|
||||
{featuredPost.frontmatter.category && (
|
||||
<span className="inline-block px-3 py-1 bg-primary/10 text-primary text-xs font-bold uppercase tracking-widest rounded-full mb-6">
|
||||
{featuredPost.frontmatter.category}
|
||||
</span>
|
||||
)}
|
||||
<span className="text-primary font-medium group-hover:underline inline-flex items-center">
|
||||
{locale === 'de' ? 'Weiterlesen' : 'Read more'} →
|
||||
</span>
|
||||
<h2 className="text-3xl md:text-4xl font-bold text-text-primary mb-6 group-hover:text-primary transition-colors">
|
||||
{featuredPost.frontmatter.title}
|
||||
</h2>
|
||||
<p className="text-lg text-text-secondary mb-8 line-clamp-3">
|
||||
{featuredPost.frontmatter.excerpt}
|
||||
</p>
|
||||
<div className="flex items-center gap-4 mt-auto">
|
||||
<div className="w-10 h-10 rounded-full bg-primary/10 flex items-center justify-center text-primary font-bold">
|
||||
KLZ
|
||||
</div>
|
||||
<div>
|
||||
<div className="text-sm font-bold text-text-primary">KLZ Cables</div>
|
||||
<div className="text-xs text-text-secondary">
|
||||
{new Date(featuredPost.frontmatter.date).toLocaleDateString(locale, {
|
||||
year: 'numeric',
|
||||
month: 'long',
|
||||
day: 'numeric'
|
||||
})}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</Link>
|
||||
))}
|
||||
)}
|
||||
|
||||
{/* Grid for remaining posts */}
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-10">
|
||||
{remainingPosts.map((post) => (
|
||||
<Link key={post.slug} href={`/${locale}/blog/${post.slug}`} className="group block">
|
||||
<article className="bg-white rounded-xl shadow-sm overflow-hidden border border-neutral-200 h-full flex flex-col transition-all hover:shadow-lg hover:-translate-y-1">
|
||||
{post.frontmatter.featuredImage && (
|
||||
<div className="relative h-56 overflow-hidden">
|
||||
<img
|
||||
src={post.frontmatter.featuredImage}
|
||||
alt={post.frontmatter.title}
|
||||
className="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
|
||||
/>
|
||||
{post.frontmatter.category && (
|
||||
<span className="absolute top-4 left-4 px-3 py-1 bg-white/90 backdrop-blur-sm text-primary text-[10px] font-bold uppercase tracking-wider rounded-md shadow-sm">
|
||||
{post.frontmatter.category}
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
<div className="p-6 flex flex-col flex-1">
|
||||
<div className="text-xs text-text-secondary mb-3">
|
||||
{new Date(post.frontmatter.date).toLocaleDateString(locale, {
|
||||
year: 'numeric',
|
||||
month: 'long',
|
||||
day: 'numeric'
|
||||
})}
|
||||
</div>
|
||||
<h3 className="text-xl font-bold text-text-primary mb-4 group-hover:text-primary transition-colors line-clamp-2">
|
||||
{post.frontmatter.title}
|
||||
</h3>
|
||||
<p className="text-text-secondary text-sm line-clamp-3 mb-6">
|
||||
{post.frontmatter.excerpt}
|
||||
</p>
|
||||
<div className="mt-auto pt-4 border-t border-neutral-100 flex items-center justify-between">
|
||||
<span className="text-primary text-sm font-bold group-hover:underline">
|
||||
{locale === 'de' ? 'Weiterlesen' : 'Read more'}
|
||||
</span>
|
||||
<svg className="w-5 h-5 text-primary transition-transform group-hover:translate-x-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M17 8l4 4m0 0l-4 4m4-4H3" />
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</Link>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
@@ -18,7 +18,7 @@ export default async function LocaleLayout({
|
||||
return (
|
||||
<html lang={locale}>
|
||||
<body className="flex flex-col min-h-screen">
|
||||
<NextIntlClientProvider messages={messages}>
|
||||
<NextIntlClientProvider messages={messages} locale={locale}>
|
||||
<Header />
|
||||
<main className="flex-grow">
|
||||
{children}
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
import { notFound } from 'next/navigation';
|
||||
import { MDXRemote } from 'next-mdx-remote/rsc';
|
||||
import { getProductBySlug } from '@/lib/mdx';
|
||||
import { getProductBySlug, getAllProducts } from '@/lib/mdx';
|
||||
import ProductTechnicalData from '@/components/ProductTechnicalData';
|
||||
import Image from 'next/image';
|
||||
import ProductTabs from '@/components/ProductTabs';
|
||||
import RequestQuoteForm from '@/components/RequestQuoteForm';
|
||||
import RelatedProducts from '@/components/RelatedProducts';
|
||||
import Link from 'next/link';
|
||||
|
||||
interface ProductPageProps {
|
||||
params: {
|
||||
@@ -13,12 +16,64 @@ interface ProductPageProps {
|
||||
|
||||
const components = {
|
||||
ProductTechnicalData,
|
||||
ProductTabs,
|
||||
p: (props: any) => <div {...props} className="mb-4" />,
|
||||
table: (props: any) => (
|
||||
<div className="overflow-x-auto my-8">
|
||||
<table {...props} className="min-w-full divide-y divide-neutral-dark border border-neutral-dark" />
|
||||
</div>
|
||||
),
|
||||
};
|
||||
|
||||
export default async function ProductPage({ params }: ProductPageProps) {
|
||||
const { locale, slug } = params;
|
||||
const productSlug = slug[slug.length - 1]; // Use the last segment as the slug
|
||||
const productSlug = slug[slug.length - 1];
|
||||
|
||||
// Check if it's a category page
|
||||
const categories = ['low-voltage-cables', 'medium-voltage-cables', 'high-voltage-cables', 'solar-cables'];
|
||||
if (categories.includes(productSlug)) {
|
||||
const allProducts = await getAllProducts(locale);
|
||||
const categoryTitle = productSlug.split('-').map(word => word.charAt(0).toUpperCase() + word.slice(1)).join(' ');
|
||||
|
||||
// Filter products for this category
|
||||
// Note: MDX categories are like "Low Voltage Cables"
|
||||
const filteredProducts = allProducts.filter(p =>
|
||||
p.frontmatter.categories.some(cat => cat.toLowerCase().replace(/\s+/g, '-') === productSlug)
|
||||
);
|
||||
|
||||
return (
|
||||
<div className="container mx-auto px-4 py-12">
|
||||
<h1 className="text-4xl font-bold text-primary mb-8">{categoryTitle}</h1>
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
||||
{filteredProducts.map((product) => (
|
||||
<Link
|
||||
key={product.slug}
|
||||
href={`/${locale}/products/${productSlug}/${product.slug}`}
|
||||
className="group block bg-white rounded-lg overflow-hidden shadow-sm hover:shadow-md transition-all border border-neutral-dark"
|
||||
>
|
||||
<div className="aspect-[4/3] relative bg-neutral-light">
|
||||
{product.frontmatter.images?.[0] && (
|
||||
<img
|
||||
src={product.frontmatter.images[0]}
|
||||
alt={product.frontmatter.title}
|
||||
className="w-full h-full object-contain p-4 group-hover:scale-105 transition-transform duration-300"
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
<div className="p-6">
|
||||
<h2 className="text-xl font-bold text-text-primary group-hover:text-primary transition-colors">
|
||||
{product.frontmatter.title}
|
||||
</h2>
|
||||
<p className="text-text-secondary mt-2 line-clamp-2 text-sm">
|
||||
{product.frontmatter.description}
|
||||
</p>
|
||||
</div>
|
||||
</Link>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
const product = await getProductBySlug(productSlug, locale);
|
||||
|
||||
@@ -41,42 +96,46 @@ export default async function ProductPage({ params }: ProductPageProps) {
|
||||
|
||||
<div className="grid grid-cols-1 lg:grid-cols-3 gap-8">
|
||||
<div className="lg:col-span-2">
|
||||
<div className="prose max-w-none mb-8">
|
||||
<MDXRemote source={product.content} components={components} />
|
||||
{/* Main Content Area */}
|
||||
<div className="bg-white p-6 rounded-lg shadow-sm border border-neutral-dark">
|
||||
<MDXRemote source={product.content} components={components} />
|
||||
</div>
|
||||
|
||||
{/* Related Products */}
|
||||
<RelatedProducts
|
||||
currentSlug={productSlug}
|
||||
categories={product.frontmatter.categories}
|
||||
locale={locale}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="lg:col-span-1">
|
||||
{product.frontmatter.images && product.frontmatter.images.length > 0 && (
|
||||
<div className="sticky top-4">
|
||||
<div className="sticky top-4 space-y-6">
|
||||
{/* Image Gallery */}
|
||||
{product.frontmatter.images && product.frontmatter.images.length > 0 && (
|
||||
<div className="bg-white p-4 rounded-lg shadow-sm border border-neutral-dark">
|
||||
<div className="relative aspect-square mb-4">
|
||||
{/* Note: Images from WC might be external URLs. Next/Image requires configuration for external domains. */}
|
||||
{/* For now using standard img tag if domain not configured, or configure domains. */}
|
||||
<div className="relative aspect-square mb-4 bg-neutral-light rounded overflow-hidden">
|
||||
<img
|
||||
src={product.frontmatter.images[0]}
|
||||
alt={product.frontmatter.title}
|
||||
className="w-full h-full object-contain"
|
||||
/>
|
||||
</div>
|
||||
<div className="grid grid-cols-4 gap-2">
|
||||
{product.frontmatter.images.slice(1, 5).map((img, idx) => (
|
||||
<div key={idx} className="relative aspect-square border border-neutral-dark rounded overflow-hidden">
|
||||
<img src={img} alt="" className="w-full h-full object-cover" />
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
{product.frontmatter.images.length > 1 && (
|
||||
<div className="grid grid-cols-4 gap-2">
|
||||
{product.frontmatter.images.slice(1, 5).map((img, idx) => (
|
||||
<div key={idx} className="relative aspect-square border border-neutral-dark rounded overflow-hidden bg-neutral-light">
|
||||
<img src={img} alt="" className="w-full h-full object-cover" />
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="mt-6 bg-primary-light p-6 rounded-lg">
|
||||
<h3 className="text-lg font-semibold text-primary-dark mb-2">Contact Us</h3>
|
||||
<p className="text-text-secondary mb-4">Need more information about {product.frontmatter.title}?</p>
|
||||
<button className="w-full bg-primary text-white py-2 px-4 rounded hover:bg-primary-dark transition-colors">
|
||||
Request Quote
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
)}
|
||||
|
||||
{/* Request Quote Form */}
|
||||
<RequestQuoteForm productName={product.frontmatter.title} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -3,7 +3,13 @@ import Image from 'next/image';
|
||||
import { useTranslations } from 'next-intl';
|
||||
import { Section, Container } from '@/components/ui';
|
||||
|
||||
export default function ProductsPage() {
|
||||
interface ProductsPageProps {
|
||||
params: {
|
||||
locale: string;
|
||||
};
|
||||
}
|
||||
|
||||
export default function ProductsPage({ params }: ProductsPageProps) {
|
||||
const t = useTranslations('Navigation');
|
||||
|
||||
const categories = [
|
||||
@@ -12,28 +18,28 @@ export default function ProductsPage() {
|
||||
desc: 'Powering everyday essentials with reliability and safety.',
|
||||
img: '/uploads/2024/12/low-voltage-scaled.webp',
|
||||
icon: '/uploads/2024/11/Low-Voltage.svg',
|
||||
href: '/products/low-voltage-cables'
|
||||
href: `/${params.locale}/products/low-voltage-cables`
|
||||
},
|
||||
{
|
||||
title: 'Medium Voltage Cables',
|
||||
desc: 'The perfect balance between power and performance for industrial and urban grids.',
|
||||
img: '/uploads/2024/12/medium-voltage-scaled.webp',
|
||||
icon: '/uploads/2024/11/Medium-Voltage.svg',
|
||||
href: '/products/medium-voltage-cables'
|
||||
href: `/${params.locale}/products/medium-voltage-cables`
|
||||
},
|
||||
{
|
||||
title: 'High Voltage Cables',
|
||||
desc: 'Delivering maximum power over long distances—without compromise.',
|
||||
img: '/uploads/2025/06/na2xsfl2y-rendered.webp',
|
||||
icon: '/uploads/2024/11/High-Voltage.svg',
|
||||
href: '/products/high-voltage-cables'
|
||||
href: `/${params.locale}/products/high-voltage-cables`
|
||||
},
|
||||
{
|
||||
title: 'Solar Cables',
|
||||
desc: 'Connecting the sun’s energy to your sustainable future.',
|
||||
img: '/uploads/2025/04/3.webp',
|
||||
icon: '/uploads/2024/11/Solar.svg',
|
||||
href: '/products/solar-cables'
|
||||
href: `/${params.locale}/products/solar-cables`
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
25
components/ProductTabs.tsx
Normal file
25
components/ProductTabs.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
import React from 'react';
|
||||
|
||||
interface ProductTabsProps {
|
||||
children: React.ReactNode;
|
||||
technicalData?: React.ReactNode;
|
||||
}
|
||||
|
||||
export default function ProductTabs({ children, technicalData }: ProductTabsProps) {
|
||||
return (
|
||||
<div className="space-y-12">
|
||||
<div className="prose max-w-none">
|
||||
{children}
|
||||
</div>
|
||||
|
||||
{technicalData && (
|
||||
<div className="pt-8 border-t border-neutral-dark">
|
||||
<h2 className="text-2xl font-bold text-primary-dark mb-6">Technical Specifications</h2>
|
||||
<div className="not-prose">
|
||||
{technicalData}
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -21,7 +21,8 @@ interface ProductTechnicalDataProps {
|
||||
}
|
||||
|
||||
export default function ProductTechnicalData({ data }: ProductTechnicalDataProps) {
|
||||
const { technicalItems, voltageTables } = data;
|
||||
if (!data) return null;
|
||||
const { technicalItems = [], voltageTables = [] } = data;
|
||||
|
||||
return (
|
||||
<div className="space-y-8">
|
||||
|
||||
63
components/RelatedProducts.tsx
Normal file
63
components/RelatedProducts.tsx
Normal file
@@ -0,0 +1,63 @@
|
||||
import Link from 'next/link';
|
||||
import { getAllProducts } from '@/lib/mdx';
|
||||
|
||||
interface RelatedProductsProps {
|
||||
currentSlug: string;
|
||||
categories: string[];
|
||||
locale: string;
|
||||
}
|
||||
|
||||
export default async function RelatedProducts({ currentSlug, categories, locale }: RelatedProductsProps) {
|
||||
const allProducts = await getAllProducts(locale);
|
||||
|
||||
// Filter products: same category, not current product
|
||||
const related = allProducts
|
||||
.filter(p =>
|
||||
p.slug !== currentSlug &&
|
||||
p.frontmatter.categories.some(cat => categories.includes(cat))
|
||||
)
|
||||
.slice(0, 4); // Limit to 4
|
||||
|
||||
if (related.length === 0) return null;
|
||||
|
||||
return (
|
||||
<div className="mt-16 pt-8 border-t border-neutral-dark">
|
||||
<h2 className="text-2xl font-bold text-primary-dark mb-6">Related Products</h2>
|
||||
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
|
||||
{related.map((product) => (
|
||||
<Link
|
||||
key={product.slug}
|
||||
href={`/${locale}/products/${product.slug}`}
|
||||
className="group block bg-white rounded-lg overflow-hidden shadow-sm hover:shadow-md transition-shadow border border-neutral-dark"
|
||||
>
|
||||
<div className="aspect-[4/3] relative bg-neutral-light">
|
||||
{product.frontmatter.images?.[0] ? (
|
||||
<img
|
||||
src={product.frontmatter.images[0]}
|
||||
alt={product.frontmatter.title}
|
||||
className="w-full h-full object-contain p-4 group-hover:scale-105 transition-transform duration-300"
|
||||
/>
|
||||
) : (
|
||||
<div className="w-full h-full flex items-center justify-center text-text-secondary">
|
||||
No Image
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
<div className="p-4">
|
||||
<h3 className="font-semibold text-lg text-text-primary group-hover:text-primary transition-colors">
|
||||
{product.frontmatter.title}
|
||||
</h3>
|
||||
<div className="mt-2 flex flex-wrap gap-1">
|
||||
{product.frontmatter.categories.slice(0, 1).map((cat, idx) => (
|
||||
<span key={idx} className="text-xs bg-neutral text-text-secondary px-2 py-1 rounded">
|
||||
{cat}
|
||||
</span>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</Link>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
101
components/RequestQuoteForm.tsx
Normal file
101
components/RequestQuoteForm.tsx
Normal file
@@ -0,0 +1,101 @@
|
||||
'use client';
|
||||
|
||||
import React, { useState } from 'react';
|
||||
|
||||
interface RequestQuoteFormProps {
|
||||
productName: string;
|
||||
}
|
||||
|
||||
export default function RequestQuoteForm({ productName }: RequestQuoteFormProps) {
|
||||
const [email, setEmail] = useState('');
|
||||
const [request, setRequest] = useState('');
|
||||
const [status, setStatus] = useState<'idle' | 'submitting' | 'success' | 'error'>('idle');
|
||||
|
||||
const handleSubmit = async (e: React.FormEvent) => {
|
||||
e.preventDefault();
|
||||
setStatus('submitting');
|
||||
|
||||
// Simulate API call
|
||||
await new Promise((resolve) => setTimeout(resolve, 1000));
|
||||
|
||||
// Here you would typically send the data to your backend
|
||||
console.log('Form submitted:', { productName, email, request });
|
||||
|
||||
setStatus('success');
|
||||
setEmail('');
|
||||
setRequest('');
|
||||
};
|
||||
|
||||
if (status === 'success') {
|
||||
return (
|
||||
<div className="bg-green-50 border border-green-200 text-green-800 p-6 rounded-lg">
|
||||
<h3 className="text-lg font-semibold mb-2">Request Sent!</h3>
|
||||
<p>Thank you for your interest in {productName}. We will get back to you shortly.</p>
|
||||
<button
|
||||
onClick={() => setStatus('idle')}
|
||||
className="mt-4 text-sm font-medium underline hover:text-green-900"
|
||||
>
|
||||
Send another request
|
||||
</button>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="bg-neutral-light p-6 rounded-lg border border-neutral-dark">
|
||||
<h3 className="text-xl font-semibold mb-4 text-primary-dark">Request Cable</h3>
|
||||
<form onSubmit={handleSubmit} className="space-y-4">
|
||||
<div>
|
||||
<label htmlFor="product" className="block text-sm font-medium text-text-secondary mb-1">
|
||||
Product
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
id="product"
|
||||
value={productName}
|
||||
disabled
|
||||
className="w-full px-3 py-2 bg-neutral border border-neutral-dark rounded text-text-secondary cursor-not-allowed"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label htmlFor="email" className="block text-sm font-medium text-text-primary mb-1">
|
||||
Email <span className="text-red-500">*</span>
|
||||
</label>
|
||||
<input
|
||||
type="email"
|
||||
id="email"
|
||||
required
|
||||
value={email}
|
||||
onChange={(e) => setEmail(e.target.value)}
|
||||
className="w-full px-3 py-2 bg-white border border-neutral-dark rounded focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent"
|
||||
placeholder="your@email.com"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label htmlFor="request" className="block text-sm font-medium text-text-primary mb-1">
|
||||
Request <span className="text-red-500">*</span>
|
||||
</label>
|
||||
<textarea
|
||||
id="request"
|
||||
required
|
||||
rows={4}
|
||||
value={request}
|
||||
onChange={(e) => setRequest(e.target.value)}
|
||||
className="w-full px-3 py-2 bg-white border border-neutral-dark rounded focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent"
|
||||
placeholder="Describe your request, e.g. the cross section etc."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<button
|
||||
type="submit"
|
||||
disabled={status === 'submitting'}
|
||||
className="w-full bg-primary text-white font-medium py-2 px-4 rounded hover:bg-primary-dark transition-colors disabled:opacity-50 disabled:cursor-not-allowed"
|
||||
>
|
||||
{status === 'submitting' ? 'Sending...' : 'Request Cable'}
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -12,36 +12,7 @@ images:
|
||||
- /uploads/2025/06/H1Z2Z2-K-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# H1Z2Z2-K
|
||||
|
||||
<section>
|
||||
<h3 data-start="460" data-end="518">Für dauerhafte Einsätze in anspruchsvollen Umgebungen</h3>
|
||||
<p data-start="520" data-end="953">Das <strong data-start="524" data-end="536">H1Z2Z2-K</strong> entspricht der <strong data-start="552" data-end="588">Norm DIN EN 50618 (VDE 0283-618)</strong> und ist speziell für die <strong data-start="614" data-end="654">Verkabelung von Photovoltaiksystemen</strong> konzipiert. Es kann <strong data-start="675" data-end="713">fest verlegt oder flexibel geführt</strong> werden – im Gebäude, im Freien, in Industrieanlagen, landwirtschaftlichen Betrieben oder sogar in <strong data-start="812" data-end="847">explosionsgefährdeten Bereichen</strong>. Die Leitung ist <strong data-start="865" data-end="905">UV-, ozon- und wasserbeständig (AD7)</strong> und darf <strong data-start="915" data-end="945">direkt in der Erde verlegt</strong> werden.</p>
|
||||
<h3 data-start="955" data-end="990">Aufbau und technische Merkmale</h3>
|
||||
<p data-start="992" data-end="1516">Der feindrähtige <strong data-start="1009" data-end="1045">verzinnt Kupferleiter (Klasse 5)</strong> ist doppelt geschützt durch eine <strong data-start="1079" data-end="1160">vernetzte Isolierung und einen vernetzten Außenmantel aus Polyolefincopolymer</strong> – halogenfrei, flammwidrig und mit hoher Abriebfestigkeit. Das Kabel ist für eine maximale Leitertemperatur von <strong data-start="1273" data-end="1283">120 °C</strong> ausgelegt und bleibt auch bei <strong data-start="1314" data-end="1339">-40 °C (fest verlegt)</strong> zuverlässig flexibel. Die <strong data-start="1366" data-end="1394">geringe Rauchentwicklung</strong> und hohe Beständigkeit gegenüber mechanischen und thermischen Einflüssen sorgen für einen sicheren, langjährigen Betrieb.</p>
|
||||
<h3 data-start="1518" data-end="1549">Eigenschaften im Überblick</h3>
|
||||
<ul data-start="1551" data-end="1815">
|
||||
<li data-start="1551" data-end="1604">
|
||||
<p data-start="1553" data-end="1604"><strong data-start="1553" data-end="1604">Halogenfrei, flammwidrig, UV- und ozonbeständig</strong></p>
|
||||
</li>
|
||||
<li data-start="1605" data-end="1666">
|
||||
<p data-start="1607" data-end="1666"><strong data-start="1607" data-end="1666">Kurzschluss- und erdschlusssicher gemäß VDE-AR-E 2283-4</strong></p>
|
||||
</li>
|
||||
<li data-start="1667" data-end="1744">
|
||||
<p data-start="1669" data-end="1744"><strong data-start="1669" data-end="1744">Zugelassen für Innenräume, Außenbereiche und explosionsgefährdete Zonen</strong></p>
|
||||
</li>
|
||||
<li data-start="1745" data-end="1784">
|
||||
<p data-start="1747" data-end="1784"><strong data-start="1747" data-end="1784">Geeignet für direkte Erdverlegung</strong></p>
|
||||
</li>
|
||||
<li data-start="1785" data-end="1815">
|
||||
<p data-start="1787" data-end="1815"><strong data-start="1787" data-end="1815">CPR-Leistungsklasse: Eca</strong></p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Maximal operating conductor temperature (°C)",
|
||||
@@ -242,4 +213,31 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="460" data-end="518">Für dauerhafte Einsätze in anspruchsvollen Umgebungen</h3>
|
||||
<p data-start="520" data-end="953">Das <strong data-start="524" data-end="536">H1Z2Z2-K</strong> entspricht der <strong data-start="552" data-end="588">Norm DIN EN 50618 (VDE 0283-618)</strong> und ist speziell für die <strong data-start="614" data-end="654">Verkabelung von Photovoltaiksystemen</strong> konzipiert. Es kann <strong data-start="675" data-end="713">fest verlegt oder flexibel geführt</strong> werden – im Gebäude, im Freien, in Industrieanlagen, landwirtschaftlichen Betrieben oder sogar in <strong data-start="812" data-end="847">explosionsgefährdeten Bereichen</strong>. Die Leitung ist <strong data-start="865" data-end="905">UV-, ozon- und wasserbeständig (AD7)</strong> und darf <strong data-start="915" data-end="945">direkt in der Erde verlegt</strong> werden.</p>
|
||||
<h3 data-start="955" data-end="990">Aufbau und technische Merkmale</h3>
|
||||
<p data-start="992" data-end="1516">Der feindrähtige <strong data-start="1009" data-end="1045">verzinnt Kupferleiter (Klasse 5)</strong> ist doppelt geschützt durch eine <strong data-start="1079" data-end="1160">vernetzte Isolierung und einen vernetzten Außenmantel aus Polyolefincopolymer</strong> – halogenfrei, flammwidrig und mit hoher Abriebfestigkeit. Das Kabel ist für eine maximale Leitertemperatur von <strong data-start="1273" data-end="1283">120 °C</strong> ausgelegt und bleibt auch bei <strong data-start="1314" data-end="1339">-40 °C (fest verlegt)</strong> zuverlässig flexibel. Die <strong data-start="1366" data-end="1394">geringe Rauchentwicklung</strong> und hohe Beständigkeit gegenüber mechanischen und thermischen Einflüssen sorgen für einen sicheren, langjährigen Betrieb.</p>
|
||||
<h3 data-start="1518" data-end="1549">Eigenschaften im Überblick</h3>
|
||||
<ul data-start="1551" data-end="1815">
|
||||
<li data-start="1551" data-end="1604">
|
||||
<p data-start="1553" data-end="1604"><strong data-start="1553" data-end="1604">Halogenfrei, flammwidrig, UV- und ozonbeständig</strong></p>
|
||||
</li>
|
||||
<li data-start="1605" data-end="1666">
|
||||
<p data-start="1607" data-end="1666"><strong data-start="1607" data-end="1666">Kurzschluss- und erdschlusssicher gemäß VDE-AR-E 2283-4</strong></p>
|
||||
</li>
|
||||
<li data-start="1667" data-end="1744">
|
||||
<p data-start="1669" data-end="1744"><strong data-start="1669" data-end="1744">Zugelassen für Innenräume, Außenbereiche und explosionsgefährdete Zonen</strong></p>
|
||||
</li>
|
||||
<li data-start="1745" data-end="1784">
|
||||
<p data-start="1747" data-end="1784"><strong data-start="1747" data-end="1784">Geeignet für direkte Erdverlegung</strong></p>
|
||||
</li>
|
||||
<li data-start="1785" data-end="1815">
|
||||
<p data-start="1787" data-end="1815"><strong data-start="1787" data-end="1815">CPR-Leistungsklasse: Eca</strong></p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/N2X2Y-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# N2X2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="448" data-end="491">Für anspruchsvolle Betriebsbedingungen</h3>
|
||||
<p data-start="493" data-end="945">Das <strong data-start="497" data-end="506">N2X2Y</strong> entspricht den Normen <strong data-start="529" data-end="550">HD 603 S1 Teil 5G</strong> und <strong data-start="555" data-end="576">HD 627 S1 Teil 4H</strong> (gleichlautend mit <strong data-start="596" data-end="616">DIN VDE 0276-603</strong> und <strong data-start="621" data-end="629">-627</strong>) und ist für eine <strong data-start="648" data-end="678">Betriebsfrequenz von 50 Hz</strong> ausgelegt. Es eignet sich für die feste Verlegung in Innenräumen, im Erdreich, im Freien und in Industrieumgebungen mit hohen Temperatur- und Belastungsanforderungen. Die maximale Betriebstemperatur liegt bei <strong data-start="888" data-end="898">+90 °C</strong>, im Kurzschlussfall sind <strong data-start="924" data-end="935">+250 °C</strong> zulässig.</p>
|
||||
<h3 data-start="947" data-end="982">Aufbau und technische Merkmale</h3>
|
||||
<p data-start="984" data-end="1334">Der Kabelaufbau besteht aus <strong data-start="1012" data-end="1029">Kupferleitern</strong> mit <strong data-start="1034" data-end="1076">VPE-Isolation (vernetztes Polyethylen)</strong>. Die Adern sind verseilt und von einem robusten, <strong data-start="1126" data-end="1151">schwarzen HDPE-Mantel</strong> umgeben. Der integrierte <strong data-start="1177" data-end="1201">konzentrische Leiter</strong> aus Kupferdrähten wird an beiden Enden geerdet und sorgt für effektiven Schutz gegen Potenzialunterschiede und Berührungsspannungen.</p>
|
||||
<h3 data-start="1336" data-end="1355">Einsatzgebiete</h3>
|
||||
<p data-start="1357" data-end="1663">N2X2Y ist ideal für Installationen in <strong data-start="1395" data-end="1442">Ortsnetzen, Umspannwerken, Industrieanlagen</strong> und <strong data-start="1447" data-end="1470">Energieverteilungen</strong>, bei denen hohe <strong data-start="1487" data-end="1515">thermische Belastbarkeit</strong> und <strong data-start="1520" data-end="1552">mechanische Widerstandskraft</strong> gefragt sind. Es bietet eine langlebige Lösung für anspruchsvolle Einsatzbedingungen – zuverlässig und sicher.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Biegeradius (mm)",
|
||||
@@ -828,4 +815,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="448" data-end="491">Für anspruchsvolle Betriebsbedingungen</h3>
|
||||
<p data-start="493" data-end="945">Das <strong data-start="497" data-end="506">N2X2Y</strong> entspricht den Normen <strong data-start="529" data-end="550">HD 603 S1 Teil 5G</strong> und <strong data-start="555" data-end="576">HD 627 S1 Teil 4H</strong> (gleichlautend mit <strong data-start="596" data-end="616">DIN VDE 0276-603</strong> und <strong data-start="621" data-end="629">-627</strong>) und ist für eine <strong data-start="648" data-end="678">Betriebsfrequenz von 50 Hz</strong> ausgelegt. Es eignet sich für die feste Verlegung in Innenräumen, im Erdreich, im Freien und in Industrieumgebungen mit hohen Temperatur- und Belastungsanforderungen. Die maximale Betriebstemperatur liegt bei <strong data-start="888" data-end="898">+90 °C</strong>, im Kurzschlussfall sind <strong data-start="924" data-end="935">+250 °C</strong> zulässig.</p>
|
||||
<h3 data-start="947" data-end="982">Aufbau und technische Merkmale</h3>
|
||||
<p data-start="984" data-end="1334">Der Kabelaufbau besteht aus <strong data-start="1012" data-end="1029">Kupferleitern</strong> mit <strong data-start="1034" data-end="1076">VPE-Isolation (vernetztes Polyethylen)</strong>. Die Adern sind verseilt und von einem robusten, <strong data-start="1126" data-end="1151">schwarzen HDPE-Mantel</strong> umgeben. Der integrierte <strong data-start="1177" data-end="1201">konzentrische Leiter</strong> aus Kupferdrähten wird an beiden Enden geerdet und sorgt für effektiven Schutz gegen Potenzialunterschiede und Berührungsspannungen.</p>
|
||||
<h3 data-start="1336" data-end="1355">Einsatzgebiete</h3>
|
||||
<p data-start="1357" data-end="1663">N2X2Y ist ideal für Installationen in <strong data-start="1395" data-end="1442">Ortsnetzen, Umspannwerken, Industrieanlagen</strong> und <strong data-start="1447" data-end="1470">Energieverteilungen</strong>, bei denen hohe <strong data-start="1487" data-end="1515">thermische Belastbarkeit</strong> und <strong data-start="1520" data-end="1552">mechanische Widerstandskraft</strong> gefragt sind. Es bietet eine langlebige Lösung für anspruchsvolle Einsatzbedingungen – zuverlässig und sicher.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -11,30 +11,7 @@ categories:
|
||||
images: []
|
||||
locale: de
|
||||
---
|
||||
# N2X(F)K2Y
|
||||
|
||||
<section>
|
||||
<h2>Technische Übersicht</h2>
|
||||
<p>Die <strong>N2X(F)K2Y-Hochspannungskabelserie</strong> ist speziell für den Einsatz in Hochspannungsanwendungen konzipiert, wobei sie eine optimale Leistung durch die Verwendung von hochleitfähigem Kupfer und einer fortschrittlichen XLPE-Isolierung bietet. Diese Kombination gewährleistet eine hohe Durchschlagsfestigkeit und eine effiziente Thermozyklierung unter verschiedenen Betriebsbedingungen.</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Technische Leistung und Konstruktion</h2>
|
||||
<p>Die Kabel der N2X(F)K2Y-Serie sind für ihre hohe <strong>Strombelastbarkeit</strong> und <strong>Kurzschlussstromfestigkeit</strong> bekannt, was sie zu einer zuverlässigen Wahl für kritische Infrastrukturen macht. Die <strong>elektromagnetische Verträglichkeit</strong> wird durch eine sorgfältige Konstruktion sichergestellt, die Spannungsinduzierungen minimiert und die Signalintegrität in komplexen Installationsszenarien bewahrt.</p>
|
||||
<ul>
|
||||
<li>Verwendung von hochreinem Kupfer für maximale Leitfähigkeit und geringe Widerstandsverluste</li>
|
||||
<li>XLPE-Isolierung für verbesserte dielektrische Stärke und thermische Beständigkeit</li>
|
||||
<li>Entwickelt für Verlegung in <strong>Kleeblattformation</strong> und <strong>Erdverlegung</strong>, optimiert für mechanische Stabilität und Wärmeableitung</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Normen und Konformität</h2>
|
||||
<p>Die Kabel entsprechen den internationalen Normen, einschließlich <strong>IEC-Konformität</strong> und <strong>CPR-Klassifizierung</strong>, und sind mit der <strong>CE-Kennzeichnung</strong> versehen. Diese Zertifizierungen bestätigen die Eignung der Kabel für den Einsatz unter den anspruchsvollsten Bedingungen und garantieren eine hohe Sicherheit und Zuverlässigkeit.</p>
|
||||
<p>Verfügbar in mehreren Konfigurationen, um den unterschiedlichen Anforderungen der Projekte gerecht zu werden, bietet die N2X(F)K2Y-Serie eine flexible Lösung für Hochspannungsanwendungen.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Nennspannung (kV)",
|
||||
@@ -257,4 +234,25 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h2>Technische Übersicht</h2>
|
||||
<p>Die <strong>N2X(F)K2Y-Hochspannungskabelserie</strong> ist speziell für den Einsatz in Hochspannungsanwendungen konzipiert, wobei sie eine optimale Leistung durch die Verwendung von hochleitfähigem Kupfer und einer fortschrittlichen XLPE-Isolierung bietet. Diese Kombination gewährleistet eine hohe Durchschlagsfestigkeit und eine effiziente Thermozyklierung unter verschiedenen Betriebsbedingungen.</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Technische Leistung und Konstruktion</h2>
|
||||
<p>Die Kabel der N2X(F)K2Y-Serie sind für ihre hohe <strong>Strombelastbarkeit</strong> und <strong>Kurzschlussstromfestigkeit</strong> bekannt, was sie zu einer zuverlässigen Wahl für kritische Infrastrukturen macht. Die <strong>elektromagnetische Verträglichkeit</strong> wird durch eine sorgfältige Konstruktion sichergestellt, die Spannungsinduzierungen minimiert und die Signalintegrität in komplexen Installationsszenarien bewahrt.</p>
|
||||
<ul>
|
||||
<li>Verwendung von hochreinem Kupfer für maximale Leitfähigkeit und geringe Widerstandsverluste</li>
|
||||
<li>XLPE-Isolierung für verbesserte dielektrische Stärke und thermische Beständigkeit</li>
|
||||
<li>Entwickelt für Verlegung in <strong>Kleeblattformation</strong> und <strong>Erdverlegung</strong>, optimiert für mechanische Stabilität und Wärmeableitung</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Normen und Konformität</h2>
|
||||
<p>Die Kabel entsprechen den internationalen Normen, einschließlich <strong>IEC-Konformität</strong> und <strong>CPR-Klassifizierung</strong>, und sind mit der <strong>CE-Kennzeichnung</strong> versehen. Diese Zertifizierungen bestätigen die Eignung der Kabel für den Einsatz unter den anspruchsvollsten Bedingungen und garantieren eine hohe Sicherheit und Zuverlässigkeit.</p>
|
||||
<p>Verfügbar in mehreren Konfigurationen, um den unterschiedlichen Anforderungen der Projekte gerecht zu werden, bietet die N2X(F)K2Y-Serie eine flexible Lösung für Hochspannungsanwendungen.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -11,33 +11,7 @@ categories:
|
||||
images: []
|
||||
locale: de
|
||||
---
|
||||
# N2X(F)KLD2Y
|
||||
|
||||
<section>
|
||||
<h2>Technische Übersicht</h2>
|
||||
<p>Die <strong>N2X(F)KLD2Y-Hochspannungskabel Serie 2</strong> sind speziell für den Einsatz in Hochspannungsanwendungen konzipiert, wobei sie eine optimale Leistung durch die Verwendung von hochleitfähigen Kupferleitern und einer fortschrittlichen XLPE-Isolierung bieten. Diese Kabelserie ist besonders geeignet für anspruchsvolle industrielle Umgebungen, wo hohe Durchschlagsfestigkeit und Thermozyklierungsfähigkeit erforderlich sind.</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Technische Leistung und Konstruktion</h2>
|
||||
<p>Die Kabel der Serie N2X(F)KLD2Y sind für ihre hohe <strong>Strombelastbarkeit</strong> und ausgezeichnete <strong>Kurzschlussstromfestigkeit</strong> bekannt. Die spezielle Konstruktion mit Kupferleitern und XLPE-Isolierung sorgt für eine hohe <strong>Durchschlagsfestigkeit</strong> und verbesserte <strong>thermische Eigenschaften</strong>, was sie ideal für den Einsatz in Hochspannungsnetzen macht.</p>
|
||||
<ul>
|
||||
<li>Verwendung von hochleitfähigem Kupfer für verbesserte elektrische Leistung</li>
|
||||
<li>XLPE-Isolierung bietet erhöhte thermische Beständigkeit und Langlebigkeit</li>
|
||||
<li>Entwickelt für Installationen in <strong>Kleeblattformation</strong>, <strong>Erdverlegung</strong> und auf <strong>Kabeltrassen</strong></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
<h2>EMV und Normkonformität</h2>
|
||||
<p>Die Kabelserie erfüllt strenge Anforderungen an die <strong>elektromagnetische Verträglichkeit</strong> (EMV), minimiert Spannungsinduzierungen und sorgt für eine zuverlässige Funktion in elektromagnetisch anspruchsvollen Umgebungen. Die Einhaltung der <strong>IEC-Normen</strong>, <strong>CPR-Klassifizierung</strong> und die <strong>CE-Kennzeichnung</strong> bestätigen die hohe Qualität und Sicherheit dieser Kabelserie.</p>
|
||||
<ul>
|
||||
<li>Konformität mit internationalen und europäischen Standards für Sicherheit und Leistung</li>
|
||||
<li>Optimierte Abschirmtechniken zur Reduzierung von elektromagnetischen Störungen</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Nennspannung (kV)",
|
||||
@@ -227,4 +201,28 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h2>Technische Übersicht</h2>
|
||||
<p>Die <strong>N2X(F)KLD2Y-Hochspannungskabel Serie 2</strong> sind speziell für den Einsatz in Hochspannungsanwendungen konzipiert, wobei sie eine optimale Leistung durch die Verwendung von hochleitfähigen Kupferleitern und einer fortschrittlichen XLPE-Isolierung bieten. Diese Kabelserie ist besonders geeignet für anspruchsvolle industrielle Umgebungen, wo hohe Durchschlagsfestigkeit und Thermozyklierungsfähigkeit erforderlich sind.</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Technische Leistung und Konstruktion</h2>
|
||||
<p>Die Kabel der Serie N2X(F)KLD2Y sind für ihre hohe <strong>Strombelastbarkeit</strong> und ausgezeichnete <strong>Kurzschlussstromfestigkeit</strong> bekannt. Die spezielle Konstruktion mit Kupferleitern und XLPE-Isolierung sorgt für eine hohe <strong>Durchschlagsfestigkeit</strong> und verbesserte <strong>thermische Eigenschaften</strong>, was sie ideal für den Einsatz in Hochspannungsnetzen macht.</p>
|
||||
<ul>
|
||||
<li>Verwendung von hochleitfähigem Kupfer für verbesserte elektrische Leistung</li>
|
||||
<li>XLPE-Isolierung bietet erhöhte thermische Beständigkeit und Langlebigkeit</li>
|
||||
<li>Entwickelt für Installationen in <strong>Kleeblattformation</strong>, <strong>Erdverlegung</strong> und auf <strong>Kabeltrassen</strong></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
<h2>EMV und Normkonformität</h2>
|
||||
<p>Die Kabelserie erfüllt strenge Anforderungen an die <strong>elektromagnetische Verträglichkeit</strong> (EMV), minimiert Spannungsinduzierungen und sorgt für eine zuverlässige Funktion in elektromagnetisch anspruchsvollen Umgebungen. Die Einhaltung der <strong>IEC-Normen</strong>, <strong>CPR-Klassifizierung</strong> und die <strong>CE-Kennzeichnung</strong> bestätigen die hohe Qualität und Sicherheit dieser Kabelserie.</p>
|
||||
<ul>
|
||||
<li>Konformität mit internationalen und europäischen Standards für Sicherheit und Leistung</li>
|
||||
<li>Optimierte Abschirmtechniken zur Reduzierung von elektromagnetischen Störungen</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/N2XS2Y-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# N2XS2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="451" data-end="502">Für Erdverlegung und anspruchsvolle Umgebungen</h3>
|
||||
<p data-start="504" data-end="901">Das <strong data-start="508" data-end="518">N2XS2Y</strong> erfüllt die Normen <strong data-start="538" data-end="558">DIN VDE 0276-620</strong>, <strong data-start="560" data-end="573">HD 620 S2</strong> und <strong data-start="578" data-end="591">IEC 60502</strong>. Es eignet sich zur <strong data-start="612" data-end="725">Verlegung in Innenräumen, Kabelkanälen, im Freien, im Wasser, auf Kabelpritschen und insbesondere im Erdreich</strong>. Aufgrund seines widerstandsfähigen Mantels wird es häufig in <strong data-start="788" data-end="841">Industrieanlagen, Kraftwerken und Schaltstationen</strong> eingesetzt, wo Stabilität und Langlebigkeit gefordert sind.</p>
|
||||
<h3 data-start="903" data-end="926">Technischer Aufbau</h3>
|
||||
<p data-start="928" data-end="1367">Der Leiter besteht aus <strong data-start="951" data-end="984">blankem, mehrdrähtigem Kupfer</strong> (Klasse 2), umgeben von einer <strong data-start="1015" data-end="1038">inneren Leitschicht</strong> und einer <strong data-start="1049" data-end="1067">VPE-Isolierung</strong> mit festhaftender äußerer Leitschicht. Die Abschirmung erfolgt über eine <strong data-start="1141" data-end="1187">Kupferdraht-Umspinnung mit Querleitwendeln</strong>. Zusätzlich ist das Kabel mit einer <strong data-start="1224" data-end="1250">leitfähigen Bandierung</strong> versehen und besitzt einen <strong data-start="1278" data-end="1301">schwarzen PE-Mantel</strong> (Typ DMP2), der vor Feuchtigkeit und mechanischem Abrieb schützt.</p>
|
||||
<h3 data-start="1369" data-end="1402">Merkmale und Einsatzvorteile</h3>
|
||||
<p data-start="1404" data-end="1766">Das N2XS2Y ist <strong data-start="1419" data-end="1435">erdverlegbar</strong>, <strong data-start="1437" data-end="1465">silikon- und cadmiumfrei</strong> sowie <strong data-start="1472" data-end="1493">nicht flammwidrig</strong>. Es ist für Temperaturen bis <strong data-start="1523" data-end="1544">+90 °C im Betrieb</strong> und <strong data-start="1549" data-end="1579">+250 °C im Kurzschlussfall</strong> ausgelegt. Dank seines <strong data-start="1603" data-end="1635">teilentladungsfreien Aufbaus</strong> bietet es ein hohes Maß an Sicherheit und ist besonders gut für Netze mit hoher Belastung und schwieriger Trassenführung geeignet.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -961,4 +948,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="451" data-end="502">Für Erdverlegung und anspruchsvolle Umgebungen</h3>
|
||||
<p data-start="504" data-end="901">Das <strong data-start="508" data-end="518">N2XS2Y</strong> erfüllt die Normen <strong data-start="538" data-end="558">DIN VDE 0276-620</strong>, <strong data-start="560" data-end="573">HD 620 S2</strong> und <strong data-start="578" data-end="591">IEC 60502</strong>. Es eignet sich zur <strong data-start="612" data-end="725">Verlegung in Innenräumen, Kabelkanälen, im Freien, im Wasser, auf Kabelpritschen und insbesondere im Erdreich</strong>. Aufgrund seines widerstandsfähigen Mantels wird es häufig in <strong data-start="788" data-end="841">Industrieanlagen, Kraftwerken und Schaltstationen</strong> eingesetzt, wo Stabilität und Langlebigkeit gefordert sind.</p>
|
||||
<h3 data-start="903" data-end="926">Technischer Aufbau</h3>
|
||||
<p data-start="928" data-end="1367">Der Leiter besteht aus <strong data-start="951" data-end="984">blankem, mehrdrähtigem Kupfer</strong> (Klasse 2), umgeben von einer <strong data-start="1015" data-end="1038">inneren Leitschicht</strong> und einer <strong data-start="1049" data-end="1067">VPE-Isolierung</strong> mit festhaftender äußerer Leitschicht. Die Abschirmung erfolgt über eine <strong data-start="1141" data-end="1187">Kupferdraht-Umspinnung mit Querleitwendeln</strong>. Zusätzlich ist das Kabel mit einer <strong data-start="1224" data-end="1250">leitfähigen Bandierung</strong> versehen und besitzt einen <strong data-start="1278" data-end="1301">schwarzen PE-Mantel</strong> (Typ DMP2), der vor Feuchtigkeit und mechanischem Abrieb schützt.</p>
|
||||
<h3 data-start="1369" data-end="1402">Merkmale und Einsatzvorteile</h3>
|
||||
<p data-start="1404" data-end="1766">Das N2XS2Y ist <strong data-start="1419" data-end="1435">erdverlegbar</strong>, <strong data-start="1437" data-end="1465">silikon- und cadmiumfrei</strong> sowie <strong data-start="1472" data-end="1493">nicht flammwidrig</strong>. Es ist für Temperaturen bis <strong data-start="1523" data-end="1544">+90 °C im Betrieb</strong> und <strong data-start="1549" data-end="1579">+250 °C im Kurzschlussfall</strong> ausgelegt. Dank seines <strong data-start="1603" data-end="1635">teilentladungsfreien Aufbaus</strong> bietet es ein hohes Maß an Sicherheit und ist besonders gut für Netze mit hoher Belastung und schwieriger Trassenführung geeignet.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/N2XSF2Y-3-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# N2XS(F)2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="452" data-end="502">Entwickelt für leistungsstarke Netzumgebungen</h3>
|
||||
<p data-start="504" data-end="904">Das <strong data-start="508" data-end="521">N2XS(F)2Y</strong> erfüllt die gängigen Normen <strong data-start="550" data-end="570">DIN VDE 0276-620</strong>, <strong data-start="572" data-end="585">HD 620 S2</strong> und <strong data-start="590" data-end="603">IEC 60502</strong> und ist für die <strong data-start="620" data-end="713">Verlegung in Innenräumen, Kabelkanälen, im Freien, in Wasser, Erde und auf Kabelpritschen</strong> geeignet. Besonders in <strong data-start="737" data-end="785">EVU-Netzen, Industrieanlagen und Kraftwerken</strong> spielt dieses Kabel seine Stärken aus – überall dort, wo Langlebigkeit, Wasserdichtigkeit und Sicherheit gefragt sind.</p>
|
||||
<h3 data-start="906" data-end="946">Aufbau und technische Eigenschaften</h3>
|
||||
<p data-start="948" data-end="1387">Im Inneren befindet sich ein <strong data-start="977" data-end="1016">blanker, mehrdrähtiger Kupferleiter</strong> (Klasse 2), umgeben von einer <strong data-start="1047" data-end="1123">extrudierten VPE-Isolation mit innerer und haftender äußerer Leitschicht</strong>. Eine <strong data-start="1130" data-end="1174">längswasserdichte, leitfähige Bandierung</strong>, eine <strong data-start="1181" data-end="1234">Abschirmung aus Kupferdrähten mit Querleitwendeln</strong> und eine zusätzliche <strong data-start="1256" data-end="1282">längswasserdichte Lage</strong> sichern den Aufbau. Der schwarze <strong data-start="1316" data-end="1345">PE-Außenmantel (Typ DMP2)</strong> sorgt für hohe mechanische Belastbarkeit.</p>
|
||||
<h3 data-start="1389" data-end="1425">Anwendungsbereiche und Vorteile</h3>
|
||||
<p data-start="1427" data-end="1822">Das N2XS(F)2Y ist <strong data-start="1445" data-end="1461">erdverlegbar</strong>, <strong data-start="1463" data-end="1509">resistent gegen aggressive Umwelteinflüsse</strong> und hält <strong data-start="1519" data-end="1562">Temperaturen bis +90 °C im Dauerbetrieb</strong> sowie <strong data-start="1569" data-end="1599">+250 °C im Kurzschlussfall</strong> stand. Es ist <strong data-start="1614" data-end="1663">frei von silikon- und cadmiumhaltigen Stoffen</strong> und dank des <strong data-start="1677" data-end="1709">teilentladungsfreien Aufbaus</strong> besonders geeignet für Netze mit höchsten Anforderungen an <strong data-start="1769" data-end="1803">elektrische Betriebssicherheit</strong> und Langlebigkeit.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -393,4 +380,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="452" data-end="502">Entwickelt für leistungsstarke Netzumgebungen</h3>
|
||||
<p data-start="504" data-end="904">Das <strong data-start="508" data-end="521">N2XS(F)2Y</strong> erfüllt die gängigen Normen <strong data-start="550" data-end="570">DIN VDE 0276-620</strong>, <strong data-start="572" data-end="585">HD 620 S2</strong> und <strong data-start="590" data-end="603">IEC 60502</strong> und ist für die <strong data-start="620" data-end="713">Verlegung in Innenräumen, Kabelkanälen, im Freien, in Wasser, Erde und auf Kabelpritschen</strong> geeignet. Besonders in <strong data-start="737" data-end="785">EVU-Netzen, Industrieanlagen und Kraftwerken</strong> spielt dieses Kabel seine Stärken aus – überall dort, wo Langlebigkeit, Wasserdichtigkeit und Sicherheit gefragt sind.</p>
|
||||
<h3 data-start="906" data-end="946">Aufbau und technische Eigenschaften</h3>
|
||||
<p data-start="948" data-end="1387">Im Inneren befindet sich ein <strong data-start="977" data-end="1016">blanker, mehrdrähtiger Kupferleiter</strong> (Klasse 2), umgeben von einer <strong data-start="1047" data-end="1123">extrudierten VPE-Isolation mit innerer und haftender äußerer Leitschicht</strong>. Eine <strong data-start="1130" data-end="1174">längswasserdichte, leitfähige Bandierung</strong>, eine <strong data-start="1181" data-end="1234">Abschirmung aus Kupferdrähten mit Querleitwendeln</strong> und eine zusätzliche <strong data-start="1256" data-end="1282">längswasserdichte Lage</strong> sichern den Aufbau. Der schwarze <strong data-start="1316" data-end="1345">PE-Außenmantel (Typ DMP2)</strong> sorgt für hohe mechanische Belastbarkeit.</p>
|
||||
<h3 data-start="1389" data-end="1425">Anwendungsbereiche und Vorteile</h3>
|
||||
<p data-start="1427" data-end="1822">Das N2XS(F)2Y ist <strong data-start="1445" data-end="1461">erdverlegbar</strong>, <strong data-start="1463" data-end="1509">resistent gegen aggressive Umwelteinflüsse</strong> und hält <strong data-start="1519" data-end="1562">Temperaturen bis +90 °C im Dauerbetrieb</strong> sowie <strong data-start="1569" data-end="1599">+250 °C im Kurzschlussfall</strong> stand. Es ist <strong data-start="1614" data-end="1663">frei von silikon- und cadmiumhaltigen Stoffen</strong> und dank des <strong data-start="1677" data-end="1709">teilentladungsfreien Aufbaus</strong> besonders geeignet für Netze mit höchsten Anforderungen an <strong data-start="1769" data-end="1803">elektrische Betriebssicherheit</strong> und Langlebigkeit.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/N2XSFL2Y-2-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# N2XS(FL)2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="483" data-end="530">Für anspruchsvolle Energieverteilungsnetze</h3>
|
||||
<p data-start="532" data-end="920">Das <strong data-start="536" data-end="550">N2XS(FL)2Y</strong> erfüllt die Standards <strong data-start="573" data-end="593">DIN VDE 0276-620</strong>, <strong data-start="595" data-end="608">HD 620 S2</strong> und <strong data-start="613" data-end="626">IEC 60502</strong>. Es eignet sich hervorragend für die <strong data-start="664" data-end="762">Verlegung in Innenräumen, Kabelkanälen, im Freien, in Erde, im Wasser sowie auf Kabelpritschen</strong> – insbesondere in <strong data-start="781" data-end="833">EVU-Netzen, Industrieanlagen und Schaltstationen</strong>, wo erhöhte Anforderungen an mechanische Belastbarkeit und Wasserdichtigkeit bestehen.</p>
|
||||
<h3 data-start="922" data-end="945">Technischer Aufbau</h3>
|
||||
<p data-start="947" data-end="1455">Der Kabelaufbau basiert auf einem <strong data-start="981" data-end="1011">mehrdrähtigen Kupferleiter</strong> (Klasse 2), einer <strong data-start="1030" data-end="1047">VPE-Isolation</strong> mit extrudierter, fest haftender <strong data-start="1081" data-end="1104">äußerer Leitschicht</strong>, sowie einer <strong data-start="1118" data-end="1164">längswasserdichten, leitfähigen Bandierung</strong>. Die Abschirmung besteht aus <strong data-start="1194" data-end="1230">Kupferdrähten mit Querleitwendel</strong>, ergänzt durch eine weitere <strong data-start="1259" data-end="1291">längswasserdichte Bandierung</strong>. Der äußere Schutz wird durch eine <strong data-start="1327" data-end="1396">fest mit dem schwarzen PE-Mantel verschweißte Aluminiumbandierung</strong> realisiert – sie wirkt als effektive <strong data-start="1434" data-end="1454">Querwassersperre</strong>.</p>
|
||||
<h3 data-start="1457" data-end="1488">Eigenschaften und Vorteile</h3>
|
||||
<p data-start="1490" data-end="1897">Das N2XS(FL)2Y ist <strong data-start="1509" data-end="1525">erdverlegbar</strong>, <strong data-start="1527" data-end="1560">für Außenanwendungen geeignet</strong> und hält <strong data-start="1570" data-end="1605">Betriebstemperaturen bis +90 °C</strong> sowie <strong data-start="1612" data-end="1650">Kurzschlussbelastungen bis +250 °C</strong> stand. Es ist <strong data-start="1665" data-end="1693">silikon- und cadmiumfrei</strong> und enthält keine lackbenetzungsstörenden Substanzen. Dank seines <strong data-start="1760" data-end="1792">teilentladungsfreien Aufbaus</strong> und der Al/PE-Schicht ist es bestens geeignet für <strong data-start="1843" data-end="1896">feuchte Umgebungen mit erhöhtem Sicherheitsbedarf</strong>.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -920,4 +907,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="483" data-end="530">Für anspruchsvolle Energieverteilungsnetze</h3>
|
||||
<p data-start="532" data-end="920">Das <strong data-start="536" data-end="550">N2XS(FL)2Y</strong> erfüllt die Standards <strong data-start="573" data-end="593">DIN VDE 0276-620</strong>, <strong data-start="595" data-end="608">HD 620 S2</strong> und <strong data-start="613" data-end="626">IEC 60502</strong>. Es eignet sich hervorragend für die <strong data-start="664" data-end="762">Verlegung in Innenräumen, Kabelkanälen, im Freien, in Erde, im Wasser sowie auf Kabelpritschen</strong> – insbesondere in <strong data-start="781" data-end="833">EVU-Netzen, Industrieanlagen und Schaltstationen</strong>, wo erhöhte Anforderungen an mechanische Belastbarkeit und Wasserdichtigkeit bestehen.</p>
|
||||
<h3 data-start="922" data-end="945">Technischer Aufbau</h3>
|
||||
<p data-start="947" data-end="1455">Der Kabelaufbau basiert auf einem <strong data-start="981" data-end="1011">mehrdrähtigen Kupferleiter</strong> (Klasse 2), einer <strong data-start="1030" data-end="1047">VPE-Isolation</strong> mit extrudierter, fest haftender <strong data-start="1081" data-end="1104">äußerer Leitschicht</strong>, sowie einer <strong data-start="1118" data-end="1164">längswasserdichten, leitfähigen Bandierung</strong>. Die Abschirmung besteht aus <strong data-start="1194" data-end="1230">Kupferdrähten mit Querleitwendel</strong>, ergänzt durch eine weitere <strong data-start="1259" data-end="1291">längswasserdichte Bandierung</strong>. Der äußere Schutz wird durch eine <strong data-start="1327" data-end="1396">fest mit dem schwarzen PE-Mantel verschweißte Aluminiumbandierung</strong> realisiert – sie wirkt als effektive <strong data-start="1434" data-end="1454">Querwassersperre</strong>.</p>
|
||||
<h3 data-start="1457" data-end="1488">Eigenschaften und Vorteile</h3>
|
||||
<p data-start="1490" data-end="1897">Das N2XS(FL)2Y ist <strong data-start="1509" data-end="1525">erdverlegbar</strong>, <strong data-start="1527" data-end="1560">für Außenanwendungen geeignet</strong> und hält <strong data-start="1570" data-end="1605">Betriebstemperaturen bis +90 °C</strong> sowie <strong data-start="1612" data-end="1650">Kurzschlussbelastungen bis +250 °C</strong> stand. Es ist <strong data-start="1665" data-end="1693">silikon- und cadmiumfrei</strong> und enthält keine lackbenetzungsstörenden Substanzen. Dank seines <strong data-start="1760" data-end="1792">teilentladungsfreien Aufbaus</strong> und der Al/PE-Schicht ist es bestens geeignet für <strong data-start="1843" data-end="1896">feuchte Umgebungen mit erhöhtem Sicherheitsbedarf</strong>.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/06/N2XSFL2Y-3-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# N2XS(FL)2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="508" data-end="571">Flexibel im Einsatz – unter Erde, Wasser und auf Pritschen</h3>
|
||||
<p data-start="573" data-end="950">Das <strong data-start="577" data-end="591">N2XS(FL)2Y</strong> ist konzipiert für die <strong data-start="615" data-end="698">Verlegung im Erdreich, in Kabelkanälen, in Rohren, im Freien und in Innenräumen</strong>. Es entspricht der Norm <strong data-start="723" data-end="736">IEC 60840</strong> und lässt sich individuell auf projektspezifische Anforderungen anpassen. Typisch eingesetzt wird es in <strong data-start="841" data-end="906">Übertragungsnetzen, Umspannwerken und großen Industrieanlagen</strong>, wo maximale Zuverlässigkeit gefordert ist.</p>
|
||||
<h3 data-start="952" data-end="975">Technischer Aufbau</h3>
|
||||
<p data-start="977" data-end="1539">Das Kabel verfügt über einen <strong data-start="1006" data-end="1062">mehrdrähtigen Kupferleiter (Klasse 2 nach IEC 60228)</strong>. Die Isolation besteht aus <strong data-start="1090" data-end="1123">vernetztem Polyethylen (XLPE)</strong>, eingebettet zwischen einer <strong data-start="1152" data-end="1180">leitfähigen Innenschicht</strong> und einer <strong data-start="1191" data-end="1232">leitfähigen äußeren Isolationsschicht</strong>. Eine <strong data-start="1239" data-end="1265">quellfähige Bandierung</strong> sorgt gemeinsam mit <strong data-start="1286" data-end="1334">Kupferdrähten und einer offenen Kupferwendel</strong> für eine effektive Abschirmung. Der Außenmantel besteht aus <strong data-start="1395" data-end="1401">PE</strong>, das mit einer <strong data-start="1417" data-end="1451">Aluminiumkaschierung (Alucopo)</strong> fest verbunden ist – optimaler Schutz gegen <strong data-start="1496" data-end="1538">mechanische Belastung und Feuchtigkeit</strong>.</p>
|
||||
<h3 data-start="1541" data-end="1561">Einsatzmerkmale</h3>
|
||||
<p data-start="1563" data-end="1902">Das N2XS(FL)2Y ist <strong data-start="1582" data-end="1611">wasserdicht, erdverlegbar</strong> und mechanisch belastbar – und dank seiner <strong data-start="1655" data-end="1700">mehrschichtigen Schirm- und Quellstruktur</strong> besonders für kritische Hochspannungsanwendungen geeignet. Die elektrische Leistungsfähigkeit wird projektbezogen berechnet – so lässt sich das Kabel exakt an die Anforderungen im Netzbetrieb anpassen.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -920,4 +907,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="508" data-end="571">Flexibel im Einsatz – unter Erde, Wasser und auf Pritschen</h3>
|
||||
<p data-start="573" data-end="950">Das <strong data-start="577" data-end="591">N2XS(FL)2Y</strong> ist konzipiert für die <strong data-start="615" data-end="698">Verlegung im Erdreich, in Kabelkanälen, in Rohren, im Freien und in Innenräumen</strong>. Es entspricht der Norm <strong data-start="723" data-end="736">IEC 60840</strong> und lässt sich individuell auf projektspezifische Anforderungen anpassen. Typisch eingesetzt wird es in <strong data-start="841" data-end="906">Übertragungsnetzen, Umspannwerken und großen Industrieanlagen</strong>, wo maximale Zuverlässigkeit gefordert ist.</p>
|
||||
<h3 data-start="952" data-end="975">Technischer Aufbau</h3>
|
||||
<p data-start="977" data-end="1539">Das Kabel verfügt über einen <strong data-start="1006" data-end="1062">mehrdrähtigen Kupferleiter (Klasse 2 nach IEC 60228)</strong>. Die Isolation besteht aus <strong data-start="1090" data-end="1123">vernetztem Polyethylen (XLPE)</strong>, eingebettet zwischen einer <strong data-start="1152" data-end="1180">leitfähigen Innenschicht</strong> und einer <strong data-start="1191" data-end="1232">leitfähigen äußeren Isolationsschicht</strong>. Eine <strong data-start="1239" data-end="1265">quellfähige Bandierung</strong> sorgt gemeinsam mit <strong data-start="1286" data-end="1334">Kupferdrähten und einer offenen Kupferwendel</strong> für eine effektive Abschirmung. Der Außenmantel besteht aus <strong data-start="1395" data-end="1401">PE</strong>, das mit einer <strong data-start="1417" data-end="1451">Aluminiumkaschierung (Alucopo)</strong> fest verbunden ist – optimaler Schutz gegen <strong data-start="1496" data-end="1538">mechanische Belastung und Feuchtigkeit</strong>.</p>
|
||||
<h3 data-start="1541" data-end="1561">Einsatzmerkmale</h3>
|
||||
<p data-start="1563" data-end="1902">Das N2XS(FL)2Y ist <strong data-start="1582" data-end="1611">wasserdicht, erdverlegbar</strong> und mechanisch belastbar – und dank seiner <strong data-start="1655" data-end="1700">mehrschichtigen Schirm- und Quellstruktur</strong> besonders für kritische Hochspannungsanwendungen geeignet. Die elektrische Leistungsfähigkeit wird projektbezogen berechnet – so lässt sich das Kabel exakt an die Anforderungen im Netzbetrieb anpassen.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/N2XSY-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# N2XSY
|
||||
|
||||
<section>
|
||||
<h3 data-start="435" data-end="481">Für kraftvolle Mittelspannungsanwendungen</h3>
|
||||
<p data-start="483" data-end="868">Das <strong data-start="487" data-end="496">N2XSY</strong> erfüllt die Normen <strong data-start="516" data-end="536">DIN VDE 0276-620</strong>, <strong data-start="538" data-end="551">HD 620 S2</strong> und <strong data-start="556" data-end="569">IEC 60502</strong>. Es ist ausgelegt für die <strong data-start="596" data-end="708">Verlegung in Innenräumen, Kabelkanälen, im Wasser, im Erdreich oder im Freien (bei geschützter Installation)</strong>. Ob in <strong data-start="716" data-end="768">Industrieanlagen, Kraftwerken oder Schaltanlagen</strong> – dieses Kabel sorgt für eine sichere und verlustarme Energieübertragung im Mittelspannungsbereich.</p>
|
||||
<h3 data-start="870" data-end="905">Aufbau und technische Merkmale</h3>
|
||||
<p data-start="907" data-end="1380">Das Kabel besteht aus einem <strong data-start="935" data-end="974">blanken, mehrdrähtigen Kupferleiter</strong> (Kl. 2), der von einer <strong data-start="998" data-end="1015">VPE-Isolation</strong> mit festhaftender <strong data-start="1034" data-end="1057">äußerer Leitschicht</strong> umgeben ist. Eine <strong data-start="1076" data-end="1101">leitfähige Bandierung</strong>, eine <strong data-start="1108" data-end="1160">Abschirmung aus Kupferdrähten mit Querleitwendel</strong>, zusätzliche Bandierung und ein <strong data-start="1193" data-end="1213">roter PVC-Mantel</strong> (Typ DMV6) runden den Aufbau ab. Die extrudierte Kombination von Isolierung und Leitschicht sorgt für einen <strong data-start="1322" data-end="1354">teilentladungsfreien Betrieb</strong> und hohe Zuverlässigkeit.</p>
|
||||
<h3 data-start="1382" data-end="1420">Eigenschaften und Einsatzvorteile</h3>
|
||||
<p data-start="1422" data-end="1807">Das N2XSY Kabel ist <strong data-start="1442" data-end="1458">erdverlegbar</strong>, <strong data-start="1460" data-end="1501">flammwidrig nach DIN VDE 0482-332-1-2</strong> und <strong data-start="1506" data-end="1555">frei von silikon- und cadmiumhaltigen Stoffen</strong>. Mit <strong data-start="1561" data-end="1590">+90 °C Betriebstemperatur</strong> und <strong data-start="1595" data-end="1627">+250 °C Kurzschlussresistenz</strong> eignet es sich ideal für Netze mit hoher thermischer Belastung. Die ausgezeichneten Verlegeeigenschaften ermöglichen auch bei schwieriger Streckenführung eine einfache Handhabung.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -956,4 +943,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="435" data-end="481">Für kraftvolle Mittelspannungsanwendungen</h3>
|
||||
<p data-start="483" data-end="868">Das <strong data-start="487" data-end="496">N2XSY</strong> erfüllt die Normen <strong data-start="516" data-end="536">DIN VDE 0276-620</strong>, <strong data-start="538" data-end="551">HD 620 S2</strong> und <strong data-start="556" data-end="569">IEC 60502</strong>. Es ist ausgelegt für die <strong data-start="596" data-end="708">Verlegung in Innenräumen, Kabelkanälen, im Wasser, im Erdreich oder im Freien (bei geschützter Installation)</strong>. Ob in <strong data-start="716" data-end="768">Industrieanlagen, Kraftwerken oder Schaltanlagen</strong> – dieses Kabel sorgt für eine sichere und verlustarme Energieübertragung im Mittelspannungsbereich.</p>
|
||||
<h3 data-start="870" data-end="905">Aufbau und technische Merkmale</h3>
|
||||
<p data-start="907" data-end="1380">Das Kabel besteht aus einem <strong data-start="935" data-end="974">blanken, mehrdrähtigen Kupferleiter</strong> (Kl. 2), der von einer <strong data-start="998" data-end="1015">VPE-Isolation</strong> mit festhaftender <strong data-start="1034" data-end="1057">äußerer Leitschicht</strong> umgeben ist. Eine <strong data-start="1076" data-end="1101">leitfähige Bandierung</strong>, eine <strong data-start="1108" data-end="1160">Abschirmung aus Kupferdrähten mit Querleitwendel</strong>, zusätzliche Bandierung und ein <strong data-start="1193" data-end="1213">roter PVC-Mantel</strong> (Typ DMV6) runden den Aufbau ab. Die extrudierte Kombination von Isolierung und Leitschicht sorgt für einen <strong data-start="1322" data-end="1354">teilentladungsfreien Betrieb</strong> und hohe Zuverlässigkeit.</p>
|
||||
<h3 data-start="1382" data-end="1420">Eigenschaften und Einsatzvorteile</h3>
|
||||
<p data-start="1422" data-end="1807">Das N2XSY Kabel ist <strong data-start="1442" data-end="1458">erdverlegbar</strong>, <strong data-start="1460" data-end="1501">flammwidrig nach DIN VDE 0482-332-1-2</strong> und <strong data-start="1506" data-end="1555">frei von silikon- und cadmiumhaltigen Stoffen</strong>. Mit <strong data-start="1561" data-end="1590">+90 °C Betriebstemperatur</strong> und <strong data-start="1595" data-end="1627">+250 °C Kurzschlussresistenz</strong> eignet es sich ideal für Netze mit hoher thermischer Belastung. Die ausgezeichneten Verlegeeigenschaften ermöglichen auch bei schwieriger Streckenführung eine einfache Handhabung.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/N2XY-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# N2XY
|
||||
|
||||
<section>
|
||||
<h3 data-start="514" data-end="565">Für die feste Verlegung in Standardanwendungen</h3>
|
||||
<p data-start="567" data-end="995">Das <strong data-start="571" data-end="579">N2XY</strong> wird in Niederspannungsanlagen zur Energieverteilung eingesetzt – zum Beispiel in Kabeltrassen, Rohren, auf Wänden oder direkt im Erdreich. Es lässt sich sowohl im Innen- als auch im Außenbereich installieren und ist auch für feuchte Umgebungen geeignet. Dank verschiedener Aderkonfigurationen (einadrig bis vieradrig) und Querschnitten bis 630 mm² lässt sich das Kabel flexibel an die jeweilige Anwendung anpassen.</p>
|
||||
<h3 data-start="997" data-end="1020">Technischer Aufbau</h3>
|
||||
<p data-start="1022" data-end="1346">Als Leiter dient massives oder mehrdrähtiges <strong data-start="1067" data-end="1077">Kupfer</strong> (RE oder RM), die Adern sind mit <strong data-start="1111" data-end="1144">XLPE (vernetztem Polyethylen)</strong> isoliert. Das Kabel ist eingebettet in eine <strong data-start="1189" data-end="1206">PVC-Füllmasse</strong> und wird von einem <strong data-start="1226" data-end="1245">PVC-Außenmantel</strong> umgeben, der das Kabel gegen Umwelteinflüsse und mechanische Beanspruchung im Normalbereich schützt.</p>
|
||||
<h3 data-start="1348" data-end="1387">Varianten und Einsatzmöglichkeiten</h3>
|
||||
<p data-start="1389" data-end="1779">N2XY ist sowohl als <strong data-start="1409" data-end="1419">N2XY-J</strong> (mit Schutzleiter) als auch als <strong data-start="1452" data-end="1462">N2XY-O</strong> (ohne Schutzleiter) verfügbar. Es bietet eine <strong data-start="1509" data-end="1594">platzsparende, wirtschaftliche Lösung für Verteilungen im Niederspannungsbereich</strong>, ohne auf Sicherheit oder Qualität zu verzichten. Typische Einsatzorte sind Gewerbe- und Wohnbauten, Anlageninstallationen sowie Verbindungen zwischen Schaltschränken und Verteilungen.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Biegeradius (mm)",
|
||||
@@ -880,4 +867,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="514" data-end="565">Für die feste Verlegung in Standardanwendungen</h3>
|
||||
<p data-start="567" data-end="995">Das <strong data-start="571" data-end="579">N2XY</strong> wird in Niederspannungsanlagen zur Energieverteilung eingesetzt – zum Beispiel in Kabeltrassen, Rohren, auf Wänden oder direkt im Erdreich. Es lässt sich sowohl im Innen- als auch im Außenbereich installieren und ist auch für feuchte Umgebungen geeignet. Dank verschiedener Aderkonfigurationen (einadrig bis vieradrig) und Querschnitten bis 630 mm² lässt sich das Kabel flexibel an die jeweilige Anwendung anpassen.</p>
|
||||
<h3 data-start="997" data-end="1020">Technischer Aufbau</h3>
|
||||
<p data-start="1022" data-end="1346">Als Leiter dient massives oder mehrdrähtiges <strong data-start="1067" data-end="1077">Kupfer</strong> (RE oder RM), die Adern sind mit <strong data-start="1111" data-end="1144">XLPE (vernetztem Polyethylen)</strong> isoliert. Das Kabel ist eingebettet in eine <strong data-start="1189" data-end="1206">PVC-Füllmasse</strong> und wird von einem <strong data-start="1226" data-end="1245">PVC-Außenmantel</strong> umgeben, der das Kabel gegen Umwelteinflüsse und mechanische Beanspruchung im Normalbereich schützt.</p>
|
||||
<h3 data-start="1348" data-end="1387">Varianten und Einsatzmöglichkeiten</h3>
|
||||
<p data-start="1389" data-end="1779">N2XY ist sowohl als <strong data-start="1409" data-end="1419">N2XY-J</strong> (mit Schutzleiter) als auch als <strong data-start="1452" data-end="1462">N2XY-O</strong> (ohne Schutzleiter) verfügbar. Es bietet eine <strong data-start="1509" data-end="1594">platzsparende, wirtschaftliche Lösung für Verteilungen im Niederspannungsbereich</strong>, ohne auf Sicherheit oder Qualität zu verzichten. Typische Einsatzorte sind Gewerbe- und Wohnbauten, Anlageninstallationen sowie Verbindungen zwischen Schaltschränken und Verteilungen.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/NA2X2Y-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# NA2X2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="488" data-end="537">Optimal für mechanisch belastete Anwendungen</h3>
|
||||
<p data-start="539" data-end="948">Das <strong data-start="543" data-end="553">NA2X2Y</strong> entspricht der Norm <strong data-start="574" data-end="603">DIN VDE 0276-603 (HD 603)</strong> und ist ausgelegt für die <strong data-start="630" data-end="717">feste Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser oder im Freien</strong>. Es kommt bevorzugt in <strong data-start="741" data-end="789">Kraftwerken, Industrieanlagen, Schaltanlagen</strong> und <strong data-start="794" data-end="808">Ortsnetzen</strong> zum Einsatz – überall dort, wo robuste Kabel gefragt sind, die im Betrieb und bei der Verlegung hohen mechanischen Belastungen standhalten.</p>
|
||||
<h3 data-start="950" data-end="979">Aufbau und Eigenschaften</h3>
|
||||
<p data-start="981" data-end="1427">Der elektrische Leiter besteht aus <strong data-start="1016" data-end="1029">Aluminium</strong>, wahlweise als rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig (SE/SM). Die Adern sind mit <strong data-start="1135" data-end="1150">PE isoliert</strong>, verseilt und durch eine <strong data-start="1176" data-end="1209">gemeinsame EPDM-Aderumhüllung</strong> geschützt. Der Außenmantel besteht aus <strong data-start="1249" data-end="1257">HDPE</strong>, ist schwarz, UV-beständig und besonders widerstandsfähig gegenüber Abrieb, Druck und Feuchtigkeit – ideal für langfristige Installationen in anspruchsvollen Umgebungen.</p>
|
||||
<h3 data-start="1429" data-end="1449">Einsatzvorteile</h3>
|
||||
<p data-start="1451" data-end="1756">NA2X2Y Kabel bieten eine <strong data-start="1476" data-end="1524">technisch robuste und wirtschaftliche Lösung</strong> für die Energieverteilung in Netzen mit erhöhten Anforderungen. Ihre hohe mechanische Belastbarkeit und Witterungsbeständigkeit machen sie zur ersten Wahl für anspruchsvolle Infrastrukturanwendungen im Energie- und Industriesektor.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Biegeradius (mm)",
|
||||
@@ -802,4 +789,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="488" data-end="537">Optimal für mechanisch belastete Anwendungen</h3>
|
||||
<p data-start="539" data-end="948">Das <strong data-start="543" data-end="553">NA2X2Y</strong> entspricht der Norm <strong data-start="574" data-end="603">DIN VDE 0276-603 (HD 603)</strong> und ist ausgelegt für die <strong data-start="630" data-end="717">feste Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser oder im Freien</strong>. Es kommt bevorzugt in <strong data-start="741" data-end="789">Kraftwerken, Industrieanlagen, Schaltanlagen</strong> und <strong data-start="794" data-end="808">Ortsnetzen</strong> zum Einsatz – überall dort, wo robuste Kabel gefragt sind, die im Betrieb und bei der Verlegung hohen mechanischen Belastungen standhalten.</p>
|
||||
<h3 data-start="950" data-end="979">Aufbau und Eigenschaften</h3>
|
||||
<p data-start="981" data-end="1427">Der elektrische Leiter besteht aus <strong data-start="1016" data-end="1029">Aluminium</strong>, wahlweise als rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig (SE/SM). Die Adern sind mit <strong data-start="1135" data-end="1150">PE isoliert</strong>, verseilt und durch eine <strong data-start="1176" data-end="1209">gemeinsame EPDM-Aderumhüllung</strong> geschützt. Der Außenmantel besteht aus <strong data-start="1249" data-end="1257">HDPE</strong>, ist schwarz, UV-beständig und besonders widerstandsfähig gegenüber Abrieb, Druck und Feuchtigkeit – ideal für langfristige Installationen in anspruchsvollen Umgebungen.</p>
|
||||
<h3 data-start="1429" data-end="1449">Einsatzvorteile</h3>
|
||||
<p data-start="1451" data-end="1756">NA2X2Y Kabel bieten eine <strong data-start="1476" data-end="1524">technisch robuste und wirtschaftliche Lösung</strong> für die Energieverteilung in Netzen mit erhöhten Anforderungen. Ihre hohe mechanische Belastbarkeit und Witterungsbeständigkeit machen sie zur ersten Wahl für anspruchsvolle Infrastrukturanwendungen im Energie- und Industriesektor.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -11,33 +11,7 @@ categories:
|
||||
images: []
|
||||
locale: de
|
||||
---
|
||||
# NA2X(F)K2Y
|
||||
|
||||
<section>
|
||||
<h2>Technische Übersicht</h2>
|
||||
<p>Die <strong>NA2X(F)K2Y-Hochspannungskabelserie</strong> ist speziell für den Einsatz in Hochspannungsanwendungen entwickelt worden, wobei sie sich durch eine hohe Strombelastbarkeit und exzellente Kurzschlussstromfestigkeit auszeichnet. Diese Kabel sind mit einer fortschrittlichen XLPE-Isolierung ausgestattet, die eine hohe Durchschlagsfestigkeit und Thermozyklierungsfähigkeit bietet.</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Installations- und Konstruktionsmerkmale</h2>
|
||||
<p>Die NA2X(F)K2Y-Kabel sind für verschiedene Verlegeverfahren wie Erdverlegung, Kabeltrassen-Montage und Kleeblattformation geeignet. Diese Flexibilität in der Installation macht sie zu einer bevorzugten Wahl für vielfältige industrielle Anwendungen.</p>
|
||||
<ul>
|
||||
<li>Verwendung von hochleitfähigem Kupfer als Leitermaterial für optimale Leitfähigkeit und Effizienz.</li>
|
||||
<li>XLPE-Isolierung gewährleistet eine verbesserte thermische Beständigkeit und Langlebigkeit unter extremen Betriebsbedingungen.</li>
|
||||
<li>Die Kabelkonstruktion unterstützt die Einhaltung der EMV-Anforderungen und minimiert die Risiken der Spannungsinduzierung.</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Normen und Zertifizierungen</h2>
|
||||
<p>Die Einhaltung internationaler und regionaler Normen ist für die NA2X(F)K2Y-Kabelserie von entscheidender Bedeutung. Diese Produkte sind vollständig IEC-konform und tragen die CE-Kennzeichnung, was ihre Qualität und Sicherheit in verschiedenen Anwendungsbereichen bestätigt.</p>
|
||||
<ul>
|
||||
<li>CPR-Klassifizierung sorgt für die Einhaltung strenger europäischer Sicherheitsstandards.</li>
|
||||
<li>Die Kabelserie erfüllt die Anforderungen für hohe Spannungsklassen und bietet zuverlässige Leistung in anspruchsvollen Umgebungen.</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Nennspannung (kV)",
|
||||
@@ -260,4 +234,28 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h2>Technische Übersicht</h2>
|
||||
<p>Die <strong>NA2X(F)K2Y-Hochspannungskabelserie</strong> ist speziell für den Einsatz in Hochspannungsanwendungen entwickelt worden, wobei sie sich durch eine hohe Strombelastbarkeit und exzellente Kurzschlussstromfestigkeit auszeichnet. Diese Kabel sind mit einer fortschrittlichen XLPE-Isolierung ausgestattet, die eine hohe Durchschlagsfestigkeit und Thermozyklierungsfähigkeit bietet.</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Installations- und Konstruktionsmerkmale</h2>
|
||||
<p>Die NA2X(F)K2Y-Kabel sind für verschiedene Verlegeverfahren wie Erdverlegung, Kabeltrassen-Montage und Kleeblattformation geeignet. Diese Flexibilität in der Installation macht sie zu einer bevorzugten Wahl für vielfältige industrielle Anwendungen.</p>
|
||||
<ul>
|
||||
<li>Verwendung von hochleitfähigem Kupfer als Leitermaterial für optimale Leitfähigkeit und Effizienz.</li>
|
||||
<li>XLPE-Isolierung gewährleistet eine verbesserte thermische Beständigkeit und Langlebigkeit unter extremen Betriebsbedingungen.</li>
|
||||
<li>Die Kabelkonstruktion unterstützt die Einhaltung der EMV-Anforderungen und minimiert die Risiken der Spannungsinduzierung.</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Normen und Zertifizierungen</h2>
|
||||
<p>Die Einhaltung internationaler und regionaler Normen ist für die NA2X(F)K2Y-Kabelserie von entscheidender Bedeutung. Diese Produkte sind vollständig IEC-konform und tragen die CE-Kennzeichnung, was ihre Qualität und Sicherheit in verschiedenen Anwendungsbereichen bestätigt.</p>
|
||||
<ul>
|
||||
<li>CPR-Klassifizierung sorgt für die Einhaltung strenger europäischer Sicherheitsstandards.</li>
|
||||
<li>Die Kabelserie erfüllt die Anforderungen für hohe Spannungsklassen und bietet zuverlässige Leistung in anspruchsvollen Umgebungen.</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -11,34 +11,7 @@ categories:
|
||||
images: []
|
||||
locale: de
|
||||
---
|
||||
# NA2X(F)KLD2Y
|
||||
|
||||
<section>
|
||||
<h2>Technische Übersicht</h2>
|
||||
<p>Die <strong>NA2X(F)KLD2Y-Hochspannungskabelserie</strong> ist für den Einsatz in Hochspannungsanwendungen konzipiert und bietet eine optimale Lösung für anspruchsvolle industrielle Umgebungen. Mit ihrer fortschrittlichen XLPE-Isolierung und Kupferleitern erfüllt sie hohe Anforderungen an die <strong>Durchschlagsfestigkeit</strong> und <strong>Thermozyklierung</strong>.</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Technische Leistung und Konstruktion</h2>
|
||||
<p>Die Kabelserie ist entwickelt, um eine hohe <strong>Strombelastbarkeit</strong> und <strong>Kurzschlussstromfestigkeit</strong> zu gewährleisten. Die Verwendung von hochreinem Kupfer maximiert die Leitfähigkeit und unterstützt effiziente Energieübertragung. Die XLPE-Isolierung bietet eine hervorragende thermische Beständigkeit und ermöglicht den Einsatz in verschiedenen thermischen Bedingungen.</p>
|
||||
<ul>
|
||||
<li>Verstärkte Isolierung für verbesserte <strong>Durchschlagsfestigkeit</strong></li>
|
||||
<li>Optimierte Kabelgeometrie zur Unterstützung der <strong>elektromagnetischen Verträglichkeit</strong> (EMV)</li>
|
||||
<li>Effektive Spannungsinduzierungsreduktion durch spezielle Abschirmtechniken</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Installations- und Normkonformität</h2>
|
||||
<p>Die NA2X(F)KLD2Y-Kabelserie unterstützt diverse Verlegeverfahren wie <strong>Erdverlegung</strong>, <strong>Kabeltrassen-Montage</strong> und <strong>Kleeblattformation</strong>, was ihre Vielseitigkeit in der praktischen Anwendung unterstreicht. Sie entspricht den internationalen Normen, inklusive <strong>IEC-Konformität</strong>, <strong>CPR-Klassifizierung</strong> und trägt die <strong>CE-Kennzeichnung</strong>.</p>
|
||||
<ul>
|
||||
<li>Anpassungsfähigkeit an verschiedene Verlegebedingungen und Umgebungen</li>
|
||||
<li>Einhaltung strenger internationaler und europäischer Standards</li>
|
||||
<li>Verfügbar in mehreren Konfigurationen, um spezifische Anforderungen zu erfüllen</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Nennspannung (kV)",
|
||||
@@ -239,4 +212,29 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h2>Technische Übersicht</h2>
|
||||
<p>Die <strong>NA2X(F)KLD2Y-Hochspannungskabelserie</strong> ist für den Einsatz in Hochspannungsanwendungen konzipiert und bietet eine optimale Lösung für anspruchsvolle industrielle Umgebungen. Mit ihrer fortschrittlichen XLPE-Isolierung und Kupferleitern erfüllt sie hohe Anforderungen an die <strong>Durchschlagsfestigkeit</strong> und <strong>Thermozyklierung</strong>.</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Technische Leistung und Konstruktion</h2>
|
||||
<p>Die Kabelserie ist entwickelt, um eine hohe <strong>Strombelastbarkeit</strong> und <strong>Kurzschlussstromfestigkeit</strong> zu gewährleisten. Die Verwendung von hochreinem Kupfer maximiert die Leitfähigkeit und unterstützt effiziente Energieübertragung. Die XLPE-Isolierung bietet eine hervorragende thermische Beständigkeit und ermöglicht den Einsatz in verschiedenen thermischen Bedingungen.</p>
|
||||
<ul>
|
||||
<li>Verstärkte Isolierung für verbesserte <strong>Durchschlagsfestigkeit</strong></li>
|
||||
<li>Optimierte Kabelgeometrie zur Unterstützung der <strong>elektromagnetischen Verträglichkeit</strong> (EMV)</li>
|
||||
<li>Effektive Spannungsinduzierungsreduktion durch spezielle Abschirmtechniken</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Installations- und Normkonformität</h2>
|
||||
<p>Die NA2X(F)KLD2Y-Kabelserie unterstützt diverse Verlegeverfahren wie <strong>Erdverlegung</strong>, <strong>Kabeltrassen-Montage</strong> und <strong>Kleeblattformation</strong>, was ihre Vielseitigkeit in der praktischen Anwendung unterstreicht. Sie entspricht den internationalen Normen, inklusive <strong>IEC-Konformität</strong>, <strong>CPR-Klassifizierung</strong> und trägt die <strong>CE-Kennzeichnung</strong>.</p>
|
||||
<ul>
|
||||
<li>Anpassungsfähigkeit an verschiedene Verlegebedingungen und Umgebungen</li>
|
||||
<li>Einhaltung strenger internationaler und europäischer Standards</li>
|
||||
<li>Verfügbar in mehreren Konfigurationen, um spezifische Anforderungen zu erfüllen</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/NA2XS2Y-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# NA2XS2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="462" data-end="510">Für raue Umgebungen und intensive Belastung</h3>
|
||||
<p data-start="512" data-end="900">Das <strong data-start="516" data-end="527">NA2XS2Y</strong> erfüllt die Normen <strong data-start="547" data-end="567">DIN VDE 0276-620</strong>, <strong data-start="569" data-end="582">HD 620 S2</strong> und <strong data-start="587" data-end="600">IEC 60502</strong> und ist speziell für die <strong data-start="626" data-end="708">feste Verlegung in Innenräumen, Kabelkanälen, im Freien, in Erde und in Wasser</strong> ausgelegt. Es findet seinen Einsatz in <strong data-start="748" data-end="801">Industrieanlagen, Schaltstationen und Kraftwerken</strong>, besonders dort, wo das Kabel beim Verlegen oder im Betrieb <strong data-start="862" data-end="894">mechanisch stark beansprucht</strong> wird.</p>
|
||||
<h3 data-start="902" data-end="937">Aufbau und technische Merkmale</h3>
|
||||
<p data-start="939" data-end="1476">Das Kabel ist mit einem <strong data-start="963" data-end="996">mehrdrähtigen Aluminiumleiter</strong> (Kl. 2 nach DIN VDE 0295 / IEC 60228) ausgestattet. Die <strong data-start="1053" data-end="1070">VPE-Isolation</strong> (Typ DIX8) ist untrennbar mit der <strong data-start="1105" data-end="1128">äußeren Leitschicht</strong> verbunden und sorgt gemeinsam mit der <strong data-start="1167" data-end="1190">inneren Leitschicht</strong> für einen <strong data-start="1201" data-end="1233">teilentladungsfreien Betrieb</strong>. Die <strong data-start="1239" data-end="1254">Abschirmung</strong> erfolgt über eine Umspinnung aus Kupferdrähten mit Querleitwendeln. Der Außenmantel aus <strong data-start="1343" data-end="1370">schwarzem PE (Typ DMP2)</strong> schützt vor Feuchtigkeit, mechanischem Druck und chemischen Einflüssen – allerdings ohne Flammwidrigkeit.</p>
|
||||
<h3 data-start="1478" data-end="1526">Besondere Eigenschaften und Einsatzvorteile</h3>
|
||||
<p data-start="1528" data-end="1930">NA2XS2Y ist <strong data-start="1540" data-end="1556">erdverlegbar</strong> und für den Einsatz <strong data-start="1577" data-end="1607">bei Temperaturen ab -20 °C</strong> geeignet. Es ist <strong data-start="1625" data-end="1653">silikon- und cadmiumfrei</strong>, frei von lackbenetzungsstörenden Stoffen und erreicht eine <strong data-start="1714" data-end="1754">Betriebstemperatur von bis zu +90 °C</strong>, im Kurzschlussfall sogar bis <strong data-start="1785" data-end="1796">+250 °C</strong>. Der schwarze PE-Mantel macht das Kabel zur <strong data-start="1841" data-end="1929">ideal belastbaren Lösung für dauerhafte, unterirdische Mittelspannungsinstallationen</strong>.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -1105,4 +1092,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="462" data-end="510">Für raue Umgebungen und intensive Belastung</h3>
|
||||
<p data-start="512" data-end="900">Das <strong data-start="516" data-end="527">NA2XS2Y</strong> erfüllt die Normen <strong data-start="547" data-end="567">DIN VDE 0276-620</strong>, <strong data-start="569" data-end="582">HD 620 S2</strong> und <strong data-start="587" data-end="600">IEC 60502</strong> und ist speziell für die <strong data-start="626" data-end="708">feste Verlegung in Innenräumen, Kabelkanälen, im Freien, in Erde und in Wasser</strong> ausgelegt. Es findet seinen Einsatz in <strong data-start="748" data-end="801">Industrieanlagen, Schaltstationen und Kraftwerken</strong>, besonders dort, wo das Kabel beim Verlegen oder im Betrieb <strong data-start="862" data-end="894">mechanisch stark beansprucht</strong> wird.</p>
|
||||
<h3 data-start="902" data-end="937">Aufbau und technische Merkmale</h3>
|
||||
<p data-start="939" data-end="1476">Das Kabel ist mit einem <strong data-start="963" data-end="996">mehrdrähtigen Aluminiumleiter</strong> (Kl. 2 nach DIN VDE 0295 / IEC 60228) ausgestattet. Die <strong data-start="1053" data-end="1070">VPE-Isolation</strong> (Typ DIX8) ist untrennbar mit der <strong data-start="1105" data-end="1128">äußeren Leitschicht</strong> verbunden und sorgt gemeinsam mit der <strong data-start="1167" data-end="1190">inneren Leitschicht</strong> für einen <strong data-start="1201" data-end="1233">teilentladungsfreien Betrieb</strong>. Die <strong data-start="1239" data-end="1254">Abschirmung</strong> erfolgt über eine Umspinnung aus Kupferdrähten mit Querleitwendeln. Der Außenmantel aus <strong data-start="1343" data-end="1370">schwarzem PE (Typ DMP2)</strong> schützt vor Feuchtigkeit, mechanischem Druck und chemischen Einflüssen – allerdings ohne Flammwidrigkeit.</p>
|
||||
<h3 data-start="1478" data-end="1526">Besondere Eigenschaften und Einsatzvorteile</h3>
|
||||
<p data-start="1528" data-end="1930">NA2XS2Y ist <strong data-start="1540" data-end="1556">erdverlegbar</strong> und für den Einsatz <strong data-start="1577" data-end="1607">bei Temperaturen ab -20 °C</strong> geeignet. Es ist <strong data-start="1625" data-end="1653">silikon- und cadmiumfrei</strong>, frei von lackbenetzungsstörenden Stoffen und erreicht eine <strong data-start="1714" data-end="1754">Betriebstemperatur von bis zu +90 °C</strong>, im Kurzschlussfall sogar bis <strong data-start="1785" data-end="1796">+250 °C</strong>. Der schwarze PE-Mantel macht das Kabel zur <strong data-start="1841" data-end="1929">ideal belastbaren Lösung für dauerhafte, unterirdische Mittelspannungsinstallationen</strong>.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/NA2XSF2Y-3-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# NA2XS(F)2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="508" data-end="575">Für leistungsstarke Versorgungsnetze mit erhöhtem Schutzbedarf</h3>
|
||||
<p data-start="577" data-end="994">Das <strong data-start="581" data-end="595">NA2XS(F)2Y</strong> entspricht den Normen <strong data-start="618" data-end="638">DIN VDE 0276-620</strong>, <strong data-start="640" data-end="653">HD 620 S2</strong> und <strong data-start="658" data-end="671">IEC 60502</strong>. Es eignet sich für die <strong data-start="696" data-end="797">Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser, im Freien oder auf Kabelpritschen</strong>. Der Einsatzschwerpunkt liegt in <strong data-start="831" data-end="881">EVU-Netzen, Industrieanlagen und Umspannwerken</strong>, wo zusätzliche Sicherheitsreserven gegen eindringende Feuchtigkeit und mechanische Belastung erforderlich sind.</p>
|
||||
<h3 data-start="996" data-end="1033">Aufbau und Materialeigenschaften</h3>
|
||||
<p data-start="1035" data-end="1537">Der Leiter besteht aus <strong data-start="1058" data-end="1085">mehrdrähtigem Aluminium</strong> (Klasse 2), umgeben von einer <strong data-start="1116" data-end="1139">inneren Leitschicht</strong> und einer <strong data-start="1150" data-end="1168">VPE-Isolierung</strong> mit festhaftender äußerer Leitschicht – extrudiert in einem Arbeitsgang für maximale Betriebssicherheit. Die Abschirmung erfolgt durch eine <strong data-start="1309" data-end="1354">Kupferdraht-Umspinnung mit Querleitwendel</strong>, ergänzt durch eine <strong data-start="1375" data-end="1407">längswasserdichte Bandierung</strong>. Der Außenmantel besteht aus <strong data-start="1437" data-end="1464">schwarzem PE (Typ DMP2)</strong> und schützt zuverlässig vor mechanischer Beanspruchung und Feuchtigkeit.</p>
|
||||
<h3 data-start="1539" data-end="1577">Eigenschaften und Einsatzbereiche</h3>
|
||||
<p data-start="1579" data-end="1977">Das NA2XS(F)2Y ist <strong data-start="1598" data-end="1614">erdverlegbar</strong>, <strong data-start="1616" data-end="1644">silikon- und cadmiumfrei</strong> sowie <strong data-start="1651" data-end="1704">resistent gegen lackbenetzungsstörende Substanzen</strong>. Es hält <strong data-start="1714" data-end="1746">Dauertemperaturen bis +90 °C</strong> stand und übersteht <strong data-start="1767" data-end="1805">Kurzschlussbelastungen bis +250 °C</strong>. Dank seines durchdachten, teilentladungsfreien Aufbaus ist es besonders gut geeignet für die <strong data-start="1900" data-end="1976">sichere Energieverteilung in feuchten, komplexen Installationsumgebungen</strong>.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -1087,4 +1074,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="508" data-end="575">Für leistungsstarke Versorgungsnetze mit erhöhtem Schutzbedarf</h3>
|
||||
<p data-start="577" data-end="994">Das <strong data-start="581" data-end="595">NA2XS(F)2Y</strong> entspricht den Normen <strong data-start="618" data-end="638">DIN VDE 0276-620</strong>, <strong data-start="640" data-end="653">HD 620 S2</strong> und <strong data-start="658" data-end="671">IEC 60502</strong>. Es eignet sich für die <strong data-start="696" data-end="797">Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser, im Freien oder auf Kabelpritschen</strong>. Der Einsatzschwerpunkt liegt in <strong data-start="831" data-end="881">EVU-Netzen, Industrieanlagen und Umspannwerken</strong>, wo zusätzliche Sicherheitsreserven gegen eindringende Feuchtigkeit und mechanische Belastung erforderlich sind.</p>
|
||||
<h3 data-start="996" data-end="1033">Aufbau und Materialeigenschaften</h3>
|
||||
<p data-start="1035" data-end="1537">Der Leiter besteht aus <strong data-start="1058" data-end="1085">mehrdrähtigem Aluminium</strong> (Klasse 2), umgeben von einer <strong data-start="1116" data-end="1139">inneren Leitschicht</strong> und einer <strong data-start="1150" data-end="1168">VPE-Isolierung</strong> mit festhaftender äußerer Leitschicht – extrudiert in einem Arbeitsgang für maximale Betriebssicherheit. Die Abschirmung erfolgt durch eine <strong data-start="1309" data-end="1354">Kupferdraht-Umspinnung mit Querleitwendel</strong>, ergänzt durch eine <strong data-start="1375" data-end="1407">längswasserdichte Bandierung</strong>. Der Außenmantel besteht aus <strong data-start="1437" data-end="1464">schwarzem PE (Typ DMP2)</strong> und schützt zuverlässig vor mechanischer Beanspruchung und Feuchtigkeit.</p>
|
||||
<h3 data-start="1539" data-end="1577">Eigenschaften und Einsatzbereiche</h3>
|
||||
<p data-start="1579" data-end="1977">Das NA2XS(F)2Y ist <strong data-start="1598" data-end="1614">erdverlegbar</strong>, <strong data-start="1616" data-end="1644">silikon- und cadmiumfrei</strong> sowie <strong data-start="1651" data-end="1704">resistent gegen lackbenetzungsstörende Substanzen</strong>. Es hält <strong data-start="1714" data-end="1746">Dauertemperaturen bis +90 °C</strong> stand und übersteht <strong data-start="1767" data-end="1805">Kurzschlussbelastungen bis +250 °C</strong>. Dank seines durchdachten, teilentladungsfreien Aufbaus ist es besonders gut geeignet für die <strong data-start="1900" data-end="1976">sichere Energieverteilung in feuchten, komplexen Installationsumgebungen</strong>.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/NA2XSFL2Y-3-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# NA2XS(FL)2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="481" data-end="540">Entwickelt für den Einsatz in Energieversorgungsnetzen</h3>
|
||||
<p data-start="542" data-end="974">Das <strong data-start="546" data-end="561">NA2XS(FL)2Y</strong> erfüllt die Normen <strong data-start="581" data-end="601">DIN VDE 0276-620</strong>, <strong data-start="603" data-end="616">HD 620 S2</strong> und <strong data-start="621" data-end="634">IEC 60502</strong>. Es ist ideal für die Verlegung in <strong data-start="670" data-end="765">Energieversorgungsnetzen (EVU), Innenräumen, Kabelkanälen, im Freien, in Erde und in Wasser</strong> geeignet. Dank seiner Konstruktion mit längswasserdichter Ausführung und Alu-PE-Schichtenmantel bleibt es auch bei Beschädigungen betriebssicher – der Wassereinfluss wird gezielt auf die Schadstelle begrenzt.</p>
|
||||
<h3 data-start="976" data-end="999">Technischer Aufbau</h3>
|
||||
<p data-start="1001" data-end="1556">Das Kabel besitzt einen <strong data-start="1025" data-end="1058">mehrdrähtigen Aluminiumleiter</strong> (Kl. 2 nach VDE 0295 / IEC 60228), umgeben von einer <strong data-start="1112" data-end="1130">VPE-Isolierung</strong> mit <strong data-start="1135" data-end="1172">festhaftender äußerer Leitschicht</strong>. Eine <strong data-start="1179" data-end="1223">leitfähige, längswasserdichte Bandierung</strong> sowie eine <strong data-start="1235" data-end="1281">Kupferdraht-Abschirmung mit Querleitwendel</strong> sorgen für zuverlässige Feldsteuerung. Zusätzlich ist das Kabel mit einer <strong data-start="1356" data-end="1398">längswasserdichten Aluminiumbandierung</strong> ausgestattet, die <strong data-start="1417" data-end="1453">fest mit dem schwarzen PE-Mantel</strong> verschweißt ist. Das Ergebnis: hoher Schutz vor mechanischer Belastung und eindringender Feuchtigkeit.</p>
|
||||
<h3 data-start="1558" data-end="1590">Eigenschaften und Anwendung</h3>
|
||||
<p data-start="1592" data-end="1977">Das NA2XS(FL)2Y Kabel ist <strong data-start="1618" data-end="1634">erdverlegbar</strong>, <strong data-start="1636" data-end="1664">silikon- und cadmiumfrei</strong> und eignet sich für Umgebungen mit hoher mechanischer Beanspruchung. Es hält <strong data-start="1742" data-end="1780">Temperaturen bis +90 °C im Betrieb</strong> und <strong data-start="1785" data-end="1819">bis +250 °C im Kurzschlussfall</strong> stand. Dank teilentladungsfreiem Aufbau und Querwassersperre ist es besonders gut für <strong data-start="1906" data-end="1939">kritische Versorgungsbereiche</strong> in der Energieinfrastruktur geeignet.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -1123,4 +1110,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="481" data-end="540">Entwickelt für den Einsatz in Energieversorgungsnetzen</h3>
|
||||
<p data-start="542" data-end="974">Das <strong data-start="546" data-end="561">NA2XS(FL)2Y</strong> erfüllt die Normen <strong data-start="581" data-end="601">DIN VDE 0276-620</strong>, <strong data-start="603" data-end="616">HD 620 S2</strong> und <strong data-start="621" data-end="634">IEC 60502</strong>. Es ist ideal für die Verlegung in <strong data-start="670" data-end="765">Energieversorgungsnetzen (EVU), Innenräumen, Kabelkanälen, im Freien, in Erde und in Wasser</strong> geeignet. Dank seiner Konstruktion mit längswasserdichter Ausführung und Alu-PE-Schichtenmantel bleibt es auch bei Beschädigungen betriebssicher – der Wassereinfluss wird gezielt auf die Schadstelle begrenzt.</p>
|
||||
<h3 data-start="976" data-end="999">Technischer Aufbau</h3>
|
||||
<p data-start="1001" data-end="1556">Das Kabel besitzt einen <strong data-start="1025" data-end="1058">mehrdrähtigen Aluminiumleiter</strong> (Kl. 2 nach VDE 0295 / IEC 60228), umgeben von einer <strong data-start="1112" data-end="1130">VPE-Isolierung</strong> mit <strong data-start="1135" data-end="1172">festhaftender äußerer Leitschicht</strong>. Eine <strong data-start="1179" data-end="1223">leitfähige, längswasserdichte Bandierung</strong> sowie eine <strong data-start="1235" data-end="1281">Kupferdraht-Abschirmung mit Querleitwendel</strong> sorgen für zuverlässige Feldsteuerung. Zusätzlich ist das Kabel mit einer <strong data-start="1356" data-end="1398">längswasserdichten Aluminiumbandierung</strong> ausgestattet, die <strong data-start="1417" data-end="1453">fest mit dem schwarzen PE-Mantel</strong> verschweißt ist. Das Ergebnis: hoher Schutz vor mechanischer Belastung und eindringender Feuchtigkeit.</p>
|
||||
<h3 data-start="1558" data-end="1590">Eigenschaften und Anwendung</h3>
|
||||
<p data-start="1592" data-end="1977">Das NA2XS(FL)2Y Kabel ist <strong data-start="1618" data-end="1634">erdverlegbar</strong>, <strong data-start="1636" data-end="1664">silikon- und cadmiumfrei</strong> und eignet sich für Umgebungen mit hoher mechanischer Beanspruchung. Es hält <strong data-start="1742" data-end="1780">Temperaturen bis +90 °C im Betrieb</strong> und <strong data-start="1785" data-end="1819">bis +250 °C im Kurzschlussfall</strong> stand. Dank teilentladungsfreiem Aufbau und Querwassersperre ist es besonders gut für <strong data-start="1906" data-end="1939">kritische Versorgungsbereiche</strong> in der Energieinfrastruktur geeignet.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/06/NA2XSFL2Y-3-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# NA2XS(FL)2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="443" data-end="505">Ideal für Hochspannungsanwendungen im Erdreich und Freien</h3>
|
||||
<p data-start="507" data-end="867">Das <strong data-start="511" data-end="526">NA2XS(FL)2Y</strong> erfüllt die Anforderungen der <strong data-start="557" data-end="570">IEC 60840</strong> und eignet sich für die <strong data-start="595" data-end="669">Verlegung im Boden, in Kabelkanälen, Innenräumen, Rohren und im Freien</strong>. Es wird projektbezogen gefertigt und ist besonders in <strong data-start="725" data-end="798">Übertragungsnetzen, Energieversorgerinfrastrukturen und Umspannwerken</strong> im Einsatz, wo Sicherheit und Langlebigkeit oberste Priorität haben.</p>
|
||||
<h3 data-start="869" data-end="904">Aufbau und technische Merkmale</h3>
|
||||
<p data-start="906" data-end="1465">Im Kern arbeitet ein <strong data-start="927" data-end="975">kompaktierter, mehrdrähtiger Aluminiumleiter</strong> nach <strong data-start="981" data-end="994">IEC 60228</strong>, eingebettet in eine <strong data-start="1016" data-end="1043">leitfähige Innenschicht</strong>, eine <strong data-start="1050" data-end="1068">XLPE-Isolation</strong> und eine <strong data-start="1078" data-end="1128">vollständig haftende, extrudierte Außenschicht</strong>. Die Kombination aus <strong data-start="1150" data-end="1177">quellfähiger Bandierung</strong>, <strong data-start="1179" data-end="1219">Kupferabschirmung mit offener Wendel</strong> und einer weiteren <strong data-start="1239" data-end="1263">quellfähigen Bandage</strong> schützt das Kabel effektiv vor eindringender Feuchtigkeit. Der schwarze <strong data-start="1336" data-end="1396">PE-Mantel mit fest verschweißtem Aluminiumband (Alucopo)</strong> dient gleichzeitig als mechanischer Schutz und <strong data-start="1444" data-end="1464">Querwassersperre</strong>.</p>
|
||||
<h3 data-start="1467" data-end="1505">Eigenschaften und Einsatzvorteile</h3>
|
||||
<p data-start="1507" data-end="1827">Das NA2XS(FL)2Y ist <strong data-start="1527" data-end="1543">erdverlegbar</strong>, <strong data-start="1545" data-end="1569">mechanisch belastbar</strong> und bietet durch seinen <strong data-start="1594" data-end="1625">teilentladungsfreien Aufbau</strong> und die wasserabweisende Konstruktion eine sehr hohe Betriebssicherheit. Es wird projektbezogen konfiguriert und ist flexibel einsetzbar – von urbanen Energieprojekten bis zu industriellen Großanlagen.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -1123,4 +1110,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="443" data-end="505">Ideal für Hochspannungsanwendungen im Erdreich und Freien</h3>
|
||||
<p data-start="507" data-end="867">Das <strong data-start="511" data-end="526">NA2XS(FL)2Y</strong> erfüllt die Anforderungen der <strong data-start="557" data-end="570">IEC 60840</strong> und eignet sich für die <strong data-start="595" data-end="669">Verlegung im Boden, in Kabelkanälen, Innenräumen, Rohren und im Freien</strong>. Es wird projektbezogen gefertigt und ist besonders in <strong data-start="725" data-end="798">Übertragungsnetzen, Energieversorgerinfrastrukturen und Umspannwerken</strong> im Einsatz, wo Sicherheit und Langlebigkeit oberste Priorität haben.</p>
|
||||
<h3 data-start="869" data-end="904">Aufbau und technische Merkmale</h3>
|
||||
<p data-start="906" data-end="1465">Im Kern arbeitet ein <strong data-start="927" data-end="975">kompaktierter, mehrdrähtiger Aluminiumleiter</strong> nach <strong data-start="981" data-end="994">IEC 60228</strong>, eingebettet in eine <strong data-start="1016" data-end="1043">leitfähige Innenschicht</strong>, eine <strong data-start="1050" data-end="1068">XLPE-Isolation</strong> und eine <strong data-start="1078" data-end="1128">vollständig haftende, extrudierte Außenschicht</strong>. Die Kombination aus <strong data-start="1150" data-end="1177">quellfähiger Bandierung</strong>, <strong data-start="1179" data-end="1219">Kupferabschirmung mit offener Wendel</strong> und einer weiteren <strong data-start="1239" data-end="1263">quellfähigen Bandage</strong> schützt das Kabel effektiv vor eindringender Feuchtigkeit. Der schwarze <strong data-start="1336" data-end="1396">PE-Mantel mit fest verschweißtem Aluminiumband (Alucopo)</strong> dient gleichzeitig als mechanischer Schutz und <strong data-start="1444" data-end="1464">Querwassersperre</strong>.</p>
|
||||
<h3 data-start="1467" data-end="1505">Eigenschaften und Einsatzvorteile</h3>
|
||||
<p data-start="1507" data-end="1827">Das NA2XS(FL)2Y ist <strong data-start="1527" data-end="1543">erdverlegbar</strong>, <strong data-start="1545" data-end="1569">mechanisch belastbar</strong> und bietet durch seinen <strong data-start="1594" data-end="1625">teilentladungsfreien Aufbau</strong> und die wasserabweisende Konstruktion eine sehr hohe Betriebssicherheit. Es wird projektbezogen konfiguriert und ist flexibel einsetzbar – von urbanen Energieprojekten bis zu industriellen Großanlagen.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -13,20 +13,7 @@ images:
|
||||
- /uploads/2025/01/NA2XSY-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# NA2XSY
|
||||
|
||||
<section>
|
||||
<h3 data-start="501" data-end="546">Für leistungsstarke Mittelspannungsnetze</h3>
|
||||
<p data-start="548" data-end="961">Das <strong data-start="552" data-end="562">NA2XSY</strong> erfüllt die Anforderungen der Normen <strong data-start="600" data-end="620">DIN VDE 0276-620</strong>, <strong data-start="622" data-end="635">HD 620 S2</strong> und <strong data-start="640" data-end="653">IEC 60502</strong>. Es eignet sich für die <strong data-start="678" data-end="759">Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser oder im Freien</strong> – allerdings nur bei geschützter Verlegung. Typische Einsatzorte sind <strong data-start="830" data-end="880">Industrieanlagen, Kraftwerke und Schaltanlagen</strong>, in denen Mittelspannung mit hoher Betriebssicherheit transportiert werden muss.</p>
|
||||
<h3 data-start="963" data-end="986">Technischer Aufbau</h3>
|
||||
<p data-start="988" data-end="1476">Der Leiter besteht aus <strong data-start="1011" data-end="1038">mehrdrähtigem Aluminium</strong> (Kl. 2 nach VDE 0295 / IEC 60228). Die <strong data-start="1078" data-end="1096">VPE-Isolierung</strong> ist dauerhaft mit der <strong data-start="1119" data-end="1142">äußeren Leitschicht</strong> verbunden, um eine <strong data-start="1162" data-end="1194">teilentladungsfreie Struktur</strong> zu gewährleisten. Der Aufbau umfasst außerdem eine <strong data-start="1246" data-end="1268">innere Leitschicht</strong>, <strong data-start="1270" data-end="1295">leitfähige Bandierung</strong>, eine <strong data-start="1302" data-end="1340">Cu-Abschirmung mit Querleitwendeln</strong>, zusätzliche Bandierung sowie einen <strong data-start="1377" data-end="1397">roten PVC-Mantel</strong>. Das Kabel ist flammwidrig und für <strong data-start="1433" data-end="1461">Erdverlegung freigegeben</strong> (je nach Typ).</p>
|
||||
<h3 data-start="1478" data-end="1510">Anwendung und Eigenschaften</h3>
|
||||
<p data-start="1512" data-end="1981">Dank seines präzisen Aufbaus lässt sich das NA2XSY auch bei komplexer Trassenführung gut verlegen. Es ist <strong data-start="1618" data-end="1646">silikon- und cadmiumfrei</strong>, enthält keine lackbenetzungsstörenden Stoffe und hält <strong data-start="1702" data-end="1741">Kurzschlusstemperaturen bis +250 °C</strong> stand. Der konzentrische Aufbau und die festhaftenden Leitschichten machen dieses Kabel zur <strong data-start="1834" data-end="1906">zuverlässigen Lösung für mittelspannungsgeführte Energieverteilungen</strong>, bei denen Betriebssicherheit und Montagefreundlichkeit entscheidend sind.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -1137,4 +1124,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="501" data-end="546">Für leistungsstarke Mittelspannungsnetze</h3>
|
||||
<p data-start="548" data-end="961">Das <strong data-start="552" data-end="562">NA2XSY</strong> erfüllt die Anforderungen der Normen <strong data-start="600" data-end="620">DIN VDE 0276-620</strong>, <strong data-start="622" data-end="635">HD 620 S2</strong> und <strong data-start="640" data-end="653">IEC 60502</strong>. Es eignet sich für die <strong data-start="678" data-end="759">Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser oder im Freien</strong> – allerdings nur bei geschützter Verlegung. Typische Einsatzorte sind <strong data-start="830" data-end="880">Industrieanlagen, Kraftwerke und Schaltanlagen</strong>, in denen Mittelspannung mit hoher Betriebssicherheit transportiert werden muss.</p>
|
||||
<h3 data-start="963" data-end="986">Technischer Aufbau</h3>
|
||||
<p data-start="988" data-end="1476">Der Leiter besteht aus <strong data-start="1011" data-end="1038">mehrdrähtigem Aluminium</strong> (Kl. 2 nach VDE 0295 / IEC 60228). Die <strong data-start="1078" data-end="1096">VPE-Isolierung</strong> ist dauerhaft mit der <strong data-start="1119" data-end="1142">äußeren Leitschicht</strong> verbunden, um eine <strong data-start="1162" data-end="1194">teilentladungsfreie Struktur</strong> zu gewährleisten. Der Aufbau umfasst außerdem eine <strong data-start="1246" data-end="1268">innere Leitschicht</strong>, <strong data-start="1270" data-end="1295">leitfähige Bandierung</strong>, eine <strong data-start="1302" data-end="1340">Cu-Abschirmung mit Querleitwendeln</strong>, zusätzliche Bandierung sowie einen <strong data-start="1377" data-end="1397">roten PVC-Mantel</strong>. Das Kabel ist flammwidrig und für <strong data-start="1433" data-end="1461">Erdverlegung freigegeben</strong> (je nach Typ).</p>
|
||||
<h3 data-start="1478" data-end="1510">Anwendung und Eigenschaften</h3>
|
||||
<p data-start="1512" data-end="1981">Dank seines präzisen Aufbaus lässt sich das NA2XSY auch bei komplexer Trassenführung gut verlegen. Es ist <strong data-start="1618" data-end="1646">silikon- und cadmiumfrei</strong>, enthält keine lackbenetzungsstörenden Stoffe und hält <strong data-start="1702" data-end="1741">Kurzschlusstemperaturen bis +250 °C</strong> stand. Der konzentrische Aufbau und die festhaftenden Leitschichten machen dieses Kabel zur <strong data-start="1834" data-end="1906">zuverlässigen Lösung für mittelspannungsgeführte Energieverteilungen</strong>, bei denen Betriebssicherheit und Montagefreundlichkeit entscheidend sind.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/NA2XY-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# NA2XY
|
||||
|
||||
<section>
|
||||
<h3 data-start="511" data-end="550">Für anspruchsvolle Netzanwendungen</h3>
|
||||
<p data-start="552" data-end="901">Das <strong data-start="556" data-end="565">NA2XY</strong> entspricht der Norm <strong data-start="586" data-end="615">DIN VDE 0276-603 (HD 603)</strong> und ist ideal für die feste Verlegung in <strong data-start="657" data-end="725">Innenräumen, Kabelkanälen, im Freien, im Wasser oder im Erdreich</strong> geeignet. Typische Einsatzorte sind <strong data-start="762" data-end="809">Kraftwerke, Industrieanlagen, Schaltanlagen</strong> sowie <strong data-start="816" data-end="829">Ortsnetze</strong>, bei denen mechanische Belastung im Betrieb berücksichtigt werden muss.</p>
|
||||
<h3 data-start="903" data-end="926">Technischer Aufbau</h3>
|
||||
<p data-start="928" data-end="1288">Der Leiter besteht aus <strong data-start="951" data-end="964">Aluminium</strong>, verfügbar als rund eindrähtig (RE) oder rund mehrdrähtig (RM). Die Adern sind mit <strong data-start="1048" data-end="1077">PE (Polyethylen) isoliert</strong>, was dem Kabel eine sehr gute elektrische Isolation und hohe thermische Belastbarkeit verleiht. Der schwarze <strong data-start="1187" data-end="1201">PVC-Mantel</strong> ist <strong data-start="1206" data-end="1222">UV-beständig</strong> und schützt zuverlässig vor Feuchtigkeit und Umgebungseinflüssen.</p>
|
||||
<h3 data-start="1290" data-end="1310">Einsatzbereiche</h3>
|
||||
<p data-start="1312" data-end="1582">NA2XY Kabel sind die richtige Wahl für <strong data-start="1351" data-end="1427">stabile Energieverteilungen unter mechanisch anspruchsvollen Bedingungen</strong>. Sie bieten eine wirtschaftliche, langlebige Lösung für Netzbetreiber, Industrie und Anlagenbauer, die auf bewährte Technik und hohe Belastbarkeit setzen.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Biegeradius (mm)",
|
||||
@@ -880,4 +867,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="511" data-end="550">Für anspruchsvolle Netzanwendungen</h3>
|
||||
<p data-start="552" data-end="901">Das <strong data-start="556" data-end="565">NA2XY</strong> entspricht der Norm <strong data-start="586" data-end="615">DIN VDE 0276-603 (HD 603)</strong> und ist ideal für die feste Verlegung in <strong data-start="657" data-end="725">Innenräumen, Kabelkanälen, im Freien, im Wasser oder im Erdreich</strong> geeignet. Typische Einsatzorte sind <strong data-start="762" data-end="809">Kraftwerke, Industrieanlagen, Schaltanlagen</strong> sowie <strong data-start="816" data-end="829">Ortsnetze</strong>, bei denen mechanische Belastung im Betrieb berücksichtigt werden muss.</p>
|
||||
<h3 data-start="903" data-end="926">Technischer Aufbau</h3>
|
||||
<p data-start="928" data-end="1288">Der Leiter besteht aus <strong data-start="951" data-end="964">Aluminium</strong>, verfügbar als rund eindrähtig (RE) oder rund mehrdrähtig (RM). Die Adern sind mit <strong data-start="1048" data-end="1077">PE (Polyethylen) isoliert</strong>, was dem Kabel eine sehr gute elektrische Isolation und hohe thermische Belastbarkeit verleiht. Der schwarze <strong data-start="1187" data-end="1201">PVC-Mantel</strong> ist <strong data-start="1206" data-end="1222">UV-beständig</strong> und schützt zuverlässig vor Feuchtigkeit und Umgebungseinflüssen.</p>
|
||||
<h3 data-start="1290" data-end="1310">Einsatzbereiche</h3>
|
||||
<p data-start="1312" data-end="1582">NA2XY Kabel sind die richtige Wahl für <strong data-start="1351" data-end="1427">stabile Energieverteilungen unter mechanisch anspruchsvollen Bedingungen</strong>. Sie bieten eine wirtschaftliche, langlebige Lösung für Netzbetreiber, Industrie und Anlagenbauer, die auf bewährte Technik und hohe Belastbarkeit setzen.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -13,20 +13,7 @@ images:
|
||||
- /uploads/2025/01/NAY2Y-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# NAY2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="525" data-end="567">Für anspruchsvolle Verlegebedingungen</h3>
|
||||
<p data-start="569" data-end="991">Das <strong data-start="573" data-end="582">NAY2Y</strong> erfüllt die Anforderungen der Norm <strong data-start="618" data-end="637">TP PRAKAB 12/03</strong> in Anlehnung an <strong data-start="654" data-end="670">VDE 0276-603</strong> und eignet sich für die <strong data-start="695" data-end="787">feste Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser und im Außenbereich</strong>. Es ist ideal für Anwendungen in Kraftwerken, Industrie- und Schaltanlagen sowie in lokalen Versorgungsnetzen – überall dort, wo mechanische Belastung im Betrieb oder bei der Verlegung eine Rolle spielt.</p>
|
||||
<h3 data-start="993" data-end="1028">Aufbau und Materialkomponenten</h3>
|
||||
<p data-start="1030" data-end="1474">Der Leiter besteht aus <strong data-start="1053" data-end="1066">Aluminium</strong>, wahlweise als rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig (SE/SM). Die <strong data-start="1157" data-end="1181">PVC-isolierten Adern</strong> sind verseilt und werden von einer <strong data-start="1217" data-end="1251">gemeinsamen EPDM-Aderumhüllung</strong> geschützt. Der äußere Mantel aus <strong data-start="1285" data-end="1293">HDPE</strong> (schwarz, UV-beständig) macht das Kabel besonders widerstandsfähig gegenüber Druck, Abrieb und Feuchtigkeit – perfekt für langfristige Installationen unter schwierigen Bedingungen.</p>
|
||||
<h3 data-start="1476" data-end="1504">Typische Einsatzgebiete</h3>
|
||||
<p data-start="1506" data-end="1785">NAY2Y Kabel sind erste Wahl bei <strong data-start="1538" data-end="1583">Verkabelungsprojekten mit hoher Belastung</strong>, etwa im industriellen Netzbau oder bei der Energieverteilung im Außenbereich. Sie bieten eine robuste, langlebige und kosteneffiziente Lösung für stabile Stromversorgung in verschiedensten Umgebungen.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Biegeradius (mm)",
|
||||
@@ -881,4 +868,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="525" data-end="567">Für anspruchsvolle Verlegebedingungen</h3>
|
||||
<p data-start="569" data-end="991">Das <strong data-start="573" data-end="582">NAY2Y</strong> erfüllt die Anforderungen der Norm <strong data-start="618" data-end="637">TP PRAKAB 12/03</strong> in Anlehnung an <strong data-start="654" data-end="670">VDE 0276-603</strong> und eignet sich für die <strong data-start="695" data-end="787">feste Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser und im Außenbereich</strong>. Es ist ideal für Anwendungen in Kraftwerken, Industrie- und Schaltanlagen sowie in lokalen Versorgungsnetzen – überall dort, wo mechanische Belastung im Betrieb oder bei der Verlegung eine Rolle spielt.</p>
|
||||
<h3 data-start="993" data-end="1028">Aufbau und Materialkomponenten</h3>
|
||||
<p data-start="1030" data-end="1474">Der Leiter besteht aus <strong data-start="1053" data-end="1066">Aluminium</strong>, wahlweise als rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig (SE/SM). Die <strong data-start="1157" data-end="1181">PVC-isolierten Adern</strong> sind verseilt und werden von einer <strong data-start="1217" data-end="1251">gemeinsamen EPDM-Aderumhüllung</strong> geschützt. Der äußere Mantel aus <strong data-start="1285" data-end="1293">HDPE</strong> (schwarz, UV-beständig) macht das Kabel besonders widerstandsfähig gegenüber Druck, Abrieb und Feuchtigkeit – perfekt für langfristige Installationen unter schwierigen Bedingungen.</p>
|
||||
<h3 data-start="1476" data-end="1504">Typische Einsatzgebiete</h3>
|
||||
<p data-start="1506" data-end="1785">NAY2Y Kabel sind erste Wahl bei <strong data-start="1538" data-end="1583">Verkabelungsprojekten mit hoher Belastung</strong>, etwa im industriellen Netzbau oder bei der Energieverteilung im Außenbereich. Sie bieten eine robuste, langlebige und kosteneffiziente Lösung für stabile Stromversorgung in verschiedensten Umgebungen.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/NAYCWY-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# NAYCWY
|
||||
|
||||
<section>
|
||||
<h3 data-start="540" data-end="595">Entwickelt für erhöhte Anforderungen an Sicherheit</h3>
|
||||
<p data-start="597" data-end="998">Das <strong data-start="601" data-end="611">NAYCWY</strong> entspricht der Norm <strong data-start="632" data-end="661">DIN VDE 0276-603 (HD 603)</strong> und eignet sich für den Einsatz in <strong data-start="697" data-end="760">Kraftwerken, Industrieanlagen, Schaltanlagen und Ortsnetzen</strong>. Es lässt sich fest verlegen – in Innenräumen, Kabelkanälen, im Freien, im Erdreich oder in Wasser. Dank des konzentrischen Leiters bietet es zusätzlichen Schutz bei mechanischer Beschädigung und ermöglicht eine sichere Potenzialführung.</p>
|
||||
<h3 data-start="1000" data-end="1023">Technischer Aufbau</h3>
|
||||
<p data-start="1025" data-end="1497">Der elektrische Leiter besteht aus <strong data-start="1060" data-end="1073">Aluminium</strong>, wahlweise rund mehrdrähtig (RM), sektorförmig eindrähtig (SE) oder mehrdrähtig (SM). Die <strong data-start="1164" data-end="1185">PVC-Aderisolation</strong> und eine <strong data-start="1195" data-end="1228">gemeinsame EPDM-Aderumhüllung</strong> schützen die verseilten Adern. Darüber liegt ein <strong data-start="1278" data-end="1329">konzentrischer Leiter aus blanken Kupferdrähten</strong> mit Kupferband-Querleitwendel – ideal als <strong data-start="1372" data-end="1394">PE oder PEN-Leiter</strong> verwendbar. Ein schwarzer, <strong data-start="1422" data-end="1451">UV-beständiger PVC-Mantel</strong> schließt das Kabel zuverlässig nach außen ab.</p>
|
||||
<h3 data-start="1499" data-end="1532">Anwendung und Besonderheiten</h3>
|
||||
<p data-start="1534" data-end="1894"><strong>NAYCWY</strong> Kabel kommen immer dann zum Einsatz, wenn <strong data-start="1583" data-end="1623">elektrische Sicherheit und Schirmung</strong> gefragt sind. Der konzentrische Leiter muss beim Anschluss an Abzweigmuffen nicht getrennt werden, was die Montage vereinfacht. Damit ist das Kabel besonders geeignet für moderne Niederspannungsnetze mit erhöhten Anforderungen an Betriebssicherheit und Berührungsschutz.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Biegeradius (mm)",
|
||||
@@ -802,4 +789,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="540" data-end="595">Entwickelt für erhöhte Anforderungen an Sicherheit</h3>
|
||||
<p data-start="597" data-end="998">Das <strong data-start="601" data-end="611">NAYCWY</strong> entspricht der Norm <strong data-start="632" data-end="661">DIN VDE 0276-603 (HD 603)</strong> und eignet sich für den Einsatz in <strong data-start="697" data-end="760">Kraftwerken, Industrieanlagen, Schaltanlagen und Ortsnetzen</strong>. Es lässt sich fest verlegen – in Innenräumen, Kabelkanälen, im Freien, im Erdreich oder in Wasser. Dank des konzentrischen Leiters bietet es zusätzlichen Schutz bei mechanischer Beschädigung und ermöglicht eine sichere Potenzialführung.</p>
|
||||
<h3 data-start="1000" data-end="1023">Technischer Aufbau</h3>
|
||||
<p data-start="1025" data-end="1497">Der elektrische Leiter besteht aus <strong data-start="1060" data-end="1073">Aluminium</strong>, wahlweise rund mehrdrähtig (RM), sektorförmig eindrähtig (SE) oder mehrdrähtig (SM). Die <strong data-start="1164" data-end="1185">PVC-Aderisolation</strong> und eine <strong data-start="1195" data-end="1228">gemeinsame EPDM-Aderumhüllung</strong> schützen die verseilten Adern. Darüber liegt ein <strong data-start="1278" data-end="1329">konzentrischer Leiter aus blanken Kupferdrähten</strong> mit Kupferband-Querleitwendel – ideal als <strong data-start="1372" data-end="1394">PE oder PEN-Leiter</strong> verwendbar. Ein schwarzer, <strong data-start="1422" data-end="1451">UV-beständiger PVC-Mantel</strong> schließt das Kabel zuverlässig nach außen ab.</p>
|
||||
<h3 data-start="1499" data-end="1532">Anwendung und Besonderheiten</h3>
|
||||
<p data-start="1534" data-end="1894"><strong>NAYCWY</strong> Kabel kommen immer dann zum Einsatz, wenn <strong data-start="1583" data-end="1623">elektrische Sicherheit und Schirmung</strong> gefragt sind. Der konzentrische Leiter muss beim Anschluss an Abzweigmuffen nicht getrennt werden, was die Montage vereinfacht. Damit ist das Kabel besonders geeignet für moderne Niederspannungsnetze mit erhöhten Anforderungen an Betriebssicherheit und Berührungsschutz.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -13,20 +13,7 @@ images:
|
||||
- /uploads/2025/01/NAYY-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# NAYY
|
||||
|
||||
<section>
|
||||
<h3 data-start="567" data-end="615">Vielfältige Einsatzmöglichkeiten im Netzbau</h3>
|
||||
<p data-start="617" data-end="989">Das <strong data-start="621" data-end="629">NAYY</strong> ist ein Energieverteilungskabel nach <strong data-start="667" data-end="683">VDE 0276-603</strong>, das sich besonders für Anwendungen in <strong data-start="723" data-end="780">Kraftwerken, Ortsnetzen, Industrie- und Schaltanlagen</strong> eignet. Dank seiner robusten Konstruktion lässt es sich fest verlegen – sei es im Innenraum, im Kabelkanal, im Freien oder im Erdreich. Auch bei Installation in Wasser bleibt das Kabel zuverlässig im Betrieb.</p>
|
||||
<h3 data-start="991" data-end="1018">Aufbau und Materialien</h3>
|
||||
<p data-start="1020" data-end="1390">Im Inneren arbeitet ein <strong data-start="1044" data-end="1063">Aluminiumleiter</strong>, der wahlweise rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig (SE/SM) ausgeführt ist. Die Leiter sind mit <strong data-start="1185" data-end="1201">PVC isoliert</strong>, verseilt und durch eine <strong data-start="1227" data-end="1260">gemeinsame EPDM-Aderumhüllung</strong> geschützt. Der äußere <strong data-start="1283" data-end="1297">PVC-Mantel</strong> ist schwarz, UV-beständig und widerstandsfähig gegenüber Feuchtigkeit und Umweltbedingungen.</p>
|
||||
<h3 data-start="1392" data-end="1417">Typische Anwendungen</h3>
|
||||
<p data-start="1419" data-end="1694">NAYY Kabel eignen sich optimal für <strong data-start="1454" data-end="1500">dauerhafte, wirtschaftliche Installationen</strong> in Versorgungsnetzen, Verteileranlagen oder bei Gebäudeverkabelungen. Sie bieten eine solide und langlebige Lösung, wenn es um sichere Energieverteilung unter standardisierten Bedingungen geht.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Biegeradius (mm)",
|
||||
@@ -1089,4 +1076,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="567" data-end="615">Vielfältige Einsatzmöglichkeiten im Netzbau</h3>
|
||||
<p data-start="617" data-end="989">Das <strong data-start="621" data-end="629">NAYY</strong> ist ein Energieverteilungskabel nach <strong data-start="667" data-end="683">VDE 0276-603</strong>, das sich besonders für Anwendungen in <strong data-start="723" data-end="780">Kraftwerken, Ortsnetzen, Industrie- und Schaltanlagen</strong> eignet. Dank seiner robusten Konstruktion lässt es sich fest verlegen – sei es im Innenraum, im Kabelkanal, im Freien oder im Erdreich. Auch bei Installation in Wasser bleibt das Kabel zuverlässig im Betrieb.</p>
|
||||
<h3 data-start="991" data-end="1018">Aufbau und Materialien</h3>
|
||||
<p data-start="1020" data-end="1390">Im Inneren arbeitet ein <strong data-start="1044" data-end="1063">Aluminiumleiter</strong>, der wahlweise rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig (SE/SM) ausgeführt ist. Die Leiter sind mit <strong data-start="1185" data-end="1201">PVC isoliert</strong>, verseilt und durch eine <strong data-start="1227" data-end="1260">gemeinsame EPDM-Aderumhüllung</strong> geschützt. Der äußere <strong data-start="1283" data-end="1297">PVC-Mantel</strong> ist schwarz, UV-beständig und widerstandsfähig gegenüber Feuchtigkeit und Umweltbedingungen.</p>
|
||||
<h3 data-start="1392" data-end="1417">Typische Anwendungen</h3>
|
||||
<p data-start="1419" data-end="1694">NAYY Kabel eignen sich optimal für <strong data-start="1454" data-end="1500">dauerhafte, wirtschaftliche Installationen</strong> in Versorgungsnetzen, Verteileranlagen oder bei Gebäudeverkabelungen. Sie bieten eine solide und langlebige Lösung, wenn es um sichere Energieverteilung unter standardisierten Bedingungen geht.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/NY2Y-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# NY2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="518" data-end="554">Zuverlässig bei hoher Belastung</h3>
|
||||
<p data-start="556" data-end="987">Das <strong data-start="560" data-end="568">NY2Y</strong> ist ein Niederspannungskabel für den Einsatz in Kraftwerken, Industrie- und Schaltanlagen sowie in Ortsnetzen. Es eignet sich für die <strong data-start="706" data-end="792">feste Verlegung in Innenräumen, Kabelkanälen, im Freien, im Wasser und im Erdreich</strong> – überall dort, wo starke mechanische Belastungen beim Verlegen und im Betrieb zu erwarten sind. Die Konstruktion erfüllt die Vorgaben gemäß <strong data-start="934" data-end="953">TP PRAKAB 16/03</strong> in Anlehnung an <strong data-start="970" data-end="986">VDE 0276-603</strong>.</p>
|
||||
<h3 data-start="989" data-end="1010">Aufbau im Detail</h3>
|
||||
<p data-start="1012" data-end="1431">Das Kabel besteht aus einem <strong data-start="1040" data-end="1056">Kupferleiter</strong>, verfügbar als rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig mehrdrähtig (SM). Die <strong data-start="1156" data-end="1177">PVC-Aderisolation</strong> sorgt für elektrische Sicherheit, die Adern sind verseilt und durch eine gemeinsame <strong data-start="1262" data-end="1284">EPDM-Aderumhüllung</strong> geschützt. Der Außenmantel aus <strong data-start="1316" data-end="1324">HDPE</strong> (schwarz, UV-beständig) macht das NY2Y besonders resistent gegen Abrieb, Feuchtigkeit und Umwelteinflüsse.</p>
|
||||
<h3 data-start="1433" data-end="1462">Typische Einsatzbereiche</h3>
|
||||
<p data-start="1464" data-end="1802">NY2Y eignet sich hervorragend für Anwendungen mit erhöhten Anforderungen an <strong data-start="1540" data-end="1566">mechanische Robustheit</strong> und <strong data-start="1571" data-end="1598">Witterungsbeständigkeit</strong>. Typische Einsatzorte sind Energieverteilungen in industriellen Anlagen, Kraftwerken oder Trafostationen – aber auch in Umgebungen mit Feuchtigkeit, direkter Sonneneinstrahlung oder chemischer Belastung.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Biegeradius (mm)",
|
||||
@@ -503,4 +490,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="518" data-end="554">Zuverlässig bei hoher Belastung</h3>
|
||||
<p data-start="556" data-end="987">Das <strong data-start="560" data-end="568">NY2Y</strong> ist ein Niederspannungskabel für den Einsatz in Kraftwerken, Industrie- und Schaltanlagen sowie in Ortsnetzen. Es eignet sich für die <strong data-start="706" data-end="792">feste Verlegung in Innenräumen, Kabelkanälen, im Freien, im Wasser und im Erdreich</strong> – überall dort, wo starke mechanische Belastungen beim Verlegen und im Betrieb zu erwarten sind. Die Konstruktion erfüllt die Vorgaben gemäß <strong data-start="934" data-end="953">TP PRAKAB 16/03</strong> in Anlehnung an <strong data-start="970" data-end="986">VDE 0276-603</strong>.</p>
|
||||
<h3 data-start="989" data-end="1010">Aufbau im Detail</h3>
|
||||
<p data-start="1012" data-end="1431">Das Kabel besteht aus einem <strong data-start="1040" data-end="1056">Kupferleiter</strong>, verfügbar als rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig mehrdrähtig (SM). Die <strong data-start="1156" data-end="1177">PVC-Aderisolation</strong> sorgt für elektrische Sicherheit, die Adern sind verseilt und durch eine gemeinsame <strong data-start="1262" data-end="1284">EPDM-Aderumhüllung</strong> geschützt. Der Außenmantel aus <strong data-start="1316" data-end="1324">HDPE</strong> (schwarz, UV-beständig) macht das NY2Y besonders resistent gegen Abrieb, Feuchtigkeit und Umwelteinflüsse.</p>
|
||||
<h3 data-start="1433" data-end="1462">Typische Einsatzbereiche</h3>
|
||||
<p data-start="1464" data-end="1802">NY2Y eignet sich hervorragend für Anwendungen mit erhöhten Anforderungen an <strong data-start="1540" data-end="1566">mechanische Robustheit</strong> und <strong data-start="1571" data-end="1598">Witterungsbeständigkeit</strong>. Typische Einsatzorte sind Energieverteilungen in industriellen Anlagen, Kraftwerken oder Trafostationen – aber auch in Umgebungen mit Feuchtigkeit, direkter Sonneneinstrahlung oder chemischer Belastung.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/NYCWY-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# NYCWY
|
||||
|
||||
<section>
|
||||
<h3 data-start="213" data-end="264">Vielseitig einsetzbar in der Energieverteilung</h3>
|
||||
<p data-start="266" data-end="765">Das NYCWY gehört zu den klassischen <strong data-start="302" data-end="345">Niederspannungskabeln nach VDE-Standard</strong> und ist für Nennspannungen bis 1 kV ausgelegt. Es kommt überall dort zum Einsatz, wo Energie zuverlässig verteilt werden muss – in Gebäuden, Industrieanlagen, Trafostationen oder direkt im Erdreich. Auch in Kabeltrassen, Betonumgebungen oder unter Wasser lässt es sich problemlos verlegen. Die Materialwahl sorgt dafür, dass dieses Kabel selbst unter rauen Bedingungen durchhält – ganz ohne zusätzliche Schutzmaßnahmen.</p>
|
||||
<h3 data-start="767" data-end="794">Aufbau und Materialien</h3>
|
||||
<p data-start="796" data-end="1206">Der Aufbau ist technisch durchdacht: Ein Kupferleiter bildet das Herzstück, umgeben von einer PVC-Isolierung, die mechanisch robust und elektrisch sicher ist. Darauf folgt ein konzentrischer Leiter in Wellenform, der je nach Anwendung als Schutz- oder Rückleiter dient. Den äußeren Abschluss bildet ein widerstandsfähiger <strong data-start="1118" data-end="1132">PVC-Mantel</strong>, der das Kabel vor Feuchtigkeit, Druck und chemischen Einflüssen schützt.</p>
|
||||
<h3 data-start="1208" data-end="1239">Varianten und Querschnitte</h3>
|
||||
<p data-start="1241" data-end="1628">Erhältlich ist das NYCWY in einer Vielzahl von Ausführungen – zum Beispiel als <strong data-start="1320" data-end="1331">4x25/16</strong>, 4x70/35 oder 4x185/95. Die erste Zahlengruppe steht für die Anzahl und den Querschnitt der stromführenden Leiter, die zweite für den konzentrischen Leiter. Damit lässt sich das Kabel flexibel an verschiedene Netzanforderungen anpassen – vom Hausanschluss bis zur industriellen Energieverteilung.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Biegeradius (mm)",
|
||||
@@ -711,4 +698,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="213" data-end="264">Vielseitig einsetzbar in der Energieverteilung</h3>
|
||||
<p data-start="266" data-end="765">Das NYCWY gehört zu den klassischen <strong data-start="302" data-end="345">Niederspannungskabeln nach VDE-Standard</strong> und ist für Nennspannungen bis 1 kV ausgelegt. Es kommt überall dort zum Einsatz, wo Energie zuverlässig verteilt werden muss – in Gebäuden, Industrieanlagen, Trafostationen oder direkt im Erdreich. Auch in Kabeltrassen, Betonumgebungen oder unter Wasser lässt es sich problemlos verlegen. Die Materialwahl sorgt dafür, dass dieses Kabel selbst unter rauen Bedingungen durchhält – ganz ohne zusätzliche Schutzmaßnahmen.</p>
|
||||
<h3 data-start="767" data-end="794">Aufbau und Materialien</h3>
|
||||
<p data-start="796" data-end="1206">Der Aufbau ist technisch durchdacht: Ein Kupferleiter bildet das Herzstück, umgeben von einer PVC-Isolierung, die mechanisch robust und elektrisch sicher ist. Darauf folgt ein konzentrischer Leiter in Wellenform, der je nach Anwendung als Schutz- oder Rückleiter dient. Den äußeren Abschluss bildet ein widerstandsfähiger <strong data-start="1118" data-end="1132">PVC-Mantel</strong>, der das Kabel vor Feuchtigkeit, Druck und chemischen Einflüssen schützt.</p>
|
||||
<h3 data-start="1208" data-end="1239">Varianten und Querschnitte</h3>
|
||||
<p data-start="1241" data-end="1628">Erhältlich ist das NYCWY in einer Vielzahl von Ausführungen – zum Beispiel als <strong data-start="1320" data-end="1331">4x25/16</strong>, 4x70/35 oder 4x185/95. Die erste Zahlengruppe steht für die Anzahl und den Querschnitt der stromführenden Leiter, die zweite für den konzentrischen Leiter. Damit lässt sich das Kabel flexibel an verschiedene Netzanforderungen anpassen – vom Hausanschluss bis zur industriellen Energieverteilung.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -11,20 +11,7 @@ images:
|
||||
- /uploads/2025/01/NYY-scaled.webp
|
||||
locale: de
|
||||
---
|
||||
# NYY
|
||||
|
||||
<section>
|
||||
<h3 data-start="439" data-end="484">Solide Lösung für klassische Anwendungen</h3>
|
||||
<p data-start="486" data-end="868">Das <strong data-start="490" data-end="497">NYY</strong> Kabel ist ein standardisiertes <strong>Niederspannungskabel</strong> nach <strong data-start="558" data-end="574">VDE 0276-603</strong>. Es kommt in Kraftwerken, Industrie- und Schaltanlagen sowie in Ortsnetzen zum Einsatz. Geeignet ist es für die <strong data-start="687" data-end="773">feste Verlegung in Innenräumen, Kabelkanälen, im Freien, im Erdreich und in Wasser</strong> – immer unter der Voraussetzung, dass keine besonderen mechanischen Beanspruchungen auftreten.</p>
|
||||
<h3 data-start="870" data-end="907">Aufbau und Materialeigenschaften</h3>
|
||||
<p data-start="909" data-end="1274">Der Leiter besteht aus <strong data-start="932" data-end="942">Kupfer</strong> – wahlweise rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig mehrdrähtig (SM). Die Adern sind mit <strong data-start="1054" data-end="1070">PVC isoliert</strong>, verseilt und von einer gemeinsamen <strong data-start="1107" data-end="1129">EPDM-Aderumhüllung</strong> umgeben. Der Außenmantel besteht aus <strong data-start="1167" data-end="1200">schwarzem, UV-beständigem PVC</strong> und schützt das Kabel zuverlässig gegen Umwelteinflüsse und Feuchtigkeit.</p>
|
||||
<h3 data-start="1276" data-end="1296">Einsatzbereiche</h3>
|
||||
<p data-start="1298" data-end="1642">Das NYY Kabel eignet sich ideal für <strong data-start="1334" data-end="1372">konventionelle Energieverteilungen</strong>, bei denen es auf einfache, langlebige Technik ankommt. Es wird bevorzugt dort eingesetzt, wo die Verlegung ohne erhöhte mechanische Anforderungen erfolgen kann – zum Beispiel im Gebäudeinneren, in Versorgungsleitungen oder bei der Erdverlegung im klassischen Ortsnetz.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Biegeradius (mm)",
|
||||
@@ -1360,4 +1347,15 @@ locale: de
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="439" data-end="484">Solide Lösung für klassische Anwendungen</h3>
|
||||
<p data-start="486" data-end="868">Das <strong data-start="490" data-end="497">NYY</strong> Kabel ist ein standardisiertes <strong>Niederspannungskabel</strong> nach <strong data-start="558" data-end="574">VDE 0276-603</strong>. Es kommt in Kraftwerken, Industrie- und Schaltanlagen sowie in Ortsnetzen zum Einsatz. Geeignet ist es für die <strong data-start="687" data-end="773">feste Verlegung in Innenräumen, Kabelkanälen, im Freien, im Erdreich und in Wasser</strong> – immer unter der Voraussetzung, dass keine besonderen mechanischen Beanspruchungen auftreten.</p>
|
||||
<h3 data-start="870" data-end="907">Aufbau und Materialeigenschaften</h3>
|
||||
<p data-start="909" data-end="1274">Der Leiter besteht aus <strong data-start="932" data-end="942">Kupfer</strong> – wahlweise rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig mehrdrähtig (SM). Die Adern sind mit <strong data-start="1054" data-end="1070">PVC isoliert</strong>, verseilt und von einer gemeinsamen <strong data-start="1107" data-end="1129">EPDM-Aderumhüllung</strong> umgeben. Der Außenmantel besteht aus <strong data-start="1167" data-end="1200">schwarzem, UV-beständigem PVC</strong> und schützt das Kabel zuverlässig gegen Umwelteinflüsse und Feuchtigkeit.</p>
|
||||
<h3 data-start="1276" data-end="1296">Einsatzbereiche</h3>
|
||||
<p data-start="1298" data-end="1642">Das NYY Kabel eignet sich ideal für <strong data-start="1334" data-end="1372">konventionelle Energieverteilungen</strong>, bei denen es auf einfache, langlebige Technik ankommt. Es wird bevorzugt dort eingesetzt, wo die Verlegung ohne erhöhte mechanische Anforderungen erfolgen kann – zum Beispiel im Gebäudeinneren, in Versorgungsleitungen oder bei der Erdverlegung im klassischen Ortsnetz.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -11,36 +11,7 @@ images:
|
||||
- /uploads/2025/06/H1Z2Z2-K-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# H1Z2Z2-K
|
||||
|
||||
<section>
|
||||
<h3 data-start="460" data-end="518">For long-term use in demanding environments</h3>
|
||||
<p data-start="520" data-end="953">The <strong data-start="524" data-end="536">H1Z2Z2-K</strong> complies with <strong data-start="552" data-end="588">DIN EN 50618 (VDE 0283-618)</strong> and is specifically designed for the <strong data-start="614" data-end="654">cabling of photovoltaic systems</strong>. It can be <strong data-start="675" data-end="713">installed permanently or used flexibly</strong> – indoors, outdoors, in industrial facilities, agricultural operations, or even in <strong data-start="812" data-end="847">hazardous (explosive) areas</strong>. The cable is <strong data-start="865" data-end="905">UV-, ozone- and water-resistant (AD7)</strong> and can be <strong data-start="915" data-end="945">laid directly in the ground</strong>.</p>
|
||||
<h3 data-start="955" data-end="990">Construction and technical features</h3>
|
||||
<p data-start="992" data-end="1516">The finely stranded <strong data-start="1009" data-end="1045">tinned copper conductor (class 5)</strong> is double protected by <strong data-start="1079" data-end="1160">cross-linked insulation and a cross-linked outer sheath made of polyolefin copolymer</strong> – halogen-free, flame-retardant, and highly abrasion-resistant. The cable is designed for a maximum conductor temperature of <strong data-start="1273" data-end="1283">120 °C</strong> and remains reliably flexible even at <strong data-start="1314" data-end="1339">-40 °C (fixed installation)</strong>. Its <strong data-start="1366" data-end="1394">low smoke emission</strong> and high resistance to mechanical and thermal stress ensure safe, long-term operation.</p>
|
||||
<h3 data-start="1518" data-end="1549">Key features at a glance</h3>
|
||||
<ul data-start="1551" data-end="1815">
|
||||
<li data-start="1551" data-end="1604">
|
||||
<p data-start="1553" data-end="1604"><strong data-start="1553" data-end="1604">Halogen-free, flame-retardant, UV- and ozone-resistant</strong></p>
|
||||
</li>
|
||||
<li data-start="1605" data-end="1666">
|
||||
<p data-start="1607" data-end="1666"><strong data-start="1607" data-end="1666">Short-circuit and earth fault proof according to VDE-AR-E 2283-4</strong></p>
|
||||
</li>
|
||||
<li data-start="1667" data-end="1744">
|
||||
<p data-start="1669" data-end="1744"><strong data-start="1669" data-end="1744">Approved for indoor, outdoor and hazardous (explosive) areas</strong></p>
|
||||
</li>
|
||||
<li data-start="1745" data-end="1784">
|
||||
<p data-start="1747" data-end="1784"><strong data-start="1747" data-end="1784">Suitable for direct burial</strong></p>
|
||||
</li>
|
||||
<li data-start="1785" data-end="1815">
|
||||
<p data-start="1787" data-end="1815"><strong data-start="1787" data-end="1815">CPR performance class: Eca</strong></p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Maximal operating conductor temperature (°C)",
|
||||
@@ -241,4 +212,31 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="460" data-end="518">For long-term use in demanding environments</h3>
|
||||
<p data-start="520" data-end="953">The <strong data-start="524" data-end="536">H1Z2Z2-K</strong> complies with <strong data-start="552" data-end="588">DIN EN 50618 (VDE 0283-618)</strong> and is specifically designed for the <strong data-start="614" data-end="654">cabling of photovoltaic systems</strong>. It can be <strong data-start="675" data-end="713">installed permanently or used flexibly</strong> – indoors, outdoors, in industrial facilities, agricultural operations, or even in <strong data-start="812" data-end="847">hazardous (explosive) areas</strong>. The cable is <strong data-start="865" data-end="905">UV-, ozone- and water-resistant (AD7)</strong> and can be <strong data-start="915" data-end="945">laid directly in the ground</strong>.</p>
|
||||
<h3 data-start="955" data-end="990">Construction and technical features</h3>
|
||||
<p data-start="992" data-end="1516">The finely stranded <strong data-start="1009" data-end="1045">tinned copper conductor (class 5)</strong> is double protected by <strong data-start="1079" data-end="1160">cross-linked insulation and a cross-linked outer sheath made of polyolefin copolymer</strong> – halogen-free, flame-retardant, and highly abrasion-resistant. The cable is designed for a maximum conductor temperature of <strong data-start="1273" data-end="1283">120 °C</strong> and remains reliably flexible even at <strong data-start="1314" data-end="1339">-40 °C (fixed installation)</strong>. Its <strong data-start="1366" data-end="1394">low smoke emission</strong> and high resistance to mechanical and thermal stress ensure safe, long-term operation.</p>
|
||||
<h3 data-start="1518" data-end="1549">Key features at a glance</h3>
|
||||
<ul data-start="1551" data-end="1815">
|
||||
<li data-start="1551" data-end="1604">
|
||||
<p data-start="1553" data-end="1604"><strong data-start="1553" data-end="1604">Halogen-free, flame-retardant, UV- and ozone-resistant</strong></p>
|
||||
</li>
|
||||
<li data-start="1605" data-end="1666">
|
||||
<p data-start="1607" data-end="1666"><strong data-start="1607" data-end="1666">Short-circuit and earth fault proof according to VDE-AR-E 2283-4</strong></p>
|
||||
</li>
|
||||
<li data-start="1667" data-end="1744">
|
||||
<p data-start="1669" data-end="1744"><strong data-start="1669" data-end="1744">Approved for indoor, outdoor and hazardous (explosive) areas</strong></p>
|
||||
</li>
|
||||
<li data-start="1745" data-end="1784">
|
||||
<p data-start="1747" data-end="1784"><strong data-start="1747" data-end="1784">Suitable for direct burial</strong></p>
|
||||
</li>
|
||||
<li data-start="1785" data-end="1815">
|
||||
<p data-start="1787" data-end="1815"><strong data-start="1787" data-end="1815">CPR performance class: Eca</strong></p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/N2X2Y-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# N2X2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="448" data-end="491">For demanding operating conditions</h3>
|
||||
<p data-start="493" data-end="945">The <strong data-start="497" data-end="506">N2X2Y</strong> complies with <strong data-start="529" data-end="550">HD 603 S1 Part 5G</strong> and <strong data-start="555" data-end="576">HD 627 S1 Part 4H</strong> (equivalent to <strong data-start="596" data-end="616">DIN VDE 0276-603</strong> and <strong data-start="621" data-end="629">-627</strong>) and is designed for an <strong data-start="648" data-end="678">operating frequency of 50 Hz</strong>. It is suitable for fixed installation indoors, underground, outdoors, and in industrial environments with high temperature and load requirements. The maximum operating temperature is <strong data-start="888" data-end="898">+90 °C</strong>, and <strong data-start="924" data-end="935">+250 °C</strong> is permissible under short-circuit conditions.</p>
|
||||
<h3 data-start="947" data-end="982">Construction and technical features</h3>
|
||||
<p data-start="984" data-end="1334">The cable structure consists of <strong data-start="1012" data-end="1029">copper conductors</strong> with <strong data-start="1034" data-end="1076">XLPE insulation (cross-linked polyethylene)</strong>. The cores are stranded and surrounded by a robust <strong data-start="1126" data-end="1151">black HDPE sheath</strong>. The integrated <strong data-start="1177" data-end="1201">concentric conductor</strong> made of copper wires is grounded at both ends and provides effective protection against potential differences and contact voltages.</p>
|
||||
<h3 data-start="1336" data-end="1355">Fields of application</h3>
|
||||
<p data-start="1357" data-end="1663">N2X2Y is ideal for installations in <strong data-start="1395" data-end="1442">local networks, substations, and industrial plants</strong> as well as in <strong data-start="1447" data-end="1470">power distribution systems</strong>, where high <strong data-start="1487" data-end="1515">thermal endurance</strong> and <strong data-start="1520" data-end="1552">mechanical strength</strong> are required. It provides a durable solution for demanding operating conditions – reliable and safe.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Bending radius (mm)",
|
||||
@@ -828,4 +815,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="448" data-end="491">For demanding operating conditions</h3>
|
||||
<p data-start="493" data-end="945">The <strong data-start="497" data-end="506">N2X2Y</strong> complies with <strong data-start="529" data-end="550">HD 603 S1 Part 5G</strong> and <strong data-start="555" data-end="576">HD 627 S1 Part 4H</strong> (equivalent to <strong data-start="596" data-end="616">DIN VDE 0276-603</strong> and <strong data-start="621" data-end="629">-627</strong>) and is designed for an <strong data-start="648" data-end="678">operating frequency of 50 Hz</strong>. It is suitable for fixed installation indoors, underground, outdoors, and in industrial environments with high temperature and load requirements. The maximum operating temperature is <strong data-start="888" data-end="898">+90 °C</strong>, and <strong data-start="924" data-end="935">+250 °C</strong> is permissible under short-circuit conditions.</p>
|
||||
<h3 data-start="947" data-end="982">Construction and technical features</h3>
|
||||
<p data-start="984" data-end="1334">The cable structure consists of <strong data-start="1012" data-end="1029">copper conductors</strong> with <strong data-start="1034" data-end="1076">XLPE insulation (cross-linked polyethylene)</strong>. The cores are stranded and surrounded by a robust <strong data-start="1126" data-end="1151">black HDPE sheath</strong>. The integrated <strong data-start="1177" data-end="1201">concentric conductor</strong> made of copper wires is grounded at both ends and provides effective protection against potential differences and contact voltages.</p>
|
||||
<h3 data-start="1336" data-end="1355">Fields of application</h3>
|
||||
<p data-start="1357" data-end="1663">N2X2Y is ideal for installations in <strong data-start="1395" data-end="1442">local networks, substations, and industrial plants</strong> as well as in <strong data-start="1447" data-end="1470">power distribution systems</strong>, where high <strong data-start="1487" data-end="1515">thermal endurance</strong> and <strong data-start="1520" data-end="1552">mechanical strength</strong> are required. It provides a durable solution for demanding operating conditions – reliable and safe.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,34 +12,7 @@ categories:
|
||||
images: []
|
||||
locale: en
|
||||
---
|
||||
# N2X(F)K2Y
|
||||
|
||||
<section>
|
||||
<h2>Engineering Overview</h2>
|
||||
<p>The <strong>N2X(F)K2Y high-voltage cable series</strong> is tailored for robust performance in high-voltage power systems, featuring copper conductors and cross-linked polyethylene (XLPE) insulation. This combination ensures high dielectric strength and excellent thermal cycling resistance, crucial for maintaining integrity and functionality over long operational periods.</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Technical Performance and Installation</h2>
|
||||
<p>Designed to support a wide range of industrial applications, the N2X(F)K2Y cable series excels in environments requiring high ampacity and effective fault current management. The cables' construction supports efficient heat dissipation and reduces the risk of thermal degradation even under high load conditions.</p>
|
||||
<ul>
|
||||
<li>Optimal <strong>ampacity</strong> to support increased power transmission requirements.</li>
|
||||
<li>Enhanced <strong>fault current withstand</strong> capability to ensure reliability and safety.</li>
|
||||
<li>Superior <strong>dielectric strength</strong>, facilitated by high-quality XLPE insulation.</li>
|
||||
</ul>
|
||||
<p>Installation techniques such as <strong>trefoil formation</strong>, <strong>direct burial</strong>, and <strong>cable tray mounting</strong> are compatible with this series, providing flexibility and ease of deployment in varied operational landscapes.</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Compliance and Electromagnetic Compatibility</h2>
|
||||
<p>The N2X(F)K2Y series adheres to stringent <strong>IEC standards</strong> and meets <strong>CPR classification</strong> requirements, ensuring compliance with international safety and quality benchmarks. Additionally, the cables are designed to minimize electromagnetic interference, enhancing <strong>electromagnetic compatibility (EMC)</strong> and reducing induced voltages, which is critical in densely packed power installations.</p>
|
||||
<ul>
|
||||
<li>Robust <strong>metallic screening</strong> to mitigate EMC issues and manage fault currents effectively.</li>
|
||||
<li>CE marking confirms that the cable series meets the essential requirements of relevant European directives.</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Rated voltage (kV)",
|
||||
@@ -262,4 +235,29 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h2>Engineering Overview</h2>
|
||||
<p>The <strong>N2X(F)K2Y high-voltage cable series</strong> is tailored for robust performance in high-voltage power systems, featuring copper conductors and cross-linked polyethylene (XLPE) insulation. This combination ensures high dielectric strength and excellent thermal cycling resistance, crucial for maintaining integrity and functionality over long operational periods.</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Technical Performance and Installation</h2>
|
||||
<p>Designed to support a wide range of industrial applications, the N2X(F)K2Y cable series excels in environments requiring high ampacity and effective fault current management. The cables' construction supports efficient heat dissipation and reduces the risk of thermal degradation even under high load conditions.</p>
|
||||
<ul>
|
||||
<li>Optimal <strong>ampacity</strong> to support increased power transmission requirements.</li>
|
||||
<li>Enhanced <strong>fault current withstand</strong> capability to ensure reliability and safety.</li>
|
||||
<li>Superior <strong>dielectric strength</strong>, facilitated by high-quality XLPE insulation.</li>
|
||||
</ul>
|
||||
<p>Installation techniques such as <strong>trefoil formation</strong>, <strong>direct burial</strong>, and <strong>cable tray mounting</strong> are compatible with this series, providing flexibility and ease of deployment in varied operational landscapes.</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Compliance and Electromagnetic Compatibility</h2>
|
||||
<p>The N2X(F)K2Y series adheres to stringent <strong>IEC standards</strong> and meets <strong>CPR classification</strong> requirements, ensuring compliance with international safety and quality benchmarks. Additionally, the cables are designed to minimize electromagnetic interference, enhancing <strong>electromagnetic compatibility (EMC)</strong> and reducing induced voltages, which is critical in densely packed power installations.</p>
|
||||
<ul>
|
||||
<li>Robust <strong>metallic screening</strong> to mitigate EMC issues and manage fault currents effectively.</li>
|
||||
<li>CE marking confirms that the cable series meets the essential requirements of relevant European directives.</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -10,33 +10,7 @@ categories:
|
||||
images: []
|
||||
locale: en
|
||||
---
|
||||
# N2X(F)KLD2Y
|
||||
|
||||
<section>
|
||||
<h2>Engineering Overview</h2>
|
||||
<p>The <strong>N2X(F)KLD2Y-high-voltage-cables-2 series</strong> is engineered to meet the rigorous demands of high-voltage power transmission with a focus on durability, efficiency, and safety. This series is ideal for applications requiring high dielectric strength and excellent thermal cycling resistance.</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Technical Performance and Installation</h2>
|
||||
<p>This cable series is designed to optimize both electrical and thermal performance, making it suitable for a variety of installation environments:</p>
|
||||
<ul>
|
||||
<li>High <strong>ampacity</strong> to support increased power transmission over long distances without significant power losses.</li>
|
||||
<li>Excellent <strong>fault current withstand</strong> capability, ensuring reliability and safety in the event of abnormal current flow.</li>
|
||||
<li>Designed for <strong>direct burial</strong>, <strong>trefoil formation</strong>, or <strong>cable tray mounting</strong>, providing flexibility in installation methods to suit different site conditions.</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Compliance and EMC Considerations</h2>
|
||||
<p>The cable's construction adheres to stringent <strong>IEC standards</strong> and carries the <strong>CE marking</strong>, affirming its compliance with the Construction Products Regulation (<strong>CPR classification</strong>). Furthermore, it is designed to minimize electromagnetic interference:</p>
|
||||
<ul>
|
||||
<li>Advanced insulation and shielding techniques reduce <strong>induced voltage</strong>, enhancing <strong>electromagnetic compatibility</strong> (EMC).</li>
|
||||
<li>Metallic screens incorporated into the cable design help in mitigating external electromagnetic influences, ensuring stable and uninterrupted operation.</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Rated voltage (kV)",
|
||||
@@ -226,4 +200,28 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h2>Engineering Overview</h2>
|
||||
<p>The <strong>N2X(F)KLD2Y-high-voltage-cables-2 series</strong> is engineered to meet the rigorous demands of high-voltage power transmission with a focus on durability, efficiency, and safety. This series is ideal for applications requiring high dielectric strength and excellent thermal cycling resistance.</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Technical Performance and Installation</h2>
|
||||
<p>This cable series is designed to optimize both electrical and thermal performance, making it suitable for a variety of installation environments:</p>
|
||||
<ul>
|
||||
<li>High <strong>ampacity</strong> to support increased power transmission over long distances without significant power losses.</li>
|
||||
<li>Excellent <strong>fault current withstand</strong> capability, ensuring reliability and safety in the event of abnormal current flow.</li>
|
||||
<li>Designed for <strong>direct burial</strong>, <strong>trefoil formation</strong>, or <strong>cable tray mounting</strong>, providing flexibility in installation methods to suit different site conditions.</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Compliance and EMC Considerations</h2>
|
||||
<p>The cable's construction adheres to stringent <strong>IEC standards</strong> and carries the <strong>CE marking</strong>, affirming its compliance with the Construction Products Regulation (<strong>CPR classification</strong>). Furthermore, it is designed to minimize electromagnetic interference:</p>
|
||||
<ul>
|
||||
<li>Advanced insulation and shielding techniques reduce <strong>induced voltage</strong>, enhancing <strong>electromagnetic compatibility</strong> (EMC).</li>
|
||||
<li>Metallic screens incorporated into the cable design help in mitigating external electromagnetic influences, ensuring stable and uninterrupted operation.</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/N2XS2Y-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# N2XS2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="451" data-end="502">For underground installation and demanding environments</h3>
|
||||
<p data-start="504" data-end="901">The <strong data-start="508" data-end="518">N2XS2Y</strong> complies with the standards <strong data-start="538" data-end="558">DIN VDE 0276-620</strong>, <strong data-start="560" data-end="573">HD 620 S2</strong> and <strong data-start="578" data-end="591">IEC 60502</strong>. It is suitable for <strong data-start="612" data-end="725">installation indoors, in cable ducts, outdoors, in water, on cable trays, and especially underground</strong>. Thanks to its robust sheath, it is frequently used in <strong data-start="788" data-end="841">industrial plants, power stations, and switching stations</strong>, where stability and durability are essential.</p>
|
||||
<h3 data-start="903" data-end="926">Technical construction</h3>
|
||||
<p data-start="928" data-end="1367">The conductor consists of <strong data-start="951" data-end="984">bare, multi-stranded copper</strong> (Class 2), surrounded by an <strong data-start="1015" data-end="1038">inner conductive layer</strong> and <strong data-start="1049" data-end="1067">XLPE insulation</strong> with a tightly bonded outer conductive layer. The shielding is provided by a <strong data-start="1141" data-end="1187">copper wire braid with counter helix</strong>. Additionally, the cable includes a <strong data-start="1224" data-end="1250">conductive tape</strong> and features a <strong data-start="1278" data-end="1301">black PE sheath</strong> (Type DMP2) that protects against moisture and mechanical abrasion.</p>
|
||||
<h3 data-start="1369" data-end="1402">Features and application benefits</h3>
|
||||
<p data-start="1404" data-end="1766">The N2XS2Y is <strong data-start="1419" data-end="1435">suitable for underground installation</strong>, <strong data-start="1437" data-end="1465">free from silicone and cadmium</strong>, and <strong data-start="1472" data-end="1493">not flame-retardant</strong>. It is rated for <strong data-start="1523" data-end="1544">+90 °C in operation</strong> and <strong data-start="1549" data-end="1579">+250 °C under short-circuit conditions</strong>. Thanks to its <strong data-start="1603" data-end="1635">partial discharge-free design</strong>, it offers a high level of safety and is particularly well-suited for networks with heavy load and challenging routing conditions.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -961,4 +948,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="451" data-end="502">For underground installation and demanding environments</h3>
|
||||
<p data-start="504" data-end="901">The <strong data-start="508" data-end="518">N2XS2Y</strong> complies with the standards <strong data-start="538" data-end="558">DIN VDE 0276-620</strong>, <strong data-start="560" data-end="573">HD 620 S2</strong> and <strong data-start="578" data-end="591">IEC 60502</strong>. It is suitable for <strong data-start="612" data-end="725">installation indoors, in cable ducts, outdoors, in water, on cable trays, and especially underground</strong>. Thanks to its robust sheath, it is frequently used in <strong data-start="788" data-end="841">industrial plants, power stations, and switching stations</strong>, where stability and durability are essential.</p>
|
||||
<h3 data-start="903" data-end="926">Technical construction</h3>
|
||||
<p data-start="928" data-end="1367">The conductor consists of <strong data-start="951" data-end="984">bare, multi-stranded copper</strong> (Class 2), surrounded by an <strong data-start="1015" data-end="1038">inner conductive layer</strong> and <strong data-start="1049" data-end="1067">XLPE insulation</strong> with a tightly bonded outer conductive layer. The shielding is provided by a <strong data-start="1141" data-end="1187">copper wire braid with counter helix</strong>. Additionally, the cable includes a <strong data-start="1224" data-end="1250">conductive tape</strong> and features a <strong data-start="1278" data-end="1301">black PE sheath</strong> (Type DMP2) that protects against moisture and mechanical abrasion.</p>
|
||||
<h3 data-start="1369" data-end="1402">Features and application benefits</h3>
|
||||
<p data-start="1404" data-end="1766">The N2XS2Y is <strong data-start="1419" data-end="1435">suitable for underground installation</strong>, <strong data-start="1437" data-end="1465">free from silicone and cadmium</strong>, and <strong data-start="1472" data-end="1493">not flame-retardant</strong>. It is rated for <strong data-start="1523" data-end="1544">+90 °C in operation</strong> and <strong data-start="1549" data-end="1579">+250 °C under short-circuit conditions</strong>. Thanks to its <strong data-start="1603" data-end="1635">partial discharge-free design</strong>, it offers a high level of safety and is particularly well-suited for networks with heavy load and challenging routing conditions.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/N2XSF2Y-3-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# N2XS(F)2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="452" data-end="502">Designed for high-performance network environments</h3>
|
||||
<p data-start="504" data-end="904">The <strong data-start="508" data-end="521">N2XS(F)2Y</strong> complies with common standards <strong data-start="550" data-end="570">DIN VDE 0276-620</strong>, <strong data-start="572" data-end="585">HD 620 S2</strong> and <strong data-start="590" data-end="603">IEC 60502</strong>, and is suitable for <strong data-start="620" data-end="713">installation indoors, in cable ducts, outdoors, in water, underground, and on cable trays</strong>. This cable proves its strengths especially in <strong data-start="737" data-end="785">utility grids, industrial plants, and power stations</strong> – wherever durability, watertightness, and safety are essential.</p>
|
||||
<h3 data-start="906" data-end="946">Structure and technical characteristics</h3>
|
||||
<p data-start="948" data-end="1387">Inside is a <strong data-start="977" data-end="1016">bare, multi-stranded copper conductor</strong> (Class 2), surrounded by an <strong data-start="1047" data-end="1123">extruded XLPE insulation with inner and bonded outer conductive layer</strong>. A <strong data-start="1130" data-end="1174">longitudinally watertight, conductive tape</strong>, a <strong data-start="1181" data-end="1234">copper wire screen with counter helix</strong>, and an additional <strong data-start="1256" data-end="1282">longitudinally watertight layer</strong> ensure the design's integrity. The black <strong data-start="1316" data-end="1345">PE outer sheath (Type DMP2)</strong> provides high mechanical strength.</p>
|
||||
<h3 data-start="1389" data-end="1425">Applications and benefits</h3>
|
||||
<p data-start="1427" data-end="1822">The N2XS(F)2Y is <strong data-start="1445" data-end="1461">suitable for underground installation</strong>, <strong data-start="1463" data-end="1509">resistant to aggressive environmental conditions</strong>, and withstands <strong data-start="1519" data-end="1562">temperatures up to +90 °C in continuous operation</strong> and <strong data-start="1569" data-end="1599">+250 °C in short-circuit conditions</strong>. It is <strong data-start="1614" data-end="1663">free from silicone and cadmium-containing substances</strong> and, thanks to its <strong data-start="1677" data-end="1709">partial discharge-free design</strong>, particularly suitable for networks with the highest demands on <strong data-start="1769" data-end="1803">electrical operational safety</strong> and longevity.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -393,4 +380,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="452" data-end="502">Designed for high-performance network environments</h3>
|
||||
<p data-start="504" data-end="904">The <strong data-start="508" data-end="521">N2XS(F)2Y</strong> complies with common standards <strong data-start="550" data-end="570">DIN VDE 0276-620</strong>, <strong data-start="572" data-end="585">HD 620 S2</strong> and <strong data-start="590" data-end="603">IEC 60502</strong>, and is suitable for <strong data-start="620" data-end="713">installation indoors, in cable ducts, outdoors, in water, underground, and on cable trays</strong>. This cable proves its strengths especially in <strong data-start="737" data-end="785">utility grids, industrial plants, and power stations</strong> – wherever durability, watertightness, and safety are essential.</p>
|
||||
<h3 data-start="906" data-end="946">Structure and technical characteristics</h3>
|
||||
<p data-start="948" data-end="1387">Inside is a <strong data-start="977" data-end="1016">bare, multi-stranded copper conductor</strong> (Class 2), surrounded by an <strong data-start="1047" data-end="1123">extruded XLPE insulation with inner and bonded outer conductive layer</strong>. A <strong data-start="1130" data-end="1174">longitudinally watertight, conductive tape</strong>, a <strong data-start="1181" data-end="1234">copper wire screen with counter helix</strong>, and an additional <strong data-start="1256" data-end="1282">longitudinally watertight layer</strong> ensure the design's integrity. The black <strong data-start="1316" data-end="1345">PE outer sheath (Type DMP2)</strong> provides high mechanical strength.</p>
|
||||
<h3 data-start="1389" data-end="1425">Applications and benefits</h3>
|
||||
<p data-start="1427" data-end="1822">The N2XS(F)2Y is <strong data-start="1445" data-end="1461">suitable for underground installation</strong>, <strong data-start="1463" data-end="1509">resistant to aggressive environmental conditions</strong>, and withstands <strong data-start="1519" data-end="1562">temperatures up to +90 °C in continuous operation</strong> and <strong data-start="1569" data-end="1599">+250 °C in short-circuit conditions</strong>. It is <strong data-start="1614" data-end="1663">free from silicone and cadmium-containing substances</strong> and, thanks to its <strong data-start="1677" data-end="1709">partial discharge-free design</strong>, particularly suitable for networks with the highest demands on <strong data-start="1769" data-end="1803">electrical operational safety</strong> and longevity.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/N2XSFL2Y-2-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# N2XS(FL)2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="483" data-end="530">For demanding power distribution networks</h3>
|
||||
<p data-start="532" data-end="920">The <strong data-start="536" data-end="550">N2XS(FL)2Y</strong> meets the standards <strong data-start="573" data-end="593">DIN VDE 0276-620</strong>, <strong data-start="595" data-end="608">HD 620 S2</strong> and <strong data-start="613" data-end="626">IEC 60502</strong>. It is ideally suited for <strong data-start="664" data-end="762">installation indoors, in cable ducts, outdoors, in soil, in water, and on cable trays</strong> – especially in <strong data-start="781" data-end="833">utility grids, industrial plants, and switching stations</strong>, where high demands on mechanical strength and water resistance apply.</p>
|
||||
<h3 data-start="922" data-end="945">Technical construction</h3>
|
||||
<p data-start="947" data-end="1455">The cable design is based on a <strong data-start="981" data-end="1011">multi-stranded copper conductor</strong> (Class 2), an <strong data-start="1030" data-end="1047">XLPE insulation</strong> with an extruded, tightly bonded <strong data-start="1081" data-end="1104">outer conductive layer</strong>, and a <strong data-start="1118" data-end="1164">longitudinally watertight, conductive tape</strong>. The shielding consists of <strong data-start="1194" data-end="1230">copper wires with counter helix</strong>, complemented by an additional <strong data-start="1259" data-end="1291">longitudinally watertight tape</strong>. The outer protection is achieved with a <strong data-start="1327" data-end="1396">black PE sheath laminated with an aluminum tape</strong> – serving as an effective <strong data-start="1434" data-end="1454">water barrier</strong>.</p>
|
||||
<h3 data-start="1457" data-end="1488">Properties and benefits</h3>
|
||||
<p data-start="1490" data-end="1897">The N2XS(FL)2Y is <strong data-start="1509" data-end="1525">suitable for underground installation</strong>, <strong data-start="1527" data-end="1560">designed for outdoor use</strong>, and withstands <strong data-start="1570" data-end="1605">operating temperatures up to +90 °C</strong> and <strong data-start="1612" data-end="1650">short-circuit loads up to +250 °C</strong>. It is <strong data-start="1665" data-end="1693">free from silicone and cadmium</strong> and contains no substances that interfere with paint wetting. Thanks to its <strong data-start="1760" data-end="1792">partial discharge-free design</strong> and the Al/PE layer, it is ideally suited for <strong data-start="1843" data-end="1896">humid environments with high safety requirements</strong>.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -920,4 +907,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="483" data-end="530">For demanding power distribution networks</h3>
|
||||
<p data-start="532" data-end="920">The <strong data-start="536" data-end="550">N2XS(FL)2Y</strong> meets the standards <strong data-start="573" data-end="593">DIN VDE 0276-620</strong>, <strong data-start="595" data-end="608">HD 620 S2</strong> and <strong data-start="613" data-end="626">IEC 60502</strong>. It is ideally suited for <strong data-start="664" data-end="762">installation indoors, in cable ducts, outdoors, in soil, in water, and on cable trays</strong> – especially in <strong data-start="781" data-end="833">utility grids, industrial plants, and switching stations</strong>, where high demands on mechanical strength and water resistance apply.</p>
|
||||
<h3 data-start="922" data-end="945">Technical construction</h3>
|
||||
<p data-start="947" data-end="1455">The cable design is based on a <strong data-start="981" data-end="1011">multi-stranded copper conductor</strong> (Class 2), an <strong data-start="1030" data-end="1047">XLPE insulation</strong> with an extruded, tightly bonded <strong data-start="1081" data-end="1104">outer conductive layer</strong>, and a <strong data-start="1118" data-end="1164">longitudinally watertight, conductive tape</strong>. The shielding consists of <strong data-start="1194" data-end="1230">copper wires with counter helix</strong>, complemented by an additional <strong data-start="1259" data-end="1291">longitudinally watertight tape</strong>. The outer protection is achieved with a <strong data-start="1327" data-end="1396">black PE sheath laminated with an aluminum tape</strong> – serving as an effective <strong data-start="1434" data-end="1454">water barrier</strong>.</p>
|
||||
<h3 data-start="1457" data-end="1488">Properties and benefits</h3>
|
||||
<p data-start="1490" data-end="1897">The N2XS(FL)2Y is <strong data-start="1509" data-end="1525">suitable for underground installation</strong>, <strong data-start="1527" data-end="1560">designed for outdoor use</strong>, and withstands <strong data-start="1570" data-end="1605">operating temperatures up to +90 °C</strong> and <strong data-start="1612" data-end="1650">short-circuit loads up to +250 °C</strong>. It is <strong data-start="1665" data-end="1693">free from silicone and cadmium</strong> and contains no substances that interfere with paint wetting. Thanks to its <strong data-start="1760" data-end="1792">partial discharge-free design</strong> and the Al/PE layer, it is ideally suited for <strong data-start="1843" data-end="1896">humid environments with high safety requirements</strong>.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/06/N2XSFL2Y-3-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# N2XS(FL)2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="508" data-end="571">Flexible in use – underground, underwater, and on cable trays</h3>
|
||||
<p data-start="573" data-end="950">The <strong data-start="577" data-end="591">N2XS(FL)2Y</strong> is designed for <strong data-start="615" data-end="698">installation in the ground, in cable ducts, pipes, outdoor areas, and indoor spaces</strong>. It complies with the <strong data-start="723" data-end="736">IEC 60840</strong> standard and can be tailored to specific project requirements. It is typically used in <strong data-start="841" data-end="906">transmission networks, substations, and large industrial facilities</strong> where maximum reliability is essential.</p>
|
||||
<h3 data-start="952" data-end="975">Technical structure</h3>
|
||||
<p data-start="977" data-end="1539">The cable features a <strong data-start="1006" data-end="1062">multi-stranded copper conductor (class 2 according to IEC 60228)</strong>. The insulation consists of <strong data-start="1090" data-end="1123">cross-linked polyethylene (XLPE)</strong>, embedded between a <strong data-start="1152" data-end="1180">conductive inner layer</strong> and a <strong data-start="1191" data-end="1232">conductive outer insulation layer</strong>. A <strong data-start="1239" data-end="1265">water-swellable tape</strong>, together with <strong data-start="1286" data-end="1334">copper wires and an open copper helix</strong>, provides effective shielding. The outer sheath is made of <strong data-start="1395" data-end="1401">PE</strong>, firmly bonded with an <strong data-start="1417" data-end="1451">aluminum laminate (Alucopo)</strong> – optimal protection against <strong data-start="1496" data-end="1538">mechanical stress and moisture</strong>.</p>
|
||||
<h3 data-start="1541" data-end="1561">Application features</h3>
|
||||
<p data-start="1563" data-end="1902">The N2XS(FL)2Y is <strong data-start="1582" data-end="1611">waterproof, suitable for underground installation</strong>, and resistant to mechanical stress – and thanks to its <strong data-start="1655" data-end="1700">multi-layered shielding and water-blocking structure</strong>, it is particularly suited for critical high-voltage applications. Electrical performance is calculated based on the project – allowing precise adaptation to grid operation requirements.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -920,4 +907,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="508" data-end="571">Flexible in use – underground, underwater, and on cable trays</h3>
|
||||
<p data-start="573" data-end="950">The <strong data-start="577" data-end="591">N2XS(FL)2Y</strong> is designed for <strong data-start="615" data-end="698">installation in the ground, in cable ducts, pipes, outdoor areas, and indoor spaces</strong>. It complies with the <strong data-start="723" data-end="736">IEC 60840</strong> standard and can be tailored to specific project requirements. It is typically used in <strong data-start="841" data-end="906">transmission networks, substations, and large industrial facilities</strong> where maximum reliability is essential.</p>
|
||||
<h3 data-start="952" data-end="975">Technical structure</h3>
|
||||
<p data-start="977" data-end="1539">The cable features a <strong data-start="1006" data-end="1062">multi-stranded copper conductor (class 2 according to IEC 60228)</strong>. The insulation consists of <strong data-start="1090" data-end="1123">cross-linked polyethylene (XLPE)</strong>, embedded between a <strong data-start="1152" data-end="1180">conductive inner layer</strong> and a <strong data-start="1191" data-end="1232">conductive outer insulation layer</strong>. A <strong data-start="1239" data-end="1265">water-swellable tape</strong>, together with <strong data-start="1286" data-end="1334">copper wires and an open copper helix</strong>, provides effective shielding. The outer sheath is made of <strong data-start="1395" data-end="1401">PE</strong>, firmly bonded with an <strong data-start="1417" data-end="1451">aluminum laminate (Alucopo)</strong> – optimal protection against <strong data-start="1496" data-end="1538">mechanical stress and moisture</strong>.</p>
|
||||
<h3 data-start="1541" data-end="1561">Application features</h3>
|
||||
<p data-start="1563" data-end="1902">The N2XS(FL)2Y is <strong data-start="1582" data-end="1611">waterproof, suitable for underground installation</strong>, and resistant to mechanical stress – and thanks to its <strong data-start="1655" data-end="1700">multi-layered shielding and water-blocking structure</strong>, it is particularly suited for critical high-voltage applications. Electrical performance is calculated based on the project – allowing precise adaptation to grid operation requirements.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/N2XSY-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# N2XSY
|
||||
|
||||
<section>
|
||||
<h3 data-start="435" data-end="481">For powerful medium-voltage applications</h3>
|
||||
<p data-start="483" data-end="868">The <strong data-start="487" data-end="496">N2XSY</strong> meets the standards <strong data-start="516" data-end="536">DIN VDE 0276-620</strong>, <strong data-start="538" data-end="551">HD 620 S2</strong> and <strong data-start="556" data-end="569">IEC 60502</strong>. It is designed for <strong data-start="596" data-end="708">installation indoors, in cable ducts, in water, underground, or outdoors (when protected)</strong>. Whether in <strong data-start="716" data-end="768">industrial plants, power stations, or substations</strong> – this cable ensures safe and low-loss power transmission in medium-voltage networks.</p>
|
||||
<h3 data-start="870" data-end="905">Construction and technical features</h3>
|
||||
<p data-start="907" data-end="1380">The cable consists of a <strong data-start="935" data-end="974">bare, multi-stranded copper conductor</strong> (Class 2), surrounded by <strong data-start="998" data-end="1015">XLPE insulation</strong> with a tightly bonded <strong data-start="1034" data-end="1057">outer conductive layer</strong>. A <strong data-start="1076" data-end="1101">conductive tape</strong>, a <strong data-start="1108" data-end="1160">copper wire screen with counter helix</strong>, additional tape, and a <strong data-start="1193" data-end="1213">red PVC sheath</strong> (Type DMV6) complete the construction. The extruded combination of insulation and conductive layer ensures <strong data-start="1322" data-end="1354">partial discharge-free operation</strong> and high reliability.</p>
|
||||
<h3 data-start="1382" data-end="1420">Properties and application benefits</h3>
|
||||
<p data-start="1422" data-end="1807">The N2XSY cable is <strong data-start="1442" data-end="1458">suitable for underground installation</strong>, <strong data-start="1460" data-end="1501">flame-retardant according to DIN VDE 0482-332-1-2</strong>, and <strong data-start="1506" data-end="1555">free from silicone and cadmium-containing substances</strong>. With a <strong data-start="1561" data-end="1590">+90 °C operating temperature</strong> and <strong data-start="1595" data-end="1627">+250 °C short-circuit resistance</strong>, it is ideal for networks with high thermal loads. Excellent installation properties also allow for easy handling, even in complex routing scenarios.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -956,4 +943,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="435" data-end="481">For powerful medium-voltage applications</h3>
|
||||
<p data-start="483" data-end="868">The <strong data-start="487" data-end="496">N2XSY</strong> meets the standards <strong data-start="516" data-end="536">DIN VDE 0276-620</strong>, <strong data-start="538" data-end="551">HD 620 S2</strong> and <strong data-start="556" data-end="569">IEC 60502</strong>. It is designed for <strong data-start="596" data-end="708">installation indoors, in cable ducts, in water, underground, or outdoors (when protected)</strong>. Whether in <strong data-start="716" data-end="768">industrial plants, power stations, or substations</strong> – this cable ensures safe and low-loss power transmission in medium-voltage networks.</p>
|
||||
<h3 data-start="870" data-end="905">Construction and technical features</h3>
|
||||
<p data-start="907" data-end="1380">The cable consists of a <strong data-start="935" data-end="974">bare, multi-stranded copper conductor</strong> (Class 2), surrounded by <strong data-start="998" data-end="1015">XLPE insulation</strong> with a tightly bonded <strong data-start="1034" data-end="1057">outer conductive layer</strong>. A <strong data-start="1076" data-end="1101">conductive tape</strong>, a <strong data-start="1108" data-end="1160">copper wire screen with counter helix</strong>, additional tape, and a <strong data-start="1193" data-end="1213">red PVC sheath</strong> (Type DMV6) complete the construction. The extruded combination of insulation and conductive layer ensures <strong data-start="1322" data-end="1354">partial discharge-free operation</strong> and high reliability.</p>
|
||||
<h3 data-start="1382" data-end="1420">Properties and application benefits</h3>
|
||||
<p data-start="1422" data-end="1807">The N2XSY cable is <strong data-start="1442" data-end="1458">suitable for underground installation</strong>, <strong data-start="1460" data-end="1501">flame-retardant according to DIN VDE 0482-332-1-2</strong>, and <strong data-start="1506" data-end="1555">free from silicone and cadmium-containing substances</strong>. With a <strong data-start="1561" data-end="1590">+90 °C operating temperature</strong> and <strong data-start="1595" data-end="1627">+250 °C short-circuit resistance</strong>, it is ideal for networks with high thermal loads. Excellent installation properties also allow for easy handling, even in complex routing scenarios.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/N2XY-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# N2XY
|
||||
|
||||
<section>
|
||||
<h3 data-start="514" data-end="565">For fixed installation in standard applications</h3>
|
||||
<p data-start="567" data-end="995">The <strong data-start="571" data-end="579">N2XY</strong> is used in low-voltage systems for power distribution – for example in cable trays, conduits, on walls, or directly underground. It can be installed both indoors and outdoors and is also suitable for humid environments. Thanks to various core configurations (single-core to four-core) and cross-sections up to 630 mm², the cable can be flexibly adapted to the respective application.</p>
|
||||
<h3 data-start="997" data-end="1020">Technical construction</h3>
|
||||
<p data-start="1022" data-end="1346">The conductor consists of solid or stranded <strong data-start="1067" data-end="1077">copper</strong> (RE or RM), with the cores insulated with <strong data-start="1111" data-end="1144">XLPE (cross-linked polyethylene)</strong>. The cable is embedded in a <strong data-start="1189" data-end="1206">PVC filler compound</strong> and surrounded by a <strong data-start="1226" data-end="1245">PVC outer sheath</strong>, which protects it against environmental influences and normal mechanical stress.</p>
|
||||
<h3 data-start="1348" data-end="1387">Variants and applications</h3>
|
||||
<p data-start="1389" data-end="1779">N2XY is available as <strong data-start="1409" data-end="1419">N2XY-J</strong> (with protective conductor) and <strong data-start="1452" data-end="1462">N2XY-O</strong> (without protective conductor). It offers a <strong data-start="1509" data-end="1594">space-saving, economical solution for low-voltage distribution</strong> without compromising on safety or quality. Typical applications include commercial and residential buildings, system installations, as well as connections between switchgear and distribution boards.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Bending radius (mm)",
|
||||
@@ -880,4 +867,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="514" data-end="565">For fixed installation in standard applications</h3>
|
||||
<p data-start="567" data-end="995">The <strong data-start="571" data-end="579">N2XY</strong> is used in low-voltage systems for power distribution – for example in cable trays, conduits, on walls, or directly underground. It can be installed both indoors and outdoors and is also suitable for humid environments. Thanks to various core configurations (single-core to four-core) and cross-sections up to 630 mm², the cable can be flexibly adapted to the respective application.</p>
|
||||
<h3 data-start="997" data-end="1020">Technical construction</h3>
|
||||
<p data-start="1022" data-end="1346">The conductor consists of solid or stranded <strong data-start="1067" data-end="1077">copper</strong> (RE or RM), with the cores insulated with <strong data-start="1111" data-end="1144">XLPE (cross-linked polyethylene)</strong>. The cable is embedded in a <strong data-start="1189" data-end="1206">PVC filler compound</strong> and surrounded by a <strong data-start="1226" data-end="1245">PVC outer sheath</strong>, which protects it against environmental influences and normal mechanical stress.</p>
|
||||
<h3 data-start="1348" data-end="1387">Variants and applications</h3>
|
||||
<p data-start="1389" data-end="1779">N2XY is available as <strong data-start="1409" data-end="1419">N2XY-J</strong> (with protective conductor) and <strong data-start="1452" data-end="1462">N2XY-O</strong> (without protective conductor). It offers a <strong data-start="1509" data-end="1594">space-saving, economical solution for low-voltage distribution</strong> without compromising on safety or quality. Typical applications include commercial and residential buildings, system installations, as well as connections between switchgear and distribution boards.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/NA2X2Y-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# NA2X2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="488" data-end="537">Optimal for mechanically demanding applications</h3>
|
||||
<p data-start="539" data-end="948">The <strong data-start="543" data-end="553">NA2X2Y</strong> complies with <strong data-start="574" data-end="603">DIN VDE 0276-603 (HD 603)</strong> and is designed for <strong data-start="630" data-end="717">fixed installation indoors, in cable ducts, underground, in water, or outdoors</strong>. It is primarily used in <strong data-start="741" data-end="789">power plants, industrial facilities, and switching stations</strong> as well as <strong data-start="794" data-end="808">local distribution networks</strong> – wherever robust cables are needed that can withstand high mechanical stress during installation and operation.</p>
|
||||
<h3 data-start="950" data-end="979">Construction and properties</h3>
|
||||
<p data-start="981" data-end="1427">The electrical conductor consists of <strong data-start="1016" data-end="1029">aluminium</strong>, available as solid round (RE), stranded round (RM), or sector-shaped (SE/SM). The cores are <strong data-start="1135" data-end="1150">PE-insulated</strong>, stranded together, and protected by a <strong data-start="1176" data-end="1209">common EPDM sheath</strong>. The outer sheath is made of <strong data-start="1249" data-end="1257">HDPE</strong>, black, UV-resistant, and highly resistant to abrasion, pressure, and moisture – ideal for long-term installations in demanding environments.</p>
|
||||
<h3 data-start="1429" data-end="1449">Application benefits</h3>
|
||||
<p data-start="1451" data-end="1756">NA2X2Y cables provide a <strong data-start="1476" data-end="1524">technically robust and cost-efficient solution</strong> for power distribution in networks with increased requirements. Their high mechanical strength and weather resistance make them the first choice for demanding infrastructure applications in the energy and industrial sectors.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Bending radius (mm)",
|
||||
@@ -802,4 +789,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="488" data-end="537">Optimal for mechanically demanding applications</h3>
|
||||
<p data-start="539" data-end="948">The <strong data-start="543" data-end="553">NA2X2Y</strong> complies with <strong data-start="574" data-end="603">DIN VDE 0276-603 (HD 603)</strong> and is designed for <strong data-start="630" data-end="717">fixed installation indoors, in cable ducts, underground, in water, or outdoors</strong>. It is primarily used in <strong data-start="741" data-end="789">power plants, industrial facilities, and switching stations</strong> as well as <strong data-start="794" data-end="808">local distribution networks</strong> – wherever robust cables are needed that can withstand high mechanical stress during installation and operation.</p>
|
||||
<h3 data-start="950" data-end="979">Construction and properties</h3>
|
||||
<p data-start="981" data-end="1427">The electrical conductor consists of <strong data-start="1016" data-end="1029">aluminium</strong>, available as solid round (RE), stranded round (RM), or sector-shaped (SE/SM). The cores are <strong data-start="1135" data-end="1150">PE-insulated</strong>, stranded together, and protected by a <strong data-start="1176" data-end="1209">common EPDM sheath</strong>. The outer sheath is made of <strong data-start="1249" data-end="1257">HDPE</strong>, black, UV-resistant, and highly resistant to abrasion, pressure, and moisture – ideal for long-term installations in demanding environments.</p>
|
||||
<h3 data-start="1429" data-end="1449">Application benefits</h3>
|
||||
<p data-start="1451" data-end="1756">NA2X2Y cables provide a <strong data-start="1476" data-end="1524">technically robust and cost-efficient solution</strong> for power distribution in networks with increased requirements. Their high mechanical strength and weather resistance make them the first choice for demanding infrastructure applications in the energy and industrial sectors.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -11,33 +11,7 @@ categories:
|
||||
images: []
|
||||
locale: en
|
||||
---
|
||||
# NA2X(F)K2Y
|
||||
|
||||
<section>
|
||||
<h2>Engineering Overview</h2>
|
||||
<p>The <strong>NA2X(F)K2Y high-voltage cable series</strong> is engineered to meet the rigorous demands of modern industrial and power distribution applications. It combines high-grade copper conductors with cross-linked polyethylene (XLPE) insulation, ensuring superior <strong>dielectric strength</strong> and <strong>thermal cycling</strong> resilience.</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Technical Performance and Installation</h2>
|
||||
<p>This cable series is optimized for high <strong>ampacity</strong> and excellent <strong>fault current withstand</strong> capabilities, making it ideal for environments where reliability and durability are paramount. The construction adheres to strict <strong>IEC compliance</strong> standards, ensuring both performance and safety.</p>
|
||||
<ul>
|
||||
<li>Stranded copper conductors enhance current carrying capacity and heat dissipation.</li>
|
||||
<li>XLPE insulation provides significant improvements in thermal characteristics and longevity compared to traditional PVC.</li>
|
||||
<li>Installation versatility with suitability for <strong>direct burial</strong>, <strong>trefoil formation</strong>, or <strong>cable tray mounting</strong>, accommodating various environmental conditions and spatial configurations.</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Compliance and EMC Considerations</h2>
|
||||
<p>The NA2X(F)K2Y series not only meets <strong>IEC</strong> standards but also features a robust design to ensure <strong>electromagnetic compatibility (EMC)</strong>. This design minimizes <strong>induced voltage</strong> effects, crucial in densely populated cable routes and close proximity to sensitive equipment.</p>
|
||||
<ul>
|
||||
<li>Comprehensive <strong>CPR classification</strong> and <strong>CE marking</strong> confirm the cable's adherence to European safety and quality benchmarks.</li>
|
||||
<li>Metallic screens incorporated within the cable structure effectively manage electromagnetic interference, safeguarding signal integrity across extensive networks.</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Rated voltage (kV)",
|
||||
@@ -260,4 +234,28 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h2>Engineering Overview</h2>
|
||||
<p>The <strong>NA2X(F)K2Y high-voltage cable series</strong> is engineered to meet the rigorous demands of modern industrial and power distribution applications. It combines high-grade copper conductors with cross-linked polyethylene (XLPE) insulation, ensuring superior <strong>dielectric strength</strong> and <strong>thermal cycling</strong> resilience.</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Technical Performance and Installation</h2>
|
||||
<p>This cable series is optimized for high <strong>ampacity</strong> and excellent <strong>fault current withstand</strong> capabilities, making it ideal for environments where reliability and durability are paramount. The construction adheres to strict <strong>IEC compliance</strong> standards, ensuring both performance and safety.</p>
|
||||
<ul>
|
||||
<li>Stranded copper conductors enhance current carrying capacity and heat dissipation.</li>
|
||||
<li>XLPE insulation provides significant improvements in thermal characteristics and longevity compared to traditional PVC.</li>
|
||||
<li>Installation versatility with suitability for <strong>direct burial</strong>, <strong>trefoil formation</strong>, or <strong>cable tray mounting</strong>, accommodating various environmental conditions and spatial configurations.</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Compliance and EMC Considerations</h2>
|
||||
<p>The NA2X(F)K2Y series not only meets <strong>IEC</strong> standards but also features a robust design to ensure <strong>electromagnetic compatibility (EMC)</strong>. This design minimizes <strong>induced voltage</strong> effects, crucial in densely populated cable routes and close proximity to sensitive equipment.</p>
|
||||
<ul>
|
||||
<li>Comprehensive <strong>CPR classification</strong> and <strong>CE marking</strong> confirm the cable's adherence to European safety and quality benchmarks.</li>
|
||||
<li>Metallic screens incorporated within the cable structure effectively manage electromagnetic interference, safeguarding signal integrity across extensive networks.</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -11,34 +11,7 @@ categories:
|
||||
images: []
|
||||
locale: en
|
||||
---
|
||||
# NA2X(F)KLD2Y
|
||||
|
||||
<section>
|
||||
<h2>Engineering Overview</h2>
|
||||
<p>The <strong>NA2X(F)KLD2Y high-voltage cable series</strong> is engineered to meet the rigorous demands of modern industrial electrical networks, offering high dielectric strength and excellent thermal cycling resistance. This series is ideal for applications that require reliable power distribution in high-voltage settings.</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Technical Performance and Construction</h2>
|
||||
<p>This cable series is built with high-conductivity stranded copper conductors, ensuring superior ampacity and efficient power transmission. The cross-linked polyethylene (XLPE) insulation provides enhanced thermal properties and dielectric strength, critical for maintaining integrity under high voltage and temperature conditions.</p>
|
||||
<ul>
|
||||
<li>Optimized conductor design to maximize current carrying capacity and minimize thermal losses.</li>
|
||||
<li>XLPE insulation for improved fault current withstand and resistance to environmental stressors.</li>
|
||||
<li>Designed for <strong>IEC compliance</strong> and <strong>CPR classification</strong>, ensuring adherence to international safety and performance standards.</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Installation and Compliance</h2>
|
||||
<p>The NA2X(F)KLD2Y series supports various installation methods including <strong>direct burial</strong> and <strong>cable tray mounting</strong>. Its robust construction allows for installation in trefoil formation, optimizing space and reducing induced voltages.</p>
|
||||
<ul>
|
||||
<li>Metallic screening layers enhance electromagnetic compatibility (EMC), crucial for installations in electromagnetically active environments.</li>
|
||||
<li>The cable's design minimizes electromagnetic interference, aiding in the stability of the entire power network.</li>
|
||||
<li>Each cable variant is marked with <strong>CE marking</strong>, signifying European conformity with health, safety, and environmental protection standards.</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Rated voltage (kV)",
|
||||
@@ -239,4 +212,29 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h2>Engineering Overview</h2>
|
||||
<p>The <strong>NA2X(F)KLD2Y high-voltage cable series</strong> is engineered to meet the rigorous demands of modern industrial electrical networks, offering high dielectric strength and excellent thermal cycling resistance. This series is ideal for applications that require reliable power distribution in high-voltage settings.</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Technical Performance and Construction</h2>
|
||||
<p>This cable series is built with high-conductivity stranded copper conductors, ensuring superior ampacity and efficient power transmission. The cross-linked polyethylene (XLPE) insulation provides enhanced thermal properties and dielectric strength, critical for maintaining integrity under high voltage and temperature conditions.</p>
|
||||
<ul>
|
||||
<li>Optimized conductor design to maximize current carrying capacity and minimize thermal losses.</li>
|
||||
<li>XLPE insulation for improved fault current withstand and resistance to environmental stressors.</li>
|
||||
<li>Designed for <strong>IEC compliance</strong> and <strong>CPR classification</strong>, ensuring adherence to international safety and performance standards.</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Installation and Compliance</h2>
|
||||
<p>The NA2X(F)KLD2Y series supports various installation methods including <strong>direct burial</strong> and <strong>cable tray mounting</strong>. Its robust construction allows for installation in trefoil formation, optimizing space and reducing induced voltages.</p>
|
||||
<ul>
|
||||
<li>Metallic screening layers enhance electromagnetic compatibility (EMC), crucial for installations in electromagnetically active environments.</li>
|
||||
<li>The cable's design minimizes electromagnetic interference, aiding in the stability of the entire power network.</li>
|
||||
<li>Each cable variant is marked with <strong>CE marking</strong>, signifying European conformity with health, safety, and environmental protection standards.</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/NA2XS2Y-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# NA2XS2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="462" data-end="510">For harsh environments and heavy loads</h3>
|
||||
<p data-start="512" data-end="900">The <strong data-start="516" data-end="527">NA2XS2Y</strong> complies with <strong data-start="547" data-end="567">DIN VDE 0276-620</strong>, <strong data-start="569" data-end="582">HD 620 S2</strong> and <strong data-start="587" data-end="600">IEC 60502</strong> standards, and is specifically designed for <strong data-start="626" data-end="708">fixed installation indoors, in cable ducts, outdoors, in soil and water</strong>. It is commonly used in <strong data-start="748" data-end="801">industrial facilities, switching stations, and power plants</strong>, especially where the cable is <strong data-start="862" data-end="894">exposed to high mechanical stress</strong> during installation or operation.</p>
|
||||
<h3 data-start="902" data-end="937">Construction and technical features</h3>
|
||||
<p data-start="939" data-end="1476">The cable features a <strong data-start="963" data-end="996">multi-stranded aluminium conductor</strong> (Class 2 according to DIN VDE 0295 / IEC 60228). The <strong data-start="1053" data-end="1070">XLPE insulation</strong> (Type DIX8) is inseparably bonded to the <strong data-start="1105" data-end="1128">outer conductive layer</strong> and, together with the <strong data-start="1167" data-end="1190">inner conductive layer</strong>, ensures <strong data-start="1201" data-end="1233">partial discharge-free operation</strong>. The <strong data-start="1239" data-end="1254">shielding</strong> consists of a copper wire braid with counter helix. The <strong data-start="1343" data-end="1370">black PE sheath (Type DMP2)</strong> protects against moisture, mechanical pressure, and chemical exposure – but is not flame-retardant.</p>
|
||||
<h3 data-start="1478" data-end="1526">Special features and application benefits</h3>
|
||||
<p data-start="1528" data-end="1930">NA2XS2Y is <strong data-start="1540" data-end="1556">suitable for underground installation</strong> and for use at <strong data-start="1577" data-end="1607">temperatures as low as -20 °C</strong>. It is <strong data-start="1625" data-end="1653">free from silicone and cadmium</strong>, contains no paint-wetting impairment substances, and handles a <strong data-start="1714" data-end="1754">continuous operating temperature of up to +90 °C</strong>, and up to <strong data-start="1785" data-end="1796">+250 °C</strong> in short-circuit conditions. The black PE sheath makes this cable the <strong data-start="1841" data-end="1929">ideal high-resilience solution for permanent underground medium-voltage installations</strong>.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -1105,4 +1092,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="462" data-end="510">For harsh environments and heavy loads</h3>
|
||||
<p data-start="512" data-end="900">The <strong data-start="516" data-end="527">NA2XS2Y</strong> complies with <strong data-start="547" data-end="567">DIN VDE 0276-620</strong>, <strong data-start="569" data-end="582">HD 620 S2</strong> and <strong data-start="587" data-end="600">IEC 60502</strong> standards, and is specifically designed for <strong data-start="626" data-end="708">fixed installation indoors, in cable ducts, outdoors, in soil and water</strong>. It is commonly used in <strong data-start="748" data-end="801">industrial facilities, switching stations, and power plants</strong>, especially where the cable is <strong data-start="862" data-end="894">exposed to high mechanical stress</strong> during installation or operation.</p>
|
||||
<h3 data-start="902" data-end="937">Construction and technical features</h3>
|
||||
<p data-start="939" data-end="1476">The cable features a <strong data-start="963" data-end="996">multi-stranded aluminium conductor</strong> (Class 2 according to DIN VDE 0295 / IEC 60228). The <strong data-start="1053" data-end="1070">XLPE insulation</strong> (Type DIX8) is inseparably bonded to the <strong data-start="1105" data-end="1128">outer conductive layer</strong> and, together with the <strong data-start="1167" data-end="1190">inner conductive layer</strong>, ensures <strong data-start="1201" data-end="1233">partial discharge-free operation</strong>. The <strong data-start="1239" data-end="1254">shielding</strong> consists of a copper wire braid with counter helix. The <strong data-start="1343" data-end="1370">black PE sheath (Type DMP2)</strong> protects against moisture, mechanical pressure, and chemical exposure – but is not flame-retardant.</p>
|
||||
<h3 data-start="1478" data-end="1526">Special features and application benefits</h3>
|
||||
<p data-start="1528" data-end="1930">NA2XS2Y is <strong data-start="1540" data-end="1556">suitable for underground installation</strong> and for use at <strong data-start="1577" data-end="1607">temperatures as low as -20 °C</strong>. It is <strong data-start="1625" data-end="1653">free from silicone and cadmium</strong>, contains no paint-wetting impairment substances, and handles a <strong data-start="1714" data-end="1754">continuous operating temperature of up to +90 °C</strong>, and up to <strong data-start="1785" data-end="1796">+250 °C</strong> in short-circuit conditions. The black PE sheath makes this cable the <strong data-start="1841" data-end="1929">ideal high-resilience solution for permanent underground medium-voltage installations</strong>.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/NA2XSF2Y-3-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# NA2XS(F)2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="508" data-end="575">For high-performance power networks with enhanced protection requirements</h3>
|
||||
<p data-start="577" data-end="994">The <strong data-start="581" data-end="595">NA2XS(F)2Y</strong> complies with standards <strong data-start="618" data-end="638">DIN VDE 0276-620</strong>, <strong data-start="640" data-end="653">HD 620 S2</strong> and <strong data-start="658" data-end="671">IEC 60502</strong>. It is suitable for <strong data-start="696" data-end="797">installation indoors, in cable ducts, underground, in water, outdoors, or on cable trays</strong>. Its main applications are in <strong data-start="831" data-end="881">utility grids, industrial facilities, and substations</strong>, where additional safety reserves against moisture ingress and mechanical stress are required.</p>
|
||||
<h3 data-start="996" data-end="1033">Construction and material characteristics</h3>
|
||||
<p data-start="1035" data-end="1537">The conductor consists of <strong data-start="1058" data-end="1085">multi-stranded aluminium</strong> (Class 2), surrounded by an <strong data-start="1116" data-end="1139">inner conductive layer</strong> and <strong data-start="1150" data-end="1168">XLPE insulation</strong> with a tightly bonded outer conductive layer – extruded in a single process for maximum operational safety. The shielding is provided by a <strong data-start="1309" data-end="1354">copper wire braid with counter helix</strong>, complemented by a <strong data-start="1375" data-end="1407">longitudinally watertight tape</strong>. The outer sheath is made of <strong data-start="1437" data-end="1464">black PE (Type DMP2)</strong> and reliably protects against mechanical stress and moisture.</p>
|
||||
<h3 data-start="1539" data-end="1577">Properties and fields of application</h3>
|
||||
<p data-start="1579" data-end="1977">The NA2XS(F)2Y is <strong data-start="1598" data-end="1614">suitable for underground installation</strong>, <strong data-start="1616" data-end="1644">free from silicone and cadmium</strong>, and <strong data-start="1651" data-end="1704">resistant to paint-wetting impairment substances</strong>. It withstands <strong data-start="1714" data-end="1746">continuous temperatures up to +90 °C</strong> and tolerates <strong data-start="1767" data-end="1805">short-circuit loads up to +250 °C</strong>. Thanks to its well-designed, partial discharge-free structure, it is particularly well suited for <strong data-start="1900" data-end="1976">safe power distribution in moist and complex installation environments</strong>.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -1087,4 +1074,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="508" data-end="575">For high-performance power networks with enhanced protection requirements</h3>
|
||||
<p data-start="577" data-end="994">The <strong data-start="581" data-end="595">NA2XS(F)2Y</strong> complies with standards <strong data-start="618" data-end="638">DIN VDE 0276-620</strong>, <strong data-start="640" data-end="653">HD 620 S2</strong> and <strong data-start="658" data-end="671">IEC 60502</strong>. It is suitable for <strong data-start="696" data-end="797">installation indoors, in cable ducts, underground, in water, outdoors, or on cable trays</strong>. Its main applications are in <strong data-start="831" data-end="881">utility grids, industrial facilities, and substations</strong>, where additional safety reserves against moisture ingress and mechanical stress are required.</p>
|
||||
<h3 data-start="996" data-end="1033">Construction and material characteristics</h3>
|
||||
<p data-start="1035" data-end="1537">The conductor consists of <strong data-start="1058" data-end="1085">multi-stranded aluminium</strong> (Class 2), surrounded by an <strong data-start="1116" data-end="1139">inner conductive layer</strong> and <strong data-start="1150" data-end="1168">XLPE insulation</strong> with a tightly bonded outer conductive layer – extruded in a single process for maximum operational safety. The shielding is provided by a <strong data-start="1309" data-end="1354">copper wire braid with counter helix</strong>, complemented by a <strong data-start="1375" data-end="1407">longitudinally watertight tape</strong>. The outer sheath is made of <strong data-start="1437" data-end="1464">black PE (Type DMP2)</strong> and reliably protects against mechanical stress and moisture.</p>
|
||||
<h3 data-start="1539" data-end="1577">Properties and fields of application</h3>
|
||||
<p data-start="1579" data-end="1977">The NA2XS(F)2Y is <strong data-start="1598" data-end="1614">suitable for underground installation</strong>, <strong data-start="1616" data-end="1644">free from silicone and cadmium</strong>, and <strong data-start="1651" data-end="1704">resistant to paint-wetting impairment substances</strong>. It withstands <strong data-start="1714" data-end="1746">continuous temperatures up to +90 °C</strong> and tolerates <strong data-start="1767" data-end="1805">short-circuit loads up to +250 °C</strong>. Thanks to its well-designed, partial discharge-free structure, it is particularly well suited for <strong data-start="1900" data-end="1976">safe power distribution in moist and complex installation environments</strong>.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/06/NA2XSFL2Y-3-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# NA2XS(FL)2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="443" data-end="505">Ideal for high-voltage applications underground and outdoors</h3>
|
||||
<p data-start="507" data-end="867">The <strong data-start="511" data-end="526">NA2XS(FL)2Y</strong> meets the requirements of <strong data-start="557" data-end="570">IEC 60840</strong> and is suitable for <strong data-start="595" data-end="669">installation in the ground, in cable ducts, indoors, in pipes, and outdoors</strong>. It is manufactured based on project specifications and is particularly used in <strong data-start="725" data-end="798">transmission networks, utility infrastructures, and substations</strong> where safety and durability are top priorities.</p>
|
||||
<h3 data-start="869" data-end="904">Structure and technical features</h3>
|
||||
<p data-start="906" data-end="1465">At its core, the cable features a <strong data-start="927" data-end="975">compacted, multi-stranded aluminum conductor</strong> according to <strong data-start="981" data-end="994">IEC 60228</strong>, embedded in a <strong data-start="1016" data-end="1043">conductive inner layer</strong>, an <strong data-start="1050" data-end="1068">XLPE insulation</strong>, and a <strong data-start="1078" data-end="1128">fully bonded, extruded outer layer</strong>. The combination of a <strong data-start="1150" data-end="1177">water-swellable tape</strong>, <strong data-start="1179" data-end="1219">copper shielding with an open helix</strong>, and an additional <strong data-start="1239" data-end="1263">water-swellable wrap</strong> effectively protects the cable from moisture ingress. The black <strong data-start="1336" data-end="1396">PE sheath with firmly bonded aluminum tape (Alucopo)</strong> serves as both mechanical protection and a <strong data-start="1444" data-end="1464">transverse water barrier</strong>.</p>
|
||||
<h3 data-start="1467" data-end="1505">Properties and application benefits</h3>
|
||||
<p data-start="1507" data-end="1827">The NA2XS(FL)2Y is <strong data-start="1527" data-end="1543">suitable for direct burial</strong>, <strong data-start="1545" data-end="1569">mechanically robust</strong>, and offers excellent operational safety due to its <strong data-start="1594" data-end="1625">partial discharge-free design</strong> and water-repellent construction. It is configured project-specifically and can be used flexibly – from urban energy projects to large industrial installations.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -1123,4 +1110,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="443" data-end="505">Ideal for high-voltage applications underground and outdoors</h3>
|
||||
<p data-start="507" data-end="867">The <strong data-start="511" data-end="526">NA2XS(FL)2Y</strong> meets the requirements of <strong data-start="557" data-end="570">IEC 60840</strong> and is suitable for <strong data-start="595" data-end="669">installation in the ground, in cable ducts, indoors, in pipes, and outdoors</strong>. It is manufactured based on project specifications and is particularly used in <strong data-start="725" data-end="798">transmission networks, utility infrastructures, and substations</strong> where safety and durability are top priorities.</p>
|
||||
<h3 data-start="869" data-end="904">Structure and technical features</h3>
|
||||
<p data-start="906" data-end="1465">At its core, the cable features a <strong data-start="927" data-end="975">compacted, multi-stranded aluminum conductor</strong> according to <strong data-start="981" data-end="994">IEC 60228</strong>, embedded in a <strong data-start="1016" data-end="1043">conductive inner layer</strong>, an <strong data-start="1050" data-end="1068">XLPE insulation</strong>, and a <strong data-start="1078" data-end="1128">fully bonded, extruded outer layer</strong>. The combination of a <strong data-start="1150" data-end="1177">water-swellable tape</strong>, <strong data-start="1179" data-end="1219">copper shielding with an open helix</strong>, and an additional <strong data-start="1239" data-end="1263">water-swellable wrap</strong> effectively protects the cable from moisture ingress. The black <strong data-start="1336" data-end="1396">PE sheath with firmly bonded aluminum tape (Alucopo)</strong> serves as both mechanical protection and a <strong data-start="1444" data-end="1464">transverse water barrier</strong>.</p>
|
||||
<h3 data-start="1467" data-end="1505">Properties and application benefits</h3>
|
||||
<p data-start="1507" data-end="1827">The NA2XS(FL)2Y is <strong data-start="1527" data-end="1543">suitable for direct burial</strong>, <strong data-start="1545" data-end="1569">mechanically robust</strong>, and offers excellent operational safety due to its <strong data-start="1594" data-end="1625">partial discharge-free design</strong> and water-repellent construction. It is configured project-specifically and can be used flexibly – from urban energy projects to large industrial installations.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/NA2XSFL2Y-3-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# NA2XS(FL)2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="481" data-end="540">Designed for use in power supply networks</h3>
|
||||
<p data-start="542" data-end="974">The <strong data-start="546" data-end="561">NA2XS(FL)2Y</strong> complies with standards <strong data-start="581" data-end="601">DIN VDE 0276-620</strong>, <strong data-start="603" data-end="616">HD 620 S2</strong> and <strong data-start="621" data-end="634">IEC 60502</strong>. It is ideal for installation in <strong data-start="670" data-end="765">power supply networks (utilities), indoors, in cable ducts, outdoors, in soil, and in water</strong>. Thanks to its longitudinally watertight design and Al/PE sheath construction, it remains operational even when damaged – water ingress is effectively limited to the affected area.</p>
|
||||
<h3 data-start="976" data-end="999">Technical construction</h3>
|
||||
<p data-start="1001" data-end="1556">The cable features a <strong data-start="1025" data-end="1058">multi-stranded aluminium conductor</strong> (Class 2 according to VDE 0295 / IEC 60228), surrounded by <strong data-start="1112" data-end="1130">XLPE insulation</strong> with a <strong data-start="1135" data-end="1172">tightly bonded outer conductive layer</strong>. A <strong data-start="1179" data-end="1223">conductive, longitudinally watertight tape</strong> and a <strong data-start="1235" data-end="1281">copper wire screen with counter helix</strong> ensure reliable field control. The cable is also equipped with a <strong data-start="1356" data-end="1398">longitudinally watertight aluminum tape</strong> that is <strong data-start="1417" data-end="1453">laminated to the black PE sheath</strong>. The result: high protection against mechanical stress and moisture ingress.</p>
|
||||
<h3 data-start="1558" data-end="1590">Properties and applications</h3>
|
||||
<p data-start="1592" data-end="1977">The NA2XS(FL)2Y cable is <strong data-start="1618" data-end="1634">suitable for underground installation</strong>, <strong data-start="1636" data-end="1664">free from silicone and cadmium</strong>, and suited for environments with high mechanical stress. It withstands <strong data-start="1742" data-end="1780">temperatures up to +90 °C in operation</strong> and <strong data-start="1785" data-end="1819">up to +250 °C under short-circuit conditions</strong>. Thanks to its partial discharge-free design and water barrier, it is particularly well suited for <strong data-start="1906" data-end="1939">critical supply areas</strong> in power infrastructure.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -1123,4 +1110,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="481" data-end="540">Designed for use in power supply networks</h3>
|
||||
<p data-start="542" data-end="974">The <strong data-start="546" data-end="561">NA2XS(FL)2Y</strong> complies with standards <strong data-start="581" data-end="601">DIN VDE 0276-620</strong>, <strong data-start="603" data-end="616">HD 620 S2</strong> and <strong data-start="621" data-end="634">IEC 60502</strong>. It is ideal for installation in <strong data-start="670" data-end="765">power supply networks (utilities), indoors, in cable ducts, outdoors, in soil, and in water</strong>. Thanks to its longitudinally watertight design and Al/PE sheath construction, it remains operational even when damaged – water ingress is effectively limited to the affected area.</p>
|
||||
<h3 data-start="976" data-end="999">Technical construction</h3>
|
||||
<p data-start="1001" data-end="1556">The cable features a <strong data-start="1025" data-end="1058">multi-stranded aluminium conductor</strong> (Class 2 according to VDE 0295 / IEC 60228), surrounded by <strong data-start="1112" data-end="1130">XLPE insulation</strong> with a <strong data-start="1135" data-end="1172">tightly bonded outer conductive layer</strong>. A <strong data-start="1179" data-end="1223">conductive, longitudinally watertight tape</strong> and a <strong data-start="1235" data-end="1281">copper wire screen with counter helix</strong> ensure reliable field control. The cable is also equipped with a <strong data-start="1356" data-end="1398">longitudinally watertight aluminum tape</strong> that is <strong data-start="1417" data-end="1453">laminated to the black PE sheath</strong>. The result: high protection against mechanical stress and moisture ingress.</p>
|
||||
<h3 data-start="1558" data-end="1590">Properties and applications</h3>
|
||||
<p data-start="1592" data-end="1977">The NA2XS(FL)2Y cable is <strong data-start="1618" data-end="1634">suitable for underground installation</strong>, <strong data-start="1636" data-end="1664">free from silicone and cadmium</strong>, and suited for environments with high mechanical stress. It withstands <strong data-start="1742" data-end="1780">temperatures up to +90 °C in operation</strong> and <strong data-start="1785" data-end="1819">up to +250 °C under short-circuit conditions</strong>. Thanks to its partial discharge-free design and water barrier, it is particularly well suited for <strong data-start="1906" data-end="1939">critical supply areas</strong> in power infrastructure.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -13,20 +13,7 @@ images:
|
||||
- /uploads/2025/01/NA2XSY-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# NA2XSY
|
||||
|
||||
<section>
|
||||
<h3 data-start="501" data-end="546">For high-performance medium-voltage networks</h3>
|
||||
<p data-start="548" data-end="961">The <strong data-start="552" data-end="562">NA2XSY</strong> meets the requirements of <strong data-start="600" data-end="620">DIN VDE 0276-620</strong>, <strong data-start="622" data-end="635">HD 620 S2</strong>, and <strong data-start="640" data-end="653">IEC 60502</strong>. It is suitable for <strong data-start="678" data-end="759">installation indoors, in cable ducts, underground, in water, or outdoors</strong> – but only when installed with protection. Typical areas of application include <strong data-start="830" data-end="880">industrial plants, power stations, and switching stations</strong> where medium voltage must be transported with high operational safety.</p>
|
||||
<h3 data-start="963" data-end="986">Technical construction</h3>
|
||||
<p data-start="988" data-end="1476">The conductor consists of <strong data-start="1011" data-end="1038">multi-stranded aluminium</strong> (Class 2 according to VDE 0295 / IEC 60228). The <strong data-start="1078" data-end="1096">XLPE insulation</strong> is permanently bonded to the <strong data-start="1119" data-end="1142">outer conductive layer</strong> to ensure a <strong data-start="1162" data-end="1194">partial discharge-free structure</strong>. The structure also includes an <strong data-start="1246" data-end="1268">inner conductive layer</strong>, <strong data-start="1270" data-end="1295">conductive tape</strong>, a <strong data-start="1302" data-end="1340">copper wire screen with counter helix</strong>, additional tape, and a <strong data-start="1377" data-end="1397">red PVC sheath</strong>. The cable is flame-retardant and <strong data-start="1433" data-end="1461">approved for underground installation</strong> (depending on the type).</p>
|
||||
<h3 data-start="1478" data-end="1510">Application and properties</h3>
|
||||
<p data-start="1512" data-end="1981">Thanks to its precise construction, the NA2XSY can also be easily installed in complex routing scenarios. It is <strong data-start="1618" data-end="1646">free from silicone and cadmium</strong>, contains no paint-wetting impairment substances, and withstands <strong data-start="1702" data-end="1741">short-circuit temperatures up to +250 °C</strong>. The concentric structure and tightly bonded conductive layers make this cable a <strong data-start="1834" data-end="1906">reliable solution for medium-voltage power distribution</strong> where operational safety and ease of installation are essential.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "CPR class",
|
||||
@@ -1137,4 +1124,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="501" data-end="546">For high-performance medium-voltage networks</h3>
|
||||
<p data-start="548" data-end="961">The <strong data-start="552" data-end="562">NA2XSY</strong> meets the requirements of <strong data-start="600" data-end="620">DIN VDE 0276-620</strong>, <strong data-start="622" data-end="635">HD 620 S2</strong>, and <strong data-start="640" data-end="653">IEC 60502</strong>. It is suitable for <strong data-start="678" data-end="759">installation indoors, in cable ducts, underground, in water, or outdoors</strong> – but only when installed with protection. Typical areas of application include <strong data-start="830" data-end="880">industrial plants, power stations, and switching stations</strong> where medium voltage must be transported with high operational safety.</p>
|
||||
<h3 data-start="963" data-end="986">Technical construction</h3>
|
||||
<p data-start="988" data-end="1476">The conductor consists of <strong data-start="1011" data-end="1038">multi-stranded aluminium</strong> (Class 2 according to VDE 0295 / IEC 60228). The <strong data-start="1078" data-end="1096">XLPE insulation</strong> is permanently bonded to the <strong data-start="1119" data-end="1142">outer conductive layer</strong> to ensure a <strong data-start="1162" data-end="1194">partial discharge-free structure</strong>. The structure also includes an <strong data-start="1246" data-end="1268">inner conductive layer</strong>, <strong data-start="1270" data-end="1295">conductive tape</strong>, a <strong data-start="1302" data-end="1340">copper wire screen with counter helix</strong>, additional tape, and a <strong data-start="1377" data-end="1397">red PVC sheath</strong>. The cable is flame-retardant and <strong data-start="1433" data-end="1461">approved for underground installation</strong> (depending on the type).</p>
|
||||
<h3 data-start="1478" data-end="1510">Application and properties</h3>
|
||||
<p data-start="1512" data-end="1981">Thanks to its precise construction, the NA2XSY can also be easily installed in complex routing scenarios. It is <strong data-start="1618" data-end="1646">free from silicone and cadmium</strong>, contains no paint-wetting impairment substances, and withstands <strong data-start="1702" data-end="1741">short-circuit temperatures up to +250 °C</strong>. The concentric structure and tightly bonded conductive layers make this cable a <strong data-start="1834" data-end="1906">reliable solution for medium-voltage power distribution</strong> where operational safety and ease of installation are essential.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/NA2XY-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# NA2XY
|
||||
|
||||
<section>
|
||||
<h3 data-start="511" data-end="550">For demanding network applications</h3>
|
||||
<p data-start="552" data-end="901">The <strong data-start="556" data-end="565">NA2XY</strong> complies with <strong data-start="586" data-end="615">DIN VDE 0276-603 (HD 603)</strong> and is ideal for fixed installation in <strong data-start="657" data-end="725">indoor spaces, cable ducts, outdoors, in water, or underground</strong>. Typical areas of application include <strong data-start="762" data-end="809">power plants, industrial facilities, and switching stations</strong> as well as <strong data-start="816" data-end="829">local distribution networks</strong>, where mechanical stress during operation must be considered.</p>
|
||||
<h3 data-start="903" data-end="926">Technical construction</h3>
|
||||
<p data-start="928" data-end="1288">The conductor is made of <strong data-start="951" data-end="964">aluminium</strong>, available as solid round (RE) or stranded round (RM). The cores are insulated with <strong data-start="1048" data-end="1077">PE (polyethylene)</strong>, which provides excellent electrical insulation and high thermal resistance. The black <strong data-start="1187" data-end="1201">PVC sheath</strong> is <strong data-start="1206" data-end="1222">UV-resistant</strong> and reliably protects against moisture and environmental influences.</p>
|
||||
<h3 data-start="1290" data-end="1310">Fields of application</h3>
|
||||
<p data-start="1312" data-end="1582">NA2XY cables are the right choice for <strong data-start="1351" data-end="1427">stable power distribution under mechanically demanding conditions</strong>. They provide an economical, durable solution for utilities, industry, and plant operators who rely on proven technology and high resilience.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Bending radius (mm)",
|
||||
@@ -880,4 +867,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="511" data-end="550">For demanding network applications</h3>
|
||||
<p data-start="552" data-end="901">The <strong data-start="556" data-end="565">NA2XY</strong> complies with <strong data-start="586" data-end="615">DIN VDE 0276-603 (HD 603)</strong> and is ideal for fixed installation in <strong data-start="657" data-end="725">indoor spaces, cable ducts, outdoors, in water, or underground</strong>. Typical areas of application include <strong data-start="762" data-end="809">power plants, industrial facilities, and switching stations</strong> as well as <strong data-start="816" data-end="829">local distribution networks</strong>, where mechanical stress during operation must be considered.</p>
|
||||
<h3 data-start="903" data-end="926">Technical construction</h3>
|
||||
<p data-start="928" data-end="1288">The conductor is made of <strong data-start="951" data-end="964">aluminium</strong>, available as solid round (RE) or stranded round (RM). The cores are insulated with <strong data-start="1048" data-end="1077">PE (polyethylene)</strong>, which provides excellent electrical insulation and high thermal resistance. The black <strong data-start="1187" data-end="1201">PVC sheath</strong> is <strong data-start="1206" data-end="1222">UV-resistant</strong> and reliably protects against moisture and environmental influences.</p>
|
||||
<h3 data-start="1290" data-end="1310">Fields of application</h3>
|
||||
<p data-start="1312" data-end="1582">NA2XY cables are the right choice for <strong data-start="1351" data-end="1427">stable power distribution under mechanically demanding conditions</strong>. They provide an economical, durable solution for utilities, industry, and plant operators who rely on proven technology and high resilience.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -13,20 +13,7 @@ images:
|
||||
- /uploads/2025/01/NAY2Y-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# NAY2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="525" data-end="567">For demanding installation conditions</h3>
|
||||
<p data-start="569" data-end="991">The <strong data-start="573" data-end="582">NAY2Y</strong> meets the requirements of <strong data-start="618" data-end="637">TP PRAKAB 12/03</strong> based on <strong data-start="654" data-end="670">VDE 0276-603</strong> and is suitable for <strong data-start="695" data-end="787">fixed installation indoors, in cable ducts, underground, in water, and outdoors</strong>. It is ideal for applications in power plants, industrial and switching stations, as well as local supply networks – wherever mechanical stress during installation or operation plays a significant role.</p>
|
||||
<h3 data-start="993" data-end="1028">Construction and material components</h3>
|
||||
<p data-start="1030" data-end="1474">The conductor is made of <strong data-start="1053" data-end="1066">aluminium</strong>, available as solid round (RE), stranded round (RM), or sector-shaped (SE/SM). The <strong data-start="1157" data-end="1181">PVC-insulated cores</strong> are stranded together and protected by a <strong data-start="1217" data-end="1251">common EPDM sheath</strong>. The outer sheath of <strong data-start="1285" data-end="1293">HDPE</strong> (black, UV-resistant) makes the cable particularly resistant to pressure, abrasion, and moisture – perfect for long-term installations under challenging conditions.</p>
|
||||
<h3 data-start="1476" data-end="1504">Typical applications</h3>
|
||||
<p data-start="1506" data-end="1785">NAY2Y cables are the first choice for <strong data-start="1538" data-end="1583">cabling projects with high loads</strong>, such as in industrial network construction or outdoor power distribution. They offer a robust, durable, and cost-efficient solution for stable power supply in a wide variety of environments.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Bending radius (mm)",
|
||||
@@ -881,4 +868,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="525" data-end="567">For demanding installation conditions</h3>
|
||||
<p data-start="569" data-end="991">The <strong data-start="573" data-end="582">NAY2Y</strong> meets the requirements of <strong data-start="618" data-end="637">TP PRAKAB 12/03</strong> based on <strong data-start="654" data-end="670">VDE 0276-603</strong> and is suitable for <strong data-start="695" data-end="787">fixed installation indoors, in cable ducts, underground, in water, and outdoors</strong>. It is ideal for applications in power plants, industrial and switching stations, as well as local supply networks – wherever mechanical stress during installation or operation plays a significant role.</p>
|
||||
<h3 data-start="993" data-end="1028">Construction and material components</h3>
|
||||
<p data-start="1030" data-end="1474">The conductor is made of <strong data-start="1053" data-end="1066">aluminium</strong>, available as solid round (RE), stranded round (RM), or sector-shaped (SE/SM). The <strong data-start="1157" data-end="1181">PVC-insulated cores</strong> are stranded together and protected by a <strong data-start="1217" data-end="1251">common EPDM sheath</strong>. The outer sheath of <strong data-start="1285" data-end="1293">HDPE</strong> (black, UV-resistant) makes the cable particularly resistant to pressure, abrasion, and moisture – perfect for long-term installations under challenging conditions.</p>
|
||||
<h3 data-start="1476" data-end="1504">Typical applications</h3>
|
||||
<p data-start="1506" data-end="1785">NAY2Y cables are the first choice for <strong data-start="1538" data-end="1583">cabling projects with high loads</strong>, such as in industrial network construction or outdoor power distribution. They offer a robust, durable, and cost-efficient solution for stable power supply in a wide variety of environments.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/NAYCWY-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# NAYCWY
|
||||
|
||||
<section>
|
||||
<h3 data-start="540" data-end="595">Designed for increased safety requirements</h3>
|
||||
<p data-start="597" data-end="998">The <strong data-start="601" data-end="611">NAYCWY</strong> complies with <strong data-start="632" data-end="661">DIN VDE 0276-603 (HD 603)</strong> and is suitable for use in <strong data-start="697" data-end="760">power plants, industrial facilities, switching stations, and local networks</strong>. It can be permanently installed – indoors, in cable ducts, outdoors, underground, or in water. Thanks to its concentric conductor, it offers additional protection in case of mechanical damage and enables safe potential equalization.</p>
|
||||
<h3 data-start="1000" data-end="1023">Technical construction</h3>
|
||||
<p data-start="1025" data-end="1497">The electrical conductor consists of <strong data-start="1060" data-end="1073">aluminium</strong>, available as stranded round (RM), sector-shaped solid (SE), or stranded (SM). The <strong data-start="1164" data-end="1185">PVC core insulation</strong> and a <strong data-start="1195" data-end="1228">common EPDM sheath</strong> protect the stranded cores. On top lies a <strong data-start="1278" data-end="1329">concentric conductor made of bare copper wires</strong> with copper tape counter helix – ideally usable as <strong data-start="1372" data-end="1394">PE or PEN conductor</strong>. A black <strong data-start="1422" data-end="1451">UV-resistant PVC sheath</strong> reliably seals the cable from the outside.</p>
|
||||
<h3 data-start="1499" data-end="1532">Application and special features</h3>
|
||||
<p data-start="1534" data-end="1894"><strong>NAYCWY</strong> cables are used wherever <strong data-start="1583" data-end="1623">electrical safety and shielding</strong> are required. The concentric conductor does not need to be separated when connecting to branch joints, which simplifies installation. This makes the cable particularly suitable for modern low-voltage networks with increased requirements for operational safety and contact protection.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Bending radius (mm)",
|
||||
@@ -802,4 +789,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="540" data-end="595">Designed for increased safety requirements</h3>
|
||||
<p data-start="597" data-end="998">The <strong data-start="601" data-end="611">NAYCWY</strong> complies with <strong data-start="632" data-end="661">DIN VDE 0276-603 (HD 603)</strong> and is suitable for use in <strong data-start="697" data-end="760">power plants, industrial facilities, switching stations, and local networks</strong>. It can be permanently installed – indoors, in cable ducts, outdoors, underground, or in water. Thanks to its concentric conductor, it offers additional protection in case of mechanical damage and enables safe potential equalization.</p>
|
||||
<h3 data-start="1000" data-end="1023">Technical construction</h3>
|
||||
<p data-start="1025" data-end="1497">The electrical conductor consists of <strong data-start="1060" data-end="1073">aluminium</strong>, available as stranded round (RM), sector-shaped solid (SE), or stranded (SM). The <strong data-start="1164" data-end="1185">PVC core insulation</strong> and a <strong data-start="1195" data-end="1228">common EPDM sheath</strong> protect the stranded cores. On top lies a <strong data-start="1278" data-end="1329">concentric conductor made of bare copper wires</strong> with copper tape counter helix – ideally usable as <strong data-start="1372" data-end="1394">PE or PEN conductor</strong>. A black <strong data-start="1422" data-end="1451">UV-resistant PVC sheath</strong> reliably seals the cable from the outside.</p>
|
||||
<h3 data-start="1499" data-end="1532">Application and special features</h3>
|
||||
<p data-start="1534" data-end="1894"><strong>NAYCWY</strong> cables are used wherever <strong data-start="1583" data-end="1623">electrical safety and shielding</strong> are required. The concentric conductor does not need to be separated when connecting to branch joints, which simplifies installation. This makes the cable particularly suitable for modern low-voltage networks with increased requirements for operational safety and contact protection.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -13,20 +13,7 @@ images:
|
||||
- /uploads/2025/01/NAYY-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# NAYY
|
||||
|
||||
<section>
|
||||
<h3 data-start="567" data-end="615">Versatile applications in network construction</h3>
|
||||
<p data-start="617" data-end="989">The <strong data-start="621" data-end="629">NAYY</strong> is a power distribution cable according to <strong data-start="667" data-end="683">VDE 0276-603</strong>, particularly suitable for use in <strong data-start="723" data-end="780">power plants, local networks, industrial facilities, and switching stations</strong>. Thanks to its robust design, it can be installed permanently – whether indoors, in cable ducts, outdoors, or underground. Even when installed in water, the cable remains reliable in operation.</p>
|
||||
<h3 data-start="991" data-end="1018">Construction and materials</h3>
|
||||
<p data-start="1020" data-end="1390">At its core is an <strong data-start="1044" data-end="1063">aluminium conductor</strong>, available as solid round (RE), stranded round (RM), or sector-shaped (SE/SM). The conductors are <strong data-start="1185" data-end="1201">PVC-insulated</strong>, stranded together, and protected by a <strong data-start="1227" data-end="1260">common EPDM sheath</strong>. The outer <strong data-start="1283" data-end="1297">PVC sheath</strong> is black, UV-resistant, and resistant to moisture and environmental influences.</p>
|
||||
<h3 data-start="1392" data-end="1417">Typical applications</h3>
|
||||
<p data-start="1419" data-end="1694">NAYY cables are ideally suited for <strong data-start="1454" data-end="1500">permanent, cost-effective installations</strong> in supply networks, distribution systems, or building wiring. They provide a solid and durable solution for safe power distribution under standardized conditions.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Bending radius (mm)",
|
||||
@@ -1089,4 +1076,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="567" data-end="615">Versatile applications in network construction</h3>
|
||||
<p data-start="617" data-end="989">The <strong data-start="621" data-end="629">NAYY</strong> is a power distribution cable according to <strong data-start="667" data-end="683">VDE 0276-603</strong>, particularly suitable for use in <strong data-start="723" data-end="780">power plants, local networks, industrial facilities, and switching stations</strong>. Thanks to its robust design, it can be installed permanently – whether indoors, in cable ducts, outdoors, or underground. Even when installed in water, the cable remains reliable in operation.</p>
|
||||
<h3 data-start="991" data-end="1018">Construction and materials</h3>
|
||||
<p data-start="1020" data-end="1390">At its core is an <strong data-start="1044" data-end="1063">aluminium conductor</strong>, available as solid round (RE), stranded round (RM), or sector-shaped (SE/SM). The conductors are <strong data-start="1185" data-end="1201">PVC-insulated</strong>, stranded together, and protected by a <strong data-start="1227" data-end="1260">common EPDM sheath</strong>. The outer <strong data-start="1283" data-end="1297">PVC sheath</strong> is black, UV-resistant, and resistant to moisture and environmental influences.</p>
|
||||
<h3 data-start="1392" data-end="1417">Typical applications</h3>
|
||||
<p data-start="1419" data-end="1694">NAYY cables are ideally suited for <strong data-start="1454" data-end="1500">permanent, cost-effective installations</strong> in supply networks, distribution systems, or building wiring. They provide a solid and durable solution for safe power distribution under standardized conditions.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -12,20 +12,7 @@ images:
|
||||
- /uploads/2025/01/NY2Y-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# NY2Y
|
||||
|
||||
<section>
|
||||
<h3 data-start="518" data-end="554">Reliable under heavy load</h3>
|
||||
<p data-start="556" data-end="987">The <strong data-start="560" data-end="568">NY2Y</strong> is a low-voltage cable for use in power plants, industrial facilities, switching stations, and local distribution networks. It is suitable for <strong data-start="706" data-end="792">fixed installation indoors, in cable ducts, outdoors, in water, and underground</strong> – wherever strong mechanical stress is expected during installation and operation. The construction complies with <strong data-start="934" data-end="953">TP PRAKAB 16/03</strong> based on <strong data-start="970" data-end="986">VDE 0276-603</strong>.</p>
|
||||
<h3 data-start="989" data-end="1010">Detailed construction</h3>
|
||||
<p data-start="1012" data-end="1431">The cable consists of a <strong data-start="1040" data-end="1056">copper conductor</strong>, available as solid round (RE), stranded round (RM), or sector-shaped stranded (SM). The <strong data-start="1156" data-end="1177">PVC core insulation</strong> ensures electrical safety, while the cores are stranded together and protected by a common <strong data-start="1262" data-end="1284">EPDM sheath</strong>. The outer sheath made of <strong data-start="1316" data-end="1324">HDPE</strong> (black, UV-resistant) makes the NY2Y particularly resistant to abrasion, moisture, and environmental influences.</p>
|
||||
<h3 data-start="1433" data-end="1462">Typical applications</h3>
|
||||
<p data-start="1464" data-end="1802">NY2Y is ideally suited for applications with increased requirements for <strong data-start="1540" data-end="1566">mechanical strength</strong> and <strong data-start="1571" data-end="1598">weather resistance</strong>. Typical fields of use include power distribution in industrial plants, power stations, or transformer stations – but also in environments with moisture, direct sunlight, or chemical exposure.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Bending radius (mm)",
|
||||
@@ -503,4 +490,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="518" data-end="554">Reliable under heavy load</h3>
|
||||
<p data-start="556" data-end="987">The <strong data-start="560" data-end="568">NY2Y</strong> is a low-voltage cable for use in power plants, industrial facilities, switching stations, and local distribution networks. It is suitable for <strong data-start="706" data-end="792">fixed installation indoors, in cable ducts, outdoors, in water, and underground</strong> – wherever strong mechanical stress is expected during installation and operation. The construction complies with <strong data-start="934" data-end="953">TP PRAKAB 16/03</strong> based on <strong data-start="970" data-end="986">VDE 0276-603</strong>.</p>
|
||||
<h3 data-start="989" data-end="1010">Detailed construction</h3>
|
||||
<p data-start="1012" data-end="1431">The cable consists of a <strong data-start="1040" data-end="1056">copper conductor</strong>, available as solid round (RE), stranded round (RM), or sector-shaped stranded (SM). The <strong data-start="1156" data-end="1177">PVC core insulation</strong> ensures electrical safety, while the cores are stranded together and protected by a common <strong data-start="1262" data-end="1284">EPDM sheath</strong>. The outer sheath made of <strong data-start="1316" data-end="1324">HDPE</strong> (black, UV-resistant) makes the NY2Y particularly resistant to abrasion, moisture, and environmental influences.</p>
|
||||
<h3 data-start="1433" data-end="1462">Typical applications</h3>
|
||||
<p data-start="1464" data-end="1802">NY2Y is ideally suited for applications with increased requirements for <strong data-start="1540" data-end="1566">mechanical strength</strong> and <strong data-start="1571" data-end="1598">weather resistance</strong>. Typical fields of use include power distribution in industrial plants, power stations, or transformer stations – but also in environments with moisture, direct sunlight, or chemical exposure.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -13,20 +13,7 @@ images:
|
||||
- /uploads/2025/01/NYCWY-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# NYCWY
|
||||
|
||||
<section>
|
||||
<h3 data-start="213" data-end="264">Versatile use in power distribution</h3>
|
||||
<p data-start="266" data-end="765">The NYCWY is one of the classic <strong data-start="302" data-end="345">low-voltage cables according to VDE standard</strong> and is designed for rated voltages up to 1 kV. It is used wherever reliable energy distribution is required – in buildings, industrial plants, transformer stations, or directly underground. It can also be easily installed in cable trays, concrete environments, or underwater. The choice of materials ensures that this cable withstands even harsh conditions – without the need for additional protective measures.</p>
|
||||
<h3 data-start="767" data-end="794">Construction and materials</h3>
|
||||
<p data-start="796" data-end="1206">The design is technically well thought out: a copper conductor forms the core, surrounded by PVC insulation that is both mechanically robust and electrically safe. This is followed by a concentric conductor in a corrugated shape, which serves as a protective or return conductor depending on the application. The outer layer is a durable <strong data-start="1118" data-end="1132">PVC sheath</strong> that protects the cable against moisture, pressure, and chemical influences.</p>
|
||||
<h3 data-start="1208" data-end="1239">Variants and cross-sections</h3>
|
||||
<p data-start="1241" data-end="1628">The NYCWY is available in a wide range of versions – for example, <strong data-start="1320" data-end="1331">4x25/16</strong>, 4x70/35, or 4x185/95. The first number group indicates the number and cross-section of the current-carrying conductors, the second refers to the concentric conductor. This flexibility allows the cable to be adapted to different network requirements – from house connections to industrial power distribution.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Bending radius (mm)",
|
||||
@@ -712,4 +699,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="213" data-end="264">Versatile use in power distribution</h3>
|
||||
<p data-start="266" data-end="765">The NYCWY is one of the classic <strong data-start="302" data-end="345">low-voltage cables according to VDE standard</strong> and is designed for rated voltages up to 1 kV. It is used wherever reliable energy distribution is required – in buildings, industrial plants, transformer stations, or directly underground. It can also be easily installed in cable trays, concrete environments, or underwater. The choice of materials ensures that this cable withstands even harsh conditions – without the need for additional protective measures.</p>
|
||||
<h3 data-start="767" data-end="794">Construction and materials</h3>
|
||||
<p data-start="796" data-end="1206">The design is technically well thought out: a copper conductor forms the core, surrounded by PVC insulation that is both mechanically robust and electrically safe. This is followed by a concentric conductor in a corrugated shape, which serves as a protective or return conductor depending on the application. The outer layer is a durable <strong data-start="1118" data-end="1132">PVC sheath</strong> that protects the cable against moisture, pressure, and chemical influences.</p>
|
||||
<h3 data-start="1208" data-end="1239">Variants and cross-sections</h3>
|
||||
<p data-start="1241" data-end="1628">The NYCWY is available in a wide range of versions – for example, <strong data-start="1320" data-end="1331">4x25/16</strong>, 4x70/35, or 4x185/95. The first number group indicates the number and cross-section of the current-carrying conductors, the second refers to the concentric conductor. This flexibility allows the cable to be adapted to different network requirements – from house connections to industrial power distribution.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -11,20 +11,7 @@ images:
|
||||
- /uploads/2025/01/NYY-scaled.webp
|
||||
locale: en
|
||||
---
|
||||
# NYY
|
||||
|
||||
<section>
|
||||
<h3 data-start="439" data-end="484">Solid solution for standard applications</h3>
|
||||
<p data-start="486" data-end="868">The <strong data-start="490" data-end="497">NYY</strong> cable is a standardized <strong>low-voltage cable</strong> according to <strong data-start="558" data-end="574">VDE 0276-603</strong>. It is used in power plants, industrial facilities, switching stations, and local distribution networks. It is suitable for <strong data-start="687" data-end="773">fixed installation indoors, in cable ducts, outdoors, underground, and in water</strong> – always under the condition that no special mechanical stresses are present.</p>
|
||||
<h3 data-start="870" data-end="907">Construction and material properties</h3>
|
||||
<p data-start="909" data-end="1274">The conductor consists of <strong data-start="932" data-end="942">copper</strong> – available as solid round (RE), stranded round (RM), or sector-shaped stranded (SM). The cores are <strong data-start="1054" data-end="1070">PVC-insulated</strong>, stranded together, and surrounded by a common <strong data-start="1107" data-end="1129">EPDM core sheath</strong>. The outer sheath is made of <strong data-start="1167" data-end="1200">black, UV-resistant PVC</strong> and reliably protects the cable against environmental influences and moisture.</p>
|
||||
<h3 data-start="1276" data-end="1296">Fields of application</h3>
|
||||
<p data-start="1298" data-end="1642">The NYY cable is ideally suited for <strong data-start="1334" data-end="1372">conventional power distribution</strong>, where simple and durable technology is required. It is preferably used in places where installation is possible without increased mechanical demands – for example, inside buildings, in supply lines, or for underground installation in standard local networks.</p>
|
||||
</section>
|
||||
|
||||
## Technical Data
|
||||
|
||||
<ProductTechnicalData data={{
|
||||
<ProductTabs technicalData={<ProductTechnicalData data={{
|
||||
"technicalItems": [
|
||||
{
|
||||
"label": "Bending radius (mm)",
|
||||
@@ -1360,4 +1347,15 @@ locale: en
|
||||
]
|
||||
}
|
||||
]
|
||||
}} />
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="439" data-end="484">Solid solution for standard applications</h3>
|
||||
<p data-start="486" data-end="868">The <strong data-start="490" data-end="497">NYY</strong> cable is a standardized <strong>low-voltage cable</strong> according to <strong data-start="558" data-end="574">VDE 0276-603</strong>. It is used in power plants, industrial facilities, switching stations, and local distribution networks. It is suitable for <strong data-start="687" data-end="773">fixed installation indoors, in cable ducts, outdoors, underground, and in water</strong> – always under the condition that no special mechanical stresses are present.</p>
|
||||
<h3 data-start="870" data-end="907">Construction and material properties</h3>
|
||||
<p data-start="909" data-end="1274">The conductor consists of <strong data-start="932" data-end="942">copper</strong> – available as solid round (RE), stranded round (RM), or sector-shaped stranded (SM). The cores are <strong data-start="1054" data-end="1070">PVC-insulated</strong>, stranded together, and surrounded by a common <strong data-start="1107" data-end="1129">EPDM core sheath</strong>. The outer sheath is made of <strong data-start="1167" data-end="1200">black, UV-resistant PVC</strong> and reliably protects the cable against environmental influences and moisture.</p>
|
||||
<h3 data-start="1276" data-end="1296">Fields of application</h3>
|
||||
<p data-start="1298" data-end="1642">The NYY cable is ideally suited for <strong data-start="1334" data-end="1372">conventional power distribution</strong>, where simple and durable technology is required. It is preferably used in places where installation is possible without increased mechanical demands – for example, inside buildings, in supply lines, or for underground installation in standard local networks.</p>
|
||||
</section>
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
15
lib/mdx.ts
15
lib/mdx.ts
@@ -19,7 +19,14 @@ export interface ProductMdx {
|
||||
|
||||
export async function getProductBySlug(slug: string, locale: string): Promise<ProductMdx | null> {
|
||||
const productsDir = path.join(process.cwd(), 'data', 'products', locale);
|
||||
const filePath = path.join(productsDir, `${slug}.mdx`);
|
||||
|
||||
// Try exact slug first
|
||||
let filePath = path.join(productsDir, `${slug}.mdx`);
|
||||
|
||||
if (!fs.existsSync(filePath)) {
|
||||
// Try with -2 suffix (common in the dumped files)
|
||||
filePath = path.join(productsDir, `${slug}-2.mdx`);
|
||||
}
|
||||
|
||||
if (!fs.existsSync(filePath)) {
|
||||
return null;
|
||||
@@ -42,3 +49,9 @@ export async function getAllProductSlugs(locale: string): Promise<string[]> {
|
||||
const files = fs.readdirSync(productsDir);
|
||||
return files.filter(file => file.endsWith('.mdx')).map(file => file.replace(/\.mdx$/, ''));
|
||||
}
|
||||
|
||||
export async function getAllProducts(locale: string): Promise<ProductMdx[]> {
|
||||
const slugs = await getAllProductSlugs(locale);
|
||||
const products = await Promise.all(slugs.map(slug => getProductBySlug(slug, locale)));
|
||||
return products.filter((p): p is ProductMdx => p !== null);
|
||||
}
|
||||
|
||||
54
scripts/wrap-products.ts
Normal file
54
scripts/wrap-products.ts
Normal file
@@ -0,0 +1,54 @@
|
||||
import fs from 'fs';
|
||||
import path from 'path';
|
||||
|
||||
const locales = ['en', 'de'];
|
||||
|
||||
locales.forEach(locale => {
|
||||
const productsDir = path.join(process.cwd(), 'data', 'products', locale);
|
||||
if (!fs.existsSync(productsDir)) return;
|
||||
const files = fs.readdirSync(productsDir).filter(f => f.endsWith('.mdx'));
|
||||
|
||||
files.forEach(file => {
|
||||
const filePath = path.join(productsDir, file);
|
||||
let content = fs.readFileSync(filePath, 'utf8');
|
||||
|
||||
// Find the end of frontmatter
|
||||
const parts = content.split('---');
|
||||
if (parts.length < 3) return;
|
||||
|
||||
const frontmatter = parts[1];
|
||||
let body = parts.slice(2).join('---').trim();
|
||||
|
||||
// Find the ProductTechnicalData component
|
||||
const techDataMatch = body.match(/<ProductTechnicalData[\s\S]*?\/>/);
|
||||
if (!techDataMatch) {
|
||||
console.log(`No ProductTechnicalData found in ${locale}/${file}`);
|
||||
return;
|
||||
}
|
||||
|
||||
const techData = techDataMatch[0];
|
||||
// Remove techData from body
|
||||
let description = body.replace(techData, '').trim();
|
||||
|
||||
// Clean up description from ProductTabs if it was already there
|
||||
description = description.replace(/<ProductTabs[^>]*>/, '').replace('</ProductTabs>', '').trim();
|
||||
|
||||
// Remove the title from description if it's there (it's usually # Title)
|
||||
description = description.replace(/^# .*\n/, '').trim();
|
||||
|
||||
// Remove any trailing "## Technical Data" or similar
|
||||
description = description.replace(/## Technical Data\s*$/, '').trim();
|
||||
description = description.replace(/## Technische Daten\s*$/, '').trim();
|
||||
|
||||
const newContent = `---${frontmatter}---
|
||||
<ProductTabs technicalData={${techData}}>
|
||||
|
||||
${description}
|
||||
|
||||
</ProductTabs>
|
||||
`;
|
||||
|
||||
fs.writeFileSync(filePath, newContent);
|
||||
console.log(`Updated ${locale}/${file}`);
|
||||
});
|
||||
});
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user