(null);
-
- // Calculate overlay opacity
- const overlayOpacityValue = overlayOpacity ?? (overlayStrength !== undefined ? overlayStrength : 0.5);
-
- // Get text alignment
- const textAlignClass = {
- left: 'text-left',
- center: 'text-center',
- right: 'text-right',
- }[textAlignment];
-
- // Get text color
- const textColorClass = textColor === 'light' ? 'text-white' : 'text-gray-900';
- const subtitleTextColorClass = textColor === 'light' ? 'text-gray-100' : 'text-gray-600';
-
- // Get gradient direction
- const gradientDirectionClass = {
- 'left_to_right': 'bg-gradient-to-r',
- 'right_to_left': 'bg-gradient-to-l',
- 'top_to_bottom': 'bg-gradient-to-b',
- 'bottom_to_top': 'bg-gradient-to-t',
- }[gradientDirection];
-
- // Get parallax speed
- const parallaxSpeedClass = {
- slow: 'parallax-slow',
- medium: 'parallax-medium',
- fast: 'parallax-fast',
- }[parallaxBgSpeed];
-
- // Get background animation
- const bgAnimationClass = {
- none: '',
- 'zoom-out-reveal': 'animate-zoom-out',
- 'fade-in': 'animate-fade-in',
- }[bgImageAnimation];
-
- // Calculate padding from props
- const customPaddingStyle = {
- paddingTop: topPadding || undefined,
- paddingBottom: bottomPadding || undefined,
- };
-
- // Parallax effect handler
- useEffect(() => {
- if (!hasParallax || !heroRef.current) return;
-
- const handleScroll = () => {
- if (!heroRef.current) return;
-
- const rect = heroRef.current.getBoundingClientRect();
- const viewportHeight = window.innerHeight;
-
- // Calculate offset based on scroll position
- const scrollProgress = (viewportHeight - rect.top) / (viewportHeight + rect.height);
- const offset = scrollProgress * 50; // Max 50px offset
-
- // Apply to CSS variable
- heroRef.current.style.setProperty('--parallax-offset', `${offset}px`);
- };
-
- handleScroll(); // Initial call
- window.addEventListener('scroll', handleScroll, { passive: true });
-
- return () => window.removeEventListener('scroll', handleScroll);
- }, [hasParallax]);
-
- return (
-
- {/* Video Background */}
- {hasVideo && (
-
-
-
- )}
-
- {/* Background Image with Parallax (fallback if no video) */}
- {hasBackground && !hasVideo && (
-
-
-
- )}
-
- {/* Background Variant (if no image) */}
- {!hasBackground && !backgroundColor && (
-
- )}
-
- {/* Gradient Overlay */}
- {hasGradient && (
-
- )}
-
- {/* Color Overlay (from WordPress color_overlay) */}
- {hasColorOverlay && (
-
- )}
-
- {/* Second Color Overlay (for gradients) */}
- {colorOverlay2 && (
-
- )}
-
- {/* Standard Overlay */}
- {overlay && hasBackground && !hasColorOverlay && (
-
- )}
-
- {/* Shape Divider (bottom) */}
- {shapeType && (
-
-
-
- )}
-
- {/* Content */}
-
-
- {/* Title */}
-
- {title}
-
-
- {/* Subtitle */}
- {subtitle && (
-
- {subtitle}
-
- )}
-
- {/* CTA Button */}
- {hasCTA && (
-
-
-
- )}
-
- {/* Additional Content */}
- {children && (
-
- {children}
-
- )}
-
-
-
- );
-};
-
-// Sub-components for more complex hero layouts
-export const HeroContent: React.FC<{
- title: string;
- subtitle?: string;
- children?: React.ReactNode;
- className?: string;
-}> = ({ title, subtitle, children, className = '' }) => (
-
-
{title}
- {subtitle &&
{subtitle}
}
- {children}
-
-);
-
-export const HeroActions: React.FC<{
- children: React.ReactNode;
- className?: string;
-}> = ({ children, className = '' }) => (
-
- {children}
-
-);
-
-export default Hero;
\ No newline at end of file
diff --git a/components/content/README.md b/components/content/README.md
deleted file mode 100644
index 5e3c91ae..00000000
--- a/components/content/README.md
+++ /dev/null
@@ -1,350 +0,0 @@
-# Content Components
-
-Modern, component-based content rendering system for WordPress migration to Next.js. These components handle WordPress content display in a responsive, accessible, and SEO-friendly way.
-
-## Components Overview
-
-### 1. Hero Component (`Hero.tsx`)
-Full-width hero section with background image support, overlays, and CTAs.
-
-**Features:**
-- Background images with Next.js Image optimization
-- Text overlay for readability
-- Multiple height options (sm, md, lg, xl, full)
-- Optional CTA button
-- Responsive sizing
-- Variant support (default, dark, primary, gradient)
-
-**Usage:**
-```tsx
-import { Hero } from '@/components/content';
-
-
-```
-
-### 2. ContentRenderer Component (`ContentRenderer.tsx`)
-Sanitizes and renders HTML content from WordPress with class conversion.
-
-**Features:**
-- HTML sanitization (removes scripts, styles, dangerous attributes)
-- WordPress class to Tailwind conversion
-- Next.js Image component integration
-- Shortcode processing
-- Safe HTML parsing
-- SEO-friendly markup
-
-**Usage:**
-```tsx
-import { ContentRenderer } from '@/components/content';
-
-
-```
-
-**Supported HTML Elements:**
-- Typography: ``, ``, ``, ``, ``
-- Lists: ``, ``, `- `
-- Links: `` (with Next.js Link optimization)
-- Images: `
` (with Next.js Image)
-- Tables: ``, ``, ``, ``, `| `, ` | `
-- Layout: ``, ` `, ``, ``, ``, ``
-- Code: ``, ``
-- Quotes: ``
-
-### 3. FeaturedImage Component (`FeaturedImage.tsx`)
-Optimized image display with responsive sizing and lazy loading.
-
-**Features:**
-- Next.js Image optimization
-- Lazy loading
-- Aspect ratio control
-- Caption support
-- Alt text handling
-- Priority loading option
-
-**Usage:**
-```tsx
-import { FeaturedImage } from '@/components/content';
-
-
-```
-
-**Aspect Ratios:**
-- `1:1` - Square
-- `4:3` - Standard
-- `16:9` - Widescreen
-- `21:9` - Ultrawide
-- `auto` - Natural
-
-**Sizes:**
-- `sm` - max-w-xs
-- `md` - max-w-md
-- `lg` - max-w-lg
-- `xl` - max-w-xl
-- `full` - max-w-full
-
-### 4. Section Component (`Section.tsx`)
-Wrapper for content sections with background and padding options.
-
-**Features:**
-- Background color variants
-- Padding options
-- Container integration
-- Full-width support
-- Semantic HTML
-
-**Usage:**
-```tsx
-import { Section, SectionHeader, SectionContent } from '@/components/content';
-
-
-
-
- {/* Your content here */}
-
-
-```
-
-**Background Options:**
-- `default` - White
-- `light` - Light gray
-- `dark` - Dark gray with white text
-- `primary` - Primary color with white text
-- `secondary` - Secondary color with white text
-- `gradient` - Gradient from primary to secondary
-
-**Padding Options:**
-- `none` - No padding
-- `sm` - Small
-- `md` - Medium
-- `lg` - Large
-- `xl` - Extra large
-- `2xl` - Double extra large
-
-### 5. Breadcrumbs Component (`Breadcrumbs.tsx`)
-SEO-friendly breadcrumb navigation with schema.org markup.
-
-**Features:**
-- Schema.org structured data
-- Home icon
-- Responsive (collapses on mobile)
-- Customizable separators
-- Multiple variants
-
-**Usage:**
-```tsx
-import { Breadcrumbs } from '@/components/content';
-
-
-```
-
-**Variants:**
-- `BreadcrumbsCompact` - Minimal design
-- `BreadcrumbsSimple` - Basic navigation
-
-## Integration with WordPress Data
-
-All components are designed to work seamlessly with the WordPress data layer:
-
-```tsx
-import {
- Hero,
- Section,
- ContentRenderer,
- FeaturedImage,
- Breadcrumbs
-} from '@/components/content';
-import { getPageBySlug, getMediaById } from '@/lib/data';
-
-export default async function Page({ params }) {
- const page = getPageBySlug(params.slug, params.locale);
- const featuredMedia = page.featuredImage ? getMediaById(page.featuredImage) : null;
-
- return (
- <>
-
-
-
-
-
- >
- );
-}
-```
-
-## WordPress Class Conversion
-
-The ContentRenderer automatically converts common WordPress/Salient classes to Tailwind:
-
-| WordPress Class | Tailwind Equivalent |
-|----------------|---------------------|
-| `vc_row` | `flex flex-wrap -mx-4` |
-| `vc_col-md-6` | `w-full md:w-1/2 px-4` |
-| `vc_col-md-4` | `w-full md:w-1/3 px-4` |
-| `text-center` | `text-center` |
-| `bg-light` | `bg-gray-50` |
-| `btn btn-primary` | `inline-flex items-center justify-center px-4 py-2 rounded-lg font-semibold bg-primary text-white hover:bg-primary-dark` |
-| `wpb_wrapper` | `space-y-4` |
-| `accent-color` | `text-primary` |
-
-## Security Features
-
-All components include security measures:
-
-1. **HTML Sanitization**: Removes scripts, styles, and dangerous attributes
-2. **URL Validation**: Validates and sanitizes all URLs
-3. **XSS Prevention**: Removes inline event handlers and javascript: URLs
-4. **Safe Parsing**: Only allows safe HTML elements and attributes
-5. **Asset Validation**: Validates image sources and dimensions
-
-## Performance Optimization
-
-- **Lazy Loading**: Images load only when needed
-- **Next.js Image**: Automatic optimization and WebP support
-- **Priority Loading**: Critical images can be preloaded
-- **Efficient Rendering**: Memoized processing for large content
-- **Responsive Images**: Proper `sizes` attribute for different viewports
-
-## Internationalization
-
-All components support internationalization:
-
-```tsx
-
-```
-
-## Accessibility
-
-- Semantic HTML elements
-- Proper heading hierarchy
-- Alt text for images
-- ARIA labels where needed
-- Keyboard navigation support
-- Screen reader friendly
-
-## Customization
-
-All components accept `className` props for custom styling:
-
-```tsx
-
-```
-
-## TypeScript Support
-
-All components include full TypeScript definitions:
-
-```tsx
-import { HeroProps, SectionProps } from '@/components/content';
-
-const heroConfig: HeroProps = {
- title: 'My Hero',
- height: 'lg',
- // TypeScript will guide you through all options
-};
-```
-
-## Best Practices
-
-1. **Always provide alt text** for images
-2. **Use priority** for above-the-fold images
-3. **Sanitize content** from untrusted sources
-4. **Process assets** to ensure local file availability
-5. **Convert classes** for consistent styling
-6. **Add breadcrumbs** for SEO and navigation
-7. **Use semantic sections** for content structure
-
-## Migration Notes
-
-When migrating from WordPress:
-
-1. Export content with `contentHtml` fields
-2. Download and host media files locally
-3. Map WordPress URLs to local paths
-4. Test class conversion for custom themes
-5. Verify shortcodes are processed or removed
-6. Check responsive behavior on all devices
-7. Validate SEO markup (schema.org)
-
-## Component Composition
-
-Components can be composed together:
-
-```tsx
-
-
- Featured Products
-
- {products.map(product => (
-
-
-
- {product.name}
-
-
-
- ))}
-
-
-
-```
-
-This creates a cohesive, modern content system that maintains WordPress flexibility while leveraging Next.js capabilities.
\ No newline at end of file
diff --git a/components/content/Section.tsx b/components/content/Section.tsx
deleted file mode 100644
index 27845dfc..00000000
--- a/components/content/Section.tsx
+++ /dev/null
@@ -1,530 +0,0 @@
-'use client';
-
-import React, { useEffect, useRef } from 'react';
-import Image from 'next/image';
-import { cn } from '../../lib/utils';
-import { Container } from '../ui/Container';
-
-// Section background options
-type SectionBackground = 'default' | 'light' | 'dark' | 'primary' | 'secondary' | 'gradient';
-
-// Section padding options
-type SectionPadding = 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
-
-interface SectionProps {
- children: React.ReactNode;
- background?: SectionBackground;
- padding?: SectionPadding;
- fullWidth?: boolean;
- className?: string;
- id?: string;
- as?: React.ElementType;
- // Additional props for background images and overlays
- backgroundImage?: string;
- backgroundAlt?: string;
- colorOverlay?: string;
- overlayOpacity?: number;
- backgroundColor?: string;
- // WordPress Salient-specific props
- enableGradient?: boolean;
- gradientDirection?: 'left_to_right' | 'right_to_left' | 'top_to_bottom' | 'bottom_to_top';
- colorOverlay2?: string;
- parallaxBg?: boolean;
- parallaxBgSpeed?: 'slow' | 'fast' | 'medium';
- bgImageAnimation?: 'none' | 'zoom-out-reveal' | 'fade-in';
- topPadding?: string;
- bottomPadding?: string;
- textAlignment?: 'left' | 'center' | 'right';
- textColor?: 'light' | 'dark';
- shapeType?: string;
- scenePosition?: 'center' | 'top' | 'bottom';
- fullScreenRowPosition?: 'middle' | 'top' | 'bottom';
- // Additional styling
- borderRadius?: string;
- boxShadow?: boolean;
- // Video background props
- videoBg?: string;
- videoMp4?: string;
- videoWebm?: string;
-}
-
-// Helper function to get background styles
-const getBackgroundStyles = (background: SectionBackground) => {
- switch (background) {
- case 'light':
- return 'bg-gray-50';
- case 'dark':
- return 'bg-gray-900 text-white';
- case 'primary':
- return 'bg-primary text-white';
- case 'secondary':
- return 'bg-secondary text-white';
- case 'gradient':
- return 'bg-gradient-to-br from-primary to-secondary text-white';
- default:
- return 'bg-white';
- }
-};
-
-// Helper function to get padding styles
-const getPaddingStyles = (padding: SectionPadding) => {
- switch (padding) {
- case 'none':
- return 'py-0';
- case 'sm':
- return 'py-4 sm:py-6';
- case 'md':
- return 'py-8 sm:py-12';
- case 'lg':
- return 'py-12 sm:py-16';
- case 'xl':
- return 'py-16 sm:py-20 md:py-24';
- case '2xl':
- return 'py-20 sm:py-24 md:py-32';
- default:
- return 'py-12 sm:py-16';
- }
-};
-
-export const Section: React.FC = ({
- children,
- background = 'default',
- padding = 'md',
- fullWidth = false,
- className = '',
- id,
- as: Component = 'section',
- backgroundImage,
- backgroundAlt = '',
- colorOverlay,
- overlayOpacity = 0.5,
- backgroundColor,
- enableGradient = false,
- gradientDirection = 'left_to_right',
- colorOverlay2,
- parallaxBg = false,
- parallaxBgSpeed = 'medium',
- bgImageAnimation = 'none',
- topPadding,
- bottomPadding,
- textAlignment = 'left',
- textColor = 'dark',
- shapeType,
- scenePosition = 'center',
- fullScreenRowPosition,
- borderRadius,
- boxShadow = false,
- videoBg,
- videoMp4,
- videoWebm,
-}) => {
- const hasBackgroundImage = !!backgroundImage;
- const hasColorOverlay = !!colorOverlay;
- const hasCustomBg = !!backgroundColor;
- const hasGradient = !!enableGradient;
- const hasParallax = !!parallaxBg;
- const hasVideo = !!(videoMp4?.trim()) || !!(videoWebm?.trim());
- const sectionRef = useRef(null);
- const videoRef = useRef(null);
-
- // Get text alignment
- const textAlignClass = {
- left: 'text-left',
- center: 'text-center',
- right: 'text-right',
- }[textAlignment];
-
- // Get text color
- const textColorClass = textColor === 'light' ? 'text-white' : 'text-gray-900';
-
- // Get gradient direction
- const gradientDirectionClass = {
- 'left_to_right': 'bg-gradient-to-r',
- 'right_to_left': 'bg-gradient-to-l',
- 'top_to_bottom': 'bg-gradient-to-b',
- 'bottom_to_top': 'bg-gradient-to-t',
- }[gradientDirection];
-
- // Get parallax speed
- const parallaxSpeedClass = {
- slow: 'parallax-slow',
- medium: 'parallax-medium',
- fast: 'parallax-fast',
- }[parallaxBgSpeed];
-
- // Get background animation
- const bgAnimationClass = {
- none: '',
- 'zoom-out-reveal': 'animate-zoom-out',
- 'fade-in': 'animate-fade-in',
- }[bgImageAnimation];
-
- // Calculate padding from props
- const customPaddingStyle = {
- paddingTop: topPadding || undefined,
- paddingBottom: bottomPadding || undefined,
- };
-
- // Base classes
- const baseClasses = cn(
- 'w-full relative overflow-hidden',
- getPaddingStyles(padding),
- textAlignClass,
- textColorClass,
- boxShadow && 'shadow-xl',
- borderRadius && `rounded-${borderRadius}`,
- className
- );
-
- // Background style (for solid colors)
- const backgroundStyle = hasCustomBg ? { backgroundColor, ...customPaddingStyle } : customPaddingStyle;
-
- // Content wrapper classes
- const contentWrapperClasses = cn(
- 'relative z-20 w-full',
- !fullWidth && 'container mx-auto px-4 md:px-6'
- );
-
- // Parallax effect handler
- useEffect(() => {
- if (!hasParallax || !sectionRef.current) return;
-
- const handleScroll = () => {
- if (!sectionRef.current) return;
-
- const rect = sectionRef.current.getBoundingClientRect();
- const viewportHeight = window.innerHeight;
-
- // Calculate offset based on scroll position
- const scrollProgress = (viewportHeight - rect.top) / (viewportHeight + rect.height);
- const offset = scrollProgress * 50; // Max 50px offset
-
- // Apply to CSS variable
- sectionRef.current.style.setProperty('--parallax-offset', `${offset}px`);
- };
-
- handleScroll(); // Initial call
- window.addEventListener('scroll', handleScroll, { passive: true });
-
- return () => window.removeEventListener('scroll', handleScroll);
- }, [hasParallax]);
-
- const content = (
-
- {/* Video Background */}
- {hasVideo && (
-
-
-
- )}
-
- {/* Background Image with Parallax (fallback if no video) */}
- {hasBackgroundImage && !hasVideo && (
-
-
-
- )}
-
- {/* Background Variant (if no image) */}
- {!hasBackgroundImage && !hasCustomBg && (
-
- )}
-
- {/* Gradient Overlay */}
- {hasGradient && (
-
- )}
-
- {/* Color Overlay (from WordPress color_overlay) */}
- {hasColorOverlay && (
-
- )}
-
- {/* Second Color Overlay (for gradients) */}
- {colorOverlay2 && (
-
- )}
-
- {/* Shape Divider (bottom) */}
- {shapeType && (
-
-
-
- )}
-
- {/* Content */}
-
- {fullWidth ? children : (
-
- {children}
-
- )}
-
-
- );
-
- if (Component !== 'section') {
- return (
-
- {/* Video Background */}
- {hasVideo && (
-
-
-
- )}
-
- {/* Background Image with Parallax (fallback if no video) */}
- {hasBackgroundImage && !hasVideo && (
-
-
-
- )}
-
- {/* Background Variant (if no image) */}
- {!hasBackgroundImage && !hasCustomBg && (
-
- )}
-
- {/* Gradient Overlay */}
- {hasGradient && (
-
- )}
-
- {/* Color Overlay */}
- {hasColorOverlay && (
-
- )}
-
- {/* Second Color Overlay */}
- {colorOverlay2 && (
-
- )}
-
- {/* Shape Divider */}
- {shapeType && (
-
-
-
- )}
-
-
- {fullWidth ? children : (
-
- {children}
-
- )}
-
-
- );
- }
-
- return content;
-};
-
-// Sub-components for common section patterns
-export const SectionHeader: React.FC<{
- title: string;
- subtitle?: string;
- align?: 'left' | 'center' | 'right';
- className?: string;
-}> = ({ title, subtitle, align = 'center', className = '' }) => {
- const alignment = {
- left: 'text-left',
- center: 'text-center',
- right: 'text-right',
- }[align];
-
- return (
-
-
- {title}
-
- {subtitle && (
-
- {subtitle}
-
- )}
-
- );
-};
-
-export const SectionContent: React.FC<{
- children: React.ReactNode;
- className?: string;
-}> = ({ children, className = '' }) => (
-
- {children}
-
-);
-
-export const SectionGrid: React.FC<{
- children: React.ReactNode;
- cols?: 1 | 2 | 3 | 4;
- gap?: 'sm' | 'md' | 'lg' | 'xl';
- className?: string;
-}> = ({ children, cols = 3, gap = 'md', className = '' }) => {
- const gapClasses = {
- sm: 'gap-4 md:gap-6',
- md: 'gap-6 md:gap-8',
- lg: 'gap-8 md:gap-12',
- xl: 'gap-10 md:gap-16',
- }[gap];
-
- const colClasses = {
- 1: 'grid-cols-1',
- 2: 'grid-cols-1 md:grid-cols-2',
- 3: 'grid-cols-1 md:grid-cols-2 lg:grid-cols-3',
- 4: 'grid-cols-1 md:grid-cols-2 lg:grid-cols-4',
- }[cols];
-
- return (
-
- {children}
-
- );
-};
-
-export default Section;
\ No newline at end of file
diff --git a/components/content/WPBakeryMapping.md b/components/content/WPBakeryMapping.md
deleted file mode 100644
index 7ac9dec6..00000000
--- a/components/content/WPBakeryMapping.md
+++ /dev/null
@@ -1,359 +0,0 @@
-# WPBakery to Next.js Component Mapping - Detailed Analysis
-
-This document provides detailed per-page analysis of WPBakery patterns found in the WordPress site and how they are mapped to modern React components.
-
-## Pages Analyzed
-
-### 1. Home Pages (corporate-3-landing-2 / start)
-
-**Patterns Found:**
-- 25 vc-rows with 43 vc-columns total
-- Complex nested structure (24 nested rows)
-- Hero section with h1
-- Numbered features (h6 + h4 + p)
-- Card grids (2-4 columns)
-- Testimonial sections (16 instances)
-- Team member sections
-
-**Specific Mappings:**
-```html
-
-
-
- We are helping to expand...
- Subtitle
-
-
-
-
-
-
-
- 01
- Supply to energy suppliers...
- Description...
-
-
-
-
-
-
-
-```
-
-**Home-Specific Enhancements:**
-- Handles 25+ row complexity through recursive parsing
-- Preserves nested structure for proper layout
-- Converts numbered features to modern flex layout
-- Maps testimonial quotes to styled blocks
-
-### 2. Team Pages (team)
-
-**Patterns Found:**
-- 8 vc-rows with 16 vc-columns
-- 4 testimonial sections with quotes
-- 7 nested rows
-- Quote patterns with German quotes („“)
-
-**Specific Mappings:**
-```html
-
-
-
- Michael Bodemer
- „Challenges exist to be solved...“
- Detailed description...
-
-
-
-```
-
-### 3. Terms Pages (terms / agbs)
-
-**Patterns Found:**
-- 19 vc-rows with 38 vc-columns
-- Numbered features with h6 + h3 (different from home)
-- PDF download link
-- 2 testimonial sections
-
-**Specific Mappings:**
-```html
-
-
-
- 1.
- Allgemeines
- Paragraph 1...
- Paragraph 2...
-
-
-
-
-
-
-
-```
-
-### 4. Contact Pages (contact / kontakt)
-
-**Patterns Found:**
-- 4 vc-rows with 7 vc-columns
-- Contact form (frm_forms)
-- Contact info blocks
-- 3 nested rows
-
-**Specific Mappings:**
-```html
-
-
-
-
-
-
-
-
- KLZ Cables Raiffeisenstraße 22 73630 Remshalden
-
-
-
-```
-
-### 5. Legal/Privacy Pages (legal-notice, privacy-policy, impressum, datenschutz)
-
-**Patterns Found:**
-- 1 vc-row with 2 vc-columns
-- Hero section with h1
-- Simple content structure
-- Contact info blocks
-
-**Specific Mappings:**
-```html
-
-
-
- Legal Notice
- Content...
-
-
-
-```
-
-### 6. Thanks Pages (thanks / danke)
-
-**Patterns Found:**
-- 2 vc-rows with 3 vc-columns
-- Hero pattern
-- Grid structure
-
-**Specific Mappings:**
-```html
-
-
-
- Thank you very much!
- We've received your message...
-
-
-
-```
-
-### 7. Blog Pages (blog)
-
-**Patterns Found:**
-- 2 vc-rows (empty or minimal content)
-- No specific patterns
-
-**Specific Mappings:**
-- Falls back to generic parsing
-- Uses page-specific routing for blog listing
-
-### 8. Products Pages (products / produkte)
-
-**Patterns Found:**
-- Empty content
-- Uses page-specific routing for product catalog
-
-**Specific Mappings:**
-- Routes to `/products` or `/produkte` page components
-- Uses ProductList component
-
-## Parser Pattern Priority
-
-The parser processes patterns in this order:
-
-1. **Hero Sections** - Single column with h1/h2
-2. **Contact Forms** - Forms with frm_forms class
-3. **Numbered Features (Home)** - h6 + h4 structure
-4. **Numbered Features (Terms)** - h6 + h3 structure
-5. **Testimonials/Quotes** - Contains quotes or team structure
-6. **PDF Downloads** - Links ending in .pdf
-7. **Contact Info** - Contains @, addresses, or KLZ Cables
-8. **Grid/Card Patterns** - 2-4 columns with titles/images
-9. **Nested Rows** - Rows containing other rows
-10. **Simple Content** - h3 + p structure
-11. **Empty Rows** - Whitespace only
-12. **Fallback** - Generic section
-
-## Component Props Enhancement
-
-### ContentRenderer
-```typescript
-interface ContentRendererProps {
- content: string;
- className?: string;
- sanitize?: boolean;
- processAssets?: boolean;
- convertClasses?: boolean;
- parsePatterns?: boolean;
- pageSlug?: string; // NEW: For page-specific parsing
-}
-```
-
-### Usage Examples
-```tsx
-// Home page
-
-
-// Terms page
-
-
-// Contact page
-
-```
-
-## Tailwind Class Conversions
-
-### WordPress Classes → Tailwind
-- `vc_row` → `flex flex-wrap -mx-4`
-- `vc_col-md-6` → `w-full md:w-1/2 px-4`
-- `vc_col-lg-4` → `w-full lg:w-1/3 px-4`
-- `wpb_wrapper` → `space-y-4`
-- `bg-light` → `bg-gray-50`
-- `btn-primary` → `bg-primary text-white hover:bg-primary-dark`
-
-## Asset URL Replacement
-
-All WordPress asset URLs are automatically replaced:
-- `https://klz-cables.com/wp-content/uploads/...` → `/media/...`
-- PDF links are mapped to local paths
-- Images use Next.js Image component with optimization
-
-## Testing Checklist
-
-For each page type, verify:
-- [ ] Hero sections render correctly
-- [ ] Numbered features display properly
-- [ ] Card grids are responsive
-- [ ] Testimonials have proper styling
-- [ ] Forms work correctly
-- [ ] PDF links are accessible
-- [ ] Contact info is formatted
-- [ ] Nested rows don't cause duplication
-- [ ] Empty rows are filtered out
-- [ ] Asset URLs are replaced
-- [ ] No raw HTML remains
-
-## Performance Notes
-
-- Parser uses Cheerio for server-side HTML parsing
-- Recursive parsing handles nested structures efficiently
-- Pattern matching stops at first match (priority order)
-- Processed rows are removed to avoid duplication
-- Remaining content is handled by fallback parser
-
-## Future Enhancements
-
-1. **Page-Specific Overrides**: Add `pageSlug` parameter for custom logic
-2. **Animation Support**: Detect and convert Salient animation classes
-3. **Background Images**: Handle data-bg-image attributes
-4. **Video Backgrounds**: Support data-video-bg attributes
-5. **Parallax Effects**: Convert to modern CSS or React libraries
-6. **Icon Support**: Map Font Awesome or other icon classes
-7. **Accordion/Toggle**: Detect and convert collapsible sections
-8. **Tab Components**: Handle tabbed content sections
-
-## Migration Status
-
-✅ **Completed:**
-- Home pages (corporate-3-landing-2/start)
-- Team pages (team)
-- Terms pages (terms/agbs)
-- Contact pages (contact/kontakt)
-- Legal pages (legal-notice/impressum)
-- Privacy pages (privacy-policy/datenschutz)
-- Thanks pages (thanks/danke)
-
-⏳ **Pending:**
-- Blog pages (blog) - Uses page routing
-- Products pages (products/produkte) - Uses page routing
-
-## Notes
-
-- All pages now use detailed component recreations
-- No raw HTML leakage where components fit
-- Parser is extensible for new patterns
-- Documentation updated with per-page details
-- System ready for testing and verification
\ No newline at end of file
diff --git a/components/content/index.ts b/components/content/index.ts
deleted file mode 100644
index 3a0a6a60..00000000
--- a/components/content/index.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-// Content Components Export
-export { Hero, HeroContent, HeroActions } from './Hero';
-export { Section, SectionHeader, SectionContent, SectionGrid } from './Section';
-export { FeaturedImage, Avatar, ImageGallery } from './FeaturedImage';
-export { Breadcrumbs, BreadcrumbsCompact, BreadcrumbsSimple } from './Breadcrumbs';
-export { ContentRenderer, ContentBlock, RichText } from './ContentRenderer';
\ No newline at end of file
diff --git a/components/forms/FORM_SYSTEM_SUMMARY.md b/components/forms/FORM_SYSTEM_SUMMARY.md
deleted file mode 100644
index 502427c8..00000000
--- a/components/forms/FORM_SYSTEM_SUMMARY.md
+++ /dev/null
@@ -1,401 +0,0 @@
-# KLZ Forms System - Implementation Summary
-
-## Overview
-
-A comprehensive, production-ready form system for the KLZ Cables Next.js application, providing consistent form experiences across the entire platform. Built with TypeScript, accessibility, and internationalization in mind.
-
-## ✅ Completed Components
-
-### Core Components (10/10)
-
-1. **FormField** (`FormField.tsx`)
- - Universal wrapper for all form field types
- - Supports: text, email, tel, textarea, select, checkbox, radio, number, password, date, time, url
- - Integrates label, input, help text, and error display
- - Type-safe with full TypeScript support
-
-2. **FormLabel** (`FormLabel.tsx`)
- - Consistent label styling
- - Required field indicators (*)
- - Optional text support
- - Help text integration
- - Accessibility attributes
-
-3. **FormInput** (`FormInput.tsx`)
- - Base input component
- - All HTML5 input types
- - Prefix/suffix icon support
- - Clear button functionality
- - Focus and validation states
-
-4. **FormTextarea** (`FormTextarea.tsx`)
- - Textarea with resize options
- - Character counter
- - Auto-resize functionality
- - Validation states
- - Configurable min/max height
-
-5. **FormSelect** (`FormSelect.tsx`)
- - Select dropdown
- - Placeholder option
- - Multi-select support
- - Search/filter for large lists
- - Custom styling
-
-6. **FormCheckbox** (`FormCheckbox.tsx`)
- - Single checkbox
- - Checkbox groups
- - Indeterminate state
- - Custom styling
- - Label integration
-
-7. **FormRadio** (`FormRadio.tsx`)
- - Radio button groups
- - Custom styling
- - Keyboard navigation
- - Horizontal/vertical layouts
- - Description support
-
-8. **FormError** (`FormError.tsx`)
- - Error message display
- - Multiple errors support
- - Inline, block, and toast variants
- - Animation support
- - Accessibility (aria-live)
-
-9. **FormSuccess** (`FormSuccess.tsx`)
- - Success message display
- - Auto-dismiss option
- - Icon support
- - Inline, block, and toast variants
- - Animation support
-
-10. **FormExamples** (`FormExamples.tsx`)
- - Complete usage examples
- - 5 different form patterns
- - Real-world scenarios
- - Best practices demonstration
-
-### Form Hooks (3/3)
-
-1. **useForm** (`hooks/useForm.ts`)
- - Complete form state management
- - Validation integration
- - Submission handling
- - Error management
- - Helper methods (reset, setAllTouched, etc.)
- - getFormProps utility
-
-2. **useFormField** (`hooks/useFormField.ts`)
- - Individual field state management
- - Validation integration
- - Touch/dirty tracking
- - Change handlers
- - Helper utilities
-
-3. **useFormValidation** (`hooks/useFormValidation.ts`)
- - Validation logic
- - Rule definitions
- - Field and form validation
- - Custom validators
- - Error formatting
-
-### Infrastructure
-
-1. **Index File** (`index.ts`)
- - All exports in one place
- - Type exports
- - Convenience re-exports
-
-2. **Documentation** (`README.md`)
- - Complete usage guide
- - Examples
- - Best practices
- - Troubleshooting
-
-## 🎯 Key Features
-
-### Validation System
-```typescript
-{
- required: boolean | string;
- minLength: { value: number, message: string };
- maxLength: { value: number, message: string };
- pattern: { value: RegExp, message: string };
- min: { value: number, message: string };
- max: { value: number, message: string };
- email: boolean | string;
- url: boolean | string;
- number: boolean | string;
- custom: (value) => string | null;
-}
-```
-
-### Form State Management
-- Automatic validation on change
-- Touch tracking for error display
-- Dirty state tracking
-- Submit state management
-- Reset functionality
-
-### Accessibility
-- ARIA attributes
-- Keyboard navigation
-- Screen reader support
-- Focus management
-- Required field indicators
-
-### Internationalization
-- Ready for i18n
-- Error messages can be translated
-- Label and help text support
-
-### Styling
-- Uses design system tokens
-- Consistent with existing components
-- Responsive design
-- Dark mode ready
-
-## 📦 Usage Examples
-
-### Basic Contact Form
-```tsx
-import { useForm, FormField, Button } from '@/components/forms';
-
-const form = useForm({
- initialValues: { name: '', email: '', message: '' },
- validationRules: {
- name: { required: true, minLength: { value: 2 } },
- email: { required: true, email: true },
- message: { required: true },
- },
- onSubmit: async (values) => {
- await sendEmail(values);
- form.reset();
- },
-});
-
-return (
-
-);
-```
-
-### Registration Form
-```tsx
-const form = useForm({
- initialValues: {
- firstName: '',
- lastName: '',
- email: '',
- password: '',
- confirmPassword: '',
- terms: false,
- },
- validationRules: {
- firstName: { required: true, minLength: { value: 2 } },
- lastName: { required: true, minLength: { value: 2 } },
- email: { required: true, email: true },
- password: {
- required: true,
- minLength: { value: 8 },
- pattern: { value: /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)/ }
- },
- confirmPassword: {
- required: true,
- custom: (value) => value === form.values.password ? null : 'Passwords do not match'
- },
- terms: {
- required: 'You must accept terms',
- custom: (value) => value ? null : 'Required'
- },
- },
- onSubmit: async (values) => {
- await registerUser(values);
- alert('Registered!');
- },
-});
-```
-
-### Search and Filter
-```tsx
-const form = useForm({
- initialValues: { search: '', category: '', status: '' },
- validationRules: {},
- onSubmit: async (values) => {
- await performSearch(values);
- },
-});
-
-return (
-
-);
-```
-
-## 🎨 Design System Integration
-
-### Colors
-- Primary: `--color-primary`
-- Danger: `--color-danger`
-- Success: `--color-success`
-- Neutral: `--color-neutral-dark`, `--color-neutral-light`
-
-### Spacing
-- Consistent with design system
-- Uses `--spacing-sm`, `--spacing-md`, `--spacing-lg`
-
-### Typography
-- Font sizes: `--font-size-sm`, `--font-size-base`
-- Font weights: `--font-weight-medium`, `--font-weight-semibold`
-
-### Borders & Radius
-- Border radius: `--radius-md`
-- Transitions: `--transition-fast`
-
-## 🚀 Benefits
-
-1. **Consistency**: All forms look and behave the same
-2. **Type Safety**: Full TypeScript support prevents errors
-3. **Accessibility**: Built-in ARIA and keyboard support
-4. **Validation**: Comprehensive validation system
-5. **Maintainability**: Centralized form logic
-6. **Developer Experience**: Easy to use, hard to misuse
-7. **Performance**: Optimized re-renders
-8. **Flexibility**: Works with any form structure
-
-## 📊 File Structure
-
-```
-components/forms/
-├── FormField.tsx # Main wrapper component
-├── FormLabel.tsx # Label component
-├── FormInput.tsx # Input component
-├── FormTextarea.tsx # Textarea component
-├── FormSelect.tsx # Select component
-├── FormCheckbox.tsx # Checkbox component
-├── FormRadio.tsx # Radio component
-├── FormError.tsx # Error display
-├── FormSuccess.tsx # Success display
-├── FormExamples.tsx # Usage examples
-├── index.ts # Exports
-├── README.md # Documentation
-├── FORM_SYSTEM_SUMMARY.md # This file
-└── hooks/
- ├── useForm.ts # Main form hook
- ├── useFormField.ts # Field hook
- └── useFormValidation.ts # Validation logic
-```
-
-## 🔄 Migration Path
-
-### From Legacy Forms
-```tsx
-// Old
- setEmail(e.target.value)}
- className={error ? 'error' : ''}
-/>
-
-// New
- form.setFieldValue('email', e.target.value)}
-/>
-```
-
-### From Manual Validation
-```tsx
-// Old
-const validate = () => {
- const errors = {};
- if (!email) errors.email = 'Required';
- return errors;
-}
-
-// New
-const form = useForm({
- validationRules: {
- email: { required: true, email: true }
- }
-});
-```
-
-## 🎯 Next Steps
-
-1. **Integration**: Replace existing ContactForm with new system
-2. **Testing**: Add unit tests for all components
-3. **Documentation**: Add JSDoc comments
-4. **Examples**: Create more real-world examples
-5. **Performance**: Add memoization where needed
-6. **i18n**: Integrate with translation system
-
-## ✨ Quality Checklist
-
-- [x] All components created
-- [x] All hooks implemented
-- [x] TypeScript types defined
-- [x] Accessibility features included
-- [x] Validation system complete
-- [x] Examples provided
-- [x] Documentation written
-- [x] Design system integration
-- [x] Error handling
-- [x] Loading states
-- [x] Success states
-- [x] Reset functionality
-- [x] Touch/dirty tracking
-- [x] Character counting
-- [x] Auto-resize textarea
-- [x] Search in select
-- [x] Multi-select support
-- [x] Checkbox groups
-- [x] Radio groups
-- [x] Indeterminate state
-- [x] Clear buttons
-- [x] Icon support
-- [x] Help text
-- [x] Required indicators
-- [x] Multiple error display
-- [x] Toast notifications
-- [x] Animations
-- [x] Focus management
-- [x] Keyboard navigation
-- [x] Screen reader support
-
-## 🎉 Result
-
-A complete, production-ready form system that provides:
-
-- **10** reusable form components
-- **3** powerful hooks
-- **5** complete examples
-- **Full** TypeScript support
-- **Complete** accessibility
-- **Comprehensive** documentation
-
-All components are ready to use and follow the KLZ Cables design system patterns.
\ No newline at end of file
diff --git a/components/forms/FormCheckbox.tsx b/components/forms/FormCheckbox.tsx
deleted file mode 100644
index 6bb230fa..00000000
--- a/components/forms/FormCheckbox.tsx
+++ /dev/null
@@ -1,259 +0,0 @@
-import React, { useState, useEffect, useRef } from 'react';
-import { cn } from '@/lib/utils';
-import FormLabel from './FormLabel';
-import FormError from './FormError';
-
-/**
- * FormCheckbox Component
- * Single and group checkboxes with indeterminate state and custom styling
- */
-
-export interface CheckboxOption {
- value: string;
- label: string;
- disabled?: boolean;
-}
-
-export interface FormCheckboxProps {
- label?: string;
- error?: string | string[];
- helpText?: string;
- required?: boolean;
- checked?: boolean;
- indeterminate?: boolean;
- options?: CheckboxOption[];
- value?: string[];
- onChange?: (value: string[]) => void;
- containerClassName?: string;
- checkboxClassName?: string;
- disabled?: boolean;
- id?: string;
- name?: string;
-}
-
-export const FormCheckbox: React.FC = ({
- label,
- error,
- helpText,
- required = false,
- checked = false,
- indeterminate = false,
- options,
- value = [],
- onChange,
- containerClassName,
- checkboxClassName,
- disabled = false,
- id,
- name,
-}) => {
- const [internalChecked, setInternalChecked] = useState(checked);
- const checkboxRef = useRef(null);
-
- const hasError = !!error;
- const showError = hasError;
-
- // Handle indeterminate state
- useEffect(() => {
- if (checkboxRef.current) {
- checkboxRef.current.indeterminate = indeterminate;
- }
- }, [indeterminate, internalChecked]);
-
- // Sync internal state with prop
- useEffect(() => {
- setInternalChecked(checked);
- }, [checked]);
-
- const isGroup = Array.isArray(options) && options.length > 0;
-
- const handleSingleChange = (e: React.ChangeEvent) => {
- const newChecked = e.target.checked;
- setInternalChecked(newChecked);
- if (onChange && !isGroup) {
- // For single checkbox, call onChange with boolean
- // But to maintain consistency, we'll treat it as a group with one option
- if (newChecked) {
- onChange([name || 'checkbox']);
- } else {
- onChange([]);
- }
- }
- };
-
- const handleGroupChange = (e: React.ChangeEvent) => {
- const optionValue = e.target.value;
- const isChecked = e.target.checked;
-
- let newValue: string[];
-
- if (isChecked) {
- newValue = [...value, optionValue];
- } else {
- newValue = value.filter((v) => v !== optionValue);
- }
-
- if (onChange) {
- onChange(newValue);
- }
- };
-
- const inputId = id || (label ? label.toLowerCase().replace(/\s+/g, '-') : undefined);
-
- const baseCheckboxClasses = cn(
- 'w-4 h-4 rounded border transition-all duration-200',
- 'focus:outline-none focus:ring-2 focus:ring-primary',
- {
- 'border-neutral-dark bg-neutral-light': !internalChecked && !hasError && !indeterminate,
- 'border-primary bg-primary text-white': internalChecked && !hasError,
- 'border-danger bg-danger text-white': hasError,
- 'border-primary bg-primary/50 text-white': indeterminate,
- 'opacity-60 cursor-not-allowed': disabled,
- 'cursor-pointer': !disabled,
- },
- checkboxClassName
- );
-
- const containerClasses = cn(
- 'flex flex-col gap-2',
- containerClassName
- );
-
- const groupContainerClasses = cn(
- 'flex flex-col gap-2',
- containerClassName
- );
-
- const singleWrapperClasses = cn(
- 'flex items-start gap-2',
- {
- 'opacity-60': disabled,
- }
- );
-
- const labelClasses = cn(
- 'text-sm font-medium leading-none',
- {
- 'text-text-primary': !hasError,
- 'text-danger': hasError,
- }
- );
-
- // Single checkbox
- if (!isGroup) {
- return (
-
-
-
-
-
- {label && (
-
- )}
-
- {helpText && (
-
- {helpText}
-
- )}
-
-
-
- {showError && (
-
- )}
-
- );
- }
-
- // Checkbox group
- const groupLabelId = inputId ? `${inputId}-group-label` : undefined;
- const allSelected = options.every(opt => value.includes(opt.value));
- const someSelected = options.some(opt => value.includes(opt.value)) && !allSelected;
-
- // Update indeterminate state for group select all
- useEffect(() => {
- if (checkboxRef.current && someSelected) {
- checkboxRef.current.indeterminate = true;
- }
- }, [someSelected, value, options]);
-
- return (
-
- {label && (
-
-
- {label}
-
-
- )}
-
-
- {options.map((option) => {
- const optionId = `${inputId}-${option.value}`;
- const isChecked = value.includes(option.value);
-
- return (
-
-
-
-
-
-
-
- );
- })}
-
-
- {helpText && (
-
- {helpText}
-
- )}
-
- {showError && (
-
- )}
-
- );
-};
-
-FormCheckbox.displayName = 'FormCheckbox';
-
-export default FormCheckbox;
\ No newline at end of file
diff --git a/components/forms/FormError.tsx b/components/forms/FormError.tsx
deleted file mode 100644
index a4c39fbb..00000000
--- a/components/forms/FormError.tsx
+++ /dev/null
@@ -1,89 +0,0 @@
-import React from 'react';
-import { cn } from '@/lib/utils';
-
-/**
- * FormError Component
- * Display error messages with different variants and animations
- */
-
-export interface FormErrorProps {
- errors?: string | string[];
- variant?: 'inline' | 'block' | 'toast';
- className?: string;
- showIcon?: boolean;
- animate?: boolean;
- id?: string;
-}
-
-export const FormError: React.FC = ({
- errors,
- variant = 'inline',
- className,
- showIcon = true,
- animate = true,
- id,
-}) => {
- if (!errors || (Array.isArray(errors) && errors.length === 0)) {
- return null;
- }
-
- const errorArray = Array.isArray(errors) ? errors : [errors];
- const hasMultipleErrors = errorArray.length > 1;
-
- const baseClasses = {
- inline: 'text-sm text-danger mt-1',
- block: 'p-3 bg-danger/10 border border-danger/20 rounded-md text-danger text-sm',
- toast: 'fixed bottom-4 right-4 p-4 bg-danger text-white rounded-lg shadow-lg max-w-md z-tooltip animate-slide-up',
- };
-
- const animationClasses = animate ? 'animate-fade-in' : '';
-
- const Icon = () => (
-
- );
-
- return (
-
- {hasMultipleErrors ? (
-
- {errorArray.map((error, index) => (
- -
- {showIcon && }
- {error}
-
- ))}
-
- ) : (
-
- {showIcon && }
- {errorArray[0]}
-
- )}
-
- );
-};
-
-FormError.displayName = 'FormError';
-
-export default FormError;
\ No newline at end of file
diff --git a/components/forms/FormExamples.tsx b/components/forms/FormExamples.tsx
deleted file mode 100644
index f014de29..00000000
--- a/components/forms/FormExamples.tsx
+++ /dev/null
@@ -1,795 +0,0 @@
-import React, { useState } from 'react';
-import {
- FormField,
- useForm,
- useFormWithHelpers,
- type ValidationRules
-} from './index';
-import { Button } from '@/components/ui/Button';
-import { Card, CardBody, CardHeader } from '@/components/ui/Card';
-import { Container } from '@/components/ui/Container';
-
-/**
- * Form Examples
- * Comprehensive examples showing all form patterns and usage
- */
-
-// Example 1: Simple Contact Form
-export const ContactFormExample: React.FC = () => {
- const form = useForm({
- initialValues: {
- name: '',
- email: '',
- message: '',
- },
- validationRules: {
- name: { required: 'Name is required', minLength: { value: 2, message: 'Name must be at least 2 characters' } },
- email: { required: 'Email is required', email: true },
- message: { required: 'Message is required', minLength: { value: 10, message: 'Message must be at least 10 characters' } },
- },
- onSubmit: async (values) => {
- console.log('Form submitted:', values);
- // Simulate API call
- await new Promise(resolve => setTimeout(resolve, 1000));
- alert('Form submitted successfully!');
- form.reset();
- },
- });
-
- return (
-
-
- Contact Form
- Simple contact form with validation
-
-
-
-
-
- );
-};
-
-// Example 2: Registration Form with Multiple Field Types
-export const RegistrationFormExample: React.FC = () => {
- const form = useForm({
- initialValues: {
- firstName: '',
- lastName: '',
- email: '',
- password: '',
- confirmPassword: '',
- country: '',
- interests: [] as string[],
- newsletter: false,
- terms: false,
- },
- validationRules: {
- firstName: { required: true, minLength: { value: 2, message: 'Too short' } },
- lastName: { required: true, minLength: { value: 2, message: 'Too short' } },
- email: { required: true, email: true },
- password: {
- required: true,
- minLength: { value: 8, message: 'Password must be at least 8 characters' },
- pattern: { value: /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)/, message: 'Must contain uppercase, lowercase, and number' }
- },
- confirmPassword: {
- required: true,
- custom: (value) => value === form.values.password ? null : 'Passwords do not match'
- },
- country: { required: 'Please select your country' },
- interests: { required: 'Select at least one interest' },
- newsletter: {},
- terms: {
- required: 'You must accept the terms',
- custom: (value) => value ? null : 'You must accept the terms'
- },
- },
- onSubmit: async (values) => {
- console.log('Registration:', values);
- await new Promise(resolve => setTimeout(resolve, 1500));
- alert('Registration successful!');
- form.reset();
- },
- });
-
- const countryOptions = [
- { value: 'de', label: 'Germany' },
- { value: 'us', label: 'United States' },
- { value: 'uk', label: 'United Kingdom' },
- { value: 'fr', label: 'France' },
- ];
-
- const interestOptions = [
- { value: 'technology', label: 'Technology' },
- { value: 'business', label: 'Business' },
- { value: 'innovation', label: 'Innovation' },
- { value: 'sustainability', label: 'Sustainability' },
- ];
-
- return (
-
-
- Registration Form
- Complete registration with multiple field types
-
-
-
-
-
- );
-};
-
-// Example 3: Search and Filter Form
-export const SearchFormExample: React.FC = () => {
- const form = useForm({
- initialValues: {
- search: '',
- category: '',
- status: '',
- sortBy: 'name',
- },
- validationRules: {
- search: {},
- category: {},
- status: {},
- sortBy: {},
- },
- onSubmit: async (values) => {
- console.log('Search filters:', values);
- // Handle search/filter logic
- },
- });
-
- const categoryOptions = [
- { value: '', label: 'All Categories' },
- { value: 'cables', label: 'Cables' },
- { value: 'connectors', label: 'Connectors' },
- { value: 'accessories', label: 'Accessories' },
- ];
-
- const statusOptions = [
- { value: '', label: 'All Status' },
- { value: 'active', label: 'Active' },
- { value: 'inactive', label: 'Inactive' },
- ];
-
- const sortOptions = [
- { value: 'name', label: 'Name (A-Z)' },
- { value: 'name-desc', label: 'Name (Z-A)' },
- { value: 'date', label: 'Date (Newest)' },
- { value: 'date-asc', label: 'Date (Oldest)' },
- ];
-
- return (
-
-
- Search & Filter
- Advanced search with multiple filters
-
-
-
-
-
- );
-};
-
-// Example 4: Radio Button Form
-export const RadioFormExample: React.FC = () => {
- const form = useForm({
- initialValues: {
- paymentMethod: '',
- shippingMethod: '',
- deliveryTime: '',
- },
- validationRules: {
- paymentMethod: { required: 'Please select a payment method' },
- shippingMethod: { required: 'Please select a shipping method' },
- deliveryTime: { required: 'Please select preferred delivery time' },
- },
- onSubmit: async (values) => {
- console.log('Selections:', values);
- await new Promise(resolve => setTimeout(resolve, 800));
- alert('Preferences saved!');
- },
- });
-
- const paymentOptions = [
- { value: 'credit-card', label: 'Credit Card', description: 'Visa, Mastercard, Amex' },
- { value: 'paypal', label: 'PayPal', description: 'Secure payment via PayPal' },
- { value: 'bank-transfer', label: 'Bank Transfer', description: 'Direct bank transfer' },
- ];
-
- const shippingOptions = [
- { value: 'standard', label: 'Standard (5-7 days)', description: 'Free shipping on orders over €50' },
- { value: 'express', label: 'Express (2-3 days)', description: '€9.99 shipping fee' },
- { value: 'overnight', label: 'Overnight', description: '€24.99 shipping fee' },
- ];
-
- const deliveryOptions = [
- { value: 'morning', label: 'Morning (8am-12pm)' },
- { value: 'afternoon', label: 'Afternoon (12pm-6pm)' },
- { value: 'evening', label: 'Evening (6pm-9pm)' },
- ];
-
- return (
-
-
- Preferences Selection
- Radio buttons for single choice selection
-
-
-
-
-
- );
-};
-
-// Example 5: Complete Form with All Features
-export const CompleteFormExample: React.FC = () => {
- const [submittedData, setSubmittedData] = useState(null);
-
- const form = useForm({
- initialValues: {
- // Text inputs
- fullName: '',
- phone: '',
- website: '',
-
- // Textarea
- description: '',
-
- // Select
- industry: '',
- budget: '',
-
- // Checkbox group
- services: [] as string[],
-
- // Radio
- contactPreference: '',
-
- // Single checkbox
- agreeToTerms: false,
- },
- validationRules: {
- fullName: { required: true, minLength: { value: 3, message: 'Minimum 3 characters' } },
- phone: { required: true, pattern: { value: /^[0-9+\-\s()]+$/, message: 'Invalid phone format' } },
- website: { url: 'Invalid URL format' },
- description: { required: true, minLength: { value: 20, message: 'Please provide more details' } },
- industry: { required: true },
- budget: { required: true },
- services: { required: 'Select at least one service' },
- contactPreference: { required: true },
- agreeToTerms: {
- required: 'You must accept the terms',
- custom: (value) => value ? null : 'Required'
- },
- },
- onSubmit: async (values) => {
- console.log('Complete form submitted:', values);
- setSubmittedData(values);
- await new Promise(resolve => setTimeout(resolve, 1500));
- alert('Form submitted successfully! Check console for data.');
- form.reset();
- },
- });
-
- const industryOptions = [
- { value: '', label: 'Select Industry' },
- { value: 'manufacturing', label: 'Manufacturing' },
- { value: 'construction', label: 'Construction' },
- { value: 'energy', label: 'Energy' },
- { value: 'technology', label: 'Technology' },
- ];
-
- const budgetOptions = [
- { value: '', label: 'Select Budget Range' },
- { value: 'small', label: '€1,000 - €5,000' },
- { value: 'medium', label: '€5,000 - €20,000' },
- { value: 'large', label: '€20,000+' },
- ];
-
- const serviceOptions = [
- { value: 'consulting', label: 'Consulting' },
- { value: 'installation', label: 'Installation' },
- { value: 'maintenance', label: 'Maintenance' },
- { value: 'training', label: 'Training' },
- { value: 'support', label: '24/7 Support' },
- ];
-
- const contactOptions = [
- { value: 'email', label: 'Email', description: 'We\'ll respond within 24 hours' },
- { value: 'phone', label: 'Phone', description: 'Call us during business hours' },
- { value: 'both', label: 'Both', description: 'Email and phone contact' },
- ];
-
- return (
-
-
-
- Complete Form Example
- All form components working together
-
-
-
-
-
-
- {/* Debug Output */}
- {submittedData && (
-
-
- Submitted Data
-
-
-
- {JSON.stringify(submittedData, null, 2)}
-
-
-
- )}
-
- );
-};
-
-// Main Examples Page Component
-export const FormExamplesPage: React.FC = () => {
- return (
-
-
-
- Form System Examples
-
- Comprehensive examples of all form components and patterns
-
-
-
-
-
-
-
-
-
-
-
-
- );
-};
-
-export default FormExamplesPage;
\ No newline at end of file
diff --git a/components/forms/FormField.tsx b/components/forms/FormField.tsx
deleted file mode 100644
index ecc9c992..00000000
--- a/components/forms/FormField.tsx
+++ /dev/null
@@ -1,218 +0,0 @@
-import React from 'react';
-import { cn } from '@/lib/utils';
-import FormLabel from './FormLabel';
-import FormError from './FormError';
-import FormInput from './FormInput';
-import FormTextarea from './FormTextarea';
-import FormSelect from './FormSelect';
-import FormCheckbox from './FormCheckbox';
-import FormRadio from './FormRadio';
-
-/**
- * FormField Component
- * Wrapper for form fields with label, input, and error
- * Supports different input types and provides consistent form experience
- */
-
-export type FormFieldType =
- | 'text'
- | 'email'
- | 'tel'
- | 'textarea'
- | 'select'
- | 'checkbox'
- | 'radio'
- | 'number'
- | 'password'
- | 'date'
- | 'time'
- | 'url';
-
-export interface FormFieldProps {
- type?: FormFieldType;
- label?: string;
- name: string;
- value?: any;
- error?: string | string[];
- helpText?: string;
- required?: boolean;
- disabled?: boolean;
- placeholder?: string;
- className?: string;
- containerClassName?: string;
-
- // For select, checkbox, radio
- options?: any[];
-
- // For select
- multiple?: boolean;
- showSearch?: boolean;
-
- // For checkbox/radio
- layout?: 'vertical' | 'horizontal';
-
- // For textarea
- rows?: number;
- showCharCount?: boolean;
- autoResize?: boolean;
- maxLength?: number;
-
- // For input
- prefix?: React.ReactNode;
- suffix?: React.ReactNode;
- showClear?: boolean;
- iconPosition?: 'prefix' | 'suffix';
-
- // Callbacks
- onChange?: (value: any) => void;
- onBlur?: () => void;
- onClear?: () => void;
-
- // Additional props
- [key: string]: any;
-}
-
-export const FormField: React.FC = ({
- type = 'text',
- label,
- name,
- value,
- error,
- helpText,
- required = false,
- disabled = false,
- placeholder,
- className,
- containerClassName,
- options = [],
- multiple = false,
- showSearch = false,
- layout = 'vertical',
- rows = 4,
- showCharCount = false,
- autoResize = false,
- maxLength,
- prefix,
- suffix,
- showClear = false,
- iconPosition = 'prefix',
- onChange,
- onBlur,
- onClear,
- ...props
-}) => {
- const commonProps = {
- name,
- value,
- onChange,
- onBlur,
- disabled,
- required,
- placeholder,
- 'aria-label': label,
- };
-
- const renderInput = () => {
- switch (type) {
- case 'textarea':
- return (
-
- );
-
- case 'select':
- return (
-
- );
-
- case 'checkbox':
- return (
- 0 : !!value}
- options={options}
- value={Array.isArray(value) ? value : []}
- onChange={onChange}
- disabled={disabled}
- containerClassName={className}
- />
- );
-
- case 'radio':
- return (
-
- );
-
- default:
- return (
-
- );
- }
- };
-
- // For checkbox and radio, the label is handled internally
- const showExternalLabel = type !== 'checkbox' && type !== 'radio';
-
- return (
-
- {showExternalLabel && label && (
-
- {label}
-
- )}
-
- {renderInput()}
-
- {!showExternalLabel && error && (
-
- )}
-
- );
-};
-
-FormField.displayName = 'FormField';
-
-export default FormField;
\ No newline at end of file
diff --git a/components/forms/FormInput.tsx b/components/forms/FormInput.tsx
deleted file mode 100644
index 3eb88f8c..00000000
--- a/components/forms/FormInput.tsx
+++ /dev/null
@@ -1,178 +0,0 @@
-import React, { useState, useCallback } from 'react';
-import { cn } from '@/lib/utils';
-import FormLabel from './FormLabel';
-import FormError from './FormError';
-
-/**
- * FormInput Component
- * Base input component with all HTML5 input types, validation states, icons, and clear button
- */
-
-export interface FormInputProps extends Omit, 'prefix' | 'suffix'> {
- label?: string;
- error?: string | string[];
- helpText?: string;
- required?: boolean;
- prefix?: React.ReactNode;
- suffix?: React.ReactNode;
- showClear?: boolean;
- iconPosition?: 'prefix' | 'suffix';
- containerClassName?: string;
- inputClassName?: string;
- onClear?: () => void;
-}
-
-export const FormInput: React.FC = ({
- label,
- error,
- helpText,
- required = false,
- prefix,
- suffix,
- showClear = false,
- iconPosition = 'prefix',
- containerClassName,
- inputClassName,
- onClear,
- disabled = false,
- value = '',
- onChange,
- ...props
-}) => {
- const [isFocused, setIsFocused] = useState(false);
-
- const hasError = !!error;
- const showError = hasError;
-
- const handleClear = useCallback(() => {
- if (onChange) {
- const syntheticEvent = {
- target: { value: '', name: props.name, type: props.type },
- currentTarget: { value: '', name: props.name, type: props.type },
- } as React.ChangeEvent;
- onChange(syntheticEvent);
- }
- if (onClear) {
- onClear();
- }
- }, [onChange, onClear, props.name, props.type]);
-
- const handleFocus = () => setIsFocused(true);
- const handleBlur = () => setIsFocused(false);
-
- const inputId = props.id || (label ? label.toLowerCase().replace(/\s+/g, '-') : undefined);
-
- const baseInputClasses = cn(
- 'w-full px-3 py-2 border rounded-md transition-all duration-200',
- 'bg-neutral-light text-text-primary',
- 'placeholder:text-text-light',
- 'focus:outline-none focus:ring-2 focus:ring-primary focus:border-primary',
- 'disabled:opacity-60 disabled:cursor-not-allowed',
- {
- 'border-neutral-dark hover:border-neutral-dark': !hasError && !isFocused,
- 'border-primary ring-2 ring-primary': isFocused && !hasError,
- 'border-danger ring-2 ring-danger/20': hasError,
- 'pl-10': prefix && iconPosition === 'prefix',
- 'pr-10': (suffix && iconPosition === 'suffix') || (showClear && value),
- },
- inputClassName
- );
-
- const containerClasses = cn(
- 'flex flex-col gap-1.5',
- containerClassName
- );
-
- const iconWrapperClasses = cn(
- 'absolute top-1/2 -translate-y-1/2 flex items-center pointer-events-none text-text-secondary',
- {
- 'left-3': iconPosition === 'prefix',
- 'right-3': iconPosition === 'suffix',
- }
- );
-
- const clearButtonClasses = cn(
- 'absolute top-1/2 -translate-y-1/2 right-2',
- 'p-1 rounded-md hover:bg-neutral-dark transition-colors',
- 'text-text-secondary hover:text-text-primary',
- 'focus:outline-none focus:ring-2 focus:ring-primary'
- );
-
- const showPrefix = prefix && iconPosition === 'prefix';
- const showSuffix = suffix && iconPosition === 'suffix';
- const showClearButton = showClear && value && !disabled;
-
- return (
-
- {label && (
-
- {label}
-
- )}
-
-
- {showPrefix && (
-
- {prefix}
-
- )}
-
-
-
- {showSuffix && (
-
- {suffix}
-
- )}
-
- {showClearButton && (
-
- )}
-
-
- {helpText && (
-
- {helpText}
-
- )}
-
- {showError && (
-
- )}
-
- );
-};
-
-FormInput.displayName = 'FormInput';
-
-export default FormInput;
\ No newline at end of file
diff --git a/components/forms/FormLabel.tsx b/components/forms/FormLabel.tsx
deleted file mode 100644
index 3bee6d9e..00000000
--- a/components/forms/FormLabel.tsx
+++ /dev/null
@@ -1,61 +0,0 @@
-import React from 'react';
-import { cn } from '@/lib/utils';
-
-/**
- * FormLabel Component
- * Consistent label styling with required indicator and help text tooltip
- */
-
-export interface FormLabelProps extends React.LabelHTMLAttributes {
- htmlFor?: string;
- required?: boolean;
- helpText?: string;
- optionalText?: string;
- className?: string;
- children: React.ReactNode;
-}
-
-export const FormLabel: React.FC = ({
- htmlFor,
- required = false,
- helpText,
- optionalText = '(optional)',
- className,
- children,
- ...props
-}) => {
- return (
-
- );
-};
-
-FormLabel.displayName = 'FormLabel';
-
-export default FormLabel;
\ No newline at end of file
diff --git a/components/forms/FormRadio.tsx b/components/forms/FormRadio.tsx
deleted file mode 100644
index 2101ea6b..00000000
--- a/components/forms/FormRadio.tsx
+++ /dev/null
@@ -1,192 +0,0 @@
-import React from 'react';
-import { cn } from '@/lib/utils';
-import FormLabel from './FormLabel';
-import FormError from './FormError';
-
-/**
- * FormRadio Component
- * Radio button group with custom styling and keyboard navigation
- */
-
-export interface RadioOption {
- value: string;
- label: string;
- disabled?: boolean;
- description?: string;
-}
-
-export interface FormRadioProps {
- label?: string;
- error?: string | string[];
- helpText?: string;
- required?: boolean;
- options: RadioOption[];
- value?: string;
- onChange?: (value: string) => void;
- containerClassName?: string;
- radioClassName?: string;
- disabled?: boolean;
- id?: string;
- name?: string;
- layout?: 'vertical' | 'horizontal';
-}
-
-export const FormRadio: React.FC = ({
- label,
- error,
- helpText,
- required = false,
- options,
- value,
- onChange,
- containerClassName,
- radioClassName,
- disabled = false,
- id,
- name,
- layout = 'vertical',
-}) => {
- const hasError = !!error;
- const showError = hasError;
-
- const handleChange = (e: React.ChangeEvent) => {
- if (onChange) {
- onChange(e.target.value);
- }
- };
-
- const inputId = id || (label ? label.toLowerCase().replace(/\s+/g, '-') : undefined);
- const groupName = name || inputId;
-
- const baseRadioClasses = cn(
- 'w-4 h-4 border rounded-full transition-all duration-200',
- 'focus:outline-none focus:ring-2 focus:ring-primary',
- {
- 'border-neutral-dark bg-neutral-light': !hasError,
- 'border-danger': hasError,
- 'opacity-60 cursor-not-allowed': disabled,
- 'cursor-pointer': !disabled,
- },
- radioClassName
- );
-
- const selectedIndicatorClasses = cn(
- 'w-2.5 h-2.5 rounded-full bg-primary transition-all duration-200',
- {
- 'scale-0': false,
- 'scale-100': true,
- }
- );
-
- const containerClasses = cn(
- 'flex flex-col gap-2',
- {
- 'gap-3': layout === 'vertical',
- 'gap-4 flex-row flex-wrap': layout === 'horizontal',
- },
- containerClassName
- );
-
- const optionWrapperClasses = cn(
- 'flex items-start gap-2',
- {
- 'opacity-60': disabled,
- }
- );
-
- const labelClasses = cn(
- 'text-sm font-medium leading-none cursor-pointer',
- {
- 'text-text-primary': !hasError,
- 'text-danger': hasError,
- }
- );
-
- const descriptionClasses = 'text-xs text-text-secondary mt-0.5';
-
- return (
-
- {label && (
-
- {label}
-
- )}
-
-
- {options.map((option) => {
- const optionId = `${inputId}-${option.value}`;
- const isChecked = value === option.value;
-
- return (
-
-
-
-
- {isChecked && (
-
- )}
-
-
-
-
-
- {option.description && (
-
- {option.description}
-
- )}
-
-
- );
- })}
-
-
- {helpText && (
-
- {helpText}
-
- )}
-
- {showError && (
-
- )}
-
- );
-};
-
-FormRadio.displayName = 'FormRadio';
-
-export default FormRadio;
\ No newline at end of file
diff --git a/components/forms/FormSelect.tsx b/components/forms/FormSelect.tsx
deleted file mode 100644
index 9d6f3a70..00000000
--- a/components/forms/FormSelect.tsx
+++ /dev/null
@@ -1,200 +0,0 @@
-import React, { useState, useCallback } from 'react';
-import { cn } from '@/lib/utils';
-import FormLabel from './FormLabel';
-import FormError from './FormError';
-
-/**
- * FormSelect Component
- * Select dropdown with placeholder, multi-select support, and custom styling
- */
-
-export interface SelectOption {
- value: string | number;
- label: string;
- disabled?: boolean;
-}
-
-export interface FormSelectProps extends Omit, 'multiple' | 'size'> {
- label?: string;
- error?: string | string[];
- helpText?: string;
- required?: boolean;
- options: SelectOption[];
- placeholder?: string;
- multiple?: boolean;
- showSearch?: boolean;
- containerClassName?: string;
- selectClassName?: string;
- onSearch?: (query: string) => void;
-}
-
-export const FormSelect: React.FC = ({
- label,
- error,
- helpText,
- required = false,
- options,
- placeholder = 'Select an option',
- multiple = false,
- showSearch = false,
- containerClassName,
- selectClassName,
- onSearch,
- disabled = false,
- value,
- onChange,
- ...props
-}) => {
- const [isFocused, setIsFocused] = useState(false);
- const [searchQuery, setSearchQuery] = useState('');
-
- const hasError = !!error;
- const showError = hasError;
-
- const handleFocus = () => setIsFocused(true);
- const handleBlur = () => setIsFocused(false);
-
- const handleChange = useCallback((e: React.ChangeEvent) => {
- onChange?.(e);
- }, [onChange]);
-
- const handleSearchChange = useCallback((e: React.ChangeEvent) => {
- const query = e.target.value;
- setSearchQuery(query);
- if (onSearch) {
- onSearch(query);
- }
- }, [onSearch]);
-
- const filteredOptions = showSearch && searchQuery
- ? options.filter(option =>
- option.label.toLowerCase().includes(searchQuery.toLowerCase())
- )
- : options;
-
- const inputId = props.id || (label ? label.toLowerCase().replace(/\s+/g, '-') : undefined);
-
- const baseSelectClasses = cn(
- 'w-full px-3 py-2 border rounded-md transition-all duration-200',
- 'bg-neutral-light text-text-primary',
- 'focus:outline-none focus:ring-2 focus:ring-primary focus:border-primary',
- 'disabled:opacity-60 disabled:cursor-not-allowed',
- 'appearance-none cursor-pointer',
- 'bg-[length:1.5em_1.5em] bg-[position:right_0.5rem_center] bg-no-repeat',
- 'bg-[url("data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' fill=\'none\' viewBox=\'0 0 20 20\'%3e%3cpath stroke=\'%236c757d\' stroke-linecap=\'round\' stroke-linejoin=\'round\' stroke-width=\'1.5\' d=\'M6 8l4 4 4-4\'/%3e%3c/svg%3e")]',
- {
- 'border-neutral-dark hover:border-neutral-dark': !hasError && !isFocused,
- 'border-primary ring-2 ring-primary': isFocused && !hasError,
- 'border-danger ring-2 ring-danger/20': hasError,
- 'pr-10': !showSearch,
- },
- selectClassName
- );
-
- const containerClasses = cn(
- 'flex flex-col gap-1.5',
- containerClassName
- );
-
- const searchInputClasses = cn(
- 'w-full px-3 py-2 border-b border-neutral-dark bg-transparent',
- 'focus:outline-none focus:border-primary',
- 'placeholder:text-text-light'
- );
-
- // Custom dropdown arrow
- const dropdownArrow = (
-
- );
-
- const renderOptions = () => {
- // Add placeholder as first option if not multiple and no value
- const showPlaceholder = !multiple && !value && placeholder;
-
- return (
- <>
- {showPlaceholder && (
-
- )}
- {filteredOptions.map((option) => (
-
- ))}
- >
- );
- };
-
- return (
-
- {label && (
-
- {label}
-
- )}
-
-
- {showSearch && (
-
- )}
-
-
-
- {!showSearch && dropdownArrow}
-
-
- {helpText && (
-
- {helpText}
-
- )}
-
- {showError && (
-
- )}
-
- );
-};
-
-FormSelect.displayName = 'FormSelect';
-
-export default FormSelect;
\ No newline at end of file
diff --git a/components/forms/FormSuccess.tsx b/components/forms/FormSuccess.tsx
deleted file mode 100644
index c8ac90eb..00000000
--- a/components/forms/FormSuccess.tsx
+++ /dev/null
@@ -1,132 +0,0 @@
-import React, { useEffect, useState } from 'react';
-import { cn } from '@/lib/utils';
-
-/**
- * FormSuccess Component
- * Display success messages with different variants and auto-dismiss
- */
-
-export interface FormSuccessProps {
- message?: string;
- variant?: 'inline' | 'block' | 'toast';
- className?: string;
- showIcon?: boolean;
- animate?: boolean;
- autoDismiss?: boolean;
- autoDismissTimeout?: number;
- onClose?: () => void;
- id?: string;
-}
-
-export const FormSuccess: React.FC = ({
- message,
- variant = 'inline',
- className,
- showIcon = true,
- animate = true,
- autoDismiss = false,
- autoDismissTimeout = 5000,
- onClose,
- id,
-}) => {
- const [isVisible, setIsVisible] = useState(true);
-
- useEffect(() => {
- if (!message) {
- setIsVisible(false);
- return;
- }
-
- setIsVisible(true);
-
- if (autoDismiss && autoDismissTimeout > 0) {
- const timer = setTimeout(() => {
- setIsVisible(false);
- if (onClose) {
- onClose();
- }
- }, autoDismissTimeout);
-
- return () => clearTimeout(timer);
- }
- }, [message, autoDismiss, autoDismissTimeout, onClose]);
-
- if (!message || !isVisible) {
- return null;
- }
-
- const baseClasses = {
- inline: 'text-sm text-success mt-1',
- block: 'p-3 bg-success/10 border border-success/20 rounded-md text-success text-sm',
- toast: 'fixed bottom-4 right-4 p-4 bg-success text-white rounded-lg shadow-lg max-w-md z-tooltip animate-slide-up',
- };
-
- const animationClasses = animate ? 'animate-fade-in' : '';
-
- const Icon = () => (
-
- );
-
- const handleClose = () => {
- setIsVisible(false);
- if (onClose) {
- onClose();
- }
- };
-
- return (
-
-
- {showIcon && }
- {message}
-
-
- {autoDismiss && (
-
- )}
-
- );
-};
-
-FormSuccess.displayName = 'FormSuccess';
-
-export default FormSuccess;
\ No newline at end of file
diff --git a/components/forms/FormTextarea.tsx b/components/forms/FormTextarea.tsx
deleted file mode 100644
index 92699bf0..00000000
--- a/components/forms/FormTextarea.tsx
+++ /dev/null
@@ -1,169 +0,0 @@
-import React, { useState, useEffect, useRef, useCallback } from 'react';
-import { cn } from '@/lib/utils';
-import FormLabel from './FormLabel';
-import FormError from './FormError';
-
-/**
- * FormTextarea Component
- * Textarea with resize options, character counter, auto-resize, and validation states
- */
-
-export interface FormTextareaProps extends Omit, 'maxLength'> {
- label?: string;
- error?: string | string[];
- helpText?: string;
- required?: boolean;
- showCharCount?: boolean;
- autoResize?: boolean;
- maxHeight?: number;
- minHeight?: number;
- containerClassName?: string;
- textareaClassName?: string;
- maxLength?: number;
-}
-
-export const FormTextarea: React.FC = ({
- label,
- error,
- helpText,
- required = false,
- showCharCount = false,
- autoResize = false,
- maxHeight = 300,
- minHeight = 120,
- containerClassName,
- textareaClassName,
- maxLength,
- disabled = false,
- value = '',
- onChange,
- rows = 4,
- ...props
-}) => {
- const [isFocused, setIsFocused] = useState(false);
- const [charCount, setCharCount] = useState(0);
- const textareaRef = useRef(null);
-
- const hasError = !!error;
- const showError = hasError;
-
- // Update character count
- useEffect(() => {
- const currentValue = typeof value === 'string' ? value : String(value || '');
- setCharCount(currentValue.length);
- }, [value]);
-
- // Auto-resize textarea
- useEffect(() => {
- if (!autoResize || !textareaRef.current) return;
-
- const textarea = textareaRef.current;
-
- // Reset height to calculate new height
- textarea.style.height = 'auto';
-
- // Calculate new height
- const newHeight = Math.min(
- Math.max(textarea.scrollHeight, minHeight),
- maxHeight
- );
-
- textarea.style.height = `${newHeight}px`;
- }, [value, autoResize, minHeight, maxHeight]);
-
- const handleFocus = () => setIsFocused(true);
- const handleBlur = () => setIsFocused(false);
-
- const handleChange = useCallback((e: React.ChangeEvent) => {
- if (maxLength && e.target.value.length > maxLength) {
- e.target.value = e.target.value.slice(0, maxLength);
- }
- onChange?.(e);
- }, [onChange, maxLength]);
-
- const inputId = props.id || (label ? label.toLowerCase().replace(/\s+/g, '-') : undefined);
-
- const baseTextareaClasses = cn(
- 'w-full px-3 py-2 border rounded-md transition-all duration-200 resize-y',
- 'bg-neutral-light text-text-primary',
- 'placeholder:text-text-light',
- 'focus:outline-none focus:ring-2 focus:ring-primary focus:border-primary',
- 'disabled:opacity-60 disabled:cursor-not-allowed',
- {
- 'border-neutral-dark hover:border-neutral-dark': !hasError && !isFocused,
- 'border-primary ring-2 ring-primary': isFocused && !hasError,
- 'border-danger ring-2 ring-danger/20': hasError,
- },
- autoResize && 'overflow-hidden',
- textareaClassName
- );
-
- const containerClasses = cn(
- 'flex flex-col gap-1.5',
- containerClassName
- );
-
- const charCountClasses = cn(
- 'text-xs text-right mt-1',
- {
- 'text-text-secondary': charCount <= (maxLength || 0) * 0.8,
- 'text-warning': charCount > (maxLength || 0) * 0.8 && charCount <= (maxLength || 0),
- 'text-danger': charCount > (maxLength || 0),
- }
- );
-
- const showCharCounter = showCharCount || (maxLength && charCount > 0);
-
- return (
-
- {label && (
-
- {label}
-
- )}
-
-
-
-
-
-
- {helpText && (
-
- {helpText}
-
- )}
-
- {showCharCounter && (
-
- {charCount}
- {maxLength ? ` / ${maxLength}` : ''}
-
- )}
-
-
- {showError && (
-
- )}
-
- );
-};
-
-FormTextarea.displayName = 'FormTextarea';
-
-export default FormTextarea;
\ No newline at end of file
diff --git a/components/forms/README.md b/components/forms/README.md
deleted file mode 100644
index 6e78d770..00000000
--- a/components/forms/README.md
+++ /dev/null
@@ -1,632 +0,0 @@
-# KLZ Forms System
-
-A comprehensive, reusable form system for Next.js applications with full TypeScript support, accessibility features, and consistent styling.
-
-## Features
-
-- **Complete Form Components**: All essential form inputs with consistent styling
-- **Validation System**: Built-in validation with custom rules
-- **Type Safety**: Full TypeScript support
-- **Accessibility**: ARIA attributes and keyboard navigation
-- **Internationalization**: Ready for i18n
-- **Customizable**: Flexible props for different use cases
-- **Animation**: Smooth transitions and animations
-- **Error Handling**: Multiple error display modes
-- **Auto-resize**: Smart textarea resizing
-- **Character Count**: Built-in character counting
-
-## Installation
-
-The form system is already included in the project. All components use the existing design system tokens.
-
-## Components
-
-### FormField
-Wrapper component that provides consistent form field experience.
-
-```tsx
- setValue(e.target.value)}
-/>
-```
-
-**Supported Types**: `text`, `email`, `tel`, `textarea`, `select`, `checkbox`, `radio`, `number`, `password`, `date`, `time`, `url`
-
-### FormInput
-Base input component with icon support and clear button.
-
-```tsx
-}
- showClear
- value={value}
- onChange={handleChange}
-/>
-```
-
-### FormTextarea
-Textarea with auto-resize and character counting.
-
-```tsx
-
-```
-
-### FormSelect
-Select dropdown with search and multi-select support.
-
-```tsx
-
-```
-
-### FormCheckbox
-Single checkbox or checkbox group with indeterminate state.
-
-```tsx
-// Single checkbox
- setChecked(values.length > 0)}
-/>
-
-// Checkbox group
- setSelectedValues(values)}
-/>
-```
-
-### FormRadio
-Radio button group with custom styling.
-
-```tsx
- setValue(value)}
-/>
-```
-
-### FormError
-Error message display with multiple variants.
-
-```tsx
-
-```
-
-### FormSuccess
-Success message with auto-dismiss option.
-
-```tsx
- setShowSuccess(false)}
-/>
-```
-
-## Hooks
-
-### useForm
-Main form state management hook with validation and submission handling.
-
-```tsx
-const form = useForm({
- initialValues: {
- name: '',
- email: '',
- },
- validationRules: {
- name: { required: true, minLength: { value: 2, message: 'Too short' } },
- email: { required: true, email: true },
- },
- onSubmit: async (values) => {
- // Handle submission
- await api.submit(values);
- },
-});
-
-// In your component
-
-```
-
-### useFormField
-Hook for managing individual field state.
-
-```tsx
-const field = useFormField({
- initialValue: '',
- validate: (value) => value.length < 2 ? 'Too short' : null,
-});
-
-// field.value, field.error, field.touched, field.handleChange, etc.
-```
-
-### useFormValidation
-Validation logic and utilities.
-
-```tsx
-const { validateField, validateForm } = useFormValidation();
-
-const errors = validateField(value, {
- required: true,
- email: true,
-}, 'email');
-```
-
-## Validation Rules
-
-Available validation rules:
-
-```typescript
-{
- required: boolean | string; // Required field
- minLength: { value: number, message: string };
- maxLength: { value: number, message: string };
- pattern: { value: RegExp, message: string };
- min: { value: number, message: string };
- max: { value: number, message: string };
- email: boolean | string;
- url: boolean | string;
- number: boolean | string;
- custom: (value) => string | null; // Custom validation
-}
-```
-
-## Examples
-
-### Simple Contact Form
-
-```tsx
-import { useForm, FormField, Button } from '@/components/forms';
-
-export function ContactForm() {
- const form = useForm({
- initialValues: { name: '', email: '', message: '' },
- validationRules: {
- name: { required: true, minLength: { value: 2 } },
- email: { required: true, email: true },
- message: { required: true },
- },
- onSubmit: async (values) => {
- await sendEmail(values);
- alert('Sent!');
- form.reset();
- },
- });
-
- return (
-
- );
-}
-```
-
-### Registration Form
-
-```tsx
-import { useForm, FormField, Button } from '@/components/forms';
-
-export function RegistrationForm() {
- const form = useForm({
- initialValues: {
- firstName: '',
- lastName: '',
- email: '',
- password: '',
- confirmPassword: '',
- terms: false,
- },
- validationRules: {
- firstName: { required: true, minLength: { value: 2 } },
- lastName: { required: true, minLength: { value: 2 } },
- email: { required: true, email: true },
- password: {
- required: true,
- minLength: { value: 8 },
- pattern: { value: /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)/ }
- },
- confirmPassword: {
- required: true,
- custom: (value) => value === form.values.password ? null : 'Passwords do not match'
- },
- terms: {
- required: 'You must accept terms',
- custom: (value) => value ? null : 'Required'
- },
- },
- onSubmit: async (values) => {
- await registerUser(values);
- alert('Registered!');
- },
- });
-
- return (
-
- );
-}
-```
-
-### Search and Filter Form
-
-```tsx
-import { useForm, FormField, Button } from '@/components/forms';
-
-export function SearchForm() {
- const form = useForm({
- initialValues: {
- search: '',
- category: '',
- status: '',
- },
- validationRules: {},
- onSubmit: async (values) => {
- await performSearch(values);
- },
- });
-
- const categoryOptions = [
- { value: '', label: 'All' },
- { value: 'cables', label: 'Cables' },
- { value: 'connectors', label: 'Connectors' },
- ];
-
- return (
-
- );
-}
-```
-
-## Best Practices
-
-### 1. Always Use FormField for Consistency
-```tsx
-// ✅ Good
-
-
-// ❌ Avoid
-
-
-
-
-```
-
-### 2. Validate Before Submit
-```tsx
-const form = useForm({
- validationRules: {
- email: { required: true, email: true },
- },
- onSubmit: async (values) => {
- // Validation happens automatically
- // Only called if isValid is true
- },
-});
-```
-
-### 3. Show Errors Only After Touch
-```tsx
-{form.touched.email && form.errors.email && (
-
-)}
-```
-
-### 4. Disable Submit When Invalid
-```tsx
-
-```
-
-### 5. Reset After Success
-```tsx
-onSubmit: async (values) => {
- await submit(values);
- form.reset();
-}
-```
-
-## Accessibility
-
-All components include:
-- Proper ARIA attributes
-- Keyboard navigation support
-- Focus management
-- Screen reader support
-- Required field indicators
-
-## Styling
-
-Components use the design system:
-- Colors: `--color-primary`, `--color-danger`, `--color-success`
-- Spacing: `--spacing-sm`, `--spacing-md`, etc.
-- Typography: `--font-size-sm`, `--font-size-base`
-- Borders: `--radius-md`
-- Transitions: `--transition-fast`
-
-## TypeScript Support
-
-Full TypeScript support with proper interfaces:
-
-```typescript
-import type {
- FormFieldProps,
- FormInputProps,
- ValidationRules,
- FormErrors
-} from '@/components/forms';
-```
-
-## Testing
-
-Example test setup:
-
-```tsx
-import { render, screen, fireEvent } from '@testing-library/react';
-import { useForm } from '@/components/forms';
-
-test('form validation', () => {
- const TestComponent = () => {
- const form = useForm({
- initialValues: { email: '' },
- validationRules: { email: { required: true, email: true } },
- onSubmit: jest.fn(),
- });
-
- return (
-
- );
- };
-
- render();
- const input = screen.getByRole('textbox');
-
- fireEvent.change(input, { target: { value: 'invalid' } });
- // Validation should trigger
-});
-```
-
-## Performance Tips
-
-1. **Memoize validation rules** if they depend on external values
-2. **Use useCallback** for event handlers
-3. **Avoid unnecessary re-renders** by splitting large forms
-4. **Lazy load** form examples for better initial load
-
-## Migration from Legacy Forms
-
-If migrating from old form components:
-
-```tsx
-// Old
- setEmail(e.target.value)}
- className={error ? 'error' : ''}
-/>
-
-// New
- form.setFieldValue('email', e.target.value)}
-/>
-```
-
-## Troubleshooting
-
-### Common Issues
-
-1. **Validation not working**: Ensure `validationRules` match `initialValues` keys
-2. **Form not submitting**: Check `isValid` state and `required` fields
-3. **Type errors**: Import proper types from the forms module
-4. **Styling issues**: Ensure design system CSS is imported
-
-### Getting Help
-
-Check the examples in `FormExamples.tsx` for complete implementations.
-
-## License
-
-Internal KLZ Cables component system
\ No newline at end of file
diff --git a/components/forms/hooks/useForm.ts b/components/forms/hooks/useForm.ts
deleted file mode 100644
index 371d48a5..00000000
--- a/components/forms/hooks/useForm.ts
+++ /dev/null
@@ -1,275 +0,0 @@
-import { useState, useCallback, FormEvent } from 'react';
-import { useFormValidation, ValidationRules, FormErrors } from './useFormValidation';
-
-/**
- * Hook for managing complete form state and submission
- */
-
-export interface FormState> {
- values: T;
- errors: FormErrors;
- touched: Record;
- isValid: boolean;
- isSubmitting: boolean;
- isSubmitted: boolean;
- submitCount: number;
-}
-
-export interface FormOptions> {
- initialValues: T;
- validationRules: Record;
- onSubmit: (values: T) => Promise | void;
- validateOnMount?: boolean;
-}
-
-export interface FormReturn> extends FormState {
- setFieldValue: (field: keyof T, value: any) => void;
- setFieldError: (field: keyof T, error: string) => void;
- clearFieldError: (field: keyof T) => void;
- handleChange: (field: keyof T, value: any) => void;
- handleSubmit: (e: FormEvent) => Promise;
- reset: () => void;
- setAllTouched: () => void;
- setValues: (values: T) => void;
- setErrors: (errors: FormErrors) => void;
- setSubmitting: (isSubmitting: boolean) => void;
- getFormProps: () => { onSubmit: (e: FormEvent) => Promise; noValidate: boolean };
-}
-
-/**
- * Hook for managing complete form state with validation and submission
- */
-export function useForm>(
- options: FormOptions
-): FormReturn {
- const {
- initialValues,
- validationRules,
- onSubmit,
- validateOnMount = false,
- } = options;
-
- const {
- values,
- errors,
- touched,
- isValid,
- setFieldValue: validationSetFieldValue,
- setFieldError: validationSetFieldError,
- clearFieldError: validationClearFieldError,
- validate,
- reset: validationReset,
- setAllTouched: validationSetAllTouched,
- setValues: validationSetValues,
- } = useFormValidation(initialValues, validationRules);
-
- const [isSubmitting, setIsSubmitting] = useState(false);
- const [isSubmitted, setIsSubmitted] = useState(false);
- const [submitCount, setSubmitCount] = useState(0);
-
- // Validate on mount if requested
- // Note: This is handled by useFormValidation's useEffect
-
- const setFieldValue = useCallback((field: keyof T, value: any) => {
- validationSetFieldValue(field, value);
- }, [validationSetFieldValue]);
-
- const setFieldError = useCallback((field: keyof T, error: string) => {
- validationSetFieldError(field, error);
- }, [validationSetFieldError]);
-
- const clearFieldError = useCallback((field: keyof T) => {
- validationClearFieldError(field);
- }, [validationClearFieldError]);
-
- const handleChange = useCallback((field: keyof T, value: any) => {
- setFieldValue(field, value);
- }, [setFieldValue]);
-
- const setErrors = useCallback((newErrors: FormErrors) => {
- Object.entries(newErrors).forEach(([field, fieldErrors]) => {
- if (Array.isArray(fieldErrors) && fieldErrors.length > 0) {
- fieldErrors.forEach((error) => {
- setFieldError(field as keyof T, error);
- });
- }
- });
- }, [setFieldError]);
-
- const setSubmitting = useCallback((state: boolean) => {
- setIsSubmitting(state);
- }, []);
-
- const reset = useCallback(() => {
- validationReset();
- setIsSubmitting(false);
- setIsSubmitted(false);
- setSubmitCount(0);
- }, [validationReset]);
-
- const setAllTouched = useCallback(() => {
- validationSetAllTouched();
- }, [validationSetAllTouched]);
-
- const setValues = useCallback((newValues: T) => {
- validationSetValues(newValues);
- }, [validationSetValues]);
-
- const handleSubmit = useCallback(async (e: FormEvent) => {
- e.preventDefault();
- e.stopPropagation();
-
- // Increment submit count
- setSubmitCount((prev) => prev + 1);
-
- // Set all fields as touched to show validation errors
- setAllTouched();
-
- // Validate form
- const validation = validate();
-
- if (!validation.isValid) {
- return;
- }
-
- // Start submission
- setIsSubmitting(true);
-
- try {
- // Call submit handler
- await onSubmit(values);
- setIsSubmitted(true);
- } catch (error) {
- // Handle submission error
- console.error('Form submission error:', error);
-
- // You can set a general error or handle specific error cases
- if (error instanceof Error) {
- setFieldError('submit' as keyof T, error.message);
- } else {
- setFieldError('submit' as keyof T, 'An error occurred during submission');
- }
- } finally {
- setIsSubmitting(false);
- }
- }, [values, onSubmit, validate, setAllTouched, setFieldError]);
-
- const getFormProps = useCallback(() => ({
- onSubmit: handleSubmit,
- noValidate: true,
- }), [handleSubmit]);
-
- return {
- values,
- errors,
- touched,
- isValid,
- isSubmitting,
- isSubmitted,
- submitCount,
- setFieldValue,
- setFieldError,
- clearFieldError,
- handleChange,
- handleSubmit,
- reset,
- setAllTouched,
- setValues,
- setErrors,
- setSubmitting,
- getFormProps,
- };
-}
-
-/**
- * Hook for managing form state with additional utilities
- */
-export function useFormWithHelpers>(
- options: FormOptions
-) {
- const form = useForm(options);
-
- const getFormProps = () => ({
- onSubmit: form.handleSubmit,
- noValidate: true, // We handle validation manually
- });
-
- const getSubmitButtonProps = () => ({
- type: 'submit',
- disabled: form.isSubmitting || !form.isValid,
- loading: form.isSubmitting,
- });
-
- const getResetButtonProps = () => ({
- type: 'button',
- onClick: form.reset,
- disabled: form.isSubmitting,
- });
-
- const getFieldProps = (field: keyof T) => ({
- value: form.values[field] as any,
- onChange: (e: any) => {
- const target = e.target;
- let value: any = target.value;
-
- if (target.type === 'checkbox') {
- value = target.checked;
- } else if (target.type === 'number') {
- value = target.value === '' ? '' : Number(target.value);
- }
-
- form.setFieldValue(field, value);
- },
- error: form.errors[field as string]?.[0],
- touched: form.touched[field],
- onBlur: () => {
- // Mark as touched on blur if not already
- if (!form.touched[field]) {
- form.setAllTouched();
- }
- },
- });
-
- const hasFieldError = (field: keyof T): boolean => {
- return !!form.errors[field as string]?.length && !!form.touched[field];
- };
-
- const getFieldError = (field: keyof T): string | null => {
- const errors = form.errors[field as string];
- return errors && errors.length > 0 ? errors[0] : null;
- };
-
- const clearFieldError = (field: keyof T) => {
- form.clearFieldError(field);
- };
-
- const setFieldError = (field: keyof T, error: string) => {
- form.setFieldError(field, error);
- };
-
- const isDirty = (): boolean => {
- return Object.keys(form.values).some((key) => {
- const currentValue = form.values[key as keyof T];
- const initialValue = options.initialValues[key as keyof T];
- return currentValue !== initialValue;
- });
- };
-
- const canSubmit = (): boolean => {
- return !form.isSubmitting && form.isValid && isDirty();
- };
-
- return {
- ...form,
- getFormProps,
- getSubmitButtonProps,
- getResetButtonProps,
- getFieldProps,
- hasFieldError,
- getFieldError,
- clearFieldError,
- setFieldError,
- isDirty,
- canSubmit,
- };
-}
\ No newline at end of file
diff --git a/components/forms/hooks/useFormField.ts b/components/forms/hooks/useFormField.ts
deleted file mode 100644
index a5674bd5..00000000
--- a/components/forms/hooks/useFormField.ts
+++ /dev/null
@@ -1,211 +0,0 @@
-import { useState, useCallback, ChangeEvent } from 'react';
-
-/**
- * Hook for managing individual form field state
- */
-
-export interface FormFieldState {
- value: T;
- error: string | null;
- touched: boolean;
- dirty: boolean;
- isValid: boolean;
-}
-
-export interface FormFieldOptions {
- initialValue?: T;
- validate?: (value: T) => string | null;
- transform?: (value: T) => T;
-}
-
-export interface FormFieldReturn {
- value: T;
- error: string | null;
- touched: boolean;
- dirty: boolean;
- isValid: boolean;
- handleChange: (e: ChangeEvent) => void;
- setValue: (value: T) => void;
- setError: (error: string | null) => void;
- setTouched: (touched: boolean) => void;
- reset: () => void;
- clearError: () => void;
-}
-
-/**
- * Hook for managing individual form field state with validation
- */
-export function useFormField(
- options: FormFieldOptions = {}
-): FormFieldReturn {
- const {
- initialValue = '' as unknown as T,
- validate,
- transform,
- } = options;
-
- const [state, setState] = useState>({
- value: initialValue,
- error: null,
- touched: false,
- dirty: false,
- isValid: true,
- });
-
- const validateValue = useCallback((value: T): string | null => {
- if (validate) {
- return validate(value);
- }
- return null;
- }, [validate]);
-
- const updateState = useCallback((newState: Partial>) => {
- setState((prev) => {
- const updated = { ...prev, ...newState };
-
- // Auto-validate if value changes and validation is provided
- if ('value' in newState && validate) {
- const error = validateValue(newState.value as T);
- updated.error = error;
- updated.isValid = !error;
- }
-
- return updated;
- });
- }, [validate, validateValue]);
-
- const handleChange = useCallback(
- (e: ChangeEvent) => {
- let value: any = e.target.value;
-
- // Handle different input types
- if (e.target.type === 'checkbox') {
- value = (e.target as HTMLInputElement).checked;
- } else if (e.target.type === 'number') {
- value = e.target.value === '' ? '' : Number(e.target.value);
- }
-
- // Apply transformation if provided
- if (transform) {
- value = transform(value);
- }
-
- setState((prev) => ({
- ...prev,
- value,
- dirty: true,
- touched: true,
- }));
- },
- [transform]
- );
-
- const setValue = useCallback((value: T) => {
- setState((prev) => ({
- ...prev,
- value,
- dirty: true,
- touched: true,
- }));
- }, []);
-
- const setError = useCallback((error: string | null) => {
- setState((prev) => ({
- ...prev,
- error,
- isValid: !error,
- }));
- }, []);
-
- const setTouched = useCallback((touched: boolean) => {
- setState((prev) => ({
- ...prev,
- touched,
- }));
- }, []);
-
- const clearError = useCallback(() => {
- setState((prev) => ({
- ...prev,
- error: null,
- isValid: true,
- }));
- }, []);
-
- const reset = useCallback(() => {
- setState({
- value: initialValue,
- error: null,
- touched: false,
- dirty: false,
- isValid: true,
- });
- }, [initialValue]);
-
- // Auto-validate on mount if initial value exists
- // This ensures initial values are validated
- // Note: We're intentionally not adding initialValue to dependencies
- // to avoid infinite loops, but we validate once on mount
- // This is handled by the updateState function when value changes
-
- return {
- value: state.value,
- error: state.error,
- touched: state.touched,
- dirty: state.dirty,
- isValid: state.isValid,
- handleChange,
- setValue,
- setError,
- setTouched,
- reset,
- clearError,
- };
-}
-
-/**
- * Hook for managing form field state with additional utilities
- */
-export function useFormFieldWithHelpers(
- options: FormFieldOptions & {
- label?: string;
- required?: boolean;
- helpText?: string;
- } = {}
-) {
- const field = useFormField(options);
-
- const hasError = field.error !== null;
- const showError = field.touched && hasError;
- const showSuccess = field.touched && !hasError && field.dirty;
-
- const getAriaDescribedBy = () => {
- const descriptions: string[] = [];
- if (options.helpText) descriptions.push(`${options.label || 'field'}-help`);
- if (field.error) descriptions.push(`${options.label || 'field'}-error`);
- return descriptions.length > 0 ? descriptions.join(' ') : undefined;
- };
-
- const getInputProps = () => ({
- value: field.value as any,
- onChange: field.handleChange,
- 'aria-invalid': hasError,
- 'aria-describedby': getAriaDescribedBy(),
- 'aria-required': options.required,
- });
-
- const getLabelProps = () => ({
- htmlFor: options.label?.toLowerCase().replace(/\s+/g, '-'),
- required: options.required,
- });
-
- return {
- ...field,
- hasError,
- showError,
- showSuccess,
- getInputProps,
- getLabelProps,
- getAriaDescribedBy,
- };
-}
\ No newline at end of file
diff --git a/components/forms/hooks/useFormValidation.ts b/components/forms/hooks/useFormValidation.ts
deleted file mode 100644
index db0c0474..00000000
--- a/components/forms/hooks/useFormValidation.ts
+++ /dev/null
@@ -1,264 +0,0 @@
-import { useState, useEffect, useCallback } from 'react';
-
-/**
- * Form Validation Hooks
- * Provides validation logic and utilities for form components
- */
-
-export interface ValidationRule {
- value: any;
- message: string;
-}
-
-export interface ValidationRules {
- required?: boolean | string;
- minLength?: ValidationRule;
- maxLength?: ValidationRule;
- pattern?: ValidationRule;
- min?: ValidationRule;
- max?: ValidationRule;
- email?: boolean | string;
- url?: boolean | string;
- number?: boolean | string;
- custom?: (value: any) => string | null;
-}
-
-export interface ValidationError {
- field: string;
- message: string;
-}
-
-export interface FormErrors {
- [key: string]: string[];
-}
-
-/**
- * Validates a single field value against validation rules
- */
-export function validateField(
- value: any,
- rules: ValidationRules,
- fieldName: string
-): string[] {
- const errors: string[] = [];
-
- // Required validation
- if (rules.required) {
- const requiredMessage = typeof rules.required === 'string'
- ? rules.required
- : `${fieldName} is required`;
-
- if (value === null || value === undefined || value === '') {
- errors.push(requiredMessage);
- }
- }
-
- // Only validate other rules if there's a value (unless required)
- if (value === null || value === undefined || value === '') {
- return errors;
- }
-
- // Min length validation
- if (rules.minLength) {
- const min = rules.minLength.value;
- const message = rules.minLength.message || `${fieldName} must be at least ${min} characters`;
-
- if (typeof value === 'string' && value.length < min) {
- errors.push(message);
- }
- }
-
- // Max length validation
- if (rules.maxLength) {
- const max = rules.maxLength.value;
- const message = rules.maxLength.message || `${fieldName} must be at most ${max} characters`;
-
- if (typeof value === 'string' && value.length > max) {
- errors.push(message);
- }
- }
-
- // Pattern validation
- if (rules.pattern) {
- const pattern = rules.pattern.value;
- const message = rules.pattern.message || `${fieldName} format is invalid`;
-
- if (typeof value === 'string' && !pattern.test(value)) {
- errors.push(message);
- }
- }
-
- // Min value validation
- if (rules.min) {
- const min = rules.min.value;
- const message = rules.min.message || `${fieldName} must be at least ${min}`;
-
- if (typeof value === 'number' && value < min) {
- errors.push(message);
- }
- }
-
- // Max value validation
- if (rules.max) {
- const max = rules.max.value;
- const message = rules.max.message || `${fieldName} must be at most ${max}`;
-
- if (typeof value === 'number' && value > max) {
- errors.push(message);
- }
- }
-
- // Email validation
- if (rules.email) {
- const message = typeof rules.email === 'string'
- ? rules.email
- : 'Please enter a valid email address';
-
- const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
- if (typeof value === 'string' && !emailRegex.test(value)) {
- errors.push(message);
- }
- }
-
- // URL validation
- if (rules.url) {
- const message = typeof rules.url === 'string'
- ? rules.url
- : 'Please enter a valid URL';
-
- try {
- new URL(value);
- } catch {
- errors.push(message);
- }
- }
-
- // Number validation
- if (rules.number) {
- const message = typeof rules.number === 'string'
- ? rules.number
- : 'Please enter a valid number';
-
- if (isNaN(Number(value))) {
- errors.push(message);
- }
- }
-
- // Custom validation
- if (rules.custom) {
- const customError = rules.custom(value);
- if (customError) {
- errors.push(customError);
- }
- }
-
- return errors;
-}
-
-/**
- * Validates an entire form against validation rules
- */
-export function validateForm>(
- values: T,
- validationRules: Record
-): { isValid: boolean; errors: FormErrors } {
- const errors: FormErrors = {};
- let isValid = true;
-
- Object.keys(validationRules).forEach((fieldName) => {
- const fieldRules = validationRules[fieldName as keyof T];
- const fieldValue = values[fieldName];
- const fieldErrors = validateField(fieldValue, fieldRules, fieldName);
-
- if (fieldErrors.length > 0) {
- errors[fieldName] = fieldErrors;
- isValid = false;
- }
- });
-
- return { isValid, errors };
-}
-
-/**
- * Hook for form validation
- */
-export function useFormValidation>(
- initialValues: T,
- validationRules: Record
-) {
- const [values, setValues] = useState(initialValues);
- const [errors, setErrors] = useState({});
- const [touched, setTouched] = useState>(
- Object.keys(initialValues).reduce((acc, key) => {
- acc[key as keyof T] = false;
- return acc;
- }, {} as Record)
- );
- const [isValid, setIsValid] = useState(false);
-
- const validate = useCallback(() => {
- const validation = validateForm(values, validationRules);
- setErrors(validation.errors);
- setIsValid(validation.isValid);
- return validation;
- }, [values, validationRules]);
-
- useEffect(() => {
- validate();
- }, [validate]);
-
- const setFieldValue = (field: keyof T, value: any) => {
- setValues((prev) => ({ ...prev, [field]: value }));
- setTouched((prev) => ({ ...prev, [field]: true }));
- };
-
- const setFieldError = (field: keyof T, error: string) => {
- setErrors((prev) => ({
- ...prev,
- [field]: [...(prev[field as string] || []), error],
- }));
- };
-
- const clearFieldError = (field: keyof T) => {
- setErrors((prev) => {
- const newErrors = { ...prev };
- delete newErrors[field as string];
- return newErrors;
- });
- };
-
- const reset = () => {
- setValues(initialValues);
- setErrors({});
- setTouched(
- Object.keys(initialValues).reduce((acc, key) => {
- acc[key as keyof T] = false;
- return acc;
- }, {} as Record)
- );
- setIsValid(false);
- };
-
- const setAllTouched = () => {
- setTouched(
- Object.keys(values).reduce((acc, key) => {
- acc[key as keyof T] = true;
- return acc;
- }, {} as Record)
- );
- };
-
- return {
- values,
- errors,
- touched,
- isValid,
- setFieldValue,
- setFieldError,
- clearFieldError,
- validate,
- reset,
- setAllTouched,
- setValues,
- };
-}
\ No newline at end of file
diff --git a/components/forms/index.ts b/components/forms/index.ts
deleted file mode 100644
index e15ca591..00000000
--- a/components/forms/index.ts
+++ /dev/null
@@ -1,46 +0,0 @@
-/**
- * KLZ Forms System
- * Comprehensive form components and hooks for consistent form experience
- */
-
-// Components
-export { FormField, type FormFieldProps, type FormFieldType } from './FormField';
-export { FormLabel, type FormLabelProps } from './FormLabel';
-export { FormInput, type FormInputProps } from './FormInput';
-export { FormTextarea, type FormTextareaProps } from './FormTextarea';
-export { FormSelect, type FormSelectProps } from './FormSelect';
-export { FormCheckbox, type FormCheckboxProps, type CheckboxOption } from './FormCheckbox';
-export { FormRadio, type FormRadioProps, type RadioOption } from './FormRadio';
-export { FormError, type FormErrorProps } from './FormError';
-export { FormSuccess, type FormSuccessProps } from './FormSuccess';
-
-// Hooks
-export { useForm, useFormWithHelpers } from './hooks/useForm';
-export { useFormField, useFormFieldWithHelpers } from './hooks/useFormField';
-export {
- useFormValidation,
- validateField,
- validateForm,
- type ValidationRules,
- type ValidationRule,
- type ValidationError,
- type FormErrors
-} from './hooks/useFormValidation';
-
-// Types
-export type FormValues = Record;
-export type FormValidationRules = Record;
-
-// Re-export for convenience
-export * from './FormField';
-export * from './FormLabel';
-export * from './FormInput';
-export * from './FormTextarea';
-export * from './FormSelect';
-export * from './FormCheckbox';
-export * from './FormRadio';
-export * from './FormError';
-export * from './FormSuccess';
-export * from './hooks/useForm';
-export * from './hooks/useFormField';
-export * from './hooks/useFormValidation';
\ No newline at end of file
diff --git a/components/layout/Footer.tsx b/components/layout/Footer.tsx
deleted file mode 100644
index 5855061e..00000000
--- a/components/layout/Footer.tsx
+++ /dev/null
@@ -1,163 +0,0 @@
-import Link from 'next/link';
-import { Container } from '@/components/ui/Container';
-import { Navigation } from './Navigation';
-
-interface FooterProps {
- locale: string;
- siteName?: string;
-}
-
-export function Footer({ locale, siteName = 'KLZ Cables' }: FooterProps) {
- const currentYear = new Date().getFullYear();
-
- // Quick links
- const quickLinks = [
- { title: 'About Us', path: `/${locale}/about` },
- { title: 'Blog', path: `/${locale}/blog` },
- { title: 'Products', path: `/${locale}/products` },
- { title: 'Contact', path: `/${locale}/contact` }
- ];
-
- // Product categories
- const productCategories = [
- { title: 'Medium Voltage Cables', path: `/${locale}/product-category/medium-voltage` },
- { title: 'Low Voltage Cables', path: `/${locale}/product-category/low-voltage` },
- { title: 'Cable Accessories', path: `/${locale}/product-category/accessories` },
- { title: 'Special Solutions', path: `/${locale}/product-category/special` }
- ];
-
- // Legal links
- const legalLinks = [
- { title: 'Privacy Policy', path: `/${locale}/privacy` },
- { title: 'Terms of Service', path: `/${locale}/terms` },
- { title: 'Imprint', path: `/${locale}/imprint` }
- ];
-
- return (
-
- );
-}
\ No newline at end of file
diff --git a/components/layout/Header.tsx b/components/layout/Header.tsx
deleted file mode 100644
index 12be2504..00000000
--- a/components/layout/Header.tsx
+++ /dev/null
@@ -1,84 +0,0 @@
-import Link from 'next/link';
-import Image from 'next/image';
-import { Container } from '@/components/ui/Container';
-import { Button } from '@/components/ui/Button';
-import { Navigation } from './Navigation';
-import { LocaleSwitcher } from '@/components/LocaleSwitcher';
-import { MobileMenu } from './MobileMenu';
-
-interface HeaderProps {
- locale: string;
- siteName?: string;
- logo?: string;
-}
-
-export function Header({ locale, siteName = 'KLZ Cables', logo }: HeaderProps) {
- const isSvgLogo = logo?.endsWith('.svg');
-
- return (
-
-
-
- {/* Logo and Branding */}
-
-
- {logo ? (
-
- {isSvgLogo ? (
- // For SVG, use img tag with proper path handling
- 
- ) : (
- // For other images, use Next.js Image with optimized sizes
-
-
-
- )}
-
- ) : (
-
- KLZ
-
- )}
-
- {siteName}
-
-
-
-
- {/* Desktop Navigation */}
-
-
-
-
-
-
-
-
- {/* Mobile Menu */}
-
-
-
-
-
-
- );
-}
\ No newline at end of file
diff --git a/components/layout/Layout.tsx b/components/layout/Layout.tsx
deleted file mode 100644
index aa038a5b..00000000
--- a/components/layout/Layout.tsx
+++ /dev/null
@@ -1,78 +0,0 @@
-import { ReactNode } from 'react';
-import Link from 'next/link';
-import { Header } from './Header';
-import { Footer } from './Footer';
-import { Container } from '@/components/ui/Container';
-
-interface LayoutProps {
- children: ReactNode;
- locale: string;
- siteName?: string;
- logo?: string;
- showSidebar?: boolean;
- breadcrumb?: Array<{ title: string; path: string }>;
-}
-
-export function Layout({
- children,
- locale,
- siteName = 'KLZ Cables',
- logo,
- showSidebar = false,
- breadcrumb
-}: LayoutProps) {
- return (
-
- {/* Header */}
-
-
- {/* Main Content Area */}
-
- {/* Breadcrumb */}
- {breadcrumb && breadcrumb.length > 0 && (
-
-
-
-
-
- )}
-
- {/* Content */}
-
- {children}
-
-
-
- {/* Footer */}
-
-
- );
-}
\ No newline at end of file
diff --git a/components/layout/MobileMenu.tsx b/components/layout/MobileMenu.tsx
deleted file mode 100644
index caab292f..00000000
--- a/components/layout/MobileMenu.tsx
+++ /dev/null
@@ -1,238 +0,0 @@
-'use client';
-
-import { useState, useEffect } from 'react';
-import Link from 'next/link';
-import Image from 'next/image';
-import { usePathname } from 'next/navigation';
-import { Button } from '@/components/ui/Button';
-import { LocaleSwitcher } from '@/components/LocaleSwitcher';
-
-interface MobileMenuProps {
- locale: string;
- siteName: string;
- logo?: string;
- onClose?: () => void;
-}
-
-export function MobileMenu({ locale, siteName, logo, onClose }: MobileMenuProps) {
- const [isOpen, setIsOpen] = useState(false);
- const pathname = usePathname();
-
- // Main navigation menu
- const mainMenu = [
- { title: 'Home', path: `/${locale}` },
- { title: 'Blog', path: `/${locale}/blog` },
- { title: 'Products', path: `/${locale}/products` },
- { title: 'Contact', path: `/${locale}/contact` }
- ];
-
- // Product categories (could be dynamic from data)
- const productCategories = [
- { title: 'Medium Voltage', path: `/${locale}/product-category/medium-voltage` },
- { title: 'Low Voltage', path: `/${locale}/product-category/low-voltage` },
- { title: 'Accessories', path: `/${locale}/product-category/accessories` }
- ];
-
- // Close on route change
- useEffect(() => {
- setIsOpen(false);
- if (onClose) onClose();
- }, [pathname, onClose]);
-
- const toggleMenu = () => {
- setIsOpen(!isOpen);
- if (!isOpen && onClose) onClose();
- };
-
- const closeMenu = () => {
- setIsOpen(false);
- if (onClose) onClose();
- };
-
- const isSvgLogo = logo?.endsWith('.svg');
-
- return (
- <>
- {/* Mobile Toggle Button */}
-
-
- {/* Mobile Menu Overlay */}
- {isOpen && (
-
- )}
-
- {/* Mobile Menu Drawer */}
-
-
- {/* Header */}
-
-
- {logo ? (
-
- {isSvgLogo ? (
- 
- ) : (
-
-
-
- )}
-
- ) : (
-
- KLZ
-
- )}
- {siteName}
-
-
-
-
- {/* Navigation */}
-
- {/* Main Navigation */}
-
-
- Navigation
-
-
-
-
- {/* Product Categories */}
-
-
- Product Categories
-
-
-
-
- {/* Language Switcher */}
-
-
- {/* Contact Information */}
-
-
-
- {/* Footer CTA */}
-
-
-
-
-
-
-
- >
- );
-}
\ No newline at end of file
diff --git a/components/layout/Navigation.tsx b/components/layout/Navigation.tsx
deleted file mode 100644
index 65ddd321..00000000
--- a/components/layout/Navigation.tsx
+++ /dev/null
@@ -1,59 +0,0 @@
-'use client';
-
-import Link from 'next/link';
-import { usePathname } from 'next/navigation';
-import { getLocaleFromPath } from '@/lib/i18n';
-
-interface NavigationProps {
- locale: string;
- variant?: 'header' | 'footer';
-}
-
-export function Navigation({ locale, variant = 'header' }: NavigationProps) {
- const pathname = usePathname();
- const currentLocale = getLocaleFromPath(pathname);
-
- // Main navigation menu
- const mainMenu = [
- { title: 'Home', path: `/${locale}` },
- { title: 'Blog', path: `/${locale}/blog` },
- { title: 'Products', path: `/${locale}/products` },
- { title: 'Contact', path: `/${locale}/contact` }
- ];
-
- // Determine styles based on variant
- const isHeader = variant === 'header';
- const baseClasses = isHeader
- ? 'hidden md:flex items-center gap-1'
- : 'flex flex-col gap-2';
-
- const linkClasses = isHeader
- ? 'px-3 py-2 text-sm font-medium text-gray-700 hover:text-primary hover:bg-primary-light rounded-lg transition-colors relative'
- : 'text-sm text-gray-600 hover:text-primary transition-colors';
-
- const activeClasses = isHeader
- ? 'text-primary bg-primary-light font-semibold'
- : 'text-primary font-medium';
-
- return (
-
- );
-}
\ No newline at end of file
diff --git a/components/layout/ResponsiveWrapper.tsx b/components/layout/ResponsiveWrapper.tsx
deleted file mode 100644
index 28afae59..00000000
--- a/components/layout/ResponsiveWrapper.tsx
+++ /dev/null
@@ -1,337 +0,0 @@
-import React, { ReactNode } from 'react';
-import { cn } from '@/lib/utils';
-import { getViewport } from '@/lib/responsive';
-
-interface ResponsiveWrapperProps {
- children: ReactNode;
- className?: string;
- // Visibility control
- showOn?: ('mobile' | 'tablet' | 'desktop' | 'largeDesktop')[];
- hideOn?: ('mobile' | 'tablet' | 'desktop' | 'largeDesktop')[];
- // Mobile-specific behavior
- stackOnMobile?: boolean;
- centerOnMobile?: boolean;
- // Padding control
- padding?: 'none' | 'sm' | 'md' | 'lg' | 'responsive';
- // Container control
- container?: boolean;
- maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | 'full';
-}
-
-/**
- * ResponsiveWrapper Component
- * Provides comprehensive responsive behavior for any content
- */
-export function ResponsiveWrapper({
- children,
- className = '',
- showOn,
- hideOn,
- stackOnMobile = false,
- centerOnMobile = false,
- padding = 'md',
- container = false,
- maxWidth = 'xl',
-}: ResponsiveWrapperProps) {
- // Get visibility classes
- const getVisibilityClasses = () => {
- let classes = '';
-
- if (showOn) {
- // Hide by default, show only on specified breakpoints
- classes += 'hidden ';
- if (showOn.includes('mobile')) classes += 'xs:block ';
- if (showOn.includes('tablet')) classes += 'md:block ';
- if (showOn.includes('desktop')) classes += 'lg:block ';
- if (showOn.includes('largeDesktop')) classes += 'xl:block ';
- }
-
- if (hideOn) {
- // Show by default, hide on specified breakpoints
- if (hideOn.includes('mobile')) classes += 'xs:hidden ';
- if (hideOn.includes('tablet')) classes += 'md:hidden ';
- if (hideOn.includes('desktop')) classes += 'lg:hidden ';
- if (hideOn.includes('largeDesktop')) classes += 'xl:hidden ';
- }
-
- return classes;
- };
-
- // Get mobile-specific classes
- const getMobileClasses = () => {
- let classes = '';
-
- if (stackOnMobile) {
- classes += 'flex-col xs:flex-row ';
- }
-
- if (centerOnMobile) {
- classes += 'items-center xs:items-start text-center xs:text-left ';
- }
-
- return classes;
- };
-
- // Get padding classes
- const getPaddingClasses = () => {
- switch (padding) {
- case 'none':
- return '';
- case 'sm':
- return 'px-3 py-2 xs:px-4 xs:py-3';
- case 'md':
- return 'px-4 py-3 xs:px-6 xs:py-4';
- case 'lg':
- return 'px-5 py-4 xs:px-8 xs:py-6';
- case 'responsive':
- return 'px-4 py-3 xs:px-6 xs:py-4 md:px-8 md:py-6 lg:px-10 lg:py-8';
- default:
- return 'px-4 py-3';
- }
- };
-
- // Get container classes if needed
- const getContainerClasses = () => {
- if (!container) return '';
-
- const maxWidthClasses = {
- sm: 'max-w-sm',
- md: 'max-w-md',
- lg: 'max-w-lg',
- xl: 'max-w-xl',
- '2xl': 'max-w-2xl',
- '3xl': 'max-w-3xl',
- full: 'max-w-full',
- };
-
- return `mx-auto ${maxWidthClasses[maxWidth]} w-full`;
- };
-
- const wrapperClasses = cn(
- // Base classes
- 'responsive-wrapper',
- // Visibility
- getVisibilityClasses(),
- // Mobile behavior
- getMobileClasses(),
- // Padding
- getPaddingClasses(),
- // Container
- getContainerClasses(),
- // Custom classes
- className
- );
-
- return {children} ;
-}
-
-/**
- * ResponsiveGrid Wrapper
- * Creates responsive grid layouts with mobile-first approach
- */
-interface ResponsiveGridProps {
- children: ReactNode;
- className?: string;
- // Column configuration
- columns?: {
- mobile?: number;
- tablet?: number;
- desktop?: number;
- largeDesktop?: number;
- };
- gap?: 'none' | 'sm' | 'md' | 'lg' | 'responsive';
- // Mobile stacking
- stackMobile?: boolean;
- // Alignment
- alignItems?: 'start' | 'center' | 'end' | 'stretch';
- justifyItems?: 'start' | 'center' | 'end' | 'stretch';
-}
-
-export function ResponsiveGrid({
- children,
- className = '',
- columns = {},
- gap = 'md',
- stackMobile = false,
- alignItems = 'start',
- justifyItems = 'start',
-}: ResponsiveGridProps) {
- const getGridColumns = () => {
- if (stackMobile) {
- return `grid-cols-1 sm:grid-cols-2 md:grid-cols-${columns.tablet || 3} lg:grid-cols-${columns.desktop || 4}`;
- }
-
- const mobile = columns.mobile || 1;
- const tablet = columns.tablet || 2;
- const desktop = columns.desktop || 3;
- const largeDesktop = columns.largeDesktop || 4;
-
- return `grid-cols-${mobile} sm:grid-cols-${tablet} md:grid-cols-${desktop} lg:grid-cols-${largeDesktop}`;
- };
-
- const getGapClasses = () => {
- switch (gap) {
- case 'none':
- return 'gap-0';
- case 'sm':
- return 'gap-2 sm:gap-3 md:gap-4';
- case 'md':
- return 'gap-3 sm:gap-4 md:gap-6 lg:gap-8';
- case 'lg':
- return 'gap-4 sm:gap-6 md:gap-8 lg:gap-12';
- case 'responsive':
- return 'gap-2 xs:gap-3 sm:gap-4 md:gap-6 lg:gap-8 xl:gap-12';
- default:
- return 'gap-4';
- }
- };
-
- return (
-
- {children}
-
- );
-}
-
-/**
- * ResponsiveStack Wrapper
- * Creates vertical stack that becomes horizontal on larger screens
- */
-interface ResponsiveStackProps {
- children: ReactNode;
- className?: string;
- gap?: 'none' | 'sm' | 'md' | 'lg' | 'responsive';
- reverseOnMobile?: boolean;
- wrap?: boolean;
-}
-
-export function ResponsiveStack({
- children,
- className = '',
- gap = 'md',
- reverseOnMobile = false,
- wrap = false,
-}: ResponsiveStackProps) {
- const getGapClasses = () => {
- switch (gap) {
- case 'none':
- return 'gap-0';
- case 'sm':
- return 'gap-2 sm:gap-3 md:gap-4';
- case 'md':
- return 'gap-3 sm:gap-4 md:gap-6 lg:gap-8';
- case 'lg':
- return 'gap-4 sm:gap-6 md:gap-8 lg:gap-12';
- case 'responsive':
- return 'gap-2 xs:gap-3 sm:gap-4 md:gap-6 lg:gap-8';
- default:
- return 'gap-4';
- }
- };
-
- return (
-
- {children}
-
- );
-}
-
-/**
- * ResponsiveSection Wrapper
- * Optimized section with responsive padding and max-width
- */
-interface ResponsiveSectionProps {
- children: ReactNode;
- className?: string;
- padding?: 'none' | 'sm' | 'md' | 'lg' | 'xl' | 'responsive';
- maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl' | 'full';
- centered?: boolean;
- safeArea?: boolean;
-}
-
-export function ResponsiveSection({
- children,
- className = '',
- padding = 'responsive',
- maxWidth = '6xl',
- centered = true,
- safeArea = false,
-}: ResponsiveSectionProps) {
- const getPaddingClasses = () => {
- switch (padding) {
- case 'none':
- return '';
- case 'sm':
- return 'px-3 py-4 xs:px-4 xs:py-6 md:px-6 md:py-8';
- case 'md':
- return 'px-4 py-6 xs:px-6 xs:py-8 md:px-8 md:py-12';
- case 'lg':
- return 'px-5 py-8 xs:px-8 xs:py-12 md:px-12 md:py-16';
- case 'xl':
- return 'px-6 py-10 xs:px-10 xs:py-14 md:px-16 md:py-20';
- case 'responsive':
- return 'px-4 py-6 xs:px-6 xs:py-8 md:px-8 md:py-12 lg:px-12 lg:py-16 xl:px-16 xl:py-20';
- default:
- return 'px-4 py-6';
- }
- };
-
- const getMaxWidthClasses = () => {
- const maxWidthMap = {
- sm: 'max-w-sm',
- md: 'max-w-md',
- lg: 'max-w-lg',
- xl: 'max-w-xl',
- '2xl': 'max-w-2xl',
- '3xl': 'max-w-3xl',
- '4xl': 'max-w-4xl',
- '5xl': 'max-w-5xl',
- '6xl': 'max-w-6xl',
- full: 'max-w-full',
- };
- return maxWidthMap[maxWidth];
- };
-
- return (
-
- );
-}
-
-export default ResponsiveWrapper;
\ No newline at end of file
diff --git a/components/layout/index.ts b/components/layout/index.ts
deleted file mode 100644
index e9bb450a..00000000
--- a/components/layout/index.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-// Layout Components
-export { Header } from './Header';
-export { Footer } from './Footer';
-export { Layout } from './Layout';
-export { MobileMenu } from './MobileMenu';
-export { Navigation } from './Navigation';
\ No newline at end of file
diff --git a/components/ui/Badge.tsx b/components/ui/Badge.tsx
deleted file mode 100644
index 22039243..00000000
--- a/components/ui/Badge.tsx
+++ /dev/null
@@ -1,162 +0,0 @@
-import React, { forwardRef, ReactNode, HTMLAttributes } from 'react';
-import { cn } from '../../lib/utils';
-
-// Badge variants
-type BadgeVariant = 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info' | 'neutral';
-
-// Badge sizes
-type BadgeSize = 'sm' | 'md' | 'lg';
-
-// Badge props interface
-interface BadgeProps extends HTMLAttributes {
- variant?: BadgeVariant;
- size?: BadgeSize;
- icon?: ReactNode;
- iconPosition?: 'left' | 'right';
- rounded?: boolean;
- children?: ReactNode;
-}
-
-// Helper function to get variant styles
-const getVariantStyles = (variant: BadgeVariant) => {
- switch (variant) {
- case 'primary':
- return 'bg-primary text-white';
- case 'secondary':
- return 'bg-secondary text-white';
- case 'success':
- return 'bg-success text-white';
- case 'warning':
- return 'bg-warning text-gray-900';
- case 'error':
- return 'bg-danger text-white';
- case 'info':
- return 'bg-info text-white';
- case 'neutral':
- return 'bg-gray-200 text-gray-800';
- default:
- return 'bg-primary text-white';
- }
-};
-
-// Helper function to get size styles
-const getSizeStyles = (size: BadgeSize) => {
- switch (size) {
- case 'sm':
- return 'text-xs px-2 py-0.5';
- case 'md':
- return 'text-sm px-3 py-1';
- case 'lg':
- return 'text-base px-4 py-1.5';
- default:
- return 'text-sm px-3 py-1';
- }
-};
-
-// Helper function to get icon spacing
-const getIconSpacing = (size: BadgeSize, iconPosition: 'left' | 'right') => {
- const spacing = {
- sm: iconPosition === 'left' ? 'mr-1' : 'ml-1',
- md: iconPosition === 'left' ? 'mr-1.5' : 'ml-1.5',
- lg: iconPosition === 'left' ? 'mr-2' : 'ml-2',
- };
- return spacing[size];
-};
-
-// Helper function to get icon size
-const getIconSize = (size: BadgeSize) => {
- const sizeClasses = {
- sm: 'w-3 h-3',
- md: 'w-4 h-4',
- lg: 'w-5 h-5',
- };
- return sizeClasses[size];
-};
-
-// Main Badge Component
-export const Badge = forwardRef(
- (
- {
- variant = 'primary',
- size = 'md',
- icon,
- iconPosition = 'left',
- rounded = true,
- className = '',
- children,
- ...props
- },
- ref
- ) => {
- return (
-
- {/* Icon - Left position */}
- {icon && iconPosition === 'left' && (
-
- {icon}
-
- )}
-
- {/* Badge content */}
- {children && {children}}
-
- {/* Icon - Right position */}
- {icon && iconPosition === 'right' && (
-
- {icon}
-
- )}
-
- );
- }
-);
-
-Badge.displayName = 'Badge';
-
-// Badge Group Component for multiple badges
-interface BadgeGroupProps extends HTMLAttributes {
- children?: ReactNode;
- gap?: 'xs' | 'sm' | 'md' | 'lg';
-}
-
-export const BadgeGroup = forwardRef(
- ({ gap = 'sm', className = '', children, ...props }, ref) => {
- const gapClasses = {
- xs: 'gap-1',
- sm: 'gap-2',
- md: 'gap-3',
- lg: 'gap-4',
- };
-
- return (
-
- {children}
-
- );
- }
-);
-
-BadgeGroup.displayName = 'BadgeGroup';
-
-// Export types for external use
-export type { BadgeProps, BadgeVariant, BadgeSize, BadgeGroupProps };
\ No newline at end of file
diff --git a/components/ui/Button.tsx b/components/ui/Button.tsx
deleted file mode 100644
index de9718a5..00000000
--- a/components/ui/Button.tsx
+++ /dev/null
@@ -1,220 +0,0 @@
-import React, { forwardRef, ButtonHTMLAttributes, ReactNode } from 'react';
-import { cn } from '../../lib/utils';
-import { getViewport, getTouchTargetSize } from '../../lib/responsive';
-
-// Button variants
-type ButtonVariant = 'primary' | 'secondary' | 'outline' | 'ghost';
-
-// Button sizes
-type ButtonSize = 'sm' | 'md' | 'lg';
-
-// Button props interface
-interface ButtonProps extends ButtonHTMLAttributes {
- variant?: ButtonVariant;
- size?: ButtonSize;
- loading?: boolean;
- icon?: ReactNode;
- iconPosition?: 'left' | 'right';
- fullWidth?: boolean;
- responsiveSize?: {
- mobile?: ButtonSize;
- tablet?: ButtonSize;
- desktop?: ButtonSize;
- };
- touchTarget?: boolean;
-}
-
-// Helper function to get variant styles
-const getVariantStyles = (variant: ButtonVariant, disabled?: boolean) => {
- const baseStyles = 'transition-all duration-200 ease-in-out font-medium rounded-lg focus:outline-none focus:ring-2 focus:ring-offset-2';
-
- if (disabled) {
- return `${baseStyles} bg-gray-300 text-gray-500 cursor-not-allowed opacity-60`;
- }
-
- switch (variant) {
- case 'primary':
- return `${baseStyles} bg-primary hover:bg-primary-dark text-white focus:ring-primary`;
- case 'secondary':
- return `${baseStyles} bg-secondary hover:bg-secondary-light text-white focus:ring-secondary`;
- case 'outline':
- return `${baseStyles} bg-transparent border-2 border-primary text-primary hover:bg-primary-light hover:border-primary-dark focus:ring-primary`;
- case 'ghost':
- return `${baseStyles} bg-transparent text-primary hover:bg-primary-light focus:ring-primary`;
- default:
- return `${baseStyles} bg-primary hover:bg-primary-dark text-white`;
- }
-};
-
-// Helper function to get size styles
-const getSizeStyles = (size: ButtonSize) => {
- switch (size) {
- case 'sm':
- return 'px-3 py-1.5 text-sm';
- case 'md':
- return 'px-4 py-2 text-base';
- case 'lg':
- return 'px-6 py-3 text-lg';
- default:
- return 'px-4 py-2 text-base';
- }
-};
-
-// Helper function to get icon spacing
-const getIconSpacing = (size: ButtonSize, iconPosition: 'left' | 'right') => {
- const spacing = {
- sm: iconPosition === 'left' ? 'mr-1.5' : 'ml-1.5',
- md: iconPosition === 'left' ? 'mr-2' : 'ml-2',
- lg: iconPosition === 'left' ? 'mr-2.5' : 'ml-2.5',
- };
- return spacing[size];
-};
-
-// Loading spinner component
-const LoadingSpinner = ({ size }: { size: ButtonSize }) => {
- const sizeClasses = {
- sm: 'w-4 h-4',
- md: 'w-5 h-5',
- lg: 'w-6 h-6',
- };
-
- return (
-
- );
-};
-
-// Main Button component
-export const Button = forwardRef(
- (
- {
- variant = 'primary',
- size = 'md',
- loading = false,
- icon,
- iconPosition = 'left',
- fullWidth = false,
- disabled,
- className = '',
- children,
- type = 'button',
- responsiveSize,
- touchTarget = true,
- ...props
- },
- ref
- ) => {
- const isDisabled = disabled || loading;
-
- // Get responsive size if provided
- const getResponsiveSize = () => {
- if (!responsiveSize) return size;
-
- if (typeof window === 'undefined') return size;
-
- const viewport = getViewport();
-
- if (viewport.isMobile && responsiveSize.mobile) {
- return responsiveSize.mobile;
- }
- if (viewport.isTablet && responsiveSize.tablet) {
- return responsiveSize.tablet;
- }
- if (viewport.isDesktop && responsiveSize.desktop) {
- return responsiveSize.desktop;
- }
-
- return size;
- };
-
- const responsiveSizeValue = getResponsiveSize();
-
- // Get touch target size - fixed for hydration
- const getTouchTargetClasses = () => {
- if (!touchTarget) return '';
-
- // Always return the same classes to avoid hydration mismatch
- // The touch target is a design requirement that should be consistent
- return `min-h-[44px] min-w-[44px]`;
- };
-
- return (
-
- );
- }
-);
-
-Button.displayName = 'Button';
-
-// Export types for external use
-export type { ButtonProps, ButtonVariant, ButtonSize };
\ No newline at end of file
diff --git a/components/ui/COMPONENTS_SUMMARY.md b/components/ui/COMPONENTS_SUMMARY.md
deleted file mode 100644
index a10811a3..00000000
--- a/components/ui/COMPONENTS_SUMMARY.md
+++ /dev/null
@@ -1,236 +0,0 @@
-# UI Components Summary
-
-## ✅ Task Completed Successfully
-
-All core UI components have been created and are ready for use in the KLZ Cables Next.js application.
-
-## 📁 Files Created
-
-### Core Components (6)
-1. **`Button.tsx`** - Versatile button with variants, sizes, icons, and loading states
-2. **`Card.tsx`** - Flexible container with header, body, footer, and image support
-3. **`Container.tsx`** - Responsive wrapper with configurable max-width and padding
-4. **`Grid.tsx`** - Responsive grid system with 1-12 columns and breakpoints
-5. **`Badge.tsx`** - Status labels with colors, sizes, and icons
-6. **`Loading.tsx`** - Spinner animations, loading buttons, and skeleton loaders
-
-### Supporting Files
-7. **`index.ts`** - Central export file for all components
-8. **`ComponentsExample.tsx`** - Comprehensive examples showing all component variations
-9. **`README.md`** - Complete documentation with usage examples
-10. **`COMPONENTS_SUMMARY.md`** - This summary file
-
-### Utility Files
-11. **`lib/utils.ts`** - Utility functions including `cn()` for class merging
-
-## 🎨 Design System Foundation
-
-### Colors (from tailwind.config.js)
-- **Primary**: `#0056b3` (KLZ blue)
-- **Secondary**: `#003d82` (darker blue)
-- **Accent**: `#e6f0ff` (light blue)
-- **Semantic**: Success, Warning, Error, Info
-- **Neutral**: Grays for backgrounds and text
-
-### Typography
-- **Font**: Inter (system-ui fallback)
-- **Scale**: xs (0.75rem) to 6xl (3.75rem)
-- **Weights**: 400, 500, 600, 700, 800
-
-### Spacing
-- **Scale**: xs (4px) to 4xl (96px)
-- **Consistent**: Used across all components
-
-### Breakpoints
-- **sm**: 640px
-- **md**: 768px
-- **lg**: 1024px
-- **xl**: 1280px
-- **2xl**: 1400px
-
-## 📋 Component Features
-
-### Button Component
-```tsx
-// Variants: primary, secondary, outline, ghost
-// Sizes: sm, md, lg
-// Features: icons, loading, disabled, fullWidth
-} loading>
- Click me
-
-```
-
-### Card Component
-```tsx
-// Variants: elevated, flat, bordered
-// Padding: none, sm, md, lg, xl
-// Features: hoverable, image support, composable
-
-
- Content
- Actions
-
-```
-
-### Container Component
-```tsx
-// Max-width: xs to 6xl, full
-// Padding: none, sm, md, lg, xl, 2xl
-// Features: centered, fluid
-
-
-
-```
-
-### Grid Component
-```tsx
-// Columns: 1-12
-// Responsive: colsSm, colsMd, colsLg, colsXl
-// Gaps: none, xs, sm, md, lg, xl, 2xl
-
- Wide
- Normal
-
-```
-
-### Badge Component
-```tsx
-// Variants: primary, secondary, success, warning, error, info, neutral
-// Sizes: sm, md, lg
-// Features: icons, rounded
-}>
- Active
-
-```
-
-### Loading Component
-```tsx
-// Sizes: sm, md, lg, xl
-// Variants: primary, secondary, neutral, contrast
-// Features: overlay, fullscreen, text, skeletons
-
-
-
-```
-
-## ✨ Key Features
-
-### TypeScript Support
-- ✅ Fully typed components
-- ✅ Exported prop interfaces
-- ✅ Type-safe variants and sizes
-- ✅ IntelliSense support
-
-### Accessibility
-- ✅ ARIA attributes where needed
-- ✅ Keyboard navigation support
-- ✅ Focus management
-- ✅ Screen reader friendly
-- ✅ Color contrast compliance
-
-### Responsive Design
-- ✅ Mobile-first approach
-- ✅ Tailwind responsive prefixes
-- ✅ Flexible layouts
-- ✅ Touch-friendly sizes
-
-### Performance
-- ✅ Lightweight components
-- ✅ Tree-shakeable exports
-- ✅ No inline styles
-- ✅ Optimized Tailwind classes
-
-## 🚀 Usage
-
-### Quick Start
-```tsx
-// Import from central index
-import {
- Button,
- Card,
- Container,
- Grid,
- Badge,
- Loading
-} from '@/components/ui';
-
-// Use in your components
-export default function MyPage() {
- return (
-
-
-
-
-
- Content goes here
-
-
-
-
-
-
-
- );
-}
-```
-
-### Customization
-All components support the `className` prop:
-```tsx
-
-```
-
-## 📊 Component Statistics
-
-- **Total Components**: 6 core + 3 sub-components
-- **Lines of Code**: ~1,500
-- **TypeScript Interfaces**: 20+
-- **Exported Types**: 30+
-- **Examples**: 50+ variations
-- **Documentation**: Complete
-
-## 🎯 Design Principles
-
-1. **Consistency**: All components follow the same patterns
-2. **Flexibility**: Props allow for extensive customization
-3. **Accessibility**: Built with WCAG guidelines in mind
-4. **Performance**: Optimized for production use
-5. **Developer Experience**: TypeScript-first, well-documented
-
-## 🔧 Next Steps
-
-The components are ready to use immediately. You can:
-
-1. **Start building**: Import and use components in your pages
-2. **Customize**: Add your own variants or extend existing ones
-3. **Test**: Run the development server to see examples
-4. **Expand**: Add more components as needed (modals, forms, etc.)
-
-## 📖 Documentation
-
-For detailed usage examples, see:
-- `README.md` - Complete component documentation
-- `ComponentsExample.tsx` - Live examples of all components
-- Individual component files - Inline documentation
-
-## ✅ Quality Checklist
-
-- [x] All components created with TypeScript
-- [x] Proper prop interfaces and types
-- [x] Accessibility attributes included
-- [x] Responsive design implemented
-- [x] Tailwind CSS classes (no inline styles)
-- [x] className prop support
-- [x] forwardRef for better ref handling
-- [x] Comprehensive examples
-- [x] Complete documentation
-- [x] Centralized exports
-
----
-
-**Status**: ✅ **COMPLETE** - All components are production-ready!
\ No newline at end of file
diff --git a/components/ui/Card.tsx b/components/ui/Card.tsx
deleted file mode 100644
index fe0f6cf8..00000000
--- a/components/ui/Card.tsx
+++ /dev/null
@@ -1,265 +0,0 @@
-import React, { forwardRef, ReactNode, HTMLAttributes } from 'react';
-import { cn } from '../../lib/utils';
-
-// Card variants
-type CardVariant = 'elevated' | 'flat' | 'bordered';
-
-// Card props interface
-interface CardProps extends HTMLAttributes {
- variant?: CardVariant;
- children?: ReactNode;
- padding?: 'none' | 'sm' | 'md' | 'lg' | 'xl';
- hoverable?: boolean;
- shadow?: boolean;
-}
-
-// Card header props
-interface CardHeaderProps extends Omit, 'title'> {
- title?: ReactNode;
- subtitle?: ReactNode;
- icon?: ReactNode;
- action?: ReactNode;
-}
-
-// Card body props
-interface CardBodyProps extends HTMLAttributes {
- children?: ReactNode;
-}
-
-// Card footer props
-interface CardFooterProps extends HTMLAttributes {
- children?: ReactNode;
- align?: 'left' | 'center' | 'right';
-}
-
-// Card image props
-interface CardImageProps extends HTMLAttributes {
- src: string;
- alt?: string;
- height?: 'sm' | 'md' | 'lg' | 'xl';
- position?: 'top' | 'background';
-}
-
-// Helper function to get variant styles
-const getVariantStyles = (variant: CardVariant) => {
- switch (variant) {
- case 'elevated':
- return 'bg-white shadow-lg shadow-gray-200/50 border border-gray-100';
- case 'flat':
- return 'bg-white shadow-sm border border-gray-100';
- case 'bordered':
- return 'bg-white border-2 border-gray-200';
- default:
- return 'bg-white shadow-md border border-gray-100';
- }
-};
-
-// Helper function to get padding styles
-const getPaddingStyles = (padding: CardProps['padding']) => {
- switch (padding) {
- case 'none':
- return '';
- case 'sm':
- return 'p-3';
- case 'md':
- return 'p-4';
- case 'lg':
- return 'p-6';
- case 'xl':
- return 'p-8';
- default:
- return 'p-4';
- }
-};
-
-// Helper function to get image height
-const getImageHeight = (height: CardImageProps['height']) => {
- switch (height) {
- case 'sm':
- return 'h-32';
- case 'md':
- return 'h-48';
- case 'lg':
- return 'h-64';
- case 'xl':
- return 'h-80';
- default:
- return 'h-48';
- }
-};
-
-// Main Card Component
-export const Card = forwardRef(
- (
- {
- variant = 'elevated',
- padding = 'md',
- hoverable = false,
- shadow = true,
- className = '',
- children,
- ...props
- },
- ref
- ) => {
- return (
-
- {children}
-
- );
- }
-);
-
-Card.displayName = 'Card';
-
-// Card Header Component
-export const CardHeader = forwardRef(
- ({ title, subtitle, icon, action, className = '', children, ...props }, ref) => {
- return (
-
-
- {icon && {icon} }
-
- {title && (
-
- {title}
-
- )}
- {subtitle && (
-
- {subtitle}
-
- )}
- {children}
-
-
- {action && {action} }
-
- );
- }
-);
-
-CardHeader.displayName = 'CardHeader';
-
-// Card Body Component
-export const CardBody = forwardRef(
- ({ className = '', children, ...props }, ref) => {
- return (
-
- {children}
-
- );
- }
-);
-
-CardBody.displayName = 'CardBody';
-
-// Card Footer Component
-export const CardFooter = forwardRef(
- ({ align = 'left', className = '', children, ...props }, ref) => {
- const alignmentClasses = {
- left: 'justify-start',
- center: 'justify-center',
- right: 'justify-end',
- };
-
- return (
-
- {children}
-
- );
- }
-);
-
-CardFooter.displayName = 'CardFooter';
-
-// Card Image Component
-export const CardImage = forwardRef(
- ({ src, alt, height = 'md', position = 'top', className = '', ...props }, ref) => {
- const heightClasses = getImageHeight(height);
-
- if (position === 'background') {
- return (
-
- {/* eslint-disable-next-line @next/next/no-img-element */}
- 
-
-
- );
- }
-
- return (
-
- {/* eslint-disable-next-line @next/next/no-img-element */}
- 
-
- );
- }
-);
-
-CardImage.displayName = 'CardImage';
-
-// Export types for external use
-export type { CardProps, CardHeaderProps, CardBodyProps, CardFooterProps, CardImageProps, CardVariant };
\ No newline at end of file
diff --git a/components/ui/ComponentsExample.tsx b/components/ui/ComponentsExample.tsx
deleted file mode 100644
index d3e10ea1..00000000
--- a/components/ui/ComponentsExample.tsx
+++ /dev/null
@@ -1,431 +0,0 @@
-/**
- * UI Components Example
- *
- * This file demonstrates how to use all the UI components in the design system.
- * Each component is shown with various props and configurations.
- */
-
-import React from 'react';
-import {
- Button,
- Card,
- CardHeader,
- CardBody,
- CardFooter,
- CardImage,
- Container,
- Grid,
- GridItem,
- Badge,
- BadgeGroup,
- Loading,
- LoadingButton,
- LoadingSkeleton,
-} from './index';
-
-// Example Icons (using simple SVG)
-const ArrowRightIcon = () => (
-
-);
-
-const CheckIcon = () => (
-
-);
-
-const StarIcon = () => (
-
-);
-
-// Button Examples
-export const ButtonExamples = () => (
-
- Buttons
-
- {/* Primary Buttons */}
-
-
-
-
- } iconPosition="right">With Icon
-
-
-
-
- {/* Secondary Buttons */}
-
-
- }>Success
-
-
- {/* Outline Buttons */}
-
-
- }>With Icon
-
-
- {/* Ghost Buttons */}
-
-
-
-
-
-);
-
-// Card Examples
-export const CardExamples = () => (
-
- Cards
-
-
- {/* Basic Card */}
-
-
-
- This is a basic card with elevated variant. It includes a header, body content, and footer.
-
-
-
-
-
-
-
- {/* Card with Image */}
-
-
-
-
-
- Cards can include images for visual appeal.
-
-
-
-
- {/* Bordered Card */}
-
- }
- action={New}
- />
-
- This card has a strong border and includes an icon in the header.
-
-
-
-
-
-
- {/* Hoverable Card */}
-
-
-
- Hover over this card to see the effect!
-
-
-
- React
- TypeScript
- Tailwind
-
-
-
-
-
-);
-
-// Container Examples
-export const ContainerExamples = () => (
-
- Containers
-
-
- Default Container (max-width: lg, padding: lg)
-
-
-
- Medium Container (max-width: md, padding: md)
-
-
-
- Fluid Container (full width)
-
-
-);
-
-// Grid Examples
-export const GridExamples = () => (
-
- Grid System
-
- {/* Basic Grid */}
-
- 12-column responsive grid:
-
- {[1, 2, 3, 4, 5, 6, 7, 8].map((item) => (
-
- {item}
-
- ))}
-
-
-
- {/* Grid with Span */}
-
- Grid with column spans:
-
-
- Span 2 columns
-
- 1 column
- 1 column
-
- Span 2 columns
-
-
-
-
- {/* Responsive Grid */}
-
- Responsive (1 col mobile, 2 tablet, 3 desktop):
-
- {[1, 2, 3, 4, 5, 6].map((item) => (
-
- Item {item}
-
- ))}
-
-
-
-);
-
-// Badge Examples
-export const BadgeExamples = () => (
-
- Badges
-
-
- {/* Badge Variants */}
-
- Color Variants:
-
- Primary
- Secondary
- Success
- Warning
- Error
- Info
- Neutral
-
-
-
- {/* Badge Sizes */}
-
- Sizes:
-
- Small
- Medium
- Large
-
-
-
- {/* Badges with Icons */}
-
- With Icons:
-
- }>Success
- } iconPosition="right">Star
- }>Next
-
-
-
- {/* Rounded Badges */}
-
- Rounded:
-
- Rounded
- Squared
-
-
-
-
-);
-
-// Loading Examples
-export const LoadingExamples = () => (
-
- Loading Components
-
-
- {/* Spinner Sizes */}
-
- Spinner Sizes:
-
-
-
-
-
-
-
-
- {/* Spinner Variants */}
-
- Spinner Variants:
-
-
-
-
-
-
-
-
- {/* Loading with Text */}
-
-
- {/* Loading Button */}
-
-
- {/* Loading Skeleton */}
-
- Skeleton Loaders:
-
-
-
-
-
-
-
-
-
-);
-
-// Combined Example - Full Page Layout
-export const FullPageExample = () => (
-
-
- {/* Header Section */}
-
- UI Components Showcase
-
- A comprehensive design system for your Next.js application
-
-
-
- {/* Hero Card */}
-
-
- }
- />
-
-
- This design system provides a complete set of reusable components
- that follow modern design principles and accessibility standards.
-
-
-
- } iconPosition="right">
- Get Started
-
-
-
-
-
- {/* Feature Grid */}
-
- Features
-
-
- } />
-
- Works perfectly on all devices from mobile to desktop.
-
-
- Ready
-
-
-
-
- } />
-
- Follows WCAG guidelines with proper ARIA attributes.
-
-
- WCAG 2.1
-
-
-
-
- } />
-
- Fully typed with TypeScript for better developer experience.
-
-
- TypeScript
-
-
-
-
-
- {/* Action Section */}
-
- Ready to start building?
-
-
-
- }>Star on GitHub
-
-
- React
- Next.js
- TypeScript
- Tailwind CSS
-
-
-
-
-);
-
-// Main Export - All Components
-export const AllComponentsExample = () => {
- return (
-
-
-
-
-
-
-
-
-
- );
-};
-
-export default AllComponentsExample;
\ No newline at end of file
diff --git a/components/ui/Container.tsx b/components/ui/Container.tsx
deleted file mode 100644
index 04dc7df8..00000000
--- a/components/ui/Container.tsx
+++ /dev/null
@@ -1,140 +0,0 @@
-import React, { forwardRef, ReactNode, HTMLAttributes } from 'react';
-import { cn } from '../../lib/utils';
-import { getViewport } from '../../lib/responsive';
-
-// Container props interface
-interface ContainerProps extends HTMLAttributes {
- children?: ReactNode;
- maxWidth?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl' | 'full';
- padding?: 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'responsive';
- centered?: boolean;
- fluid?: boolean;
- safeArea?: boolean;
- responsivePadding?: boolean;
-}
-
-// Helper function to get max-width styles
-const getMaxWidthStyles = (maxWidth: ContainerProps['maxWidth']) => {
- switch (maxWidth) {
- case 'xs':
- return 'max-w-xs';
- case 'sm':
- return 'max-w-sm';
- case 'md':
- return 'max-w-md';
- case 'lg':
- return 'max-w-lg';
- case 'xl':
- return 'max-w-xl';
- case '2xl':
- return 'max-w-2xl';
- case '3xl':
- return 'max-w-3xl';
- case '4xl':
- return 'max-w-4xl';
- case '5xl':
- return 'max-w-5xl';
- case '6xl':
- return 'max-w-6xl';
- case 'full':
- return 'max-w-full';
- default:
- return 'max-w-6xl';
- }
-};
-
-// Helper function to get padding styles
-const getPaddingStyles = (padding: ContainerProps['padding'], responsivePadding?: boolean) => {
- if (padding === 'responsive' || responsivePadding) {
- return 'px-4 xs:px-5 sm:px-6 md:px-8 lg:px-10 xl:px-12 2xl:px-16';
- }
-
- switch (padding) {
- case 'none':
- return 'px-0';
- case 'sm':
- return 'px-3 xs:px-4 sm:px-5';
- case 'md':
- return 'px-4 xs:px-5 sm:px-6 md:px-8';
- case 'lg':
- return 'px-4 xs:px-5 sm:px-6 md:px-8 lg:px-10';
- case 'xl':
- return 'px-4 xs:px-5 sm:px-6 md:px-8 lg:px-10 xl:px-12';
- case '2xl':
- return 'px-4 xs:px-5 sm:px-6 md:px-8 lg:px-10 xl:px-12 2xl:px-16';
- default:
- return 'px-4 xs:px-5 sm:px-6 md:px-8 lg:px-10';
- }
-};
-
-// Main Container Component
-export const Container = forwardRef(
- (
- {
- maxWidth = '6xl',
- padding = 'md',
- centered = true,
- fluid = false,
- safeArea = false,
- responsivePadding = false,
- className = '',
- children,
- ...props
- },
- ref
- ) => {
- // Get responsive padding if needed
- const getResponsivePadding = () => {
- if (!responsivePadding && padding !== 'responsive') return getPaddingStyles(padding, false);
-
- if (typeof window === 'undefined') return getPaddingStyles('md', true);
-
- const viewport = getViewport();
-
- // Mobile-first responsive padding
- if (viewport.isMobile) {
- return 'px-4 xs:px-5 sm:px-6';
- }
- if (viewport.isTablet) {
- return 'px-5 sm:px-6 md:px-8 lg:px-10';
- }
- if (viewport.isDesktop) {
- return 'px-6 md:px-8 lg:px-10 xl:px-12';
- }
-
- return 'px-6 md:px-8 lg:px-10 xl:px-12 2xl:px-16';
- };
-
- return (
-
- {children}
-
- );
- }
-);
-
-Container.displayName = 'Container';
-
-// Export types for external use
-export type { ContainerProps };
\ No newline at end of file
diff --git a/components/ui/Grid.tsx b/components/ui/Grid.tsx
deleted file mode 100644
index 8dca6d95..00000000
--- a/components/ui/Grid.tsx
+++ /dev/null
@@ -1,251 +0,0 @@
-import React, { forwardRef, ReactNode, HTMLAttributes } from 'react';
-import { cn } from '../../lib/utils';
-import { getViewport } from '../../lib/responsive';
-
-// Grid column types
-type GridCols = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
-
-// Grid gap types
-type GridGap = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'responsive';
-
-// Grid props interface
-interface GridProps extends HTMLAttributes {
- children?: ReactNode;
- cols?: GridCols;
- gap?: GridGap;
- colsSm?: GridCols;
- colsMd?: GridCols;
- colsLg?: GridCols;
- colsXl?: GridCols;
- alignItems?: 'start' | 'center' | 'end' | 'stretch';
- justifyItems?: 'start' | 'center' | 'end' | 'stretch';
- // Mobile-first stacking
- stackMobile?: boolean;
- // Responsive columns
- responsiveCols?: {
- mobile?: GridCols;
- tablet?: GridCols;
- desktop?: GridCols;
- };
-}
-
-// Grid item props interface
-interface GridItemProps extends HTMLAttributes {
- children?: ReactNode;
- colSpan?: GridCols;
- colSpanSm?: GridCols;
- colSpanMd?: GridCols;
- colSpanLg?: GridCols;
- colSpanXl?: GridCols;
- rowSpan?: GridCols;
- rowSpanSm?: GridCols;
- rowSpanMd?: GridCols;
- rowSpanLg?: GridCols;
- rowSpanXl?: GridCols;
-}
-
-// Helper function to get gap styles
-const getGapStyles = (gap: GridGap, responsiveGap?: boolean) => {
- if (gap === 'responsive' || responsiveGap) {
- return 'gap-2 xs:gap-3 sm:gap-4 md:gap-6 lg:gap-8';
- }
-
- switch (gap) {
- case 'none':
- return 'gap-0';
- case 'xs':
- return 'gap-1';
- case 'sm':
- return 'gap-2';
- case 'md':
- return 'gap-4';
- case 'lg':
- return 'gap-6';
- case 'xl':
- return 'gap-8';
- case '2xl':
- return 'gap-12';
- default:
- return 'gap-4';
- }
-};
-
-// Helper function to get column classes
-const getColClasses = (cols: GridCols | undefined, breakpoint: string = '') => {
- if (!cols) return '';
- const prefix = breakpoint ? `${breakpoint}:` : '';
- return `${prefix}grid-cols-${cols}`;
-};
-
-// Helper function to get span classes
-const getSpanClasses = (span: GridCols | undefined, type: 'col' | 'row', breakpoint: string = '') => {
- if (!span) return '';
- const prefix = breakpoint ? `${breakpoint}:` : '';
- const typePrefix = type === 'col' ? 'col' : 'row';
- return `${prefix}${typePrefix}-span-${span}`;
-};
-
-// Helper function to get responsive column classes
-const getResponsiveColClasses = (responsiveCols: GridProps['responsiveCols']) => {
- if (!responsiveCols) return '';
-
- let classes = '';
-
- // Mobile (default)
- if (responsiveCols.mobile) {
- classes += `grid-cols-${responsiveCols.mobile} `;
- }
-
- // Tablet
- if (responsiveCols.tablet) {
- classes += `md:grid-cols-${responsiveCols.tablet} `;
- }
-
- // Desktop
- if (responsiveCols.desktop) {
- classes += `lg:grid-cols-${responsiveCols.desktop} `;
- }
-
- return classes;
-};
-
-// Main Grid Component
-export const Grid = forwardRef(
- (
- {
- cols = 1,
- gap = 'md',
- colsSm,
- colsMd,
- colsLg,
- colsXl,
- alignItems,
- justifyItems,
- className = '',
- children,
- stackMobile = false,
- responsiveCols,
- ...props
- },
- ref
- ) => {
- // Get responsive column configuration
- const getResponsiveColumns = () => {
- if (responsiveCols) {
- return getResponsiveColClasses(responsiveCols);
- }
-
- if (stackMobile) {
- // Mobile-first: 1 column, then scale up
- return `grid-cols-1 sm:grid-cols-2 ${colsMd ? `md:grid-cols-${colsMd}` : 'md:grid-cols-3'} ${colsLg ? `lg:grid-cols-${colsLg}` : ''}`;
- }
-
- // Default responsive behavior
- let colClasses = `grid-cols-${cols}`;
- if (colsSm) colClasses += ` sm:grid-cols-${colsSm}`;
- if (colsMd) colClasses += ` md:grid-cols-${colsMd}`;
- if (colsLg) colClasses += ` lg:grid-cols-${colsLg}`;
- if (colsXl) colClasses += ` xl:grid-cols-${colsXl}`;
-
- return colClasses;
- };
-
- // Get responsive gap
- const getResponsiveGap = () => {
- if (gap === 'responsive') {
- return 'gap-2 xs:gap-3 sm:gap-4 md:gap-6 lg:gap-8';
- }
-
- // Mobile-first gap scaling
- if (stackMobile) {
- return 'gap-3 sm:gap-4 md:gap-6 lg:gap-8';
- }
-
- return getGapStyles(gap);
- };
-
- return (
-
- {children}
-
- );
- }
-);
-
-Grid.displayName = 'Grid';
-
-// Grid Item Component
-export const GridItem = forwardRef(
- (
- {
- colSpan,
- colSpanSm,
- colSpanMd,
- colSpanLg,
- colSpanXl,
- rowSpan,
- rowSpanSm,
- rowSpanMd,
- rowSpanLg,
- rowSpanXl,
- className = '',
- children,
- ...props
- },
- ref
- ) => {
- return (
-
- {children}
-
- );
- }
-);
-
-GridItem.displayName = 'GridItem';
-
-// Export types for external use
-export type { GridProps, GridItemProps, GridCols, GridGap };
\ No newline at end of file
diff --git a/components/ui/Icon.tsx b/components/ui/Icon.tsx
deleted file mode 100644
index 3c9872c5..00000000
--- a/components/ui/Icon.tsx
+++ /dev/null
@@ -1,255 +0,0 @@
-'use client';
-
-import React from 'react';
-import { cn } from '../../lib/utils';
-import * as LucideIcons from 'lucide-react';
-
-// Supported icon types
-export type IconName =
- // Lucide icons (primary)
- | 'star' | 'check' | 'x' | 'arrow-left' | 'arrow-right' | 'chevron-left' | 'chevron-right'
- | 'quote' | 'phone' | 'mail' | 'map-pin' | 'clock' | 'calendar' | 'user' | 'users'
- | 'award' | 'briefcase' | 'building' | 'globe' | 'settings' | 'tool' | 'wrench'
- | 'shield' | 'lock' | 'key' | 'heart' | 'thumbs-up' | 'message-circle' | 'phone-call'
- | 'mail-open' | 'map' | 'navigation' | 'home' | 'info' | 'alert-circle' | 'check-circle'
- | 'x-circle' | 'plus' | 'minus' | 'search' | 'filter' | 'download' | 'upload'
- | 'share-2' | 'link' | 'external-link' | 'file-text' | 'file' | 'folder'
- // Font Awesome style aliases (for WP compatibility)
- | 'fa-star' | 'fa-check' | 'fa-times' | 'fa-arrow-left' | 'fa-arrow-right'
- | 'fa-quote-left' | 'fa-phone' | 'fa-envelope' | 'fa-map-marker' | 'fa-clock-o'
- | 'fa-calendar' | 'fa-user' | 'fa-users' | 'fa-trophy' | 'fa-briefcase'
- | 'fa-building' | 'fa-globe' | 'fa-cog' | 'fa-wrench' | 'fa-shield'
- | 'fa-lock' | 'fa-key' | 'fa-heart' | 'fa-thumbs-up' | 'fa-comment'
- | 'fa-phone-square' | 'fa-envelope-open' | 'fa-map' | 'fa-compass'
- | 'fa-home' | 'fa-info-circle' | 'fa-check-circle' | 'fa-times-circle'
- | 'fa-plus' | 'fa-minus' | 'fa-search' | 'fa-filter' | 'fa-download'
- | 'fa-upload' | 'fa-share-alt' | 'fa-link' | 'fa-external-link'
- | 'fa-file-text' | 'fa-file' | 'fa-folder';
-
-export interface IconProps {
- name: IconName;
- size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
- className?: string;
- color?: 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'muted' | 'current';
- strokeWidth?: number;
- onClick?: () => void;
- ariaLabel?: string;
-}
-
-/**
- * Icon Component
- * Universal icon component supporting Lucide icons and Font Awesome aliases
- * Maps WPBakery vc_icon patterns to modern React icons
- */
-export const Icon: React.FC = ({
- name,
- size = 'md',
- className = '',
- color = 'current',
- strokeWidth = 2,
- onClick,
- ariaLabel
-}) => {
- // Map size to actual dimensions
- const sizeMap = {
- xs: 'w-3 h-3',
- sm: 'w-4 h-4',
- md: 'w-5 h-5',
- lg: 'w-6 h-6',
- xl: 'w-8 h-8',
- '2xl': 'w-10 h-10'
- };
-
- // Map color to Tailwind classes
- const colorMap = {
- primary: 'text-primary',
- secondary: 'text-secondary',
- success: 'text-green-600',
- warning: 'text-yellow-600',
- error: 'text-red-600',
- muted: 'text-gray-500',
- current: 'text-current'
- };
-
- // Normalize icon name (remove fa- prefix and map to Lucide)
- const normalizeIconName = (iconName: string): string => {
- // Remove fa- prefix if present
- const cleanName = iconName.replace(/^fa-/, '');
-
- // Map common Font Awesome names to Lucide
- const faToLucide: Record = {
- 'star': 'star',
- 'check': 'check',
- 'times': 'x',
- 'arrow-left': 'arrow-left',
- 'arrow-right': 'arrow-right',
- 'quote-left': 'quote',
- 'phone': 'phone',
- 'envelope': 'mail',
- 'map-marker': 'map-pin',
- 'clock-o': 'clock',
- 'calendar': 'calendar',
- 'user': 'user',
- 'users': 'users',
- 'trophy': 'award',
- 'briefcase': 'briefcase',
- 'building': 'building',
- 'globe': 'globe',
- 'cog': 'settings',
- 'wrench': 'wrench',
- 'shield': 'shield',
- 'lock': 'lock',
- 'key': 'key',
- 'heart': 'heart',
- 'thumbs-up': 'thumbs-up',
- 'comment': 'message-circle',
- 'phone-square': 'phone',
- 'envelope-open': 'mail-open',
- 'map': 'map',
- 'compass': 'navigation',
- 'home': 'home',
- 'info-circle': 'info',
- 'check-circle': 'check-circle',
- 'times-circle': 'x-circle',
- 'plus': 'plus',
- 'minus': 'minus',
- 'search': 'search',
- 'filter': 'filter',
- 'download': 'download',
- 'upload': 'upload',
- 'share-alt': 'share-2',
- 'link': 'link',
- 'external-link': 'external-link',
- 'file-text': 'file-text',
- 'file': 'file',
- 'folder': 'folder'
- };
-
- return faToLucide[cleanName] || cleanName;
- };
-
- const iconName = normalizeIconName(name);
- const IconComponent = (LucideIcons as any)[iconName];
-
- if (!IconComponent) {
- console.warn(`Icon "${name}" (normalized: "${iconName}") not found in Lucide icons`);
- return (
-
- ?
-
- );
- }
-
- return (
-
- );
-};
-
-// Helper component for icon buttons
-export const IconButton: React.FC = ({
- name,
- size = 'md',
- className = '',
- color = 'primary',
- onClick,
- label,
- ariaLabel
-}) => {
- return (
-
- );
-};
-
-// Helper function to parse WPBakery vc_icon attributes
-export function parseWpIcon(iconClass: string): IconProps {
- // Parse classes like "vc_icon fa fa-star" or "vc_icon lucide-star"
- const parts = iconClass.split(/\s+/);
- let name: IconName = 'star';
- let size: IconProps['size'] = 'md';
-
- // Find icon name
- const iconPart = parts.find(p => p.includes('fa-') || p.includes('lucide-') || p === 'fa');
- if (iconPart) {
- if (iconPart.includes('fa-')) {
- name = iconPart.replace('fa-', '') as IconName;
- } else if (iconPart.includes('lucide-')) {
- name = iconPart.replace('lucide-', '') as IconName;
- }
- }
-
- // Find size
- if (parts.includes('fa-lg') || parts.includes('text-xl')) size = 'lg';
- if (parts.includes('fa-2x')) size = 'xl';
- if (parts.includes('fa-3x')) size = '2xl';
- if (parts.includes('fa-xs')) size = 'xs';
- if (parts.includes('fa-sm')) size = 'sm';
-
- return { name, size };
-}
-
-// Icon wrapper for feature lists
-export const IconFeature: React.FC<{
- icon: IconName;
- title: string;
- description?: string;
- iconPosition?: 'top' | 'left';
- className?: string;
-}> = ({ icon, title, description, iconPosition = 'left', className = '' }) => {
- const isLeft = iconPosition === 'left';
-
- return (
-
-
-
- {title}
- {description && (
- {description}
- )}
-
-
- );
-};
-
-export default Icon;
\ No newline at end of file
diff --git a/components/ui/Loading.tsx b/components/ui/Loading.tsx
deleted file mode 100644
index d9d8c380..00000000
--- a/components/ui/Loading.tsx
+++ /dev/null
@@ -1,224 +0,0 @@
-import React, { forwardRef, HTMLAttributes } from 'react';
-import { cn } from '../../lib/utils';
-
-// Loading sizes
-type LoadingSize = 'sm' | 'md' | 'lg' | 'xl';
-
-// Loading variants
-type LoadingVariant = 'primary' | 'secondary' | 'neutral' | 'contrast';
-
-// Loading props interface
-interface LoadingProps extends HTMLAttributes {
- size?: LoadingSize;
- variant?: LoadingVariant;
- overlay?: boolean;
- text?: string;
- fullscreen?: boolean;
-}
-
-// Helper function to get size styles
-const getSizeStyles = (size: LoadingSize) => {
- switch (size) {
- case 'sm':
- return 'w-4 h-4 border-2';
- case 'md':
- return 'w-8 h-8 border-4';
- case 'lg':
- return 'w-12 h-12 border-4';
- case 'xl':
- return 'w-16 h-16 border-4';
- default:
- return 'w-8 h-8 border-4';
- }
-};
-
-// Helper function to get variant styles
-const getVariantStyles = (variant: LoadingVariant) => {
- switch (variant) {
- case 'primary':
- return 'border-primary';
- case 'secondary':
- return 'border-secondary';
- case 'neutral':
- return 'border-gray-300';
- case 'contrast':
- return 'border-white';
- default:
- return 'border-primary';
- }
-};
-
-// Helper function to get text size
-const getTextSize = (size: LoadingSize) => {
- switch (size) {
- case 'sm':
- return 'text-sm';
- case 'md':
- return 'text-base';
- case 'lg':
- return 'text-lg';
- case 'xl':
- return 'text-xl';
- default:
- return 'text-base';
- }
-};
-
-// Main Loading Component
-export const Loading = forwardRef(
- ({
- size = 'md',
- variant = 'primary',
- overlay = false,
- text,
- fullscreen = false,
- className = '',
- ...props
- }, ref) => {
- const spinner = (
-
- );
-
- if (overlay) {
- return (
-
-
- {spinner}
- {text && (
-
- {text}
-
- )}
-
-
- );
- }
-
- return (
-
- {spinner}
- {text && (
-
- {text}
-
- )}
-
- );
- }
-);
-
-Loading.displayName = 'Loading';
-
-// Loading Button Component
-interface LoadingButtonProps extends HTMLAttributes {
- size?: LoadingSize;
- variant?: LoadingVariant;
- text?: string;
-}
-
-export const LoadingButton = forwardRef(
- ({ size = 'md', variant = 'primary', text = 'Loading...', className = '', ...props }, ref) => {
- return (
-
- );
- }
-);
-
-LoadingButton.displayName = 'LoadingButton';
-
-// Loading Skeleton Component
-interface LoadingSkeletonProps extends HTMLAttributes {
- width?: string | number;
- height?: string | number;
- rounded?: boolean;
- className?: string;
-}
-
-export const LoadingSkeleton = forwardRef(
- ({ width = '100%', height = '1rem', rounded = false, className = '', ...props }, ref) => {
- // Convert numeric values to Tailwind width classes
- const getWidthClass = (width: string | number) => {
- if (typeof width === 'number') {
- if (width <= 32) return 'w-8';
- if (width <= 64) return 'w-16';
- if (width <= 128) return 'w-32';
- if (width <= 192) return 'w-48';
- if (width <= 256) return 'w-64';
- return 'w-full';
- }
- return width === '100%' ? 'w-full' : width;
- };
-
- // Convert numeric values to Tailwind height classes
- const getHeightClass = (height: string | number) => {
- if (typeof height === 'number') {
- if (height <= 8) return 'h-2';
- if (height <= 16) return 'h-4';
- if (height <= 24) return 'h-6';
- if (height <= 32) return 'h-8';
- if (height <= 48) return 'h-12';
- if (height <= 64) return 'h-16';
- return 'h-auto';
- }
- return height === '1rem' ? 'h-4' : height;
- };
-
- return (
-
- );
- }
-);
-
-LoadingSkeleton.displayName = 'LoadingSkeleton';
-
-// Export types for external use
-export type { LoadingProps, LoadingSize, LoadingVariant, LoadingButtonProps, LoadingSkeletonProps };
\ No newline at end of file
diff --git a/components/ui/README.md b/components/ui/README.md
deleted file mode 100644
index a5bb9bfb..00000000
--- a/components/ui/README.md
+++ /dev/null
@@ -1,367 +0,0 @@
-# UI Components
-
-A comprehensive design system of reusable UI components for the KLZ Cables Next.js application. Built with TypeScript, Tailwind CSS, and accessibility best practices.
-
-## Overview
-
-This component library provides building blocks for creating consistent, responsive, and accessible user interfaces. All components are fully typed with TypeScript and follow modern web standards.
-
-## Components
-
-### 1. Button Component
-
-A versatile button component with multiple variants, sizes, and states.
-
-**Features:**
-- Multiple variants: `primary`, `secondary`, `outline`, `ghost`
-- Three sizes: `sm`, `md`, `lg`
-- Icon support with left/right positioning
-- Loading state with spinner
-- Full width option
-- Proper accessibility attributes
-
-**Usage:**
-```tsx
-import { Button } from '@/components/ui';
-
-// Basic usage
-
-
-// With icon
-}
- iconPosition="right"
->
- Next
-
-
-// Loading state
-
-
-// Disabled
-
-
-// Full width
-
-```
-
-### 2. Card Component
-
-Flexible container component with optional header, body, footer, and image sections.
-
-**Features:**
-- Three variants: `elevated`, `flat`, `bordered`
-- Optional padding: `none`, `sm`, `md`, `lg`, `xl`
-- Hover effects
-- Image support (top or background)
-- Composable sub-components
-
-**Usage:**
-```tsx
-import { Card, CardHeader, CardBody, CardFooter, CardImage } from '@/components/ui';
-
-// Basic card
-
-
-
- Card content goes here
-
-
-
-
-
-
-// Card with image
-
-
-
-
-
-
-
-// Hoverable card
-
- {/* content */}
-
-```
-
-### 3. Container Component
-
-Responsive wrapper for centering content with configurable max-width and padding.
-
-**Features:**
-- Max-width options: `xs` to `6xl`, `full`
-- Padding options: `none`, `sm`, `md`, `lg`, `xl`, `2xl`
-- Centering option
-- Fluid mode (full width)
-
-**Usage:**
-```tsx
-import { Container } from '@/components/ui';
-
-// Standard container
-
-
-
-
-// Medium container
-
-
-
-
-// Fluid (full width)
-
-
-
-
-// Without centering
-
-
-
-```
-
-### 4. Grid Component
-
-Responsive grid system with configurable columns and gaps.
-
-**Features:**
-- 1-12 column system
-- Responsive breakpoints: `colsSm`, `colsMd`, `colsLg`, `colsXl`
-- Gap spacing: `none`, `xs`, `sm`, `md`, `lg`, `xl`, `2xl`
-- Grid item span control
-- Alignment options
-
-**Usage:**
-```tsx
-import { Grid, GridItem } from '@/components/ui';
-
-// Basic grid
-
- Item 1
- Item 2
- Item 3
-
-
-// Responsive grid
-
- {/* items */}
-
-
-// Grid with spans
-
- Spans 2 columns
- 1 column
-
-
-// Grid with alignment
-
- {/* items */}
-
-```
-
-### 5. Badge Component
-
-Small status or label component with multiple variants.
-
-**Features:**
-- Color variants: `primary`, `secondary`, `success`, `warning`, `error`, `info`, `neutral`
-- Sizes: `sm`, `md`, `lg`
-- Icon support with positioning
-- Rounded or squared
-- Badge group for multiple badges
-
-**Usage:**
-```tsx
-import { Badge, BadgeGroup } from '@/components/ui';
-
-// Basic badge
-Active
-
-// With icon
-}>Featured
-
-// Different sizes
-Small
-Medium
-Large
-
-// Badge group
-
- React
- TypeScript
- Tailwind
-
-
-// Rounded
-Rounded
-```
-
-### 6. Loading Component
-
-Loading indicators including spinners, buttons, and skeletons.
-
-**Features:**
-- Spinner sizes: `sm`, `md`, `lg`, `xl`
-- Spinner variants: `primary`, `secondary`, `neutral`, `contrast`
-- Optional text
-- Overlay mode with fullscreen option
-- Loading button
-- Skeleton loaders
-
-**Usage:**
-```tsx
-import { Loading, LoadingButton, LoadingSkeleton } from '@/components/ui';
-
-// Basic spinner
-
-
-// With text
-
-
-// Overlay (blocks UI)
-
-
-// Fullscreen overlay
-
-
-// Loading button
-
-
-// Skeleton loaders
-
-
-```
-
-## TypeScript Support
-
-All components are fully typed with TypeScript. Props are exported for external use:
-
-```tsx
-import type {
- ButtonProps,
- CardProps,
- ContainerProps,
- GridProps,
- BadgeProps,
- LoadingProps
-} from '@/components/ui';
-```
-
-## Accessibility
-
-All components include proper accessibility attributes:
-- ARIA labels where needed
-- Keyboard navigation support
-- Focus management
-- Screen reader friendly
-- Color contrast compliance
-
-## Responsive Design
-
-Components are built with mobile-first responsive design:
-- Tailwind responsive prefixes (`sm:`, `md:`, `lg:`, `xl:`)
-- Flexible layouts
-- Touch-friendly sizes
-- Adaptive spacing
-
-## Customization
-
-All components support the `className` prop for custom styling:
-
-```tsx
-
-```
-
-## Best Practices
-
-1. **Always use the index export:**
- ```tsx
- import { Button, Card } from '@/components/ui';
- ```
-
-2. **Type your props:**
- ```tsx
- interface MyComponentProps {
- title: string;
- variant?: ButtonVariant;
- }
- ```
-
-3. **Use semantic HTML:**
- - Buttons for actions
- - Links for navigation
- - Proper heading hierarchy
-
-4. **Test with keyboard:**
- - Tab through all interactive elements
- - Enter/Space activates buttons
- - Escape closes modals
-
-5. **Test with screen readers:**
- - Use VoiceOver (macOS) or NVDA (Windows)
- - Verify ARIA labels are descriptive
-
-## Performance Tips
-
-1. **Lazy load heavy components:**
- ```tsx
- const HeavyComponent = dynamic(() => import('@/components/Heavy'), {
- loading: () =>
- });
- ```
-
-2. **Memoize expensive computations:**
- ```tsx
- const memoizedValue = useMemo(() => computeExpensiveValue(), [deps]);
- ```
-
-3. **Use proper image optimization:**
- ```tsx
-
- ```
-
-## Browser Support
-
-- Chrome/Edge: Latest 2 versions
-- Firefox: Latest 2 versions
-- Safari: Latest 2 versions
-- Mobile browsers: iOS Safari, Chrome Mobile
-
-## Future Enhancements
-
-- [ ] Modal component
-- [ ] Dropdown component
-- [ ] Tabs component
-- [ ] Accordion component
-- [ ] Tooltip component
-- [ ] Toast/Notification component
-- [ ] Form input components
-- [ ] Table component
-
-## Contributing
-
-When adding new components:
-1. Follow the existing component structure
-2. Use TypeScript interfaces
-3. Include proper accessibility attributes
-4. Add to the index export
-5. Update this documentation
-6. Test across browsers and devices
-
-## License
-
-Internal use only - KLZ Cables
\ No newline at end of file
diff --git a/components/ui/Slider.tsx b/components/ui/Slider.tsx
deleted file mode 100644
index eb8630fa..00000000
--- a/components/ui/Slider.tsx
+++ /dev/null
@@ -1,255 +0,0 @@
-'use client';
-
-import React, { useState, useEffect, useCallback } from 'react';
-import { cn } from '../../lib/utils';
-import { ChevronLeft, ChevronRight } from 'lucide-react';
-
-export interface Slide {
- id: string;
- title?: string;
- subtitle?: string;
- description?: string;
- image?: string;
- ctaText?: string;
- ctaLink?: string;
-}
-
-export interface SliderProps {
- slides: Slide[];
- autoplay?: boolean;
- autoplayInterval?: number;
- showControls?: boolean;
- showIndicators?: boolean;
- variant?: 'default' | 'fullscreen' | 'compact';
- className?: string;
-}
-
-/**
- * Slider Component
- * Responsive carousel for WPBakery nectar_slider/nectar_carousel patterns
- * Supports autoplay, manual controls, and multiple variants
- */
-export const Slider: React.FC = ({
- slides,
- autoplay = false,
- autoplayInterval = 5000,
- showControls = true,
- showIndicators = true,
- variant = 'default',
- className = ''
-}) => {
- const [currentIndex, setCurrentIndex] = useState(0);
- const [isTransitioning, setIsTransitioning] = useState(false);
-
- // Handle autoplay
- useEffect(() => {
- if (!autoplay || slides.length <= 1) return;
-
- const interval = setInterval(() => {
- nextSlide();
- }, autoplayInterval);
-
- return () => clearInterval(interval);
- }, [autoplay, autoplayInterval, currentIndex, slides.length]);
-
- const nextSlide = useCallback(() => {
- if (isTransitioning || slides.length <= 1) return;
- setIsTransitioning(true);
- setCurrentIndex((prev) => (prev + 1) % slides.length);
- setTimeout(() => setIsTransitioning(false), 300);
- }, [slides.length, isTransitioning]);
-
- const prevSlide = useCallback(() => {
- if (isTransitioning || slides.length <= 1) return;
- setIsTransitioning(true);
- setCurrentIndex((prev) => (prev - 1 + slides.length) % slides.length);
- setTimeout(() => setIsTransitioning(false), 300);
- }, [slides.length, isTransitioning]);
-
- const goToSlide = useCallback((index: number) => {
- if (isTransitioning || slides.length <= 1) return;
- setIsTransitioning(true);
- setCurrentIndex(index);
- setTimeout(() => setIsTransitioning(false), 300);
- }, [slides.length, isTransitioning]);
-
- // Variant-specific styles
- const variantStyles = {
- default: 'rounded-xl overflow-hidden shadow-lg',
- fullscreen: 'w-full h-full rounded-none',
- compact: 'rounded-lg overflow-hidden shadow-md'
- };
-
- const heightStyles = {
- default: 'h-96 md:h-[500px]',
- fullscreen: 'h-screen',
- compact: 'h-64 md:h-80'
- };
-
- return (
-
- {/* Slides Container */}
-
- {slides.map((slide, index) => (
-
- {/* Background Image */}
- {slide.image && (
-
-
- {/* Overlay for better text readability */}
-
-
- )}
-
- {/* Content */}
-
-
- {slide.subtitle && (
-
- {slide.subtitle}
-
- )}
-
- {slide.title && (
-
- {slide.title}
-
- )}
-
- {slide.description && (
-
- {slide.description}
-
- )}
-
- {slide.ctaText && slide.ctaLink && (
-
- {slide.ctaText}
-
- )}
-
-
-
- ))}
-
-
- {/* Navigation Controls */}
- {showControls && slides.length > 1 && (
- <>
-
-
-
- >
- )}
-
- {/* Indicators */}
- {showIndicators && slides.length > 1 && (
-
- {slides.map((_, index) => (
-
- )}
-
- {/* Slide Counter (optional, for accessibility) */}
-
- {currentIndex + 1} / {slides.length}
-
-
- );
-};
-
-// Helper function to convert WPBakery slider HTML to Slide array
-export function parseWpSlider(content: string): Slide[] {
- // This would parse nectar_slider or similar WPBakery slider patterns
- // For now, returns empty array - can be enhanced based on actual WP content
- return [];
-}
-
-export default Slider;
\ No newline at end of file
diff --git a/components/ui/index.ts b/components/ui/index.ts
deleted file mode 100644
index 0bb928da..00000000
--- a/components/ui/index.ts
+++ /dev/null
@@ -1,37 +0,0 @@
-// UI Components Export
-export { Button, type ButtonProps, type ButtonVariant, type ButtonSize } from './Button';
-export {
- Card,
- CardHeader,
- CardBody,
- CardFooter,
- CardImage,
- type CardProps,
- type CardHeaderProps,
- type CardBodyProps,
- type CardFooterProps,
- type CardImageProps,
- type CardVariant
-} from './Card';
-export { Container, type ContainerProps } from './Container';
-export { Grid, GridItem, type GridProps, type GridItemProps, type GridCols, type GridGap } from './Grid';
-export {
- Badge,
- BadgeGroup,
- type BadgeProps,
- type BadgeVariant,
- type BadgeSize,
- type BadgeGroupProps
-} from './Badge';
-export {
- Loading,
- LoadingButton,
- LoadingSkeleton,
- type LoadingProps,
- type LoadingSize,
- type LoadingVariant,
- type LoadingButtonProps,
- type LoadingSkeletonProps
-} from './Loading';
-export { Slider, type Slide, type SliderProps, parseWpSlider } from './Slider';
-export { Icon, IconButton, IconFeature, parseWpIcon, type IconProps, type IconName } from './Icon';
\ No newline at end of file
diff --git a/data/attribute-check-results.json b/data/attribute-check-results.json
deleted file mode 100644
index 524b842a..00000000
--- a/data/attribute-check-results.json
+++ /dev/null
@@ -1,51 +0,0 @@
-[
- {
- "id": 46773,
- "name": "NA2XS(FL)2Y",
- "hasAttributes": false,
- "count": 0,
- "attributes": []
- },
- {
- "id": 46771,
- "name": "N2XS(FL)2Y",
- "hasAttributes": false,
- "count": 0,
- "attributes": []
- },
- {
- "id": 46769,
- "name": "H1Z2Z2-K",
- "hasAttributes": false,
- "count": 0,
- "attributes": []
- },
- {
- "id": 46767,
- "name": "NA2X(F)K2Y",
- "hasAttributes": false,
- "count": 0,
- "attributes": []
- },
- {
- "id": 46765,
- "name": "N2X(F)K2Y",
- "hasAttributes": false,
- "count": 0,
- "attributes": []
- },
- {
- "id": 46763,
- "name": "NA2X(F)KLD2Y",
- "hasAttributes": false,
- "count": 0,
- "attributes": []
- },
- {
- "id": 46761,
- "name": "N2X(F)KLD2Y",
- "hasAttributes": false,
- "count": 0,
- "attributes": []
- }
-]
\ No newline at end of file
diff --git a/data/backup/products-1767735299375.json b/data/backup/products-1767735299375.json
deleted file mode 100644
index 9b0dcf5a..00000000
--- a/data/backup/products-1767735299375.json
+++ /dev/null
@@ -1,27048 +0,0 @@
-[
- {
- "id": 46773,
- "translationKey": "na2xsfl2y-3",
- "locale": "en",
- "slug": "na2xsfl2y-3",
- "path": "/product/na2xsfl2y-3",
- "name": "NA2XS(FL)2Y",
- "shortDescriptionHtml": "The NA2XS(FL)2Y cable is a high-performance high-voltage cable with an aluminum conductor, XLPE insulation, and a waterproof PE sheath. It offers high operational reliability and is specifically designed for underground and demanding route installations. \n",
- "descriptionHtml": " Ideal for high-voltage applications underground and outdoors The NA2XS(FL)2Y meets the requirements of IEC 60840 and is suitable for installation in the ground, in cable ducts, indoors, in pipes, and outdoors. It is manufactured based on project specifications and is particularly used in transmission networks, utility infrastructures, and substations where safety and durability are top priorities. Structure and technical features At its core, the cable features a compacted, multi-stranded aluminum conductor according to IEC 60228, embedded in a conductive inner layer, an XLPE insulation, and a fully bonded, extruded outer layer. The combination of a water-swellable tape, copper shielding with an open helix, and an additional water-swellable wrap effectively protects the cable from moisture ingress. The black PE sheath with firmly bonded aluminum tape (Alucopo) serves as both mechanical protection and a transverse water barrier. Properties and application benefits The NA2XS(FL)2Y is suitable for direct burial, mechanically robust, and offers excellent operational safety due to its partial discharge-free design and water-repellent construction. It is configured project-specifically and can be used flexibly – from urban energy projects to large industrial installations. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/06/NA2XSFL2Y-3-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/06/NA2XSFL2Y-3-scaled.webp",
- "sku": "NA2XS(FL)2Y-high-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 41,
- "name": "High Voltage Cables",
- "slug": "high-voltage-cables"
- }
- ],
- "attributes": [],
- "variations": [],
- "updatedAt": "2025-08-25T07:47:29",
- "translation": null
- },
- {
- "id": 46771,
- "translationKey": "n2xsfl2y",
- "locale": "en",
- "slug": "n2xsfl2y",
- "path": "/product/n2xsfl2y",
- "name": "N2XS(FL)2Y",
- "shortDescriptionHtml": "The N2XS(FL)2Y cable is a customizable high-voltage cable featuring a well-designed protection system against water ingress and high electrical load capacity. It complies with international standards and is ideally suited for demanding energy infrastructure projects. \n",
- "descriptionHtml": " Flexible in use – underground, underwater, and on cable trays The N2XS(FL)2Y is designed for installation in the ground, in cable ducts, pipes, outdoor areas, and indoor spaces. It complies with the IEC 60840 standard and can be tailored to specific project requirements. It is typically used in transmission networks, substations, and large industrial facilities where maximum reliability is essential. Technical structure The cable features a multi-stranded copper conductor (class 2 according to IEC 60228). The insulation consists of cross-linked polyethylene (XLPE), embedded between a conductive inner layer and a conductive outer insulation layer. A water-swellable tape, together with copper wires and an open copper helix, provides effective shielding. The outer sheath is made of PE, firmly bonded with an aluminum laminate (Alucopo) – optimal protection against mechanical stress and moisture. Application features The N2XS(FL)2Y is waterproof, suitable for underground installation, and resistant to mechanical stress – and thanks to its multi-layered shielding and water-blocking structure, it is particularly suited for critical high-voltage applications. Electrical performance is calculated based on the project – allowing precise adaptation to grid operation requirements. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/06/N2XSFL2Y-3-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/06/N2XSFL2Y-3-scaled.webp",
- "sku": "N2XS(FL)2Y-high-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 41,
- "name": "High Voltage Cables",
- "slug": "high-voltage-cables"
- }
- ],
- "attributes": [],
- "variations": [],
- "updatedAt": "2025-08-25T07:44:16",
- "translation": {
- "locale": "de",
- "id": 46772
- }
- },
- {
- "id": 46769,
- "translationKey": "h1z2z2-k",
- "locale": "en",
- "slug": "h1z2z2-k",
- "path": "/product/h1z2z2-k",
- "name": "H1Z2Z2-K",
- "shortDescriptionHtml": "The H1Z2Z2-K cable is a highly flexible, halogen-free solar cable for modern photovoltaic systems. It meets the highest standards for safety, weather resistance, and electrical performance – for both indoor and outdoor use. \n",
- "descriptionHtml": " For long-term use in demanding environments The H1Z2Z2-K complies with DIN EN 50618 (VDE 0283-618) and is specifically designed for the cabling of photovoltaic systems. It can be installed permanently or used flexibly – indoors, outdoors, in industrial facilities, agricultural operations, or even in hazardous (explosive) areas. The cable is UV-, ozone- and water-resistant (AD7) and can be laid directly in the ground. Construction and technical features The finely stranded tinned copper conductor (class 5) is double protected by cross-linked insulation and a cross-linked outer sheath made of polyolefin copolymer – halogen-free, flame-retardant, and highly abrasion-resistant. The cable is designed for a maximum conductor temperature of 120 °C and remains reliably flexible even at -40 °C (fixed installation). Its low smoke emission and high resistance to mechanical and thermal stress ensure safe, long-term operation. Key features at a glance -
Halogen-free, flame-retardant, UV- and ozone-resistant -
Short-circuit and earth fault proof according to VDE-AR-E 2283-4 -
Approved for indoor, outdoor and hazardous (explosive) areas -
Suitable for direct burial -
CPR performance class: Eca ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/06/H1Z2Z2-K-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/06/H1Z2Z2-K-scaled.webp",
- "sku": "H1Z2Z2-K-solar-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 43,
- "name": "Solar Cables",
- "slug": "solar-cables"
- }
- ],
- "attributes": [],
- "variations": [],
- "updatedAt": "2025-08-25T07:41:43",
- "translation": {
- "locale": "de",
- "id": 46770
- }
- },
- {
- "id": 46767,
- "translationKey": "na2xfk2y",
- "locale": "en",
- "slug": "na2xfk2y",
- "path": "/product/na2xfk2y",
- "name": "NA2X(F)K2Y",
- "shortDescriptionHtml": "The NA2X(F)K2Y high-voltage cable series is designed for industrial applications requiring robust electrical performance, featuring copper conductors and XLPE insulation suitable for voltage classes up to 110kV. Primarily used in power transmission and distribution networks. \n",
- "descriptionHtml": " Engineering Overview The NA2X(F)K2Y high-voltage cable series 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 dielectric strength and thermal cycling resilience. Technical Performance and Installation This cable series is optimized for high ampacity and excellent fault current withstand capabilities, making it ideal for environments where reliability and durability are paramount. The construction adheres to strict IEC compliance standards, ensuring both performance and safety. - Stranded copper conductors enhance current carrying capacity and heat dissipation.
- XLPE insulation provides significant improvements in thermal characteristics and longevity compared to traditional PVC.
- Installation versatility with suitability for direct burial, trefoil formation, or cable tray mounting, accommodating various environmental conditions and spatial configurations.
Compliance and EMC Considerations The NA2X(F)K2Y series not only meets IEC standards but also features a robust design to ensure electromagnetic compatibility (EMC). This design minimizes induced voltage effects, crucial in densely populated cable routes and close proximity to sensitive equipment. - Comprehensive CPR classification and CE marking confirm the cable's adherence to European safety and quality benchmarks.
- Metallic screens incorporated within the cable structure effectively manage electromagnetic interference, safeguarding signal integrity across extensive networks.
",
- "images": [],
- "featuredImage": null,
- "sku": "NA2X(F)K2Y-high-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 41,
- "name": "High Voltage Cables",
- "slug": "high-voltage-cables"
- }
- ],
- "attributes": [],
- "variations": [],
- "updatedAt": "2025-06-23T11:21:13",
- "translation": {
- "locale": "de",
- "id": 46768
- }
- },
- {
- "id": 46765,
- "translationKey": "n2xfk2y",
- "locale": "en",
- "slug": "n2xfk2y",
- "path": "/product/n2xfk2y",
- "name": "N2X(F)K2Y",
- "shortDescriptionHtml": "The N2X(F)K2Y high-voltage cable series, designed for 64/110kV applications, utilizes copper conductors and XLPE insulation to meet the rigorous demands of industrial power distribution and transmission. These cables are engineered for high ampacity and fault current withstand in diverse installation environments. \n",
- "descriptionHtml": " Engineering Overview The N2X(F)K2Y high-voltage cable series 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. Technical Performance and Installation 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. - Optimal ampacity to support increased power transmission requirements.
- Enhanced fault current withstand capability to ensure reliability and safety.
- Superior dielectric strength, facilitated by high-quality XLPE insulation.
Installation techniques such as trefoil formation, direct burial, and cable tray mounting are compatible with this series, providing flexibility and ease of deployment in varied operational landscapes. Compliance and Electromagnetic Compatibility The N2X(F)K2Y series adheres to stringent IEC standards and meets CPR classification requirements, ensuring compliance with international safety and quality benchmarks. Additionally, the cables are designed to minimize electromagnetic interference, enhancing electromagnetic compatibility (EMC) and reducing induced voltages, which is critical in densely packed power installations. - Robust metallic screening to mitigate EMC issues and manage fault currents effectively.
- CE marking confirms that the cable series meets the essential requirements of relevant European directives.
",
- "images": [],
- "featuredImage": null,
- "sku": "N2X(F)K2Y-high-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 41,
- "name": "High Voltage Cables",
- "slug": "high-voltage-cables"
- }
- ],
- "attributes": [],
- "variations": [],
- "updatedAt": "2025-06-23T11:21:21",
- "translation": {
- "locale": "de",
- "id": 46766
- }
- },
- {
- "id": 46763,
- "translationKey": "na2xfkld2y",
- "locale": "en",
- "slug": "na2xfkld2y",
- "path": "/product/na2xfkld2y",
- "name": "NA2X(F)KLD2Y",
- "shortDescriptionHtml": "The NA2X(F)KLD2Y high-voltage cable series is designed for industrial applications requiring high voltage class and robust performance, featuring copper conductors and XLPE insulation suitable for direct burial and cable tray installations. \n",
- "descriptionHtml": " Engineering Overview The NA2X(F)KLD2Y high-voltage cable series 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. Technical Performance and Construction 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. - Optimized conductor design to maximize current carrying capacity and minimize thermal losses.
- XLPE insulation for improved fault current withstand and resistance to environmental stressors.
- Designed for IEC compliance and CPR classification, ensuring adherence to international safety and performance standards.
Installation and Compliance The NA2X(F)KLD2Y series supports various installation methods including direct burial and cable tray mounting. Its robust construction allows for installation in trefoil formation, optimizing space and reducing induced voltages. - Metallic screening layers enhance electromagnetic compatibility (EMC), crucial for installations in electromagnetically active environments.
- The cable's design minimizes electromagnetic interference, aiding in the stability of the entire power network.
- Each cable variant is marked with CE marking, signifying European conformity with health, safety, and environmental protection standards.
",
- "images": [],
- "featuredImage": null,
- "sku": "NA2X(F)KLD2Y-high-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 41,
- "name": "High Voltage Cables",
- "slug": "high-voltage-cables"
- }
- ],
- "attributes": [],
- "variations": [],
- "updatedAt": "2025-06-23T11:22:22",
- "translation": {
- "locale": "de",
- "id": 46764
- }
- },
- {
- "id": 46761,
- "translationKey": "n2xfkld2y",
- "locale": "en",
- "slug": "n2xfkld2y",
- "path": "/product/n2xfkld2y",
- "name": "N2X(F)KLD2Y",
- "shortDescriptionHtml": "The N2X(F)KLD2Y-high-voltage-cables-2 series is designed for high-voltage applications, utilizing stranded copper conductors and XLPE insulation to ensure high ampacity and robust performance in industrial settings. \n",
- "descriptionHtml": " Engineering Overview The N2X(F)KLD2Y-high-voltage-cables-2 series 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. Technical Performance and Installation This cable series is designed to optimize both electrical and thermal performance, making it suitable for a variety of installation environments: - High ampacity to support increased power transmission over long distances without significant power losses.
- Excellent fault current withstand capability, ensuring reliability and safety in the event of abnormal current flow.
- Designed for direct burial, trefoil formation, or cable tray mounting, providing flexibility in installation methods to suit different site conditions.
Compliance and EMC Considerations The cable's construction adheres to stringent IEC standards and carries the CE marking, affirming its compliance with the Construction Products Regulation (CPR classification). Furthermore, it is designed to minimize electromagnetic interference: - Advanced insulation and shielding techniques reduce induced voltage, enhancing electromagnetic compatibility (EMC).
- Metallic screens incorporated into the cable design help in mitigating external electromagnetic influences, ensuring stable and uninterrupted operation.
",
- "images": [],
- "featuredImage": null,
- "sku": "N2X(F)KLD2Y-high-voltage-cables-2",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 41,
- "name": "High Voltage Cables",
- "slug": "high-voltage-cables"
- }
- ],
- "attributes": [],
- "variations": [],
- "updatedAt": "2025-06-23T11:25:50",
- "translation": {
- "locale": "de",
- "id": 46762
- }
- },
- {
- "id": 45065,
- "translationKey": "na2xsfl2y",
- "locale": "en",
- "slug": "na2xsfl2y",
- "path": "/product/na2xsfl2y",
- "name": "NA2XS(FL)2Y",
- "shortDescriptionHtml": "The NA2XS(FL)2Y cable is a longitudinally watertight medium-voltage cable with an aluminium conductor, XLPE insulation, and a combined Al/PE sheath. It has been specifically developed for power supply networks that demand high mechanical strength and reliable protection against water ingress. \n",
- "descriptionHtml": " Designed for use in power supply networks The NA2XS(FL)2Y complies with standards DIN VDE 0276-620, HD 620 S2 and IEC 60502. It is ideal for installation in power supply networks (utilities), indoors, in cable ducts, outdoors, in soil, and in water. 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. Technical construction The cable features a multi-stranded aluminium conductor (Class 2 according to VDE 0295 / IEC 60228), surrounded by XLPE insulation with a tightly bonded outer conductive layer. A conductive, longitudinally watertight tape and a copper wire screen with counter helix ensure reliable field control. The cable is also equipped with a longitudinally watertight aluminum tape that is laminated to the black PE sheath. The result: high protection against mechanical stress and moisture ingress. Properties and applications The NA2XS(FL)2Y cable is suitable for underground installation, free from silicone and cadmium, and suited for environments with high mechanical stress. It withstands temperatures up to +90 °C in operation and up to +250 °C under short-circuit conditions. Thanks to its partial discharge-free design and water barrier, it is particularly well suited for critical supply areas in power infrastructure. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSFL2Y-3-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSFL2Y-3-scaled.webp",
- "sku": "NA2XS(FL)2Y-medium-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 39,
- "name": "Medium Voltage Cables",
- "slug": "medium-voltage-cables"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16 - 6/10kV",
- "1x50/16 - 6/10kV",
- "1x70/16 - 6/10kV",
- "1x95/16 - 6/10kV",
- "1x120/16 - 6/10kV",
- "1x150/25 - 6/10kV",
- "1x185/25 - 6/10kV",
- "1x240/25 - 6/10kV",
- "1x300/25 - 6/10kV",
- "1x400/35 - 6/10kV",
- "1x500/35 - 6/10kV",
- "1x630/35 - 6/10kV",
- "1x800/35 - 6/10kV",
- "1x1000/35 - 6/10kV",
- "1x50/16 - 12/20kV",
- "1x70/16 - 12/20kV",
- "1x95/16 - 12/20kV",
- "1x120/16 - 12/20kV",
- "1x150/25 - 12/20kV",
- "1x185/25 - 12/20kV",
- "1x240/25 - 12/20kV",
- "1x300/25 - 12/20kV",
- "1x400/35 - 12/20kV",
- "1x500/35 - 12/20kV",
- "1x500/50 - 12/20kV",
- "1x630/35 - 12/20kV",
- "1x800/35 - 12/20kV",
- "1x1000/35 - 12/20kV",
- "1x50/16 - 18/30kV",
- "1x70/16 - 18/30kV",
- "1x95/16 - 18/30kV",
- "1x120/16 - 18/30kV",
- "1x150/25 - 18/30kV",
- "1x185/25 - 18/30kV",
- "1x240/25 - 18/30kV",
- "1x300/25 - 18/30kV",
- "1x400/35 - 18/30kV",
- "1x500/35 - 18/30kV",
- "1x630/35 - 18/30kV",
- "1x800/35 - 18/30kV",
- "1x1000/35 - 18/30kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "Aluminum"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "Conductive tape below screen",
- "slug": "Conductive tape below screen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Copper wire screen and tape",
- "slug": "Copper wire screen and tape",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Non conducting tape above screen",
- "slug": "Non conducting tape above screen",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Al Foil",
- "slug": "Al Foil",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16",
- "1x50/16",
- "1x70/16",
- "1x95/16",
- "1x120/16",
- "1x150/25",
- "1x185/25",
- "1x240/25",
- "1x300/25",
- "1x400/35",
- "1x500/35",
- "1x630/35",
- "1x800/35",
- "1x1000/35",
- "1x500/50"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "6/10 kV",
- "12/20 kV",
- "18/30 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "21 kV",
- "42 kV",
- "63 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "+90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "+250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "-20 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "uncoloured"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Flame retardant",
- "slug": "Flame retardant",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "wooden or metal drums"
- ]
- },
- {
- "id": 0,
- "name": "CE-Conformity",
- "slug": "CE-Conformity",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "yes"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "RM"
- ]
- },
- {
- "id": 0,
- "name": "Conductor diameter",
- "slug": "Conductor diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "7.2 mm",
- "8.3 mm",
- "9.8 mm",
- "11.3 mm",
- "12.8 mm",
- "14.2 mm",
- "15.8 mm",
- "18.1 mm",
- "20.2 mm",
- "23.3 mm",
- "26.5 mm",
- "29.9 mm",
- "34.2 mm",
- "38.1 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "3.4 mm",
- "5.5 mm",
- "8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Diameter over insulation",
- "slug": "Diameter over insulation",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "15.3 mm",
- "16.4 mm",
- "17.9 mm",
- "19.4 mm",
- "20.9 mm",
- "22.3 mm",
- "23.9 mm",
- "26.2 mm",
- "28.3 mm",
- "31.4 mm",
- "34.6 mm",
- "38 mm",
- "42.3 mm",
- "46.2 mm",
- "20.6 mm",
- "22.1 mm",
- "23.6 mm",
- "25.1 mm",
- "26.5 mm",
- "28.1 mm",
- "30.4 mm",
- "32.5 mm",
- "35.6 mm",
- "38.8 mm",
- "42.2 mm",
- "46.5 mm",
- "50.4 mm",
- "25.6 mm",
- "27.1 mm",
- "28.6 mm",
- "30.1 mm",
- "31.5 mm",
- "33.1 mm",
- "35.4 mm",
- "37.5 mm",
- "40.6 mm",
- "43.8 mm",
- "47.2 mm",
- "51.5 mm",
- "55.4 mm"
- ]
- },
- {
- "id": 0,
- "name": "Minimum sheath thickness",
- "slug": "Minimum sheath thickness",
- "position": 25,
- "visible": true,
- "variation": true,
- "options": [
- "2.1 mm",
- "2.4 mm"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 26,
- "visible": true,
- "variation": true,
- "options": [
- "25 mm",
- "26 mm",
- "27 mm",
- "29 mm",
- "30 mm",
- "32 mm",
- "33 mm",
- "36 mm",
- "38 mm",
- "41 mm",
- "44 mm",
- "47 mm",
- "52 mm",
- "56 mm",
- "35 mm",
- "40 mm",
- "42 mm",
- "45 mm",
- "49 mm",
- "61 mm",
- "37 mm",
- "43 mm",
- "50 mm",
- "54 mm",
- "60 mm",
- "67 mm"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 27,
- "visible": true,
- "variation": true,
- "options": [
- "500 mm",
- "520 mm",
- "405 mm",
- "580 mm",
- "600 mm",
- "640 mm",
- "660 mm",
- "720 mm",
- "760 mm",
- "820 mm",
- "880 mm",
- "940 mm",
- "1040 mm",
- "1120 mm",
- "700 mm",
- "800 mm",
- "840 mm",
- "900 mm",
- "980 mm",
- "780 mm",
- "1220 mm",
- "740 mm",
- "860 mm",
- "1000 mm",
- "1080 mm",
- "1200 mm",
- "1340 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 28,
- "visible": true,
- "variation": true,
- "options": [
- "643 kg/km",
- "712 kg/km",
- "796 kg/km",
- "902 kg/km",
- "1009 kg/km",
- "1193 kg/km",
- "1341 kg/km",
- "1546 kg/km",
- "1797 kg/km",
- "2222 kg/km",
- "2599 kg/km",
- "3062 kg/km",
- "3686 kg/km",
- "4372 kg/km",
- "876 kg/km",
- "982 kg/km",
- "1101 kg/km",
- "1217 kg/km",
- "1412 kg/km",
- "1568 kg/km",
- "1792 kg/km",
- "2020 kg/km",
- "2493 kg/km",
- "2903 kg/km",
- "3059 kg/km",
- "3383 kg/km",
- "3858 kg/km",
- "4824 kg/km",
- "1100 kg/km",
- "1213 kg/km",
- "1339 kg/km",
- "1463 kg/km",
- "1660 kg/km",
- "1837 kg/km",
- "2049 kg/km",
- "2336 kg/km",
- "2842 kg/km",
- "3269 kg/km",
- "3590 kg/km",
- "4284 kg/km",
- "5327 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "DC resistance at 20 °C",
- "slug": "DC resistance at 20 °C",
- "position": 29,
- "visible": true,
- "variation": true,
- "options": [
- "0.868 Ω/km",
- "0.641 Ω/km",
- "0.443 Ω/km",
- "0.32 Ω/km",
- "0.253 Ω/km",
- "0.206 Ω/km",
- "0.164 Ω/km",
- "0.125 Ω/km",
- "0.1 Ω/km",
- "0.0778 Ω/km",
- "0.0605 Ω/km",
- "0.0469 Ω/km",
- "0.0367 Ω/km",
- "0.0291 Ω/km",
- "0.078 Ω/km",
- "0.061 Ω/km",
- "0.047 Ω/km",
- "0.037 Ω/km"
- ]
- },
- {
- "id": 0,
- "name": "Capacitance",
- "slug": "Capacitance",
- "position": 30,
- "visible": true,
- "variation": true,
- "options": [
- "0.22 μF/km",
- "0.25 μF/km",
- "0.28 μF/km",
- "0.31 μF/km",
- "0.34 μF/km",
- "0.36 μF/km",
- "0.4 μF/km",
- "0.44 μF/km",
- "0.48 μF/km",
- "0.54 μF/km",
- "0.61 μF/km",
- "0.67 μF/km",
- "0.76 μF/km",
- "0.84 μF/km",
- "0.17 μF/km",
- "0.19 μF/km",
- "0.21 μF/km",
- "0.23 μF/km",
- "0.27 μF/km",
- "0.3 μF/km",
- "0.32 μF/km",
- "0.49 μF/km",
- "0.55 μF/km",
- "0.13 μF/km",
- "0.15 μF/km",
- "0.16 μF/km",
- "0.2 μF/km",
- "0.24 μF/km",
- "0.29 μF/km",
- "0.39 μF/km"
- ]
- },
- {
- "id": 0,
- "name": "Inductance, trefoil",
- "slug": "Inductance, trefoil",
- "position": 31,
- "visible": true,
- "variation": true,
- "options": [
- "0.44",
- "0.42",
- "0.4",
- "0.38",
- "0.36",
- "0.35",
- "0.34",
- "0.33",
- "0.32",
- "0.3",
- "0.29",
- "0.27",
- "0.26",
- "0.25",
- "0.45",
- "0.41",
- "0.39",
- "0.28",
- "0.48",
- "0.43",
- "0.37",
- "0.31"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in air, flat 1",
- "slug": "Inductance in air, flat 1",
- "position": 32,
- "visible": true,
- "variation": true,
- "options": [
- "0.61",
- "0.59",
- "0.57",
- "0.55",
- "0.54",
- "0.51",
- "0.5",
- "0.48",
- "0.47",
- "0.45",
- "0.44",
- "0.43",
- "0.42",
- "0.4",
- "0.62",
- "0.6",
- "0.58",
- "0.56",
- "0.53",
- "0.46",
- "0.65",
- "0.63",
- "0.52",
- "0.49"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in ground, flat 1",
- "slug": "Inductance in ground, flat 1",
- "position": 33,
- "visible": true,
- "variation": true,
- "options": [
- "0.74",
- "0.71",
- "0.68",
- "0.65",
- "0.63",
- "0.6",
- "0.58",
- "0.56",
- "0.54",
- "0.5",
- "0.48",
- "0.46",
- "0.45",
- "0.42",
- "0.72",
- "0.69",
- "0.66",
- "0.64",
- "0.61",
- "0.59",
- "0.57",
- "0.55",
- "0.51",
- "0.49",
- "0.73",
- "0.7",
- "0.67",
- "0.62",
- "0.52"
- ]
- },
- {
- "id": 0,
- "name": "Conductor shortcircuit current",
- "slug": "Conductor shortcircuit current",
- "position": 34,
- "visible": true,
- "variation": true,
- "options": [
- "3.3 kA",
- "4.7 kA",
- "6.6 kA",
- "9 kA",
- "11.3 kA",
- "14.2 kA",
- "17.5 kA",
- "22.7 kA",
- "28.4 kA",
- "37.8 kA",
- "47.3 kA",
- "59.6 kA",
- "75.6 kA",
- "94 kA"
- ]
- },
- {
- "id": 0,
- "name": "Screen shortcircuit current",
- "slug": "Screen shortcircuit current",
- "position": 35,
- "visible": true,
- "variation": true,
- "options": [
- "3.2 kA",
- "5 kA",
- "7 kA",
- "10 kA"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, trefoil",
- "slug": "Heating time constant, trefoil",
- "position": 36,
- "visible": true,
- "variation": true,
- "options": [
- "191",
- "273",
- "348",
- "434",
- "522",
- "644",
- "747",
- "909",
- "1098",
- "1474",
- "1740",
- "2131",
- "2673",
- "3505",
- "266",
- "339",
- "426",
- "515",
- "634",
- "733",
- "897",
- "1080",
- "1840",
- "2105",
- "2631",
- "4323",
- "261",
- "334",
- "420",
- "506",
- "625",
- "726",
- "890",
- "1062",
- "1453",
- "1724",
- "3302"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, flat",
- "slug": "Heating time constant, flat",
- "position": 37,
- "visible": true,
- "variation": true,
- "options": [
- "135",
- "193",
- "247",
- "311",
- "375",
- "479",
- "563",
- "699",
- "865",
- "1241",
- "1525",
- "1895",
- "2461",
- "3157",
- "196",
- "251",
- "318",
- "386",
- "488",
- "574",
- "714",
- "877",
- "1273",
- "1541",
- "1707",
- "1947",
- "2503",
- "3771",
- "200",
- "257",
- "325",
- "393",
- "500",
- "590",
- "733",
- "889",
- "1305",
- "1575",
- "2000",
- "2546",
- "3152"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, trefoil",
- "slug": "Current ratings in air, trefoil",
- "position": 38,
- "visible": true,
- "variation": true,
- "options": [
- "160",
- "183",
- "228",
- "278",
- "321",
- "364",
- "418",
- "494",
- "568",
- "660",
- "767",
- "861",
- "976",
- "1187",
- "185",
- "231",
- "280",
- "323",
- "366",
- "420",
- "496",
- "569",
- "766",
- "866",
- "984",
- "187",
- "232",
- "282",
- "325",
- "367",
- "421",
- "659",
- "764",
- "1196"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, flat",
- "slug": "Current ratings in air, flat",
- "position": 39,
- "visible": true,
- "variation": true,
- "options": [
- "190",
- "219",
- "273",
- "333",
- "384",
- "432",
- "496",
- "583",
- "666",
- "755",
- "868",
- "913",
- "1017",
- "1270",
- "332",
- "494",
- "581",
- "663",
- "753",
- "866",
- "900",
- "1008",
- "1262",
- "331",
- "382",
- "429",
- "492",
- "578",
- "659",
- "750",
- "861",
- "889",
- "1000",
- "1256"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, trefoil",
- "slug": "Current ratings in ground, trefoil",
- "position": 40,
- "visible": true,
- "variation": true,
- "options": [
- "145",
- "171",
- "208",
- "248",
- "283",
- "315",
- "357",
- "413",
- "466",
- "529",
- "602",
- "690",
- "764",
- "852",
- "172",
- "210",
- "251",
- "285",
- "319",
- "361",
- "417",
- "471",
- "535",
- "609",
- "705",
- "767",
- "863",
- "174",
- "213",
- "254",
- "289",
- "322",
- "364",
- "422",
- "476",
- "541",
- "616",
- "692",
- "770",
- "878"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, flat",
- "slug": "Current ratings in ground, flat",
- "position": 41,
- "visible": true,
- "variation": true,
- "options": [
- "165",
- "194",
- "236",
- "281",
- "318",
- "350",
- "394",
- "452",
- "506",
- "558",
- "627",
- "666",
- "728",
- "842",
- "195",
- "237",
- "282",
- "319",
- "352",
- "396",
- "455",
- "510",
- "564",
- "634",
- "668",
- "734",
- "852",
- "238",
- "283",
- "321",
- "354",
- "399",
- "458",
- "514",
- "570",
- "642",
- "653",
- "731",
- "863"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-28T09:07:02",
- "translation": {
- "locale": "de",
- "id": 46774
- }
- },
- {
- "id": 44906,
- "translationKey": "na2xsf2y",
- "locale": "en",
- "slug": "na2xsf2y",
- "path": "/product/na2xsf2y",
- "name": "NA2XS(F)2Y",
- "shortDescriptionHtml": "The NA2XS(F)2Y cable is a longitudinally watertight medium-voltage cable with an aluminium conductor, XLPE insulation, and a durable PE sheath. It is designed for energy-efficient and safe installation in the ground and critical network areas. \n",
- "descriptionHtml": " For high-performance power networks with enhanced protection requirements The NA2XS(F)2Y complies with standards DIN VDE 0276-620, HD 620 S2 and IEC 60502. It is suitable for installation indoors, in cable ducts, underground, in water, outdoors, or on cable trays. Its main applications are in utility grids, industrial facilities, and substations, where additional safety reserves against moisture ingress and mechanical stress are required. Construction and material characteristics The conductor consists of multi-stranded aluminium (Class 2), surrounded by an inner conductive layer and XLPE insulation with a tightly bonded outer conductive layer – extruded in a single process for maximum operational safety. The shielding is provided by a copper wire braid with counter helix, complemented by a longitudinally watertight tape. The outer sheath is made of black PE (Type DMP2) and reliably protects against mechanical stress and moisture. Properties and fields of application The NA2XS(F)2Y is suitable for underground installation, free from silicone and cadmium, and resistant to paint-wetting impairment substances. It withstands continuous temperatures up to +90 °C and tolerates short-circuit loads up to +250 °C. Thanks to its well-designed, partial discharge-free structure, it is particularly well suited for safe power distribution in moist and complex installation environments. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSF2Y-3-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSF2Y-3-scaled.webp",
- "sku": "NA2XS(F)2Y-medium-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 39,
- "name": "Medium Voltage Cables",
- "slug": "medium-voltage-cables"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x50/16 - 6/10kV",
- "1x70/16 - 6/10kV",
- "1x95/16 - 6/10kV",
- "1x120/16 - 6/10kV",
- "1x150/25 - 6/10kV",
- "1x185/25 - 6/10kV",
- "1x240/25 - 6/10kV",
- "1x300/25 - 6/10kV",
- "1x400/35 - 6/10kV",
- "1x500/35 - 6/10kV",
- "1x630/35 - 6/10kV",
- "1x800/35 - 6/10kV",
- "1x1000/35 - 6/10kV",
- "1x50/16 - 12/20kV",
- "1x70/16 - 12/20kV",
- "1x95/16 - 12/20kV",
- "1x120/16 - 12/20kV",
- "1x150/25 - 12/20kV",
- "1x185/25 - 12/20kV",
- "1x240/25 - 12/20kV",
- "1x300/25 - 12/20kV",
- "1x400/35 - 12/20kV",
- "1x500/35 - 12/20kV",
- "1x630/35 - 12/20kV",
- "1x800/35 - 12/20kV",
- "1x1000/35 - 12/20kV",
- "1x50/16 - 18/30kV",
- "1x70/16 - 18/30kV",
- "1x95/16 - 18/30kV",
- "1x120/16 - 18/30kV",
- "1x150/25 - 18/30kV",
- "1x185/25 - 18/30kV",
- "1x240/25 - 18/30kV",
- "1x300/25 - 18/30kV",
- "1x400/35 - 18/30kV",
- "1x500/35 - 18/30kV",
- "1x630/35 - 18/30kV",
- "1x800/35 - 18/30kV",
- "1x1000/35 - 18/30kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "Aluminum"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "Conductive tape below screen",
- "slug": "Conductive tape below screen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Copper wire screen and tape",
- "slug": "Copper wire screen and tape",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Non conducting tape above screen",
- "slug": "Non conducting tape above screen",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Al Foil",
- "slug": "Al Foil",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "1x50/16",
- "1x70/16",
- "1x95/16",
- "1x120/16",
- "1x150/25",
- "1x185/25",
- "1x240/25",
- "1x300/25",
- "1x400/35",
- "1x500/35",
- "1x630/35",
- "1x800/35",
- "1x1000/35"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "6/10 kV",
- "12/20 kV",
- "18/30 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "21 kV",
- "42 kV",
- "63 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "+90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "+250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "-20 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "uncoloured"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Flame retardant",
- "slug": "Flame retardant",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "wooden or metal drums"
- ]
- },
- {
- "id": 0,
- "name": "CE-Conformity",
- "slug": "CE-Conformity",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "yes"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "RM"
- ]
- },
- {
- "id": 0,
- "name": "Conductor diameter",
- "slug": "Conductor diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "8.3 mm",
- "9.8 mm",
- "11.3 mm",
- "12.8 mm",
- "14.2 mm",
- "15.8 mm",
- "18.1 mm",
- "20.2 mm",
- "23.3 mm",
- "26.5 mm",
- "29.9 mm",
- "34.2 mm",
- "38.1 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "3.4 mm",
- "5.5 mm",
- "8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Diameter over insulation",
- "slug": "Diameter over insulation",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "16.4 mm",
- "17.9 mm",
- "19.4 mm",
- "20.9 mm",
- "22.3 mm",
- "23.9 mm",
- "26.2 mm",
- "28.3 mm",
- "31.4 mm",
- "34.6 mm",
- "38 mm",
- "42.3 mm",
- "46.2 mm",
- "20.5 mm",
- "22 mm",
- "23.5 mm",
- "25 mm",
- "26.4 mm",
- "28 mm",
- "30.3 mm",
- "32.4 mm",
- "35.5 mm",
- "38.7 mm",
- "42.1 mm",
- "46.4 mm",
- "50.3 mm",
- "25.5 mm",
- "27 mm",
- "28.5 mm",
- "30 mm",
- "33 mm",
- "35.3 mm",
- "37.4 mm",
- "40.5 mm",
- "43.7 mm",
- "47.1 mm",
- "51.4 mm",
- "55.3 mm"
- ]
- },
- {
- "id": 0,
- "name": "Minimum sheath thickness",
- "slug": "Minimum sheath thickness",
- "position": 25,
- "visible": true,
- "variation": true,
- "options": [
- "2.1 mm",
- "2.4 mm"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 26,
- "visible": true,
- "variation": true,
- "options": [
- "25 mm",
- "26 mm",
- "28 mm",
- "29 mm",
- "30 mm",
- "32 mm",
- "34 mm",
- "37 mm",
- "40 mm",
- "43 mm",
- "46 mm",
- "51 mm",
- "55 mm",
- "33 mm",
- "35 mm",
- "36 mm",
- "39 mm",
- "41 mm",
- "44 mm",
- "47 mm",
- "60 mm",
- "38 mm",
- "49 mm",
- "52 mm",
- "56 mm",
- "65 mm"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 27,
- "visible": true,
- "variation": true,
- "options": [
- "375 mm",
- "390 mm",
- "420 mm",
- "435 mm",
- "450 mm",
- "480 mm",
- "510 mm",
- "555 mm",
- "600 mm",
- "645 mm",
- "690 mm",
- "765 mm",
- "825 mm",
- "495 mm",
- "525 mm",
- "540 mm",
- "585 mm",
- "615 mm",
- "660 mm",
- "705 mm",
- "900 mm",
- "570 mm",
- "735 mm",
- "780 mm",
- "840 mm",
- "975 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 28,
- "visible": true,
- "variation": true,
- "options": [
- "625 kg/km",
- "707 kg/km",
- "808 kg/km",
- "909 kg/km",
- "1089 kg/km",
- "1232 kg/km",
- "1427 kg/km",
- "1666 kg/km",
- "2089 kg/km",
- "2456 kg/km",
- "2909 kg/km",
- "3521 kg/km",
- "4195 kg/km",
- "780 kg/km",
- "873 kg/km",
- "984 kg/km",
- "1093 kg/km",
- "1282 kg/km",
- "1434 kg/km",
- "1647 kg/km",
- "1869 kg/km",
- "2321 kg/km",
- "2728 kg/km",
- "3227 kg/km",
- "3846 kg/km",
- "4634 kg/km",
- "988 kg/km",
- "1094 kg/km",
- "1216 kg/km",
- "1335 kg/km",
- "1535 kg/km",
- "1699 kg/km",
- "1928 kg/km",
- "2167 kg/km",
- "2654 kg/km",
- "3087 kg/km",
- "3603 kg/km",
- "4284 kg/km",
- "5093 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "DC resistance at 20 °C",
- "slug": "DC resistance at 20 °C",
- "position": 29,
- "visible": true,
- "variation": true,
- "options": [
- "0.641 Ω/km",
- "0.443 Ω/km",
- "0.32 Ω/km",
- "0.253 Ω/km",
- "0.206 Ω/km",
- "0.164 Ω/km",
- "0.125 Ω/km",
- "0.1 Ω/km",
- "0.0778 Ω/km",
- "0.0605 Ω/km",
- "0.0469 Ω/km",
- "0.0367 Ω/km",
- "0.0291 Ω/km"
- ]
- },
- {
- "id": 0,
- "name": "Capacitance",
- "slug": "Capacitance",
- "position": 30,
- "visible": true,
- "variation": true,
- "options": [
- "0.24 μF/km",
- "0.28 μF/km",
- "0.31 μF/km",
- "0.34 μF/km",
- "0.36 μF/km",
- "0.4 μF/km",
- "0.44 μF/km",
- "0.48 μF/km",
- "0.54 μF/km",
- "0.61 μF/km",
- "0.67 μF/km",
- "0.76 μF/km",
- "0.84 μF/km",
- "0.17 μF/km",
- "0.19 μF/km",
- "0.21 μF/km",
- "0.23 μF/km",
- "0.25 μF/km",
- "0.27 μF/km",
- "0.3 μF/km",
- "0.32 μF/km",
- "0.49 μF/km",
- "0.13 μF/km",
- "0.15 μF/km",
- "0.16 μF/km",
- "0.2 μF/km",
- "0.22 μF/km",
- "0.26 μF/km",
- "0.29 μF/km",
- "0.39 μF/km"
- ]
- },
- {
- "id": 0,
- "name": "Inductance, trefoil",
- "slug": "Inductance, trefoil",
- "position": 31,
- "visible": true,
- "variation": true,
- "options": [
- "0.41",
- "0.39",
- "0.37",
- "0.36",
- "0.35",
- "0.33",
- "0.32",
- "0.31",
- "0.29",
- "0.28",
- "0.27",
- "0.26",
- "0.25",
- "0.44",
- "0.42",
- "0.4",
- "0.34",
- "0.3",
- "0.48",
- "0.45",
- "0.43",
- "0.38"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in air, flat 1",
- "slug": "Inductance in air, flat 1",
- "position": 32,
- "visible": true,
- "variation": true,
- "options": [
- "0.59",
- "0.56",
- "0.55",
- "0.53",
- "0.51",
- "0.5",
- "0.48",
- "0.47",
- "0.45",
- "0.43",
- "0.42",
- "0.41",
- "0.4",
- "0.62",
- "0.57",
- "0.54",
- "0.52",
- "0.49",
- "0.44",
- "0.65",
- "0.6",
- "0.58",
- "0.46"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in ground, flat 1",
- "slug": "Inductance in ground, flat 1",
- "position": 33,
- "visible": true,
- "variation": true,
- "options": [
- "0.71",
- "0.68",
- "0.65",
- "0.63",
- "0.6",
- "0.58",
- "0.56",
- "0.54",
- "0.5",
- "0.48",
- "0.46",
- "0.44",
- "0.42",
- "0.72",
- "0.69",
- "0.66",
- "0.64",
- "0.61",
- "0.59",
- "0.55",
- "0.51",
- "0.49",
- "0.47",
- "0.45",
- "0.73",
- "0.7",
- "0.67",
- "0.62",
- "0.53"
- ]
- },
- {
- "id": 0,
- "name": "Conductor shortcircuit current",
- "slug": "Conductor shortcircuit current",
- "position": 34,
- "visible": true,
- "variation": true,
- "options": [
- "4.7 kA",
- "6.6 kA",
- "9 kA",
- "11.3 kA",
- "14.2 kA",
- "17.5 kA",
- "22.7 kA",
- "28.4 kA",
- "37.8 kA",
- "47.3 kA",
- "59.6 kA",
- "75.6 kA",
- "94 kA",
- "94.6 kA"
- ]
- },
- {
- "id": 0,
- "name": "Screen shortcircuit current",
- "slug": "Screen shortcircuit current",
- "position": 35,
- "visible": true,
- "variation": true,
- "options": [
- "3.2 kA",
- "5 kA",
- "7 kA"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, trefoil",
- "slug": "Heating time constant, trefoil",
- "position": 36,
- "visible": true,
- "variation": true,
- "options": [
- "277",
- "353",
- "443",
- "529",
- "655",
- "760",
- "924",
- "1110",
- "1506",
- "1773",
- "2158",
- "2716",
- "3505",
- "269",
- "344",
- "433",
- "518",
- "638",
- "749",
- "909",
- "1098",
- "1485",
- "1757",
- "2131",
- "2673",
- "3315",
- "263",
- "337",
- "425",
- "510",
- "632",
- "735",
- "897",
- "1080",
- "1453",
- "1740",
- "2105",
- "2631"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, flat",
- "slug": "Heating time constant, flat",
- "position": 37,
- "visible": true,
- "variation": true,
- "options": [
- "195",
- "249",
- "316",
- "379",
- "486",
- "574",
- "710",
- "865",
- "1252",
- "1508",
- "1921",
- "2461",
- "3157",
- "198",
- "254",
- "321",
- "387",
- "485",
- "583",
- "722",
- "883",
- "1273",
- "1541",
- "1947",
- "2503",
- "3249",
- "202",
- "258",
- "327",
- "395",
- "504",
- "594",
- "737",
- "907",
- "1230",
- "1591",
- "2000",
- "2546",
- "3381"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, trefoil",
- "slug": "Current ratings in air, trefoil",
- "position": 38,
- "visible": true,
- "variation": true,
- "options": [
- "183",
- "228",
- "278",
- "321",
- "364",
- "418",
- "494",
- "568",
- "660",
- "767",
- "855",
- "968",
- "1187",
- "185",
- "231",
- "280",
- "323",
- "366",
- "420",
- "496",
- "569",
- "766",
- "861",
- "976",
- "1095",
- "187",
- "232",
- "282",
- "325",
- "367",
- "421",
- "659",
- "764",
- "866",
- "984"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, flat",
- "slug": "Current ratings in air, flat",
- "position": 39,
- "visible": true,
- "variation": true,
- "options": [
- "219",
- "273",
- "333",
- "384",
- "432",
- "496",
- "583",
- "666",
- "755",
- "868",
- "907",
- "1017",
- "1270",
- "332",
- "494",
- "581",
- "663",
- "753",
- "866",
- "900",
- "1008",
- "1107",
- "331",
- "382",
- "429",
- "492",
- "578",
- "659",
- "750",
- "861",
- "889",
- "1000",
- "1085"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, trefoil",
- "slug": "Current ratings in ground, trefoil",
- "position": 40,
- "visible": true,
- "variation": true,
- "options": [
- "171",
- "208",
- "248",
- "283",
- "315",
- "357",
- "413",
- "466",
- "529",
- "602",
- "688",
- "764",
- "852",
- "172",
- "210",
- "251",
- "285",
- "319",
- "361",
- "417",
- "471",
- "535",
- "609",
- "690",
- "837",
- "174",
- "213",
- "254",
- "289",
- "322",
- "364",
- "422",
- "476",
- "541",
- "616",
- "692",
- "770",
- "841"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, flat",
- "slug": "Current ratings in ground, flat",
- "position": 41,
- "visible": true,
- "variation": true,
- "options": [
- "194",
- "236",
- "281",
- "318",
- "350",
- "394",
- "452",
- "506",
- "558",
- "627",
- "664",
- "731",
- "842",
- "195",
- "237",
- "282",
- "319",
- "352",
- "396",
- "455",
- "510",
- "564",
- "634",
- "668",
- "770",
- "238",
- "283",
- "321",
- "354",
- "399",
- "458",
- "514",
- "570",
- "642",
- "653",
- "734",
- "784"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-28T09:03:38",
- "translation": null
- },
- {
- "id": 44743,
- "translationKey": "na2xs2y",
- "locale": "en",
- "slug": "na2xs2y",
- "path": "/product/na2xs2y",
- "name": "NA2XS2Y",
- "shortDescriptionHtml": "The NA2XS2Y cable is a high-performance medium-voltage cable with an aluminium conductor, XLPE insulation, and a robust PE sheath. It is perfectly suited for underground applications and impresses with its thermal load capacity, mechanical durability, and partial discharge-free design. \n",
- "descriptionHtml": " For harsh environments and heavy loads The NA2XS2Y complies with DIN VDE 0276-620, HD 620 S2 and IEC 60502 standards, and is specifically designed for fixed installation indoors, in cable ducts, outdoors, in soil and water. It is commonly used in industrial facilities, switching stations, and power plants, especially where the cable is exposed to high mechanical stress during installation or operation. Construction and technical features The cable features a multi-stranded aluminium conductor (Class 2 according to DIN VDE 0295 / IEC 60228). The XLPE insulation (Type DIX8) is inseparably bonded to the outer conductive layer and, together with the inner conductive layer, ensures partial discharge-free operation. The shielding consists of a copper wire braid with counter helix. The black PE sheath (Type DMP2) protects against moisture, mechanical pressure, and chemical exposure – but is not flame-retardant. Special features and application benefits NA2XS2Y is suitable for underground installation and for use at temperatures as low as -20 °C. It is free from silicone and cadmium, contains no paint-wetting impairment substances, and handles a continuous operating temperature of up to +90 °C, and up to +250 °C in short-circuit conditions. The black PE sheath makes this cable the ideal high-resilience solution for permanent underground medium-voltage installations. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NA2XS2Y-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XS2Y-scaled.webp",
- "sku": "NA2XS2Y-medium-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 39,
- "name": "Medium Voltage Cables",
- "slug": "medium-voltage-cables"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16 - 6/10kV",
- "1x50/16 - 6/10kV",
- "1x70/16 - 6/10kV",
- "1x95/16 - 6/10kV",
- "1x120/16 - 6/10kV",
- "1x150/25 - 6/10kV",
- "1x185/25 - 6/10kV",
- "1x240/25 - 6/10kV",
- "1x300/25 - 6/10kV",
- "1x400/35 - 6/10kV",
- "1x500/35 - 6/10kV",
- "1x630/35 - 6/10kV",
- "1x800/35 - 6/10kV",
- "1x1000/35 - 6/10kV",
- "1x50/16 - 12/20kV",
- "1x70/16 - 12/20kV",
- "1x95/16 - 12/20kV",
- "1x120/16 - 12/20kV",
- "1x150/25 - 12/20kV",
- "1x185/25 - 12/20kV",
- "1x240/25 - 12/20kV",
- "1x300/25 - 12/20kV",
- "1x400/35 - 12/20kV",
- "1x500/35 - 12/20kV",
- "1x630/35 - 12/20kV",
- "1x800/35 - 12/20kV",
- "1x1000/35 - 12/20kV",
- "1x50/16 - 18/30kV",
- "1x70/16 - 18/30kV",
- "1x95/16 - 18/30kV",
- "1x120/16 - 18/30kV",
- "1x150/25 - 18/30kV",
- "1x185/25 - 18/30kV",
- "1x240/25 - 18/30kV",
- "1x300/25 - 18/30kV",
- "1x400/35 - 18/30kV",
- "1x500/35 - 18/30kV",
- "1x630/35 - 18/30kV",
- "1x800/35 - 18/30kV",
- "1x1000/35 - 18/30kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "Aluminum"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "Conductive tape below screen",
- "slug": "Conductive tape below screen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Copper wire screen and tape",
- "slug": "Copper wire screen and tape",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Non conducting tape above screen",
- "slug": "Non conducting tape above screen",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Al Foil",
- "slug": "Al Foil",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16",
- "1x50/16",
- "1x70/16",
- "1x95/16",
- "1x120/16",
- "1x150/25",
- "1x185/25",
- "1x240/25",
- "1x300/25",
- "1x400/35",
- "1x500/35",
- "1x630/35",
- "1x800/35",
- "1x1000/35"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "6/10 kV",
- "12/20 kV",
- "18/30 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "21 kV",
- "42 kV",
- "63 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "+90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "+250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +90 °C",
- "-35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C",
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "-20 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "uncoloured"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Flame retardant",
- "slug": "Flame retardant",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "wooden or metal drums"
- ]
- },
- {
- "id": 0,
- "name": "CE-Conformity",
- "slug": "CE-Conformity",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "yes"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "RM"
- ]
- },
- {
- "id": 0,
- "name": "Conductor diameter",
- "slug": "Conductor diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "7.2 mm",
- "8.3 mm",
- "9.8 mm",
- "11.3 mm",
- "12.8 mm",
- "14.2 mm",
- "15.8 mm",
- "18.1 mm",
- "20.2 mm",
- "23.3 mm",
- "26.5 mm",
- "29.9 mm",
- "34.2 mm",
- "38.1 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "3.4 mm",
- "5.5 mm",
- "8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Diameter over insulation",
- "slug": "Diameter over insulation",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "15.3 mm",
- "16.4 mm",
- "17.9 mm",
- "19.4 mm",
- "20.9 mm",
- "22.3 mm",
- "23.9 mm",
- "26.2 mm",
- "28.3 mm",
- "31.4 mm",
- "34.6 mm",
- "38 mm",
- "42.3 mm",
- "46.2 mm",
- "20.6 mm",
- "22.1 mm",
- "23.6 mm",
- "25.1 mm",
- "26.5 mm",
- "28.1 mm",
- "30.4 mm",
- "32.5 mm",
- "35.6 mm",
- "38.8 mm",
- "42.2 mm",
- "46.5 mm",
- "50.4 mm",
- "25.6 mm",
- "27.1 mm",
- "28.6 mm",
- "30.1 mm",
- "31.5 mm",
- "33.1 mm",
- "35.4 mm",
- "37.5 mm",
- "40.6 mm",
- "43.8 mm",
- "47.2 mm",
- "51.5 mm",
- "55.4 mm"
- ]
- },
- {
- "id": 0,
- "name": "Minimum sheath thickness",
- "slug": "Minimum sheath thickness",
- "position": 25,
- "visible": true,
- "variation": true,
- "options": [
- "2.1 mm",
- "2.4 mm"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 26,
- "visible": true,
- "variation": true,
- "options": [
- "23 mm",
- "25 mm",
- "26 mm",
- "28 mm",
- "29 mm",
- "30 mm",
- "32 mm",
- "34 mm",
- "37 mm",
- "40 mm",
- "43 mm",
- "46 mm",
- "51 mm",
- "57 mm",
- "31 mm",
- "35 mm",
- "39 mm",
- "41 mm",
- "44 mm",
- "47 mm",
- "56 mm",
- "61 mm",
- "36 mm",
- "42 mm",
- "49 mm",
- "53 mm",
- "67 mm"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 27,
- "visible": true,
- "variation": true,
- "options": [
- "345 mm",
- "375 mm",
- "390 mm",
- "420 mm",
- "435 mm",
- "450 mm",
- "480 mm",
- "510 mm",
- "555 mm",
- "600 mm",
- "645 mm",
- "690 mm",
- "765 mm",
- "855 mm",
- "465 mm",
- "525 mm",
- "585 mm",
- "615 mm",
- "660 mm",
- "705 mm",
- "840 mm",
- "915 mm",
- "540 mm",
- "630 mm",
- "735 mm",
- "795 mm",
- "1005 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 28,
- "visible": true,
- "variation": true,
- "options": [
- "563 kg/km",
- "624 kg/km",
- "707 kg/km",
- "808 kg/km",
- "905 kg/km",
- "1085 kg/km",
- "1226 kg/km",
- "1423 kg/km",
- "1666 kg/km",
- "2082 kg/km",
- "2447 kg/km",
- "2909 kg/km",
- "3520 kg/km",
- "4422 kg/km",
- "795 kg/km",
- "888 kg/km",
- "999 kg/km",
- "1108 kg/km",
- "1301 kg/km",
- "1452 kg/km",
- "1671 kg/km",
- "1893 kg/km",
- "2357 kg/km",
- "2757 kg/km",
- "3227 kg/km",
- "3856 kg/km",
- "4824 kg/km",
- "1009 kg/km",
- "1115 kg/km",
- "1237 kg/km",
- "1357 kg/km",
- "1561 kg/km",
- "1721 kg/km",
- "1956 kg/km",
- "2203 kg/km",
- "2693 kg/km",
- "3119 kg/km",
- "3617 kg/km",
- "4300 kg/km",
- "5326 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "DC resistance at 20 °C",
- "slug": "DC resistance at 20 °C",
- "position": 29,
- "visible": true,
- "variation": true,
- "options": [
- "0.868 Ω/km",
- "0.641 Ω/km",
- "0.443 Ω/km",
- "0.32 Ω/km",
- "0.253 Ω/km",
- "0.206 Ω/km",
- "0.164 Ω/km",
- "0.125 Ω/km",
- "0.1 Ω/km",
- "0.0778 Ω/km",
- "0.0605 Ω/km",
- "0.0469 Ω/km",
- "0.0367 Ω/km",
- "0.0291 Ω/km",
- "0.078 Ω/km",
- "0.061 Ω/km",
- "0.047 Ω/km",
- "0.037 Ω/km"
- ]
- },
- {
- "id": 0,
- "name": "Capacitance",
- "slug": "Capacitance",
- "position": 30,
- "visible": true,
- "variation": true,
- "options": [
- "0.22 μF/km",
- "0.25 μF/km",
- "0.28 μF/km",
- "0.31 μF/km",
- "0.34 μF/km",
- "0.36 μF/km",
- "0.4 μF/km",
- "0.44 μF/km",
- "0.48 μF/km",
- "0.54 μF/km",
- "0.61 μF/km",
- "0.66 μF/km",
- "0.76 μF/km",
- "0.84 μF/km",
- "0.17 μF/km",
- "0.19 μF/km",
- "0.21 μF/km",
- "0.23 μF/km",
- "0.27 μF/km",
- "0.3 μF/km",
- "0.32 μF/km",
- "0.49 μF/km",
- "0.55 μF/km",
- "0.13 μF/km",
- "0.15 μF/km",
- "0.16 μF/km",
- "0.2 μF/km",
- "0.24 μF/km",
- "0.26 μF/km",
- "0.29 μF/km",
- "0.39 μF/km"
- ]
- },
- {
- "id": 0,
- "name": "Inductance, trefoil",
- "slug": "Inductance, trefoil",
- "position": 31,
- "visible": true,
- "variation": true,
- "options": [
- "0.43",
- "0.42",
- "0.39",
- "0.38",
- "0.36",
- "0.35",
- "0.33",
- "0.32",
- "0.31",
- "0.3",
- "0.28",
- "0.27",
- "0.26",
- "0.25",
- "0.44",
- "0.4",
- "0.37",
- "0.34",
- "0.29",
- "0.48",
- "0.45",
- "0.41"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in air, flat 1",
- "slug": "Inductance in air, flat 1",
- "position": 32,
- "visible": true,
- "variation": true,
- "options": [
- "0.61",
- "0.6",
- "0.56",
- "0.55",
- "0.53",
- "0.51",
- "0.5",
- "0.48",
- "0.47",
- "0.45",
- "0.43",
- "0.42",
- "0.41",
- "0.4",
- "0.62",
- "0.59",
- "0.57",
- "0.54",
- "0.52",
- "0.49",
- "0.44",
- "0.65",
- "0.58",
- "0.46"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in ground, flat 1",
- "slug": "Inductance in ground, flat 1",
- "position": 33,
- "visible": true,
- "variation": true,
- "options": [
- "0.73",
- "0.71",
- "0.68",
- "0.65",
- "0.63",
- "0.6",
- "0.58",
- "0.55",
- "0.54",
- "0.5",
- "0.48",
- "0.46",
- "0.44",
- "0.42",
- "0.72",
- "0.69",
- "0.66",
- "0.64",
- "0.61",
- "0.59",
- "0.56",
- "0.51",
- "0.49",
- "0.47",
- "0.45",
- "0.7",
- "0.67",
- "0.62",
- "0.52"
- ]
- },
- {
- "id": 0,
- "name": "Conductor shortcircuit current",
- "slug": "Conductor shortcircuit current",
- "position": 34,
- "visible": true,
- "variation": true,
- "options": [
- "3.3 kA",
- "4.7 kA",
- "6.6 kA",
- "9 kA",
- "11.3 kA",
- "14.2 kA",
- "17.5 kA",
- "22.7 kA",
- "28.4 kA",
- "37.8 kA",
- "47.3 kA",
- "59.6 kA",
- "75.6 kA",
- "94 kA"
- ]
- },
- {
- "id": 0,
- "name": "Screen shortcircuit current",
- "slug": "Screen shortcircuit current",
- "position": 35,
- "visible": true,
- "variation": true,
- "options": [
- "3.2 kA",
- "5 kA",
- "7 kA"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, trefoil",
- "slug": "Heating time constant, trefoil",
- "position": 36,
- "visible": true,
- "variation": true,
- "options": [
- "194",
- "270",
- "353",
- "440",
- "528",
- "655",
- "760",
- "928",
- "1098",
- "1496",
- "1773",
- "2158",
- "2716",
- "3505",
- "269",
- "344",
- "433",
- "520",
- "643",
- "749",
- "913",
- "1485",
- "1757",
- "2131",
- "2673",
- "4323",
- "263",
- "337",
- "424",
- "631",
- "733",
- "897",
- "1068",
- "1453",
- "1740",
- "2631",
- "3302"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, flat",
- "slug": "Heating time constant, flat",
- "position": 37,
- "visible": true,
- "variation": true,
- "options": [
- "136",
- "191",
- "249",
- "314",
- "379",
- "486",
- "574",
- "710",
- "859",
- "1262",
- "1508",
- "1895",
- "2461",
- "3157",
- "198",
- "254",
- "321",
- "388",
- "495",
- "583",
- "726",
- "883",
- "1273",
- "1541",
- "1947",
- "2503",
- "3771",
- "202",
- "258",
- "327",
- "400",
- "501",
- "592",
- "733",
- "895",
- "1294",
- "1575",
- "2000",
- "2546",
- "3152"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, trefoil",
- "slug": "Current ratings in air, trefoil",
- "position": 38,
- "visible": true,
- "variation": true,
- "options": [
- "153",
- "183",
- "228",
- "278",
- "321",
- "364",
- "418",
- "494",
- "568",
- "660",
- "767",
- "855",
- "968",
- "1187",
- "185",
- "231",
- "280",
- "323",
- "366",
- "420",
- "496",
- "569",
- "766",
- "861",
- "976",
- "187",
- "232",
- "282",
- "325",
- "367",
- "421",
- "659",
- "764",
- "984",
- "1196"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, flat",
- "slug": "Current ratings in air, flat",
- "position": 39,
- "visible": true,
- "variation": true,
- "options": [
- "182",
- "219",
- "273",
- "333",
- "384",
- "432",
- "496",
- "583",
- "666",
- "755",
- "868",
- "913",
- "1017",
- "1270",
- "332",
- "494",
- "581",
- "663",
- "753",
- "866",
- "900",
- "1008",
- "1262",
- "331",
- "382",
- "429",
- "492",
- "578",
- "659",
- "750",
- "861",
- "889",
- "1000",
- "1256"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, trefoil",
- "slug": "Current ratings in ground, trefoil",
- "position": 40,
- "visible": true,
- "variation": true,
- "options": [
- "145",
- "171",
- "208",
- "248",
- "283",
- "315",
- "357",
- "413",
- "466",
- "529",
- "602",
- "685",
- "764",
- "852",
- "172",
- "210",
- "251",
- "285",
- "319",
- "361",
- "417",
- "471",
- "535",
- "609",
- "690",
- "863",
- "174",
- "213",
- "254",
- "289",
- "322",
- "364",
- "422",
- "476",
- "541",
- "616",
- "770",
- "878"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, flat",
- "slug": "Current ratings in ground, flat",
- "position": 41,
- "visible": true,
- "variation": true,
- "options": [
- "165",
- "194",
- "236",
- "281",
- "318",
- "350",
- "394",
- "452",
- "506",
- "558",
- "627",
- "668",
- "731",
- "842",
- "195",
- "237",
- "282",
- "319",
- "352",
- "396",
- "455",
- "510",
- "564",
- "634",
- "852",
- "238",
- "283",
- "321",
- "354",
- "399",
- "458",
- "514",
- "570",
- "642",
- "734",
- "863"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-28T09:27:17",
- "translation": null
- },
- {
- "id": 44573,
- "translationKey": "na2xsy",
- "locale": "en",
- "slug": "na2xsy",
- "path": "/product/na2xsy",
- "name": "NA2XSY",
- "shortDescriptionHtml": "The NA2XSY cable is a medium-voltage cable with aluminium conductor, XLPE insulation, and copper shielding, suitable for underground installation. It is designed for demanding power distribution tasks and stands out for its high operational reliability, excellent installation properties, and thermal resistance up to 90 °C. \n",
- "descriptionHtml": " For high-performance medium-voltage networks The NA2XSY meets the requirements of DIN VDE 0276-620, HD 620 S2, and IEC 60502. It is suitable for installation indoors, in cable ducts, underground, in water, or outdoors – but only when installed with protection. Typical areas of application include industrial plants, power stations, and switching stations where medium voltage must be transported with high operational safety. Technical construction The conductor consists of multi-stranded aluminium (Class 2 according to VDE 0295 / IEC 60228). The XLPE insulation is permanently bonded to the outer conductive layer to ensure a partial discharge-free structure. The structure also includes an inner conductive layer, conductive tape, a copper wire screen with counter helix, additional tape, and a red PVC sheath. The cable is flame-retardant and approved for underground installation (depending on the type). Application and properties Thanks to its precise construction, the NA2XSY can also be easily installed in complex routing scenarios. It is free from silicone and cadmium, contains no paint-wetting impairment substances, and withstands short-circuit temperatures up to +250 °C. The concentric structure and tightly bonded conductive layers make this cable a reliable solution for medium-voltage power distribution where operational safety and ease of installation are essential. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSY-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSY-scaled.webp",
- "sku": "NA2XSY-medium-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 39,
- "name": "Medium Voltage Cables",
- "slug": "medium-voltage-cables"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16 - 6/10kV",
- "1x50/16 - 6/10kV",
- "1x70/16 - 6/10kV",
- "1x95/16 - 6/10kV",
- "1x120/16 - 6/10kV",
- "1x150/25 - 6/10kV",
- "1x185/16 - 6/10kV",
- "1x185/25 - 6/10kV",
- "1x240/25 - 6/10kV",
- "1x300/25 - 6/10kV",
- "1x400/35 - 6/10kV",
- "1x500/35 - 6/10kV",
- "1x630/35 - 6/10kV",
- "1x800/35 - 6/10kV",
- "1x1000/35 - 6/10kV",
- "1x50/16 - 12/20kV",
- "1x70/16 - 12/20kV",
- "1x95/16 - 12/20kV",
- "1x120/16 - 12/20kV",
- "1x150/25 - 12/20kV",
- "1x185/16 - 12/20kV",
- "1x185/25 - 12/20kV",
- "1x240/25 - 12/20kV",
- "1x300/25 - 12/20kV",
- "1x400/35 - 12/20kV",
- "1x500/35 - 12/20kV",
- "1x630/35 - 12/20kV",
- "1x800/35 - 12/20kV",
- "1x1000/35 - 12/20kV",
- "1x50/16 - 18/30kV",
- "1x70/16 - 18/30kV",
- "1x95/16 - 18/30kV",
- "1x120/16 - 18/30kV",
- "1x150/25 - 18/30kV",
- "1x185/25 - 18/30kV",
- "1x240/25 - 18/30kV",
- "1x300/25 - 18/30kV",
- "1x400/35 - 18/30kV",
- "1x500/35 - 18/30kV",
- "1x630/35 - 18/30kV",
- "1x800/35 - 18/30kV",
- "1x1000/35 - 18/30kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "Aluminum"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "Conductive tape below screen",
- "slug": "Conductive tape below screen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Copper wire screen and tape",
- "slug": "Copper wire screen and tape",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Non conducting tape above screen",
- "slug": "Non conducting tape above screen",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Al Foil",
- "slug": "Al Foil",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16",
- "1x50/16",
- "1x70/16",
- "1x95/16",
- "1x120/16",
- "1x150/25",
- "1x185/16",
- "1x185/25",
- "1x240/25",
- "1x300/25",
- "1x400/35",
- "1x500/35",
- "1x630/35",
- "1x800/35",
- "1x1000/35"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "6/10 kV",
- "12/20 kV",
- "18/30 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "21 kV",
- "42 kV",
- "63 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "+90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "+250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "-25 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C",
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "uncoloured"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "red or black"
- ]
- },
- {
- "id": 0,
- "name": "Flame retardant",
- "slug": "Flame retardant",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "EN 60 332-1-2",
- "EN 60 332-1-3",
- "EN 60 332-1-4",
- "EN 60 332-1-5",
- "EN 60 332-1-6",
- "EN 60 332-1-7",
- "EN 60 332-1-8",
- "EN 60 332-1-9",
- "EN 60 332-1-10",
- "EN 60 332-1-11",
- "EN 60 332-1-12",
- "EN 60 332-1-13",
- "EN 60 332-1-14",
- "EN 60 332-1-15",
- "EN 60 332-1-16"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "Eca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "wooden or metal drums"
- ]
- },
- {
- "id": 0,
- "name": "CE-Conformity",
- "slug": "CE-Conformity",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "yes"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "RM"
- ]
- },
- {
- "id": 0,
- "name": "Conductor diameter",
- "slug": "Conductor diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "7.2 mm",
- "8.3 mm",
- "9.8 mm",
- "11.3 mm",
- "12.8 mm",
- "14.2 mm",
- "15.8 mm",
- "18.1 mm",
- "20.2 mm",
- "23.3 mm",
- "26.5 mm",
- "29.9 mm",
- "34.2 mm",
- "38.1 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "3.4 mm",
- "5.5 mm",
- "8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Diameter over insulation",
- "slug": "Diameter over insulation",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "15.3 mm",
- "16.4 mm",
- "17.9 mm",
- "19.4 mm",
- "20.9 mm",
- "22.3 mm",
- "23.9 mm",
- "26.2 mm",
- "28.3 mm",
- "31.4 mm",
- "34.6 mm",
- "38 mm",
- "42.3 mm",
- "46.2 mm",
- "20.5 mm",
- "22 mm",
- "23.5 mm",
- "25 mm",
- "26.4 mm",
- "28 mm",
- "30.3 mm",
- "32.4 mm",
- "35.5 mm",
- "38.7 mm",
- "42.1 mm",
- "46.4 mm",
- "50.3 mm",
- "25.5 mm",
- "27 mm",
- "28.5 mm",
- "30 mm",
- "33 mm",
- "35.3 mm",
- "37.4 mm",
- "40.5 mm",
- "43.7 mm",
- "47.1 mm",
- "51.4 mm",
- "55.3 mm"
- ]
- },
- {
- "id": 0,
- "name": "Minimum sheath thickness",
- "slug": "Minimum sheath thickness",
- "position": 25,
- "visible": true,
- "variation": true,
- "options": [
- "2.1 mm",
- "2.4 mm",
- "2.9 mm",
- "3 mm"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 26,
- "visible": true,
- "variation": true,
- "options": [
- "24 mm",
- "25 mm",
- "27 mm",
- "28 mm",
- "30 mm",
- "31 mm",
- "33 mm",
- "35 mm",
- "38 mm",
- "40 mm",
- "43 mm",
- "47 mm",
- "51 mm",
- "57 mm",
- "29 mm",
- "32 mm",
- "34 mm",
- "36 mm",
- "37 mm",
- "39 mm",
- "41 mm",
- "44 mm",
- "48 mm",
- "56 mm",
- "61 mm",
- "42 mm",
- "46 mm",
- "49 mm",
- "53 mm",
- "67 mm"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 27,
- "visible": true,
- "variation": true,
- "options": [
- "360 mm",
- "375 mm",
- "405 mm",
- "420 mm",
- "450 mm",
- "465 mm",
- "495 mm",
- "525 mm",
- "570 mm",
- "600 mm",
- "645 mm",
- "705 mm",
- "765 mm",
- "855 mm",
- "435 mm",
- "480 mm",
- "510 mm",
- "540 mm",
- "555 mm",
- "585 mm",
- "615 mm",
- "660 mm",
- "720 mm",
- "840 mm",
- "915 mm",
- "630 mm",
- "690 mm",
- "735 mm",
- "795 mm",
- "1005 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 28,
- "visible": true,
- "variation": true,
- "options": [
- "668 kg/km",
- "734 kg/km",
- "824 kg/km",
- "932 kg/km",
- "1036 kg/km",
- "1222 kg/km",
- "1283 kg/km",
- "1372 kg/km",
- "1579 kg/km",
- "1834 kg/km",
- "2263 kg/km",
- "2643 kg/km",
- "3120 kg/km",
- "3760 kg/km",
- "4724 kg/km",
- "936 kg/km",
- "1037 kg/km",
- "1157 kg/km",
- "1274 kg/km",
- "1491 kg/km",
- "1546 kg/km",
- "1636 kg/km",
- "1863 kg/km",
- "2084 kg/km",
- "2567 kg/km",
- "2992 kg/km",
- "3520 kg/km",
- "4182 kg/km",
- "5165 kg/km",
- "1176 kg/km",
- "1290 kg/km",
- "1421 kg/km",
- "1548 kg/km",
- "1757 kg/km",
- "1930 kg/km",
- "2172 kg/km",
- "2424 kg/km",
- "2928 kg/km",
- "3390 kg/km",
- "3937 kg/km",
- "4667 kg/km",
- "5703 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "DC resistance at 20 °C",
- "slug": "DC resistance at 20 °C",
- "position": 29,
- "visible": true,
- "variation": true,
- "options": [
- "0.868 Ω/km",
- "0.641 Ω/km",
- "0.443 Ω/km",
- "0.32 Ω/km",
- "0.253 Ω/km",
- "0.206 Ω/km",
- "0.164 Ω/km",
- "0.125 Ω/km",
- "0.1 Ω/km",
- "0.0778 Ω/km",
- "0.0605 Ω/km",
- "0.0469 Ω/km",
- "0.0367 Ω/km",
- "0.0291 Ω/km"
- ]
- },
- {
- "id": 0,
- "name": "Capacitance",
- "slug": "Capacitance",
- "position": 30,
- "visible": true,
- "variation": true,
- "options": [
- "0.22 μF/km",
- "0.25 μF/km",
- "0.28 μF/km",
- "0.31 μF/km",
- "0.34 μF/km",
- "0.37 μF/km",
- "0.4 μF/km",
- "0.41 μF/km",
- "0.44 μF/km",
- "0.48 μF/km",
- "0.54 μF/km",
- "0.62 μF/km",
- "0.67 μF/km",
- "0.76 μF/km",
- "0.84 μF/km",
- "0.17 μF/km",
- "0.19 μF/km",
- "0.21 μF/km",
- "0.23 μF/km",
- "0.27 μF/km",
- "0.3 μF/km",
- "0.32 μF/km",
- "0.36 μF/km",
- "0.49 μF/km",
- "0.13 μF/km",
- "0.15 μF/km",
- "0.16 μF/km",
- "0.2 μF/km",
- "0.24 μF/km",
- "0.29 μF/km",
- "0.39 μF/km"
- ]
- },
- {
- "id": 0,
- "name": "Inductance, trefoil",
- "slug": "Inductance, trefoil",
- "position": 31,
- "visible": true,
- "variation": true,
- "options": [
- "0.44",
- "0.42",
- "0.39",
- "0.37",
- "0.36",
- "0.34",
- "0.33",
- "0.32",
- "0.31",
- "0.29",
- "0.28",
- "0.27",
- "0.26",
- "0.25",
- "0.4",
- "0.35",
- "0.3",
- "0.48",
- "0.45",
- "0.43",
- "0.41"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in air, flat 1",
- "slug": "Inductance in air, flat 1",
- "position": 32,
- "visible": true,
- "variation": true,
- "options": [
- "0.61",
- "0.6",
- "0.57",
- "0.54",
- "0.53",
- "0.51",
- "0.49",
- "0.48",
- "0.47",
- "0.45",
- "0.43",
- "0.42",
- "0.41",
- "0.4",
- "0.62",
- "0.58",
- "0.56",
- "0.52",
- "0.46",
- "0.44",
- "0.65",
- "0.63",
- "0.55"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in ground, flat 1",
- "slug": "Inductance in ground, flat 1",
- "position": 33,
- "visible": true,
- "variation": true,
- "options": [
- "0.74",
- "0.71",
- "0.68",
- "0.65",
- "0.62",
- "0.59",
- "0.57",
- "0.55",
- "0.54",
- "0.5",
- "0.48",
- "0.46",
- "0.44",
- "0.42",
- "0.72",
- "0.69",
- "0.66",
- "0.64",
- "0.61",
- "0.6",
- "0.51",
- "0.49",
- "0.73",
- "0.7",
- "0.67",
- "0.58",
- "0.56",
- "0.53",
- "0.47",
- "0.45"
- ]
- },
- {
- "id": 0,
- "name": "Conductor shortcircuit current",
- "slug": "Conductor shortcircuit current",
- "position": 34,
- "visible": true,
- "variation": true,
- "options": [
- "3.3 kA",
- "4.7 kA",
- "6.6 kA",
- "9 kA",
- "11.3 kA",
- "14.2 kA",
- "17.5 kA",
- "22.7 kA",
- "28.4 kA",
- "37.8 kA",
- "47.3 kA",
- "59.6 kA",
- "75.6 kA",
- "94 kA",
- "94.6 kA"
- ]
- },
- {
- "id": 0,
- "name": "Screen shortcircuit current",
- "slug": "Screen shortcircuit current",
- "position": 35,
- "visible": true,
- "variation": true,
- "options": [
- "3.2 kA",
- "5 kA",
- "7 kA"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, trefoil",
- "slug": "Heating time constant, trefoil",
- "position": 36,
- "visible": true,
- "variation": true,
- "options": [
- "197",
- "278",
- "363",
- "452",
- "541",
- "667",
- "762",
- "771",
- "955",
- "1146",
- "1549",
- "1823",
- "2237",
- "2800",
- "3505",
- "276",
- "351",
- "442",
- "532",
- "653",
- "753",
- "760",
- "920",
- "1110",
- "1474",
- "1724",
- "2105",
- "2546",
- "3116",
- "269",
- "344",
- "433",
- "530",
- "640",
- "744",
- "905",
- "1092",
- "1453",
- "2052",
- "3050"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, flat",
- "slug": "Heating time constant, flat",
- "position": 37,
- "visible": true,
- "variation": true,
- "options": [
- "140",
- "198",
- "260",
- "325",
- "393",
- "501",
- "563",
- "590",
- "745",
- "907",
- "1315",
- "1575",
- "2000",
- "2546",
- "3157",
- "204",
- "261",
- "328",
- "397",
- "500",
- "570",
- "729",
- "895",
- "1262",
- "1525",
- "1895",
- "2376",
- "2917",
- "206",
- "264",
- "334",
- "408",
- "509",
- "599",
- "737",
- "1284",
- "1541",
- "1921",
- "2461",
- "3050"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, trefoil",
- "slug": "Current ratings in air, trefoil",
- "position": 38,
- "visible": true,
- "variation": true,
- "options": [
- "153",
- "183",
- "228",
- "278",
- "321",
- "364",
- "418",
- "494",
- "568",
- "660",
- "767",
- "840",
- "953",
- "1187",
- "185",
- "231",
- "280",
- "323",
- "366",
- "420",
- "496",
- "569",
- "766",
- "866",
- "1000",
- "1130",
- "187",
- "232",
- "282",
- "325",
- "367",
- "421",
- "659",
- "764",
- "877",
- "1142"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, flat",
- "slug": "Current ratings in air, flat",
- "position": 39,
- "visible": true,
- "variation": true,
- "options": [
- "182",
- "219",
- "273",
- "333",
- "384",
- "432",
- "496",
- "583",
- "666",
- "755",
- "868",
- "889",
- "1000",
- "1270",
- "332",
- "494",
- "581",
- "663",
- "753",
- "866",
- "913",
- "1035",
- "1168",
- "331",
- "382",
- "429",
- "492",
- "578",
- "659",
- "750",
- "861",
- "907",
- "1017",
- "1142"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, trefoil",
- "slug": "Current ratings in ground, trefoil",
- "position": 40,
- "visible": true,
- "variation": true,
- "options": [
- "145",
- "171",
- "208",
- "248",
- "283",
- "315",
- "357",
- "413",
- "466",
- "529",
- "602",
- "681",
- "754",
- "852",
- "172",
- "210",
- "251",
- "285",
- "319",
- "361",
- "417",
- "471",
- "535",
- "609",
- "697",
- "780",
- "868",
- "174",
- "213",
- "254",
- "289",
- "322",
- "364",
- "422",
- "476",
- "541",
- "616",
- "702",
- "877"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, flat",
- "slug": "Current ratings in ground, flat",
- "position": 41,
- "visible": true,
- "variation": true,
- "options": [
- "165",
- "194",
- "236",
- "281",
- "318",
- "350",
- "394",
- "452",
- "506",
- "558",
- "627",
- "661",
- "725",
- "842",
- "195",
- "237",
- "282",
- "319",
- "352",
- "396",
- "455",
- "510",
- "564",
- "634",
- "664",
- "734",
- "809",
- "238",
- "283",
- "321",
- "354",
- "399",
- "458",
- "514",
- "570",
- "642",
- "672",
- "742",
- "824"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-28T09:30:22",
- "translation": null
- },
- {
- "id": 44451,
- "translationKey": "n2xsfl2y-3",
- "locale": "en",
- "slug": "n2xsfl2y-3",
- "path": "/product/n2xsfl2y-3",
- "name": "N2XS(FL)2Y",
- "shortDescriptionHtml": "The N2XS(FL)2Y cable is a longitudinally watertight medium-voltage cable with a copper conductor, XLPE insulation, and a tightly bonded Al/PE sheath. It offers maximum operational safety for critical infrastructures and provides reliable protection against penetrating moisture. \n",
- "descriptionHtml": " For demanding power distribution networks The N2XS(FL)2Y meets the standards DIN VDE 0276-620, HD 620 S2 and IEC 60502. It is ideally suited for installation indoors, in cable ducts, outdoors, in soil, in water, and on cable trays – especially in utility grids, industrial plants, and switching stations, where high demands on mechanical strength and water resistance apply. Technical construction The cable design is based on a multi-stranded copper conductor (Class 2), an XLPE insulation with an extruded, tightly bonded outer conductive layer, and a longitudinally watertight, conductive tape. The shielding consists of copper wires with counter helix, complemented by an additional longitudinally watertight tape. The outer protection is achieved with a black PE sheath laminated with an aluminum tape – serving as an effective water barrier. Properties and benefits The N2XS(FL)2Y is suitable for underground installation, designed for outdoor use, and withstands operating temperatures up to +90 °C and short-circuit loads up to +250 °C. It is free from silicone and cadmium and contains no substances that interfere with paint wetting. Thanks to its partial discharge-free design and the Al/PE layer, it is ideally suited for humid environments with high safety requirements. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/N2XSFL2Y-2-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/N2XSFL2Y-2-scaled.webp",
- "sku": "N2XS(FL)2Y-medium-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 39,
- "name": "Medium Voltage Cables",
- "slug": "medium-voltage-cables"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x50/16 - 6/10kV",
- "1x70/16 - 6/10kV",
- "1x95/16 - 6/10kV",
- "1x120/16 - 6/10kV",
- "1x150/25 - 6/10kV",
- "1x185/25 - 6/10kV",
- "1x240/25 - 6/10kV",
- "1x300/25 - 6/10kV",
- "1x400/35 - 6/10kV",
- "1x500/35 - 6/10kV",
- "1x50/16 - 12/20kV",
- "1x70/16 - 12/20kV",
- "1x95/16 - 12/20kV",
- "1x120/16 - 12/20kV",
- "1x150/25 - 12/20kV",
- "1x185/25 - 12/20kV",
- "1x240/25 - 12/20kV",
- "1x300/25 - 12/20kV",
- "1x400/35 - 12/20kV",
- "1x500/35 - 12/20kV",
- "1x50/16 - 18/30kV",
- "1x70/16 - 18/30kV",
- "1x95/16 - 18/30kV",
- "1x120/16 - 18/30kV",
- "1x150/25 - 18/30kV",
- "1x185/25 - 18/30kV",
- "1x240/25 - 18/30kV",
- "1x300/25 - 18/30kV",
- "1x400/35 - 18/30kV",
- "1x500/35 - 18/30kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "Copper"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "Conductive tape below screen",
- "slug": "Conductive tape below screen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Copper wire screen and tape",
- "slug": "Copper wire screen and tape",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Non conducting tape above screen",
- "slug": "Non conducting tape above screen",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Al Foil",
- "slug": "Al Foil",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "1x50/16",
- "1x70/16",
- "1x95/16",
- "1x120/16",
- "1x150/25",
- "1x185/25",
- "1x240/25",
- "1x300/25",
- "1x400/35",
- "1x500/35"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "6/10 kV",
- "12/20 kV",
- "18/30 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "21 kV",
- "42 kV",
- "63 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "+90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "+250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +90 °C",
- "-35 - +90 °C",
- "-35 - + 90 °C",
- "-35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "–35 °C",
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "-20 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "uncoloured"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Flame retardant",
- "slug": "Flame retardant",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "wooden or metal drums"
- ]
- },
- {
- "id": 0,
- "name": "CE-Conformity",
- "slug": "CE-Conformity",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "yes"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "RM"
- ]
- },
- {
- "id": 0,
- "name": "Conductor diameter",
- "slug": "Conductor diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "8.2 mm",
- "9.8 mm",
- "11.3 mm",
- "12.8 mm",
- "14.2 mm",
- "15.8 mm",
- "18.3 mm",
- "20.7 mm",
- "23.3 mm",
- "26.5 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "3.4 mm",
- "5.5 mm",
- "8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Diameter over insulation",
- "slug": "Diameter over insulation",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "16.3 mm",
- "17.9 mm",
- "19.4 mm",
- "20.9 mm",
- "22.3 mm",
- "23.9 mm",
- "26.4 mm",
- "28.8 mm",
- "31.4 mm",
- "34.6 mm",
- "20.5 mm",
- "22.1 mm",
- "23.6 mm",
- "25.1 mm",
- "26.5 mm",
- "28.1 mm",
- "30.6 mm",
- "33 mm",
- "35.6 mm",
- "38.8 mm",
- "25.5 mm",
- "27.1 mm",
- "28.6 mm",
- "30.1 mm",
- "31.5 mm",
- "33.1 mm",
- "38 mm",
- "40.6 mm",
- "43.8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Minimum sheath thickness",
- "slug": "Minimum sheath thickness",
- "position": 25,
- "visible": true,
- "variation": true,
- "options": [
- "2.1 mm",
- "2.4 mm"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 26,
- "visible": true,
- "variation": true,
- "options": [
- "26 mm",
- "28 mm",
- "29 mm",
- "31 mm",
- "32 mm",
- "34 mm",
- "36 mm",
- "39 mm",
- "42 mm",
- "44 mm",
- "30 mm",
- "33 mm",
- "35 mm",
- "38 mm",
- "40 mm",
- "43 mm",
- "45 mm",
- "49 mm",
- "37 mm",
- "41 mm",
- "48 mm",
- "51 mm",
- "54 mm"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 27,
- "visible": true,
- "variation": true,
- "options": [
- "520 mm",
- "560 mm",
- "580 mm",
- "620 mm",
- "640 mm",
- "680 mm",
- "720 mm",
- "780 mm",
- "840 mm",
- "880 mm",
- "600 mm",
- "660 mm",
- "700 mm",
- "760 mm",
- "800 mm",
- "860 mm",
- "900 mm",
- "980 mm",
- "740 mm",
- "820 mm",
- "960 mm",
- "1020 mm",
- "1080 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 28,
- "visible": true,
- "variation": true,
- "options": [
- "1010 kg/km",
- "1238 kg/km",
- "1495 kg/km",
- "1773 kg/km",
- "2119 kg/km",
- "2483 kg/km",
- "3073 kg/km",
- "3737 kg/km",
- "4697 kg/km",
- "5729 kg/km",
- "1166 kg/km",
- "1409 kg/km",
- "1675 kg/km",
- "1968 kg/km",
- "2320 kg/km",
- "2697 kg/km",
- "3303 kg/km",
- "3978 kg/km",
- "4925 kg/km",
- "6006 kg/km",
- "1405 kg/km",
- "1646 kg/km",
- "1926 kg/km",
- "2227 kg/km",
- "2590 kg/km",
- "2975 kg/km",
- "3594 kg/km",
- "4300 kg/km",
- "5290 kg/km",
- "6403 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "DC resistance at 20 °C",
- "slug": "DC resistance at 20 °C",
- "position": 29,
- "visible": true,
- "variation": true,
- "options": [
- "0.387 Ω/km",
- "0.268 Ω/km",
- "0.193 Ω/km",
- "0.153 Ω/km",
- "0.124 Ω/km",
- "0.099 Ω/km",
- "0.075 Ω/km",
- "0.06 Ω/km",
- "0.047 Ω/km",
- "0.037 Ω/km"
- ]
- },
- {
- "id": 0,
- "name": "Capacitance",
- "slug": "Capacitance",
- "position": 30,
- "visible": true,
- "variation": true,
- "options": [
- "0.24 μF/km",
- "0.28 μF/km",
- "0.3 μF/km",
- "0.34 μF/km",
- "0.36 μF/km",
- "0.4 μF/km",
- "0.44 μF/km",
- "0.48 μF/km",
- "0.54 μF/km",
- "0.61 μF/km",
- "0.17 μF/km",
- "0.19 μF/km",
- "0.21 μF/km",
- "0.23 μF/km",
- "0.25 μF/km",
- "0.27 μF/km",
- "0.32 μF/km",
- "0.13 μF/km",
- "0.15 μF/km",
- "0.16 μF/km",
- "0.2 μF/km",
- "0.22 μF/km",
- "0.26 μF/km",
- "0.29 μF/km"
- ]
- },
- {
- "id": 0,
- "name": "Inductance, trefoil",
- "slug": "Inductance, trefoil",
- "position": 31,
- "visible": true,
- "variation": true,
- "options": [
- "0.41",
- "0.39",
- "0.37",
- "0.36",
- "0.34",
- "0.33",
- "0.32",
- "0.31",
- "0.29",
- "0.28",
- "0.45",
- "0.42",
- "0.35",
- "0.3",
- "0.48",
- "0.43",
- "0.4"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in ground, flat 1",
- "slug": "Inductance in ground, flat 1",
- "position": 32,
- "visible": true,
- "variation": true,
- "options": [
- "0.7",
- "0.67",
- "0.65",
- "0.62",
- "0.59",
- "0.58",
- "0.55",
- "0.54",
- "0.5",
- "0.48",
- "0.72",
- "0.68",
- "0.66",
- "0.64",
- "0.6",
- "0.56",
- "0.51",
- "0.49",
- "0.73",
- "0.52"
- ]
- },
- {
- "id": 0,
- "name": "Conductor shortcircuit current",
- "slug": "Conductor shortcircuit current",
- "position": 33,
- "visible": true,
- "variation": true,
- "options": [
- "7.1 kA",
- "10 kA",
- "13.6 kA",
- "17.1 kA",
- "21.4 kA",
- "26.4 kA",
- "34.3 kA",
- "42.9 kA",
- "57.2 kA",
- "71.4 kA"
- ]
- },
- {
- "id": 0,
- "name": "Screen shortcircuit current",
- "slug": "Screen shortcircuit current",
- "position": 34,
- "visible": true,
- "variation": true,
- "options": [
- "3.2 kA",
- "5 kA",
- "7 kA"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, trefoil",
- "slug": "Heating time constant, trefoil",
- "position": 35,
- "visible": true,
- "variation": true,
- "options": [
- "383",
- "490",
- "618",
- "742",
- "927",
- "1094",
- "1335",
- "1595",
- "2303",
- "2803",
- "369",
- "471",
- "591",
- "718",
- "897",
- "1063",
- "1300",
- "1568",
- "2230",
- "2727",
- "360",
- "462",
- "583",
- "707",
- "876",
- "1032",
- "1274",
- "1541",
- "2206",
- "2689"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, flat",
- "slug": "Heating time constant, flat",
- "position": 36,
- "visible": true,
- "variation": true,
- "options": [
- "273",
- "353",
- "450",
- "545",
- "719",
- "866",
- "1091",
- "1336",
- "2036",
- "2538",
- "276",
- "355",
- "451",
- "554",
- "723",
- "871",
- "1350",
- "2085",
- "2614",
- "280",
- "362",
- "459",
- "563",
- "730",
- "876",
- "1108",
- "1377",
- "2109",
- "2652"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, trefoil",
- "slug": "Current ratings in air, trefoil",
- "position": 37,
- "visible": true,
- "variation": true,
- "options": [
- "238",
- "294",
- "358",
- "413",
- "468",
- "535",
- "631",
- "722",
- "827",
- "949",
- "239",
- "297",
- "361",
- "416",
- "470",
- "538",
- "634",
- "724",
- "829",
- "953",
- "241",
- "299",
- "363",
- "418",
- "472",
- "539",
- "635",
- "725",
- "831"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, flat",
- "slug": "Current ratings in air, flat",
- "position": 38,
- "visible": true,
- "variation": true,
- "options": [
- "282",
- "350",
- "426",
- "491",
- "549",
- "625",
- "731",
- "831",
- "920",
- "1043",
- "351",
- "830",
- "923",
- "1045",
- "425",
- "468",
- "548",
- "624",
- "728",
- "828",
- "922"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, trefoil",
- "slug": "Current ratings in ground, trefoil",
- "position": 39,
- "visible": true,
- "variation": true,
- "options": [
- "220",
- "268",
- "320",
- "363",
- "405",
- "456",
- "526",
- "591",
- "662",
- "744",
- "222",
- "271",
- "323",
- "367",
- "409",
- "461",
- "532",
- "599",
- "671",
- "754",
- "225",
- "274",
- "327",
- "371",
- "414",
- "466",
- "539",
- "606",
- "680",
- "765"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, flat",
- "slug": "Current ratings in ground, flat",
- "position": 40,
- "visible": true,
- "variation": true,
- "options": [
- "249",
- "302",
- "359",
- "405",
- "442",
- "493",
- "563",
- "626",
- "675",
- "748",
- "250",
- "303",
- "360",
- "407",
- "445",
- "498",
- "568",
- "633",
- "685",
- "760",
- "251",
- "304",
- "362",
- "409",
- "449",
- "502",
- "574",
- "640",
- "695",
- "773"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-28T08:52:48",
- "translation": null
- },
- {
- "id": 44324,
- "translationKey": "n2xsf2y",
- "locale": "en",
- "slug": "n2xsf2y",
- "path": "/product/n2xsf2y",
- "name": "N2XS(F)2Y",
- "shortDescriptionHtml": "The N2XS(F)2Y cable is a longitudinally watertight medium-voltage cable with a copper conductor, XLPE insulation, and a durable PE sheath. It combines high electrical safety with a rugged outer layer, making it ideal for demanding grid operation applications. \n",
- "descriptionHtml": " Designed for high-performance network environments The N2XS(F)2Y complies with common standards DIN VDE 0276-620, HD 620 S2 and IEC 60502, and is suitable for installation indoors, in cable ducts, outdoors, in water, underground, and on cable trays. This cable proves its strengths especially in utility grids, industrial plants, and power stations – wherever durability, watertightness, and safety are essential. Structure and technical characteristics Inside is a bare, multi-stranded copper conductor (Class 2), surrounded by an extruded XLPE insulation with inner and bonded outer conductive layer. A longitudinally watertight, conductive tape, a copper wire screen with counter helix, and an additional longitudinally watertight layer ensure the design's integrity. The black PE outer sheath (Type DMP2) provides high mechanical strength. Applications and benefits The N2XS(F)2Y is suitable for underground installation, resistant to aggressive environmental conditions, and withstands temperatures up to +90 °C in continuous operation and +250 °C in short-circuit conditions. It is free from silicone and cadmium-containing substances and, thanks to its partial discharge-free design, particularly suitable for networks with the highest demands on electrical operational safety and longevity. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/N2XSF2Y-3-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/N2XSF2Y-3-scaled.webp",
- "sku": "N2XS(F)2Y-medium-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 39,
- "name": "Medium Voltage Cables",
- "slug": "medium-voltage-cables"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x50/16 - 6/10kV",
- "1x70/16 - 6/10kV",
- "1x95/16 - 6/10kV",
- "1x120/16 - 6/10kV",
- "1x150/25 - 6/10kV",
- "1x185/25 - 6/10kV",
- "1x240/25 - 6/10kV",
- "1x300/25 - 6/10kV",
- "1x400/35 - 6/10kV",
- "1x500/35 - 6/10kV",
- "1x35/16 - 12/20kV",
- "1x50/16 - 12/20kV",
- "1x70/16 - 12/20kV",
- "1x95/16 - 12/20kV",
- "1x120/16 - 12/20kV",
- "1x150/25 - 12/20kV",
- "1x185/25 - 12/20kV",
- "1x240/25 - 12/20kV",
- "1x300/25 - 12/20kV",
- "1x400/35 - 12/20kV",
- "1x500/35 - 12/20kV",
- "1x50/16 - 18/30kV",
- "1x70/16 - 18/30kV",
- "1x95/16 - 18/30kV",
- "1x120/16 - 18/30kV",
- "1x150/25 - 18/30kV",
- "1x185/25 - 18/30kV",
- "1x240/25 - 18/30kV",
- "1x300/25 - 18/30kV",
- "1x400/35 - 18/30kV",
- "1x500/35 - 18/30kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "Copper"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "Conductive tape below screen",
- "slug": "Conductive tape below screen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Copper wire screen and tape",
- "slug": "Copper wire screen and tape",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Non conducting tape above screen",
- "slug": "Non conducting tape above screen",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Al Foil",
- "slug": "Al Foil",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "1x50/16",
- "1x70/16",
- "1x95/16",
- "1x120/16",
- "1x150/25",
- "1x185/25",
- "1x240/25",
- "1x300/25",
- "1x400/35",
- "1x500/35",
- "1x35/16"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "6/10 kV",
- "12/20 kV",
- "18/30 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "21 kV",
- "42 kV",
- "63 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "+90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "+250 °C",
- "+250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +90 °C",
- "-35 - +90 °C",
- "-35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "–35 °C",
- "–35 °C",
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "-20 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "uncoloured"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Flame retardant",
- "slug": "Flame retardant",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "wooden or metal drums"
- ]
- },
- {
- "id": 0,
- "name": "CE-Conformity",
- "slug": "CE-Conformity",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "yes"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "RM"
- ]
- },
- {
- "id": 0,
- "name": "Conductor diameter",
- "slug": "Conductor diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "8.2 mm",
- "9.8 mm",
- "11.3 mm",
- "12.8 mm",
- "14.2 mm",
- "15.8 mm",
- "18.3 mm",
- "20.7 mm",
- "23.3 mm",
- "26.5 mm",
- "7.2 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "3.4 mm",
- "5.5 mm",
- "8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Diameter over insulation",
- "slug": "Diameter over insulation",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "16.3 mm",
- "17.9 mm",
- "19.4 mm",
- "20.9 mm",
- "22.3 mm",
- "23.9 mm",
- "26.4 mm",
- "28.8 mm",
- "31.4 mm",
- "34.6 mm",
- "19.5 mm",
- "20.5 mm",
- "22.1 mm",
- "23.6 mm",
- "25.1 mm",
- "26.5 mm",
- "28.1 mm",
- "30.6 mm",
- "33 mm",
- "35.6 mm",
- "38.8 mm",
- "25.5 mm",
- "27.1 mm",
- "28.6 mm",
- "30.1 mm",
- "31.5 mm",
- "33.1 mm",
- "38 mm",
- "40.6 mm",
- "43.8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Minimum sheath thickness",
- "slug": "Minimum sheath thickness",
- "position": 25,
- "visible": true,
- "variation": true,
- "options": [
- "2.1 mm",
- "2.4 mm"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 26,
- "visible": true,
- "variation": true,
- "options": [
- "26 mm",
- "28 mm",
- "30 mm",
- "31 mm",
- "32 mm",
- "35 mm",
- "37 mm",
- "40 mm",
- "43 mm",
- "29 mm",
- "34 mm",
- "39 mm",
- "42 mm",
- "44 mm",
- "47 mm",
- "36 mm",
- "49 mm",
- "53 mm"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 27,
- "visible": true,
- "variation": true,
- "options": [
- "375 mm",
- "390 mm",
- "420 mm",
- "450 mm",
- "465 mm",
- "480 mm",
- "525 mm",
- "555 mm",
- "600 mm",
- "645 mm",
- "435 mm",
- "510 mm",
- "585 mm",
- "630 mm",
- "660 mm",
- "705 mm",
- "540 mm",
- "735 mm",
- "795 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 28,
- "visible": true,
- "variation": true,
- "options": [
- "928 kg/km",
- "1155 kg/km",
- "1410 kg/km",
- "1683 kg/km",
- "2052 kg/km",
- "2384 kg/km",
- "2964 kg/km",
- "3624 kg/km",
- "4575 kg/km",
- "5598 kg/km",
- "949 kg/km",
- "1079 kg/km",
- "1315 kg/km",
- "1580 kg/km",
- "1862 kg/km",
- "2212 kg/km",
- "2585 kg/km",
- "3181 kg/km",
- "3851 kg/km",
- "4795 kg/km",
- "5873 kg/km",
- "1292 kg/km",
- "1542 kg/km",
- "1818 kg/km",
- "2110 kg/km",
- "2473 kg/km",
- "2854 kg/km",
- "3468 kg/km",
- "4164 kg/km",
- "5131 kg/km",
- "6235 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "DC resistance at 20 °C",
- "slug": "DC resistance at 20 °C",
- "position": 29,
- "visible": true,
- "variation": true,
- "options": [
- "0.387 Ω/km",
- "0.268 Ω/km",
- "0.193 Ω/km",
- "0.153 Ω/km",
- "0.124 Ω/km",
- "0.099 Ω/km",
- "0.075 Ω/km",
- "0.06 Ω/km",
- "0.047 Ω/km",
- "0.037 Ω/km",
- "0.524 Ω/km"
- ]
- },
- {
- "id": 0,
- "name": "Capacitance",
- "slug": "Capacitance",
- "position": 30,
- "visible": true,
- "variation": true,
- "options": [
- "0.24 μF/km",
- "0.28 μF/km",
- "0.3 μF/km",
- "0.34 μF/km",
- "0.36 μF/km",
- "0.4 μF/km",
- "0.44 μF/km",
- "0.49 μF/km",
- "0.54 μF/km",
- "0.61 μF/km",
- "0.16 μF/km",
- "0.17 μF/km",
- "0.19 μF/km",
- "0.21 μF/km",
- "0.23 μF/km",
- "0.25 μF/km",
- "0.27 μF/km",
- "0.33 μF/km",
- "0.13 μF/km",
- "0.15 μF/km",
- "0.2 μF/km",
- "0.22 μF/km",
- "0.26 μF/km",
- "0.29 μF/km"
- ]
- },
- {
- "id": 0,
- "name": "Inductance, trefoil",
- "slug": "Inductance, trefoil",
- "position": 31,
- "visible": true,
- "variation": true,
- "options": [
- "0.41",
- "0.39",
- "0.37",
- "0.36",
- "0.34",
- "0.33",
- "0.32",
- "0.31",
- "0.29",
- "0.28",
- "0.46",
- "0.44",
- "0.42",
- "0.4",
- "0.38",
- "0.3",
- "0.48",
- "0.45",
- "0.43",
- "0.35"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in ground, flat 1",
- "slug": "Inductance in ground, flat 1",
- "position": 32,
- "visible": true,
- "variation": true,
- "options": [
- "0.71",
- "0.67",
- "0.65",
- "0.62",
- "0.59",
- "0.58",
- "0.55",
- "0.53",
- "0.5",
- "0.48",
- "0.74",
- "0.72",
- "0.68",
- "0.66",
- "0.63",
- "0.6",
- "0.56",
- "0.54",
- "0.51",
- "0.49",
- "0.73",
- "0.7",
- "0.64",
- "0.57",
- "0.52"
- ]
- },
- {
- "id": 0,
- "name": "Conductor shortcircuit current",
- "slug": "Conductor shortcircuit current",
- "position": 33,
- "visible": true,
- "variation": true,
- "options": [
- "7.1 kA",
- "10 kA",
- "13.6 kA",
- "17.1 kA",
- "21.4 kA",
- "26.4 kA",
- "34.3 kA",
- "42.9 kA",
- "57.2 kA",
- "71.4 kA",
- "5 kA"
- ]
- },
- {
- "id": 0,
- "name": "Screen shortcircuit current",
- "slug": "Screen shortcircuit current",
- "position": 34,
- "visible": true,
- "variation": true,
- "options": [
- "3.2 kA",
- "5 kA",
- "7 kA"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, trefoil",
- "slug": "Heating time constant, trefoil",
- "position": 35,
- "visible": true,
- "variation": true,
- "options": [
- "385",
- "491",
- "618",
- "744",
- "927",
- "1094",
- "1327",
- "1582",
- "2279",
- "2803",
- "259",
- "374",
- "477",
- "600",
- "724",
- "903",
- "1068",
- "1309",
- "2255",
- "2727",
- "365",
- "466",
- "589",
- "713",
- "893",
- "1048",
- "1283",
- "1555",
- "2206",
- "2689"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, flat",
- "slug": "Heating time constant, flat",
- "position": 36,
- "visible": true,
- "variation": true,
- "options": [
- "275",
- "353",
- "450",
- "550",
- "719",
- "866",
- "1082",
- "1309",
- "2061",
- "2614",
- "192",
- "278",
- "358",
- "458",
- "556",
- "730",
- "871",
- "1091",
- "1350",
- "2109",
- "283",
- "364",
- "464",
- "567",
- "740",
- "887",
- "1117",
- "1364",
- "2652"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, trefoil",
- "slug": "Current ratings in air, trefoil",
- "position": 37,
- "visible": true,
- "variation": true,
- "options": [
- "238",
- "294",
- "358",
- "413",
- "468",
- "535",
- "631",
- "722",
- "827",
- "949",
- "200",
- "239",
- "297",
- "361",
- "416",
- "470",
- "538",
- "634",
- "724",
- "829",
- "953",
- "241",
- "299",
- "363",
- "418",
- "472",
- "539",
- "635",
- "725",
- "831"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, flat",
- "slug": "Current ratings in air, flat",
- "position": 38,
- "visible": true,
- "variation": true,
- "options": [
- "282",
- "350",
- "426",
- "491",
- "549",
- "625",
- "731",
- "831",
- "920",
- "1043",
- "235",
- "351",
- "830",
- "923",
- "1045",
- "425",
- "468",
- "548",
- "624",
- "728",
- "828",
- "922"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, trefoil",
- "slug": "Current ratings in ground, trefoil",
- "position": 39,
- "visible": true,
- "variation": true,
- "options": [
- "220",
- "268",
- "320",
- "363",
- "405",
- "456",
- "526",
- "591",
- "662",
- "744",
- "189",
- "222",
- "271",
- "323",
- "367",
- "409",
- "461",
- "532",
- "599",
- "671",
- "754",
- "225",
- "274",
- "327",
- "371",
- "414",
- "466",
- "539",
- "606",
- "680",
- "765"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, flat",
- "slug": "Current ratings in ground, flat",
- "position": 40,
- "visible": true,
- "variation": true,
- "options": [
- "249",
- "302",
- "359",
- "405",
- "442",
- "493",
- "563",
- "626",
- "675",
- "748",
- "213",
- "250",
- "303",
- "360",
- "407",
- "445",
- "498",
- "568",
- "633",
- "685",
- "760",
- "251",
- "304",
- "362",
- "409",
- "449",
- "502",
- "574",
- "640",
- "695",
- "773"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in air, flat 1",
- "slug": "Inductance in air, flat 1",
- "position": 41,
- "visible": true,
- "variation": true,
- "options": [
- "0.64",
- "0.62",
- "0.59",
- "0.57",
- "0.55",
- "0.53",
- "0.52",
- "0.5",
- "0.48",
- "0.46",
- "0.45"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-28T08:42:54",
- "translation": null
- },
- {
- "id": 44193,
- "translationKey": "n2xs2y",
- "locale": "en",
- "slug": "n2xs2y",
- "path": "/product/n2xs2y",
- "name": "N2XS2Y",
- "shortDescriptionHtml": "The N2XS2Y cable is a robust medium-voltage cable with a copper conductor, XLPE insulation, and a durable PE sheath. It ensures reliable power transmission even under high mechanical stress and demanding environmental conditions. \n",
- "descriptionHtml": " For underground installation and demanding environments The N2XS2Y complies with the standards DIN VDE 0276-620, HD 620 S2 and IEC 60502. It is suitable for installation indoors, in cable ducts, outdoors, in water, on cable trays, and especially underground. Thanks to its robust sheath, it is frequently used in industrial plants, power stations, and switching stations, where stability and durability are essential. Technical construction The conductor consists of bare, multi-stranded copper (Class 2), surrounded by an inner conductive layer and XLPE insulation with a tightly bonded outer conductive layer. The shielding is provided by a copper wire braid with counter helix. Additionally, the cable includes a conductive tape and features a black PE sheath (Type DMP2) that protects against moisture and mechanical abrasion. Features and application benefits The N2XS2Y is suitable for underground installation, free from silicone and cadmium, and not flame-retardant. It is rated for +90 °C in operation and +250 °C under short-circuit conditions. Thanks to its partial discharge-free design, it offers a high level of safety and is particularly well-suited for networks with heavy load and challenging routing conditions. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/N2XS2Y-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/N2XS2Y-scaled.webp",
- "sku": "N2XS2Y-medium-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 39,
- "name": "Medium Voltage Cables",
- "slug": "medium-voltage-cables"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16 - 6/10kV",
- "1x50/16 - 6/10kV",
- "1x70/16 - 6/10kV",
- "1x95/16 - 6/10kV",
- "1x120/16 - 6/10kV",
- "1x150/25 - 6/10kV",
- "1x185/25 - 6/10kV",
- "1x240/25 - 6/10kV",
- "1x300/25 - 6/10kV",
- "1x400/35 - 6/10kV",
- "1x500/35 - 6/10kV",
- "1x35/16 - 12/20kV",
- "1x50/16 - 12/20kV",
- "1x70/16 - 12/20kV",
- "1x95/16 - 12/20kV",
- "1x120/16 - 12/20kV",
- "1x150/25 - 12/20kV",
- "1x185/25 - 12/20kV",
- "1x240/25 - 12/20kV",
- "1x300/25 - 12/20kV",
- "1x400/35 - 12/20kV",
- "1x500/35 - 12/20kV",
- "1x50/16 - 18/30kV",
- "1x70/16 - 18/30kV",
- "1x95/16 - 18/30kV",
- "1x120/16 - 18/30kV",
- "1x150/25 - 18/30kV",
- "1x185/25 - 18/30kV",
- "1x240/25 - 18/30kV",
- "1x300/25 - 18/30kV",
- "1x400/35 - 18/30kV",
- "1x500/35 - 18/30kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "Copper"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "Conductive tape below screen",
- "slug": "Conductive tape below screen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Copper wire screen and tape",
- "slug": "Copper wire screen and tape",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Non conducting tape above screen",
- "slug": "Non conducting tape above screen",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Al Foil",
- "slug": "Al Foil",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16",
- "1x50/16",
- "1x70/16",
- "1x95/16",
- "1x120/16",
- "1x150/25",
- "1x185/25",
- "1x240/25",
- "1x300/25",
- "1x400/35",
- "1x500/35"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "6/10 kV",
- "12/20 kV",
- "18/30 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "21 kV",
- "42 kV",
- "63 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "+90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "+250 °C",
- "+250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +90 °C",
- "-35 - +90 °C",
- "-35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "–35 °C",
- "–35 °C",
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "-20 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "uncoloured"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Flame retardant",
- "slug": "Flame retardant",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "wooden or metal drums"
- ]
- },
- {
- "id": 0,
- "name": "CE-Conformity",
- "slug": "CE-Conformity",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "yes"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "RM"
- ]
- },
- {
- "id": 0,
- "name": "Conductor diameter",
- "slug": "Conductor diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "7.2 mm",
- "8.2 mm",
- "9.8 mm",
- "11.3 mm",
- "12.8 mm",
- "14.2 mm",
- "15.8 mm",
- "18.3 mm",
- "20.7 mm",
- "23.3 mm",
- "26.5 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "3.4 mm",
- "5.5 mm",
- "8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Diameter over insulation",
- "slug": "Diameter over insulation",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "15.3 mm",
- "16.3 mm",
- "17.9 mm",
- "19.4 mm",
- "20.9 mm",
- "22.3 mm",
- "23.9 mm",
- "26.4 mm",
- "28.8 mm",
- "31.4 mm",
- "34.6 mm",
- "19.5 mm",
- "20.5 mm",
- "22.1 mm",
- "23.6 mm",
- "25.1 mm",
- "26.5 mm",
- "28.1 mm",
- "30.6 mm",
- "33 mm",
- "35.6 mm",
- "38.8 mm",
- "25.5 mm",
- "27.1 mm",
- "28.6 mm",
- "30.1 mm",
- "31.5 mm",
- "33.1 mm",
- "38 mm",
- "40.6 mm",
- "43.8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Minimum sheath thickness",
- "slug": "Minimum sheath thickness",
- "position": 25,
- "visible": true,
- "variation": true,
- "options": [
- "2.1 mm",
- "2.4 mm"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 26,
- "visible": true,
- "variation": true,
- "options": [
- "24 mm",
- "25 mm",
- "26 mm",
- "28 mm",
- "30 mm",
- "31 mm",
- "32 mm",
- "35 mm",
- "37 mm",
- "40 mm",
- "43 mm",
- "29 mm",
- "34 mm",
- "39 mm",
- "42 mm",
- "44 mm",
- "47 mm",
- "36 mm",
- "49 mm",
- "53 mm"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 27,
- "visible": true,
- "variation": true,
- "options": [
- "360 mm",
- "375 mm",
- "390 mm",
- "420 mm",
- "450 mm",
- "465 mm",
- "480 mm",
- "525 mm",
- "555 mm",
- "600 mm",
- "645 mm",
- "435 mm",
- "510 mm",
- "585 mm",
- "630 mm",
- "660 mm",
- "705 mm",
- "540 mm",
- "735 mm",
- "795 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 28,
- "visible": true,
- "variation": true,
- "options": [
- "803 kg/km",
- "928 kg/km",
- "1154 kg/km",
- "1410 kg/km",
- "1682 kg/km",
- "2025 kg/km",
- "2383 kg/km",
- "2965 kg/km",
- "3624 kg/km",
- "4574 kg/km",
- "5597 kg/km",
- "948 kg/km",
- "1078 kg/km",
- "1315 kg/km",
- "1579 kg/km",
- "1861 kg/km",
- "2212 kg/km",
- "2585 kg/km",
- "3181 kg/km",
- "3763 kg/km",
- "4795 kg/km",
- "5872 kg/km",
- "1292 kg/km",
- "1542 kg/km",
- "1817 kg/km",
- "2110 kg/km",
- "2473 kg/km",
- "2853 kg/km",
- "3467 kg/km",
- "4164 kg/km",
- "5131 kg/km",
- "6234 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "DC resistance at 20 °C",
- "slug": "DC resistance at 20 °C",
- "position": 29,
- "visible": true,
- "variation": true,
- "options": [
- "0.524 Ω/km",
- "0.387 Ω/km",
- "0.268 Ω/km",
- "0.193 Ω/km",
- "0.153 Ω/km",
- "0.124 Ω/km",
- "0.099 Ω/km",
- "0.075 Ω/km",
- "0.06 Ω/km",
- "0.047 Ω/km",
- "0.037 Ω/km"
- ]
- },
- {
- "id": 0,
- "name": "Capacitance",
- "slug": "Capacitance",
- "position": 30,
- "visible": true,
- "variation": true,
- "options": [
- "0.22 μF/km",
- "0.24 μF/km",
- "0.28 μF/km",
- "0.3 μF/km",
- "0.34 μF/km",
- "0.36 μF/km",
- "0.4 μF/km",
- "0.44 μF/km",
- "0.49 μF/km",
- "0.54 μF/km",
- "0.61 μF/km",
- "0.16 μF/km",
- "0.17 μF/km",
- "0.19 μF/km",
- "0.21 μF/km",
- "0.23 μF/km",
- "0.25 μF/km",
- "0.27 μF/km",
- "0.33 μF/km",
- "0.43 μF/km",
- "0.13 μF/km",
- "0.15 μF/km",
- "0.2 μF/km",
- "0.26 μF/km",
- "0.29 μF/km"
- ]
- },
- {
- "id": 0,
- "name": "Inductance, trefoil",
- "slug": "Inductance, trefoil",
- "position": 31,
- "visible": true,
- "variation": true,
- "options": [
- "0.43",
- "0.42",
- "0.39",
- "0.38",
- "0.36",
- "0.35",
- "0.34",
- "0.32",
- "0.31",
- "0.29",
- "0.28",
- "0.46",
- "0.44",
- "0.4",
- "0.37",
- "0.33",
- "0.3",
- "0.48",
- "0.45",
- "0.41"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in ground, flat 1",
- "slug": "Inductance in ground, flat 1",
- "position": 32,
- "visible": true,
- "variation": true,
- "options": [
- "0.73",
- "0.71",
- "0.67",
- "0.65",
- "0.62",
- "0.6",
- "0.58",
- "0.55",
- "0.53",
- "0.5",
- "0.48",
- "0.74",
- "0.72",
- "0.68",
- "0.66",
- "0.63",
- "0.59",
- "0.56",
- "0.54",
- "0.51",
- "0.49",
- "0.7",
- "0.64",
- "0.57",
- "0.52"
- ]
- },
- {
- "id": 0,
- "name": "Conductor shortcircuit current",
- "slug": "Conductor shortcircuit current",
- "position": 33,
- "visible": true,
- "variation": true,
- "options": [
- "5 kA",
- "7.1 kA",
- "10 kA",
- "13.6 kA",
- "17.1 kA",
- "21.4 kA",
- "26.4 kA",
- "34.3 kA",
- "42.9 kA",
- "57.2 kA",
- "71.4 kA"
- ]
- },
- {
- "id": 0,
- "name": "Screen shortcircuit current",
- "slug": "Screen shortcircuit current",
- "position": 34,
- "visible": true,
- "variation": true,
- "options": [
- "3.2 kA",
- "5 kA",
- "7 kA"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, trefoil",
- "slug": "Heating time constant, trefoil",
- "position": 35,
- "visible": true,
- "variation": true,
- "options": [
- "267",
- "375",
- "488",
- "611",
- "742",
- "917",
- "1089",
- "1318",
- "1582",
- "2279",
- "2765",
- "259",
- "373",
- "476",
- "598",
- "722",
- "897",
- "1048",
- "1283",
- "1541",
- "2689",
- "359",
- "466",
- "585",
- "711",
- "890",
- "1555",
- "2206"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, flat",
- "slug": "Heating time constant, flat",
- "position": 36,
- "visible": true,
- "variation": true,
- "options": [
- "190",
- "269",
- "352",
- "446",
- "545",
- "709",
- "861",
- "1073",
- "1309",
- "2036",
- "2538",
- "192",
- "278",
- "358",
- "454",
- "554",
- "723",
- "2085",
- "2576",
- "280",
- "364",
- "462",
- "567",
- "740",
- "882",
- "1108",
- "1364",
- "2109",
- "2652"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, trefoil",
- "slug": "Current ratings in air, trefoil",
- "position": 37,
- "visible": true,
- "variation": true,
- "options": [
- "197",
- "238",
- "294",
- "358",
- "413",
- "468",
- "535",
- "631",
- "722",
- "827",
- "949",
- "200",
- "239",
- "297",
- "361",
- "416",
- "470",
- "538",
- "634",
- "724",
- "829",
- "953",
- "241",
- "299",
- "363",
- "418",
- "472",
- "539",
- "635",
- "725",
- "831"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, flat",
- "slug": "Current ratings in air, flat",
- "position": 38,
- "visible": true,
- "variation": true,
- "options": [
- "235",
- "282",
- "350",
- "426",
- "491",
- "549",
- "625",
- "731",
- "831",
- "920",
- "1043",
- "351",
- "830",
- "923",
- "1045",
- "425",
- "468",
- "548",
- "624",
- "728",
- "828",
- "922"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, trefoil",
- "slug": "Current ratings in ground, trefoil",
- "position": 39,
- "visible": true,
- "variation": true,
- "options": [
- "187",
- "220",
- "268",
- "320",
- "363",
- "405",
- "456",
- "526",
- "591",
- "662",
- "744",
- "189",
- "222",
- "271",
- "323",
- "367",
- "409",
- "461",
- "532",
- "599",
- "671",
- "754",
- "225",
- "274",
- "327",
- "371",
- "414",
- "466",
- "539",
- "606",
- "680",
- "765"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, flat",
- "slug": "Current ratings in ground, flat",
- "position": 40,
- "visible": true,
- "variation": true,
- "options": [
- "212",
- "249",
- "302",
- "359",
- "405",
- "442",
- "493",
- "563",
- "626",
- "675",
- "748",
- "213",
- "250",
- "303",
- "360",
- "407",
- "445",
- "498",
- "568",
- "633",
- "685",
- "760",
- "251",
- "304",
- "362",
- "409",
- "449",
- "502",
- "574",
- "640",
- "695",
- "773"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-28T08:54:49",
- "translation": null
- },
- {
- "id": 44063,
- "translationKey": "n2xsy",
- "locale": "en",
- "slug": "n2xsy",
- "path": "/product/n2xsy",
- "name": "N2XSY",
- "shortDescriptionHtml": "The N2XSY cable is a high-performance medium-voltage cable with a copper conductor, XLPE insulation, and a PVC sheath. It offers excellent electrical characteristics and can be installed safely and efficiently, even in complex routing situations. \n",
- "descriptionHtml": " For powerful medium-voltage applications The N2XSY meets the standards DIN VDE 0276-620, HD 620 S2 and IEC 60502. It is designed for installation indoors, in cable ducts, in water, underground, or outdoors (when protected). Whether in industrial plants, power stations, or substations – this cable ensures safe and low-loss power transmission in medium-voltage networks. Construction and technical features The cable consists of a bare, multi-stranded copper conductor (Class 2), surrounded by XLPE insulation with a tightly bonded outer conductive layer. A conductive tape, a copper wire screen with counter helix, additional tape, and a red PVC sheath (Type DMV6) complete the construction. The extruded combination of insulation and conductive layer ensures partial discharge-free operation and high reliability. Properties and application benefits The N2XSY cable is suitable for underground installation, flame-retardant according to DIN VDE 0482-332-1-2, and free from silicone and cadmium-containing substances. With a +90 °C operating temperature and +250 °C short-circuit resistance, it is ideal for networks with high thermal loads. Excellent installation properties also allow for easy handling, even in complex routing scenarios. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/N2XSY-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/N2XSY-scaled.webp",
- "sku": "N2XSY-medium-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 39,
- "name": "Medium Voltage Cables",
- "slug": "medium-voltage-cables"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16 - 6/10kV",
- "1x50/16 - 6/10kV",
- "1x70/16 - 6/10kV",
- "1x95/16 - 6/10kV",
- "1x120/16 - 6/10kV",
- "1x150/25 - 6/10kV",
- "1x185/25 - 6/10kV",
- "1x240/25 - 6/10kV",
- "1x300/25 - 6/10kV",
- "1x400/35 - 6/10kV",
- "1x500/35 - 6/10kV",
- "1x35/16 - 12/20kV",
- "1x50/16 - 12/20kV",
- "1x70/16 - 12/20kV",
- "1x95/16 - 12/20kV",
- "1x120/16 - 12/20kV",
- "1x150/25 - 12/20kV",
- "1x185/25 - 12/20kV",
- "1x240/25 - 12/20kV",
- "1x300/25 - 12/20kV",
- "1x400/35 - 12/20kV",
- "1x500/35 - 12/20kV",
- "1x50/16 - 18/30kV",
- "1x70/16 - 18/30kV",
- "1x95/16 - 18/30kV",
- "1x120/16 - 18/30kV",
- "1x150/25 - 18/30kV",
- "1x185/25 - 18/30kV",
- "1x240/25 - 18/30kV",
- "1x300/25 - 18/30kV",
- "1x400/35 - 18/30kV",
- "1x500/35 - 18/30kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "Copper"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "Conductive tape below screen",
- "slug": "Conductive tape below screen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Copper wire screen and tape",
- "slug": "Copper wire screen and tape",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Non conducting tape above screen",
- "slug": "Non conducting tape above screen",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Al Foil",
- "slug": "Al Foil",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16",
- "1x50/16",
- "1x70/16",
- "1x95/16",
- "1x120/16",
- "1x150/25",
- "1x185/25",
- "1x240/25",
- "1x300/25",
- "1x400/35",
- "1x500/35"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "6/10 kV",
- "12/20 kV",
- "18/30 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "21 kV",
- "42 kV",
- "63 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "+90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "+250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +90 °C",
- "-35 - +90 °C",
- "-35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "–25 °C",
- "-25 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "uncoloured"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "red or black"
- ]
- },
- {
- "id": 0,
- "name": "Flame retardant",
- "slug": "Flame retardant",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "EN 60 332-1-2",
- "EN 60 332-1-3",
- "EN 60 332-1-4",
- "EN 60 332-1-5",
- "EN 60 332-1-6",
- "EN 60 332-1-7",
- "EN 60 332-1-8",
- "EN 60 332-1-9",
- "EN 60 332-1-10",
- "EN 60 332-1-11",
- "EN 60 332-1-12"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "Eca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "wooden or metal drums"
- ]
- },
- {
- "id": 0,
- "name": "CE-Conformity",
- "slug": "CE-Conformity",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "yes",
- "yes"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "RM"
- ]
- },
- {
- "id": 0,
- "name": "Conductor diameter",
- "slug": "Conductor diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "7.2 mm",
- "8.2 mm",
- "9.8 mm",
- "11.3 mm",
- "12.8 mm",
- "14.2 mm",
- "15.8 mm",
- "18.3 mm",
- "20.7 mm",
- "23.3 mm",
- "26.5 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "3.4 mm",
- "5.5 mm",
- "8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Diameter over insulation",
- "slug": "Diameter over insulation",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "15.3 mm",
- "16.3 mm",
- "17.9 mm",
- "19.4 mm",
- "20.9 mm",
- "22.3 mm",
- "23.9 mm",
- "26.4 mm",
- "28.8 mm",
- "31.4 mm",
- "34.6 mm",
- "19.5 mm",
- "20.5 mm",
- "22.1 mm",
- "23.6 mm",
- "25.1 mm",
- "26.5 mm",
- "28.1 mm",
- "30.6 mm",
- "33 mm",
- "35.6 mm",
- "38.8 mm",
- "25.5 mm",
- "27.1 mm",
- "28.6 mm",
- "30.1 mm",
- "31.5 mm",
- "33.1 mm",
- "38 mm",
- "40.6 mm",
- "43.8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Minimum sheath thickness",
- "slug": "Minimum sheath thickness",
- "position": 25,
- "visible": true,
- "variation": true,
- "options": [
- "2.1 mm",
- "2.4 mm"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 26,
- "visible": true,
- "variation": true,
- "options": [
- "24 mm",
- "26 mm",
- "27 mm",
- "29 mm",
- "30 mm",
- "32 mm",
- "33 mm",
- "36 mm",
- "38 mm",
- "41 mm",
- "44 mm",
- "31 mm",
- "34 mm",
- "37 mm",
- "40 mm",
- "42 mm",
- "45 mm",
- "48 mm",
- "35 mm",
- "39 mm",
- "47 mm",
- "50 mm",
- "53 mm"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 27,
- "visible": true,
- "variation": true,
- "options": [
- "360 mm",
- "390 mm",
- "405 mm",
- "435 mm",
- "450 mm",
- "480 mm",
- "495 mm",
- "540 mm",
- "570 mm",
- "615 mm",
- "660 mm",
- "465 mm",
- "510 mm",
- "555 mm",
- "600 mm",
- "630 mm",
- "675 mm",
- "720 mm",
- "525 mm",
- "585 mm",
- "705 mm",
- "750 mm",
- "795 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 28,
- "visible": true,
- "variation": true,
- "options": [
- "904 kg/km",
- "1039 kg/km",
- "1271 kg/km",
- "1530 kg/km",
- "1809 kg/km",
- "2158 kg/km",
- "2524 kg/km",
- "3117 kg/km",
- "3786 kg/km",
- "4750 kg/km",
- "5786 kg/km",
- "1069 kg/km",
- "1203 kg/km",
- "1447 kg/km",
- "1718 kg/km",
- "2007 kg/km",
- "2364 kg/km",
- "2744 kg/km",
- "3352 kg/km",
- "4032 kg/km",
- "4988 kg/km",
- "6080 kg/km",
- "1439 kg/km",
- "1697 kg/km",
- "1979 kg/km",
- "2279 kg/km",
- "2648 kg/km",
- "3036 kg/km",
- "3661 kg/km",
- "4368 kg/km",
- "5347 kg/km",
- "6472 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "DC resistance at 20 °C",
- "slug": "DC resistance at 20 °C",
- "position": 29,
- "visible": true,
- "variation": true,
- "options": [
- "0.524 Ω/km",
- "0.387 Ω/km",
- "0.268 Ω/km",
- "0.193 Ω/km",
- "0.153 Ω/km",
- "0.124 Ω/km",
- "0.099 Ω/km",
- "0.075 Ω/km",
- "0.06 Ω/km",
- "0.047 Ω/km",
- "0.037 Ω/km"
- ]
- },
- {
- "id": 0,
- "name": "Capacitance",
- "slug": "Capacitance",
- "position": 30,
- "visible": true,
- "variation": true,
- "options": [
- "0.22 μF/km",
- "0.24 μF/km",
- "0.28 μF/km",
- "0.3 μF/km",
- "0.34 μF/km",
- "0.36 μF/km",
- "0.4 μF/km",
- "0.44 μF/km",
- "0.49 μF/km",
- "0.54 μF/km",
- "0.61 μF/km",
- "0.16 μF/km",
- "0.17 μF/km",
- "0.19 μF/km",
- "0.21 μF/km",
- "0.23 μF/km",
- "0.25 μF/km",
- "0.27 μF/km",
- "0.35 μF/km",
- "0.43 μF/km",
- "0.13 μF/km",
- "0.15 μF/km",
- "0.2 μF/km",
- "0.26 μF/km",
- "0.29 μF/km"
- ]
- },
- {
- "id": 0,
- "name": "Inductance, trefoil",
- "slug": "Inductance, trefoil",
- "position": 31,
- "visible": true,
- "variation": true,
- "options": [
- "0.43",
- "0.42",
- "0.39",
- "0.38",
- "0.36",
- "0.35",
- "0.34",
- "0.32",
- "0.31",
- "0.29",
- "0.28",
- "0.46",
- "0.45",
- "0.4",
- "0.37",
- "0.33",
- "0.3",
- "0.48",
- "0.41"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in ground, flat 1",
- "slug": "Inductance in ground, flat 1",
- "position": 32,
- "visible": true,
- "variation": true,
- "options": [
- "0.73",
- "0.71",
- "0.67",
- "0.65",
- "0.62",
- "0.6",
- "0.58",
- "0.55",
- "0.53",
- "0.5",
- "0.48",
- "0.74",
- "0.72",
- "0.68",
- "0.66",
- "0.63",
- "0.59",
- "0.56",
- "0.54",
- "0.51",
- "0.49",
- "0.7",
- "0.64",
- "0.57",
- "0.52"
- ]
- },
- {
- "id": 0,
- "name": "Conductor shortcircuit current",
- "slug": "Conductor shortcircuit current",
- "position": 33,
- "visible": true,
- "variation": true,
- "options": [
- "5 kA",
- "7.1 kA",
- "10 kA",
- "13.6 kA",
- "17.1 kA",
- "21.4 kA",
- "26.4 kA",
- "34.3 kA",
- "42.9 kA",
- "57.2 kA",
- "71.4 kA"
- ]
- },
- {
- "id": 0,
- "name": "Screen shortcircuit current",
- "slug": "Screen shortcircuit current",
- "position": 34,
- "visible": true,
- "variation": true,
- "options": [
- "3.2 kA",
- "5 kA",
- "7 kA"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, trefoil",
- "slug": "Heating time constant, trefoil",
- "position": 35,
- "visible": true,
- "variation": true,
- "options": [
- "275",
- "387",
- "503",
- "630",
- "763",
- "948",
- "1125",
- "1370",
- "1636",
- "2352",
- "2917",
- "266",
- "383",
- "489",
- "613",
- "742",
- "920",
- "1079",
- "1344",
- "1582",
- "2327",
- "2765",
- "367",
- "476",
- "598",
- "729",
- "910",
- "1073",
- "1318",
- "1595",
- "2255",
- "2727"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, flat",
- "slug": "Heating time constant, flat",
- "position": 36,
- "visible": true,
- "variation": true,
- "options": [
- "198",
- "281",
- "368",
- "465",
- "569",
- "743",
- "897",
- "1135",
- "1377",
- "2133",
- "2727",
- "199",
- "288",
- "371",
- "470",
- "574",
- "747",
- "892",
- "1143",
- "1364",
- "2182",
- "2689",
- "374",
- "476",
- "585",
- "760",
- "913",
- "1405"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, trefoil",
- "slug": "Current ratings in air, trefoil",
- "position": 37,
- "visible": true,
- "variation": true,
- "options": [
- "197",
- "238",
- "294",
- "358",
- "413",
- "468",
- "535",
- "631",
- "722",
- "827",
- "949",
- "200",
- "239",
- "297",
- "361",
- "416",
- "470",
- "538",
- "634",
- "724",
- "829",
- "953",
- "241",
- "299",
- "363",
- "418",
- "472",
- "539",
- "635",
- "725",
- "831"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, flat",
- "slug": "Current ratings in air, flat",
- "position": 38,
- "visible": true,
- "variation": true,
- "options": [
- "235",
- "282",
- "350",
- "426",
- "491",
- "549",
- "625",
- "731",
- "831",
- "920",
- "1043",
- "351",
- "830",
- "923",
- "1045",
- "425",
- "468",
- "548",
- "624",
- "728",
- "828",
- "922"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, trefoil",
- "slug": "Current ratings in ground, trefoil",
- "position": 39,
- "visible": true,
- "variation": true,
- "options": [
- "187",
- "220",
- "268",
- "320",
- "363",
- "405",
- "456",
- "526",
- "591",
- "662",
- "744",
- "189",
- "222",
- "271",
- "323",
- "367",
- "409",
- "461",
- "532",
- "599",
- "671",
- "754",
- "225",
- "274",
- "327",
- "371",
- "414",
- "466",
- "539",
- "606",
- "680",
- "765"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, flat",
- "slug": "Current ratings in ground, flat",
- "position": 40,
- "visible": true,
- "variation": true,
- "options": [
- "212",
- "249",
- "302",
- "359",
- "405",
- "442",
- "493",
- "563",
- "626",
- "675",
- "748",
- "213",
- "250",
- "303",
- "360",
- "407",
- "445",
- "498",
- "568",
- "633",
- "685",
- "760",
- "251",
- "304",
- "362",
- "409",
- "449",
- "502",
- "574",
- "640",
- "695",
- "773"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-28T08:59:18",
- "translation": null
- },
- {
- "id": 43865,
- "translationKey": "na2x2y",
- "locale": "en",
- "slug": "na2x2y",
- "path": "/product/na2x2y",
- "name": "NA2X2Y",
- "shortDescriptionHtml": "The NA2X2Y cable is a durable low-voltage cable with an aluminium conductor, PE insulation, and an HDPE sheath. It has been developed for fixed installations under increased mechanical stress and is particularly suitable for demanding industrial and energy infrastructure applications. \n",
- "descriptionHtml": " Optimal for mechanically demanding applications The NA2X2Y complies with DIN VDE 0276-603 (HD 603) and is designed for fixed installation indoors, in cable ducts, underground, in water, or outdoors. It is primarily used in power plants, industrial facilities, and switching stations as well as local distribution networks – wherever robust cables are needed that can withstand high mechanical stress during installation and operation. Construction and properties The electrical conductor consists of aluminium, available as solid round (RE), stranded round (RM), or sector-shaped (SE/SM). The cores are PE-insulated, stranded together, and protected by a common EPDM sheath. The outer sheath is made of HDPE, black, UV-resistant, and highly resistant to abrasion, pressure, and moisture – ideal for long-term installations in demanding environments. Application benefits NA2X2Y cables provide a technically robust and cost-efficient solution 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. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NA2X2Y-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NA2X2Y-scaled.webp",
- "sku": "NA2X2Y-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 40,
- "name": "Low Voltage Cables",
- "slug": "low-voltage-cables"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x16 - 0.6/1kV",
- "1x25 - 0.6/1kV",
- "1x35 - 0.6/1kV",
- "1x50 - 0.6/1kV",
- "1x70 - 0.6/1kV",
- "1x95 - 0.6/1kV",
- "1x120 - 0.6/1kV",
- "1x150 - 0.6/1kV",
- "1x185 - 0.6/1kV",
- "1x240 - 0.6/1kV",
- "1x300 - 0.6/1kV",
- "1x400 - 0.6/1kV",
- "1x500 - 0.6/1kV",
- "3x16 - 0.6/1kV",
- "3x25 - 0.6/1kV",
- "3x35 - 0.6/1kV",
- "3x50 - 0.6/1kV",
- "3x70 - 0.6/1kV",
- "3x95 - 0.6/1kV",
- "3x120 - 0.6/1kV",
- "3x150 - 0.6/1kV",
- "3x185 - 0.6/1kV",
- "3x240 - 0.6/1kV",
- "3x35+16 - 0.6/1kV",
- "3x70+35 - 0.6/1kV",
- "3x95+50 - 0.6/1kV",
- "3x120+70 - 0.6/1kV",
- "3x150+70 - 0.6/1kV",
- "3x185+95 - 0.6/1kV",
- "3x240+120 - 0.6/1kV",
- "4x10 - 0.6/1kV",
- "4x16 - 0.6/1kV",
- "4x25 - 0.6/1kV",
- "4x35 - 0.6/1kV",
- "4x50 - 0.6/1kV",
- "4x70 - 0.6/1kV",
- "4x95 - 0.6/1kV",
- "4x120 - 0.6/1kV",
- "4x150 - 0.6/1kV",
- "4x185 - 0.6/1kV",
- "4x240 - 0.6/1kV",
- "5x10 - 0.6/1kV",
- "5x16 - 0.6/1kV",
- "5x25 - 0.6/1kV",
- "5x35 - 0.6/1kV",
- "5x50 - 0.6/1kV",
- "5x70 - 0.6/1kV",
- "5x95 - 0.6/1kV",
- "5x120 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "AL"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "1x16",
- "1x25",
- "1x35",
- "1x50",
- "1x70",
- "1x95",
- "1x120",
- "1x150",
- "1x185",
- "1x240",
- "1x300",
- "1x400",
- "1x500",
- "3x16",
- "3x25",
- "3x35",
- "3x50",
- "3x70",
- "3x95",
- "3x120",
- "3x150",
- "3x185",
- "3x240",
- "3x35+16",
- "3x70+35",
- "3x95+50",
- "3x120+70",
- "3x150+70",
- "3x185+95",
- "3x240+120",
- "4x10",
- "4x16",
- "4x25",
- "4x35",
- "4x50",
- "4x70",
- "4x95",
- "4x120",
- "4x150",
- "4x185",
- "4x240",
- "5x10",
- "5x16",
- "5x25",
- "5x35",
- "5x50",
- "5x70",
- "5x95",
- "5x120"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-20 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "- 35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RE",
- "RMV",
- "SM"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "0.7 mm",
- "0.9 mm",
- "1 mm",
- "1.1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.6 mm",
- "1.7 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm",
- "0.9/0.7 mm",
- "1.1/0.9 mm",
- "1.1/1.0 mm",
- "1.2/1.1 mm",
- "1.4/1.1 mm",
- "1.6/1.1 mm",
- "1.7/1.2 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.1",
- "2.3",
- "2.4",
- "2.6",
- "2.2",
- "2.5",
- "2.7",
- "2.8"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "10 mm",
- "12 mm",
- "13 mm",
- "14 mm",
- "16 mm",
- "18 mm",
- "20 mm",
- "22 mm",
- "24 mm",
- "26 mm",
- "29 mm",
- "32 mm",
- "36 mm",
- "19 mm",
- "25 mm",
- "30 mm",
- "33 mm",
- "39 mm",
- "41 mm",
- "45 mm",
- "51 mm",
- "37 mm",
- "40 mm",
- "49 mm",
- "56 mm",
- "21 mm",
- "28 mm",
- "46 mm",
- "57 mm",
- "27 mm",
- "31 mm",
- "38 mm",
- "42 mm",
- "47 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "104 kg/km",
- "144 kg/km",
- "179 kg/km",
- "232 kg/km",
- "309 kg/km",
- "394 kg/km",
- "479 kg/km",
- "587 kg/km",
- "722 kg/km",
- "908 kg/km",
- "1102 kg/km",
- "1398 kg/km",
- "1763 kg/km",
- "454 kg/km",
- "634 kg/km",
- "788 kg/km",
- "870 kg/km",
- "1170 kg/km",
- "1463 kg/km",
- "1802 kg/km",
- "2184 kg/km",
- "2647 kg/km",
- "3362 kg/km",
- "855 kg/km",
- "2828 kg/km",
- "3757 kg/km",
- "4707 kg/km",
- "5675 kg/km",
- "7071 kg/km",
- "9138 kg/km",
- "642 kg/km",
- "910 kg/km",
- "1391 kg/km",
- "1834 kg/km",
- "2255 kg/km",
- "3158 kg/km",
- "4200 kg/km",
- "5259 kg/km",
- "6439 kg/km",
- "7967 kg/km",
- "10324 kg/km",
- "767 kg/km",
- "1100 kg/km",
- "1676 kg/km",
- "2266 kg/km",
- "2877 kg/km",
- "3979 kg/km",
- "5342 kg/km",
- "6625 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "1.91",
- "1.2",
- "0.868",
- "0.641",
- "0.443",
- "0.32",
- "0.253",
- "0.206",
- "0.164",
- "0.125",
- "0.1",
- "0.0078",
- "0.065",
- "0.268",
- "0.193",
- "0.153",
- "0.124",
- "0.0991",
- "0.0754",
- "1.83",
- "1.15",
- "0.727",
- "0.524",
- "0.387"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T07:14:29",
- "translation": null
- },
- {
- "id": 43667,
- "translationKey": "na2xy",
- "locale": "en",
- "slug": "na2xy",
- "path": "/product/na2xy",
- "name": "NA2XY",
- "shortDescriptionHtml": "The NA2XY cable is a robust low-voltage cable with an aluminium conductor, PE insulation, and a PVC sheath. It is designed for fixed installation under increased mechanical stress and is particularly suitable for power distribution in industrial and public supply networks. \n",
- "descriptionHtml": " For demanding network applications The NA2XY complies with DIN VDE 0276-603 (HD 603) and is ideal for fixed installation in indoor spaces, cable ducts, outdoors, in water, or underground. Typical areas of application include power plants, industrial facilities, and switching stations as well as local distribution networks, where mechanical stress during operation must be considered. Technical construction The conductor is made of aluminium, available as solid round (RE) or stranded round (RM). The cores are insulated with PE (polyethylene), which provides excellent electrical insulation and high thermal resistance. The black PVC sheath is UV-resistant and reliably protects against moisture and environmental influences. Fields of application NA2XY cables are the right choice for stable power distribution under mechanically demanding conditions. They provide an economical, durable solution for utilities, industry, and plant operators who rely on proven technology and high resilience. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NA2XY-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XY-scaled.webp",
- "sku": "NA2XY-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 40,
- "name": "Low Voltage Cables",
- "slug": "low-voltage-cables"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x16 - 0.6/1kV",
- "1x25 - 0.6/1kV",
- "1x35 - 0.6/1kV",
- "1x50 - 0.6/1kV",
- "1x70 - 0.6/1kV",
- "1x95 - 0.6/1kV",
- "1x120 - 0.6/1kV",
- "1x150 - 0.6/1kV",
- "1x185 - 0.6/1kV",
- "1x240 - 0.6/1kV",
- "1x300 - 0.6/1kV",
- "1x400 - 0.6/1kV",
- "1x500 - 0.6/1kV",
- "3x16 - 0.6/1kV",
- "3x25 - 0.6/1kV",
- "3x35 - 0.6/1kV",
- "3x50 - 0.6/1kV",
- "3x70 - 0.6/1kV",
- "3x95 - 0.6/1kV",
- "3x120 - 0.6/1kV",
- "3x150 - 0.6/1kV",
- "3x185 - 0.6/1kV",
- "3x240 - 0.6/1kV",
- "3x25+16 - 0.6/1kV",
- "3x35+16 - 0.6/1kV",
- "3x50+25 - 0.6/1kV",
- "3x70+35 - 0.6/1kV",
- "3x95+50 - 0.6/1kV",
- "3x120+70 - 0.6/1kV",
- "3x150+70 - 0.6/1kV",
- "3x185+95 - 0.6/1kV",
- "3x240+120 - 0.6/1kV",
- "4x16 - 0.6/1kV",
- "4x25 - 0.6/1kV",
- "4x35 - 0.6/1kV",
- "4x50 - 0.6/1kV",
- "4x70 - 0.6/1kV",
- "4x95 - 0.6/1kV",
- "4x120 - 0.6/1kV",
- "4x150 - 0.6/1kV",
- "4x185 - 0.6/1kV",
- "4x240 - 0.6/1kV",
- "5x16 - 0.6/1kV",
- "5x25 - 0.6/1kV",
- "5x35 - 0.6/1kV",
- "5x50 - 0.6/1kV",
- "5x70 - 0.6/1kV",
- "5x95 - 0.6/1kV",
- "5x120 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "AL"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "1x16",
- "1x25",
- "1x35",
- "1x50",
- "1x70",
- "1x95",
- "1x120",
- "1x150",
- "1x185",
- "1x240",
- "1x300",
- "1x400",
- "1x500",
- "3x16",
- "3x25",
- "3x35",
- "3x50",
- "3x70",
- "3x95",
- "3x120",
- "3x150",
- "3x185",
- "3x240",
- "3x25+16",
- "3x35+16",
- "3x50+25",
- "3x70+35",
- "3x95+50",
- "3x120+70",
- "3x150+70",
- "3x185+95",
- "3x240+120",
- "4x16",
- "4x25",
- "4x35",
- "4x50",
- "4x70",
- "4x95",
- "4x120",
- "4x150",
- "4x185",
- "4x240",
- "5x16",
- "5x25",
- "5x35",
- "5x50",
- "5x70",
- "5x95",
- "5x120"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "- 35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "IEC 60332-1-2"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Eca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RMV",
- "RE",
- "SM",
- "SM/RE",
- "SE"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "0.7 mm",
- "0.9 mm",
- "1 mm",
- "1.1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.6 mm",
- "1.7 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm",
- "0.9/0.7 mm",
- "1.0/0.9 mm",
- "1.1/0.9 mm",
- "1.1/1.0 mm",
- "1.2/1.1 mm",
- "1.4/1.1 mm",
- "1.6/1.1 mm",
- "1.7/1.2 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.1",
- "2.3",
- "2.4",
- "2.6",
- "2.2",
- "2.5",
- "2.7",
- "2.8"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "10 mm",
- "12 mm",
- "13 mm",
- "14 mm",
- "16 mm",
- "18 mm",
- "20 mm",
- "22 mm",
- "24 mm",
- "26 mm",
- "29 mm",
- "32 mm",
- "36 mm",
- "19 mm",
- "25 mm",
- "30 mm",
- "33 mm",
- "39 mm",
- "41 mm",
- "45 mm",
- "51 mm",
- "23 mm",
- "37 mm",
- "40 mm",
- "49 mm",
- "56 mm",
- "21 mm",
- "27 mm",
- "35 mm",
- "43 mm",
- "46 mm",
- "48 mm",
- "54 mm",
- "57 mm",
- "38 mm",
- "42 mm",
- "47 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "136 kg/km",
- "182 kg/km",
- "222 kg/km",
- "275 kg/km",
- "358 kg/km",
- "448 kg/km",
- "538 kg/km",
- "654 kg/km",
- "797 kg/km",
- "991 kg/km",
- "1194 kg/km",
- "1504 kg/km",
- "1889 kg/km",
- "513 kg/km",
- "703 kg/km",
- "868 kg/km",
- "955 kg/km",
- "1274 kg/km",
- "1584 kg/km",
- "1951 kg/km",
- "2354 kg/km",
- "2832 kg/km",
- "3597 kg/km",
- "770 kg/km",
- "940 kg/km",
- "1142 kg/km",
- "1509 kg/km",
- "1859 kg/km",
- "2245 kg/km",
- "2720 kg/km",
- "3310 kg/km",
- "4202 kg/km",
- "611 kg/km",
- "823 kg/km",
- "1015 kg/km",
- "960 kg/km",
- "1385 kg/km",
- "1115 kg/km",
- "1192 kg/km",
- "1501 kg/km",
- "1901 kg/km",
- "2012 kg/km",
- "2376 kg/km",
- "2827 kg/km",
- "3007 kg/km",
- "3466 kg/km",
- "4373 kg/km",
- "4648 kg/km",
- "688 kg/km",
- "1181 kg/km",
- "1543 kg/km",
- "2030 kg/km",
- "2604 kg/km",
- "3159 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "1.91",
- "1.2",
- "0.868",
- "0.641",
- "0.443",
- "0.32",
- "0.253",
- "0.206",
- "0.164",
- "0.125",
- "0.1",
- "0.0778",
- "0.0605"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T07:05:14",
- "translation": null
- },
- {
- "id": 43461,
- "translationKey": "n2x2y",
- "locale": "en",
- "slug": "n2x2y",
- "path": "/product/n2x2y",
- "name": "N2X2Y",
- "shortDescriptionHtml": "The N2X2Y cable is an XLPE-insulated low-voltage cable with an HDPE sheath, developed for fixed installations under demanding conditions. It stands out for its high thermal endurance and is ideally suited for use in power distribution systems with increased safety requirements. \n",
- "descriptionHtml": " For demanding operating conditions The N2X2Y complies with HD 603 S1 Part 5G and HD 627 S1 Part 4H (equivalent to DIN VDE 0276-603 and -627) and is designed for an operating frequency of 50 Hz. It is suitable for fixed installation indoors, underground, outdoors, and in industrial environments with high temperature and load requirements. The maximum operating temperature is +90 °C, and +250 °C is permissible under short-circuit conditions. Construction and technical features The cable structure consists of copper conductors with XLPE insulation (cross-linked polyethylene). The cores are stranded and surrounded by a robust black HDPE sheath. The integrated concentric conductor made of copper wires is grounded at both ends and provides effective protection against potential differences and contact voltages. Fields of application N2X2Y is ideal for installations in local networks, substations, and industrial plants as well as in power distribution systems, where high thermal endurance and mechanical strength are required. It provides a durable solution for demanding operating conditions – reliable and safe. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/N2X2Y-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/N2X2Y-scaled.webp",
- "sku": "N2X2Y-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 40,
- "name": "Low Voltage Cables",
- "slug": "low-voltage-cables"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x10 - 0.6/1kV",
- "1x16 - 0.6/1kV",
- "1x25 - 0.6/1kV",
- "1x35 - 0.6/1kV",
- "1x50 - 0.6/1kV",
- "1x70 - 0.6/1kV",
- "1x95 - 0.6/1kV",
- "1x120 - 0.6/1kV",
- "1x150 - 0.6/1kV",
- "1x240 - 0.6/1kV",
- "1x300 - 0.6/1kV",
- "1x400 - 0.6/1kV",
- "1x500 - 0.6/1kV",
- "3x10 - 0.6/1kV",
- "3x16 - 0.6/1kV",
- "3x25 - 0.6/1kV",
- "3x35 - 0.6/1kV",
- "3x50 - 0.6/1kV",
- "3x70 - 0.6/1kV",
- "3x95 - 0.6/1kV",
- "3x120 - 0.6/1kV",
- "3x150 - 0.6/1kV",
- "3x185 - 0.6/1kV",
- "3x240 - 0.6/1kV",
- "3x35+16 - 0.6/1kV",
- "3x50+25 - 0.6/1kV",
- "3x70+35 - 0.6/1kV",
- "3x95+50 - 0.6/1kV",
- "3x120+70 - 0.6/1kV",
- "3x150+70 - 0.6/1kV",
- "3x185+95 - 0.6/1kV",
- "3x240+120 - 0.6/1kV",
- "4x10 - 0.6/1kV",
- "4x16 - 0.6/1kV",
- "4x25 - 0.6/1kV",
- "4x35 - 0.6/1kV",
- "4x50 - 0.6/1kV",
- "4x70 - 0.6/1kV",
- "4x95 - 0.6/1kV",
- "4x120 - 0.6/1kV",
- "4x150 - 0.6/1kV",
- "4x185 - 0.6/1kV",
- "4x240 - 0.6/1kV",
- "5x10 - 0.6/1kV",
- "5x16 - 0.6/1kV",
- "5x25 - 0.6/1kV",
- "5x35 - 0.6/1kV",
- "5x50 - 0.6/1kV",
- "5x70 - 0.6/1kV",
- "5x95 - 0.6/1kV",
- "5x120 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "CU"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "1x10",
- "1x16",
- "1x25",
- "1x35",
- "1x50",
- "1x70",
- "1x95",
- "1x120",
- "1x150",
- "1x240",
- "1x300",
- "1x400",
- "1x500",
- "3x10",
- "3x16",
- "3x25",
- "3x35",
- "3x50",
- "3x70",
- "3x95",
- "3x120",
- "3x150",
- "3x185",
- "3x240",
- "3x35+16",
- "3x50+25",
- "3x70+35",
- "3x95+50",
- "3x120+70",
- "3x150+70",
- "3x185+95",
- "3x240+120",
- "4x10",
- "4x16",
- "4x25",
- "4x35",
- "4x50",
- "4x70",
- "4x95",
- "4x120",
- "4x150",
- "4x185",
- "4x240",
- "5x10",
- "5x16",
- "5x25",
- "5x35",
- "5x50",
- "5x70",
- "5x95",
- "5x120"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-20 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "- 35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RE",
- "RMV",
- "SM",
- "RMV/RE",
- "SM/RMV"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "0.7 mm",
- "0.9 mm",
- "1 mm",
- "1.1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.7 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm",
- "1.6 mm",
- "0.9/0.7 mm",
- "1.0/0.9 mm",
- "1.1/0.9 mm",
- "1.1/1.0 mm",
- "1.2/1.1 mm",
- "1.4/1.1 mm",
- "1.6/1.1 mm",
- "1.7/1.2 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.1",
- "2.3",
- "2.4",
- "2.6",
- "2.2",
- "2.5",
- "2.7",
- "2.8"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "9 mm",
- "10 mm",
- "12 mm",
- "13 mm",
- "14 mm",
- "16 mm",
- "18 mm",
- "20 mm",
- "22 mm",
- "26 mm",
- "29 mm",
- "32 mm",
- "36 mm",
- "17 mm",
- "19 mm",
- "23 mm",
- "30 mm",
- "33 mm",
- "37 mm",
- "41 mm",
- "45 mm",
- "51 mm",
- "40 mm",
- "49 mm",
- "56 mm",
- "21 mm",
- "25 mm",
- "28 mm",
- "46 mm",
- "57 mm",
- "27 mm",
- "31 mm",
- "38 mm",
- "42 mm",
- "47 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "141 kg/km",
- "200 kg/km",
- "301 kg/km",
- "397 kg/km",
- "520 kg/km",
- "725 kg/km",
- "972 kg/km",
- "1207 kg/km",
- "1488 kg/km",
- "2388 kg/km",
- "2964 kg/km",
- "3772 kg/km",
- "4808 kg/km",
- "529 kg/km",
- "741 kg/km",
- "1122 kg/km",
- "1473 kg/km",
- "1729 kg/km",
- "2414 kg/km",
- "3210 kg/km",
- "3962 kg/km",
- "4906 kg/km",
- "6047 kg/km",
- "7833 kg/km",
- "1652 kg/km",
- "2075 kg/km",
- "2828 kg/km",
- "3757 kg/km",
- "4707 kg/km",
- "5675 kg/km",
- "7071 kg/km",
- "9138 kg/km",
- "642 kg/km",
- "910 kg/km",
- "1391 kg/km",
- "1834 kg/km",
- "2255 kg/km",
- "3158 kg/km",
- "4200 kg/km",
- "5259 kg/km",
- "6439 kg/km",
- "7967 kg/km",
- "10324 kg/km",
- "767 kg/km",
- "1100 kg/km",
- "1676 kg/km",
- "2266 kg/km",
- "2877 kg/km",
- "3979 kg/km",
- "5342 kg/km",
- "6625 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "1.83",
- "1.15",
- "0.727",
- "0.524",
- "0.387",
- "0.268",
- "0.193",
- "0.153",
- "0.124",
- "0.0991",
- "0.0601",
- "0.047",
- "0.0366",
- "0.0754"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T07:18:28",
- "translation": null
- },
- {
- "id": 43247,
- "translationKey": "n2xy",
- "locale": "en",
- "slug": "n2xy",
- "path": "/product/n2xy",
- "name": "N2XY",
- "shortDescriptionHtml": "The N2XY cable is an unarmoured low-voltage cable for power and control applications up to 0.6/1 kV. It is suitable for fixed installation in buildings, outdoors, in humid environments, and for direct burial – wherever no special mechanical stresses occur. \n",
- "descriptionHtml": " For fixed installation in standard applications The N2XY 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. Technical construction The conductor consists of solid or stranded copper (RE or RM), with the cores insulated with XLPE (cross-linked polyethylene). The cable is embedded in a PVC filler compound and surrounded by a PVC outer sheath, which protects it against environmental influences and normal mechanical stress. Variants and applications N2XY is available as N2XY-J (with protective conductor) and N2XY-O (without protective conductor). It offers a space-saving, economical solution for low-voltage distribution without compromising on safety or quality. Typical applications include commercial and residential buildings, system installations, as well as connections between switchgear and distribution boards. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/N2XY-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/N2XY-scaled.webp",
- "sku": "N2XY-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 40,
- "name": "Low Voltage Cables",
- "slug": "low-voltage-cables"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x10 - 0.6/1kV",
- "1x16 - 0.6/1kV",
- "1x25 - 0.6/1kV",
- "1x35 - 0.6/1kV",
- "1x50 - 0.6/1kV",
- "1x70 - 0.6/1kV",
- "1x95 - 0.6/1kV",
- "1x120 - 0.6/1kV",
- "1x150 - 0.6/1kV",
- "1x185 - 0.6/1kV",
- "1x240 - 0.6/1kV",
- "1x300 - 0.6/1kV",
- "1x400 - 0.6/1kV",
- "1x500 - 0.6/1kV",
- "3x10 - 0.6/1kV",
- "3x16 - 0.6/1kV",
- "3x25 - 0.6/1kV",
- "3x35 - 0.6/1kV",
- "3x50 - 0.6/1kV",
- "3x70 - 0.6/1kV",
- "3x95 - 0.6/1kV",
- "3x120 - 0.6/1kV",
- "3x150 - 0.6/1kV",
- "3x185 - 0.6/1kV",
- "3x240 - 0.6/1kV",
- "3x25+16 - 0.6/1kV",
- "3x35+16 - 0.6/1kV",
- "3x50+25 - 0.6/1kV",
- "3x70+35 - 0.6/1kV",
- "3x95+50 - 0.6/1kV",
- "3x120+70 - 0.6/1kV",
- "3x150+70 - 0.6/1kV",
- "3x185+95 - 0.6/1kV",
- "3x240+120 - 0.6/1kV",
- "4x10 - 0.6/1kV",
- "4x16 - 0.6/1kV",
- "4x25 - 0.6/1kV",
- "4x35 - 0.6/1kV",
- "4x50 - 0.6/1kV",
- "4x70 - 0.6/1kV",
- "4x95 - 0.6/1kV",
- "4x120 - 0.6/1kV",
- "4x150 - 0.6/1kV",
- "4x185 - 0.6/1kV",
- "4x240 - 0.6/1kV",
- "5x10 - 0.6/1kV",
- "5x16 - 0.6/1kV",
- "5x25 - 0.6/1kV",
- "5x35 - 0.6/1kV",
- "5x50 - 0.6/1kV",
- "5x70 - 0.6/1kV",
- "5x95 - 0.6/1kV",
- "5x120 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "CU"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "1x10",
- "1x16",
- "1x25",
- "1x35",
- "1x50",
- "1x70",
- "1x95",
- "1x120",
- "1x150",
- "1x185",
- "1x240",
- "1x300",
- "1x400",
- "1x500",
- "3x10",
- "3x16",
- "3x25",
- "3x35",
- "3x50",
- "3x70",
- "3x95",
- "3x120",
- "3x150",
- "3x185",
- "3x240",
- "3x25+16",
- "3x35+16",
- "3x50+25",
- "3x70+35",
- "3x95+50",
- "3x120+70",
- "3x150+70",
- "3x185+95",
- "3x240+120",
- "4x10",
- "4x16",
- "4x25",
- "4x35",
- "4x50",
- "4x70",
- "4x95",
- "4x120",
- "4x150",
- "4x185",
- "4x240",
- "5x10",
- "5x16",
- "5x25",
- "5x35",
- "5x50",
- "5x70",
- "5x95",
- "5x120"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "- 35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "IEC 60332-1-2"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Eca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RE",
- "RMV",
- "SM",
- "RMV/RE",
- "SM/RE",
- "SM/RMV"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "0.7 mm",
- "0.9 mm",
- "1 mm",
- "1.1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.6 mm",
- "1.7 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm",
- "0.9/0.7 mm",
- "1.0/0.9 mm",
- "1.1/0.9 mm",
- "1.1/1.0 mm",
- "1.2/1.1 mm",
- "1.4/1.1 mm",
- "1.6/1.1 mm",
- "1.7/1.2 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.1",
- "2.3",
- "2.4",
- "2.6",
- "2.2",
- "2.5",
- "2.7",
- "2.8"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "9 mm",
- "10 mm",
- "12 mm",
- "13 mm",
- "14 mm",
- "16 mm",
- "18 mm",
- "20 mm",
- "22 mm",
- "24 mm",
- "26 mm",
- "29 mm",
- "32 mm",
- "36 mm",
- "17 mm",
- "19 mm",
- "23 mm",
- "30 mm",
- "33 mm",
- "37 mm",
- "41 mm",
- "45 mm",
- "51 mm",
- "40 mm",
- "49 mm",
- "56 mm",
- "21 mm",
- "25 mm",
- "46 mm",
- "57 mm",
- "27 mm",
- "31 mm",
- "35 mm",
- "38 mm",
- "42 mm",
- "47 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "166 kg/km",
- "229 kg/km",
- "336 kg/km",
- "436 kg/km",
- "562 kg/km",
- "774 kg/km",
- "1027 kg/km",
- "1267 kg/km",
- "1555 kg/km",
- "1922 kg/km",
- "2471 kg/km",
- "3055 kg/km",
- "3880 kg/km",
- "4938 kg/km",
- "581 kg/km",
- "800 kg/km",
- "1193 kg/km",
- "1553 kg/km",
- "1815 kg/km",
- "2519 kg/km",
- "3319 kg/km",
- "4089 kg/km",
- "5077 kg/km",
- "6233 kg/km",
- "8067 kg/km",
- "1357 kg/km",
- "1658 kg/km",
- "2170 kg/km",
- "2932 kg/km",
- "3897 kg/km",
- "4865 kg/km",
- "5862 kg/km",
- "7293 kg/km",
- "9407 kg/km",
- "698 kg/km",
- "974 kg/km",
- "995 kg/km",
- "1469 kg/km",
- "1818 kg/km",
- "2354 kg/km",
- "3268 kg/km",
- "4341 kg/km",
- "5429 kg/km",
- "6637 kg/km",
- "8188 kg/km",
- "10609 kg/km",
- "829 kg/km",
- "1169 kg/km",
- "1188 kg/km",
- "1795 kg/km",
- "2363 kg/km",
- "3154 kg/km",
- "4146 kg/km",
- "5516 kg/km",
- "6805 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "1.83",
- "1.15",
- "0.727",
- "0.524",
- "0.387",
- "0.268",
- "0.193",
- "0.153",
- "0.124",
- "0.0991",
- "0.0754",
- "0.0601",
- "0.047",
- "0.0366"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T07:16:44",
- "translation": null
- },
- {
- "id": 43049,
- "translationKey": "nay2y",
- "locale": "en",
- "slug": "nay2y",
- "path": "/product/nay2y",
- "name": "NAY2Y",
- "shortDescriptionHtml": "The NAY2Y cable is an especially robust low-voltage cable with an aluminium conductor and an HDPE sheath, specifically developed for installations with high mechanical stress. It stands out for its durability in demanding environments – whether in industrial facilities, transformer stations, or local networks. \n",
- "descriptionHtml": " For demanding installation conditions The NAY2Y meets the requirements of TP PRAKAB 12/03 based on VDE 0276-603 and is suitable for fixed installation indoors, in cable ducts, underground, in water, and outdoors. 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. Construction and material components The conductor is made of aluminium, available as solid round (RE), stranded round (RM), or sector-shaped (SE/SM). The PVC-insulated cores are stranded together and protected by a common EPDM sheath. The outer sheath of HDPE (black, UV-resistant) makes the cable particularly resistant to pressure, abrasion, and moisture – perfect for long-term installations under challenging conditions. Typical applications NAY2Y cables are the first choice for cabling projects with high loads, 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. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NAY2Y-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NAY2Y-scaled.webp",
- "sku": "NAY2Y-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 40,
- "name": "Low Voltage Cables",
- "slug": "low-voltage-cables"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x16 - 0.6/1kV",
- "1x25 - 0.6/1kV",
- "1x35 - 0.6/1kV",
- "1x50 - 0.6/1kV",
- "1x70 - 0.6/1kV",
- "1x95 - 0.6/1kV",
- "1x120 - 0.6/1kV",
- "1x150 - 0.6/1kV",
- "1x185 - 0.6/1kV",
- "1x240 - 0.6/1kV",
- "1x300 - 0.6/1kV",
- "1x400 - 0.6/1kV",
- "1x500 - 0.6/1kV",
- "3x10 - 0.6/1kV",
- "3x16 - 0.6/1kV",
- "3x25 - 0.6/1kV",
- "3x35 - 0.6/1kV",
- "3x50 - 0.6/1kV",
- "3x70 - 0.6/1kV",
- "3x95 - 0.6/1kV",
- "3x120 - 0.6/1kV",
- "3x150 - 0.6/1kV",
- "3x185 - 0.6/1kV",
- "3x240 - 0.6/1kV",
- "3x35+16 - 0.6/1kV",
- "3x50+25 - 0.6/1kV",
- "3x70+35 - 0.6/1kV",
- "3x95+50 - 0.6/1kV",
- "3x120+70 - 0.6/1kV",
- "3x150+70 - 0.6/1kV",
- "3x185+95 - 0.6/1kV",
- "3x240+120 - 0.6/1kV",
- "4x16 - 0.6/1kV",
- "4x25 - 0.6/1kV",
- "4x35 - 0.6/1kV",
- "4x50 - 0.6/1kV",
- "4x70 - 0.6/1kV",
- "4x95 - 0.6/1kV",
- "4x120 - 0.6/1kV",
- "4x150 - 0.6/1kV",
- "4x185 - 0.6/1kV",
- "4x240 - 0.6/1kV",
- "5x16 - 0.6/1kV",
- "5x25 - 0.6/1kV",
- "5x35 - 0.6/1kV",
- "5x50 - 0.6/1kV",
- "5x70 - 0.6/1kV",
- "5x95 - 0.6/1kV",
- "5x120 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "AL"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "1x16",
- "1x25",
- "1x35",
- "1x50",
- "1x70",
- "1x95",
- "1x120",
- "1x150",
- "1x185",
- "1x240",
- "1x300",
- "1x400",
- "1x500",
- "3x10",
- "3x16",
- "3x25",
- "3x35",
- "3x50",
- "3x70",
- "3x95",
- "3x120",
- "3x150",
- "3x185",
- "3x240",
- "3x35+16",
- "3x50+25",
- "3x70+35",
- "3x95+50",
- "3x120+70",
- "3x150+70",
- "3x185+95",
- "3x240+120",
- "4x16",
- "4x25",
- "4x35",
- "4x50",
- "4x70",
- "4x95",
- "4x120",
- "4x150",
- "4x185",
- "4x240",
- "5x16",
- "5x25",
- "5x35",
- "5x50",
- "5x70",
- "5x95",
- "5x120"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "≤ 300 mm2: +160, > 300 mm2: +140 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "- 35 - +70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RE",
- "RMV",
- "SE",
- "SM/RMV",
- "SM"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.6 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm",
- "2.4 mm",
- "2.6 mm",
- "2.8 mm",
- "1.2/1.0 mm",
- "1.4/1.2 mm",
- "1.6/1.4 mm",
- "1.8/1.4 mm",
- "2.0/1.6 mm",
- "2.2/1.6 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.1",
- "2.2",
- "2.3",
- "2.5",
- "2.7",
- "2.4",
- "2.6",
- "2.8",
- "2.9"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "11 mm",
- "12 mm",
- "13 mm",
- "15 mm",
- "17 mm",
- "19 mm",
- "20 mm",
- "22 mm",
- "25 mm",
- "27 mm",
- "30 mm",
- "34 mm",
- "37 mm",
- "18 mm",
- "24 mm",
- "26 mm",
- "31 mm",
- "41 mm",
- "45 mm",
- "50 mm",
- "39 mm",
- "42 mm",
- "47 mm",
- "51 mm",
- "58 mm",
- "23 mm",
- "28 mm",
- "33 mm",
- "48 mm",
- "53 mm",
- "56 mm",
- "59 mm",
- "35 mm",
- "40 mm",
- "49 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "122 kg/km",
- "171 kg/km",
- "209 kg/km",
- "277 kg/km",
- "356 kg/km",
- "464 kg/km",
- "549 kg/km",
- "670 kg/km",
- "821 kg/km",
- "1035 kg/km",
- "1273 kg/km",
- "1598 kg/km",
- "2001 kg/km",
- "398 kg/km",
- "523 kg/km",
- "735 kg/km",
- "903 kg/km",
- "955 kg/km",
- "1263 kg/km",
- "1625 kg/km",
- "1911 kg/km",
- "2329 kg/km",
- "2821 kg/km",
- "3573 kg/km",
- "981 kg/km",
- "1222 kg/km",
- "1582 kg/km",
- "2004 kg/km",
- "2429 kg/km",
- "2854 kg/km",
- "3492 kg/km",
- "4437 kg/km",
- "611 kg/km",
- "649 kg/km",
- "873 kg/km",
- "906 kg/km",
- "1071 kg/km",
- "1238 kg/km",
- "1324 kg/km",
- "1591 kg/km",
- "2068 kg/km",
- "2518 kg/km",
- "3013 kg/km",
- "3183 kg/km",
- "3732 kg/km",
- "3928 kg/km",
- "4648 kg/km",
- "4929 kg/km",
- "721 kg/km",
- "1059 kg/km",
- "1320 kg/km",
- "1661 kg/km",
- "2137 kg/km",
- "2816 kg/km",
- "3342 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "1.91",
- "1.2",
- "0.868",
- "0.641",
- "0.443",
- "0.32",
- "0.253",
- "0.206",
- "0.164",
- "0.125",
- "0.1",
- "0.0778",
- "0.0605",
- "3.08"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T07:03:29",
- "translation": null
- },
- {
- "id": 42911,
- "translationKey": "naycwy",
- "locale": "en",
- "slug": "naycwy",
- "path": "/product/naycwy",
- "name": "NAYCWY",
- "shortDescriptionHtml": "The NAYCWY cable is a shielded low-voltage cable with an aluminium conductor and a concentric copper conductor. It has been specifically developed for applications requiring additional protection against contact voltages – such as in industrial networks, local grids, or power distribution systems. \n",
- "descriptionHtml": " Designed for increased safety requirements The NAYCWY complies with DIN VDE 0276-603 (HD 603) and is suitable for use in power plants, industrial facilities, switching stations, and local networks. 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. Technical construction The electrical conductor consists of aluminium, available as stranded round (RM), sector-shaped solid (SE), or stranded (SM). The PVC core insulation and a common EPDM sheath protect the stranded cores. On top lies a concentric conductor made of bare copper wires with copper tape counter helix – ideally usable as PE or PEN conductor. A black UV-resistant PVC sheath reliably seals the cable from the outside. Application and special features NAYCWY cables are used wherever electrical safety and shielding 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. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NAYCWY-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NAYCWY-scaled.webp",
- "sku": "NAYCWY-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 40,
- "name": "Low Voltage Cables",
- "slug": "low-voltage-cables"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "2x16/16 - 0.6/1kV",
- "3x16/16 - 0.6/1kV",
- "3x25/16 - 0.6/1kV",
- "3x25/25 - 0.6/1kV",
- "3x35/16 - 0.6/1kV",
- "3x35/35 - 0.6/1kV",
- "3x50/25 - 0.6/1kV",
- "3x50/50 - 0.6/1kV",
- "3x70/35 - 0.6/1kV",
- "3x70/70 - 0.6/1kV",
- "3x95/50 - 0.6/1kV",
- "3x95/95 - 0.6/1kV",
- "3x120/70 - 0.6/1kV",
- "3x120/120 - 0.6/1kV",
- "3x150/70 - 0.6/1kV",
- "3x150/150 - 0.6/1kV",
- "3x185/95 - 0.6/1kV",
- "3x185/185 - 0.6/1kV",
- "3x240/120 - 0.6/1kV",
- "4x16/10 - 0.6/1kV",
- "4x16/16 - 0.6/1kV",
- "4x25/16 - 0.6/1kV",
- "4x35/16 - 0.6/1kV",
- "4x50/25 - 0.6/1kV",
- "4x50/35 - 0.6/1kV",
- "4x70/35 - 0.6/1kV",
- "4x95/50 - 0.6/1kV",
- "4x95/95 - 0.6/1kV",
- "4x120/70 - 0.6/1kV",
- "4x150/70 - 0.6/1kV",
- "4x150/120 - 0.6/1kV",
- "4x150/150 - 0.6/1kV",
- "4x185/95 - 0.6/1kV",
- "4x240/120 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "AL"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "2x16/16",
- "3x16/16",
- "3x25/16",
- "3x25/25",
- "3x35/16",
- "3x35/35",
- "3x50/25",
- "3x50/50",
- "3x70/35",
- "3x70/70",
- "3x95/50",
- "3x95/95",
- "3x120/70",
- "3x120/120",
- "3x150/70",
- "3x150/150",
- "3x185/95",
- "3x185/185",
- "3x240/120",
- "4x16/10",
- "4x16/16",
- "4x25/16",
- "4x35/16",
- "4x50/25",
- "4x50/35",
- "4x70/35",
- "4x95/50",
- "4x95/95",
- "4x120/70",
- "4x150/70",
- "4x150/120",
- "4x150/150",
- "4x185/95",
- "4x240/120"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "160 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "IEC 60332-1-2"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Eca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RE",
- "RMV",
- "SM",
- "SE"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.6 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.2",
- "2.3",
- "2.4",
- "2.6",
- "2.8",
- "2.1",
- "3"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "21 mm",
- "22 mm",
- "26 mm",
- "28 mm",
- "29 mm",
- "33 mm",
- "34 mm",
- "38 mm",
- "41 mm",
- "40 mm",
- "46 mm",
- "44 mm",
- "50 mm",
- "48 mm",
- "56 mm",
- "24 mm",
- "27 mm",
- "30 mm",
- "31 mm",
- "35 mm",
- "36 mm",
- "39 mm",
- "42 mm",
- "51 mm",
- "53 mm",
- "62 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "651 kg/km",
- "710 kg/km",
- "969 kg/km",
- "1028 kg/km",
- "1173 kg/km",
- "1034 kg/km",
- "1235 kg/km",
- "1139 kg/km",
- "1309 kg/km",
- "1377 kg/km",
- "1441 kg/km",
- "1740 kg/km",
- "1881 kg/km",
- "1948 kg/km",
- "2243 kg/km",
- "2529 kg/km",
- "2699 kg/km",
- "2915 kg/km",
- "3011 kg/km",
- "3242 kg/km",
- "3531 kg/km",
- "3674 kg/km",
- "3925 kg/km",
- "4313 kg/km",
- "4492 kg/km",
- "5018 kg/km",
- "802 kg/km",
- "808 kg/km",
- "1090 kg/km",
- "1141 kg/km",
- "1327 kg/km",
- "1253 kg/km",
- "1691 kg/km",
- "1637 kg/km",
- "2012 kg/km",
- "2125 kg/km",
- "2631 kg/km",
- "2760 kg/km",
- "3047 kg/km",
- "3280 kg/km",
- "3407 kg/km",
- "3870 kg/km",
- "4062 kg/km",
- "4297 kg/km",
- "4263 kg/km",
- "4455 kg/km",
- "4775 kg/km",
- "4995 kg/km",
- "6235 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "1.91",
- "1.2",
- "0.868",
- "0.641",
- "0.443",
- "0.32",
- "0.253",
- "0.206",
- "0.164",
- "0.125"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T07:00:20",
- "translation": null
- },
- {
- "id": 42701,
- "translationKey": "nayy",
- "locale": "en",
- "slug": "nayy",
- "path": "/product/nayy",
- "name": "NAYY",
- "shortDescriptionHtml": "The NAYY cable is a versatile low-voltage cable with an aluminium conductor, designed for fixed installation in buildings, underground, in water, or outdoors. It provides a cost-effective solution for power distribution under normal mechanical requirements – ideal for local networks, industrial facilities, and power supply systems. \n",
- "descriptionHtml": " Versatile applications in network construction The NAYY is a power distribution cable according to VDE 0276-603, particularly suitable for use in power plants, local networks, industrial facilities, and switching stations. 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. Construction and materials At its core is an aluminium conductor, available as solid round (RE), stranded round (RM), or sector-shaped (SE/SM). The conductors are PVC-insulated, stranded together, and protected by a common EPDM sheath. The outer PVC sheath is black, UV-resistant, and resistant to moisture and environmental influences. Typical applications NAYY cables are ideally suited for permanent, cost-effective installations in supply networks, distribution systems, or building wiring. They provide a solid and durable solution for safe power distribution under standardized conditions. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NAYY-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NAYY-scaled.webp",
- "sku": "NAYY-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 40,
- "name": "Low Voltage Cables",
- "slug": "low-voltage-cables"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x16 - 0.6/1kV",
- "1x25 - 0.6/1kV",
- "1x35 - 0.6/1kV",
- "1x50 - 0.6/1kV",
- "1x70 - 0.6/1kV",
- "1x95 - 0.6/1kV",
- "1x120 - 0.6/1kV",
- "1x150 - 0.6/1kV",
- "1x185 - 0.6/1kV",
- "1x240 - 0.6/1kV",
- "1x300 - 0.6/1kV",
- "1x400 - 0.6/1kV",
- "1x500 - 0.6/1kV",
- "1x630 - 0.6/1kV",
- "2x16 - 0.6/1kV",
- "3x16 - 0.6/1kV",
- "3x25 - 0.6/1kV",
- "3x35 - 0.6/1kV",
- "3x50 - 0.6/1kV",
- "3x70 - 0.6/1kV",
- "3x95 - 0.6/1kV",
- "3x120 - 0.6/1kV",
- "3x150 - 0.6/1kV",
- "3x185 - 0.6/1kV",
- "3x240 - 0.6/1kV",
- "3x300 - 0.6/1kV",
- "3x35+16 - 0.6/1kV",
- "3x50+25 - 0.6/1kV",
- "3x70+35 - 0.6/1kV",
- "3x95+50 - 0.6/1kV",
- "3x120+70 - 0.6/1kV",
- "3x150+70 - 0.6/1kV",
- "3x185+95 - 0.6/1kV",
- "3x240+120 - 0.6/1kV",
- "4x16 - 0.6/1kV",
- "4x25 - 0.6/1kV",
- "4x35 - 0.6/1kV",
- "4x50 - 0.6/1kV",
- "4x70 - 0.6/1kV",
- "4x95 - 0.6/1kV",
- "4x120 - 0.6/1kV",
- "4x150 - 0.6/1kV",
- "4x185 - 0.6/1kV",
- "4x240 - 0.6/1kV",
- "4x300 - 0.6/1kV",
- "5x16 - 0.6/1kV",
- "5x25 - 0.6/1kV",
- "5x35 - 0.6/1kV",
- "5x50 - 0.6/1kV",
- "5x70 - 0.6/1kV",
- "5x95 - 0.6/1kV",
- "5x120 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "CU",
- "AL"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "1x16",
- "1x25",
- "1x35",
- "1x50",
- "1x70",
- "1x95",
- "1x120",
- "1x150",
- "1x185",
- "1x240",
- "1x300",
- "1x400",
- "1x500",
- "1x630",
- "2x16",
- "3x16",
- "3x25",
- "3x35",
- "3x50",
- "3x70",
- "3x95",
- "3x120",
- "3x150",
- "3x185",
- "3x240",
- "3x300",
- "3x35+16",
- "3x50+25",
- "3x70+35",
- "3x95+50",
- "3x120+70",
- "3x150+70",
- "3x185+95",
- "3x240+120",
- "4x16",
- "4x25",
- "4x35",
- "4x50",
- "4x70",
- "4x95",
- "4x120",
- "4x150",
- "4x185",
- "4x240",
- "4x300",
- "5x16",
- "5x25",
- "5x35",
- "5x50",
- "5x70",
- "5x95",
- "5x120"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "≤ 300 mm2: +160, > 300 mm2: +140 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "– 35 - +70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "IEC 60332-1-2"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Eca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RE",
- "RMV",
- "SM",
- "SM/RMV",
- "SE"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.6 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm",
- "2.4 mm",
- "2.6 mm",
- "2.8 mm",
- "1.2/1.0 mm",
- "1.4/1.2 mm",
- "1.6/1.4 mm",
- "1.8/1.4 mm",
- "2.0/1.6 mm",
- "2.2/1.6 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.1",
- "2.2",
- "2.3",
- "2.5",
- "2.7",
- "2.9",
- "2.4",
- "2.6",
- "2.8",
- "3.1"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "11 mm",
- "12 mm",
- "13 mm",
- "14 mm",
- "15 mm",
- "17 mm",
- "19 mm",
- "20 mm",
- "22 mm",
- "25 mm",
- "27 mm",
- "30 mm",
- "34 mm",
- "37 mm",
- "41 mm",
- "24 mm",
- "28 mm",
- "31 mm",
- "36 mm",
- "38 mm",
- "43 mm",
- "47 mm",
- "53 mm",
- "58 mm",
- "39 mm",
- "42 mm",
- "51 mm",
- "26 mm",
- "29 mm",
- "32 mm",
- "33 mm",
- "44 mm",
- "48 mm",
- "50 mm",
- "56 mm",
- "59 mm",
- "65 mm",
- "35 mm",
- "40 mm",
- "45 mm",
- "52 mm",
- "49 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "153 kg/km",
- "196 kg/km",
- "213 kg/km",
- "236 kg/km",
- "256 kg/km",
- "322 kg/km",
- "406 kg/km",
- "519 kg/km",
- "610 kg/km",
- "738 kg/km",
- "897 kg/km",
- "1106 kg/km",
- "1371 kg/km",
- "1714 kg/km",
- "2135 kg/km",
- "2631 kg/km",
- "526 kg/km",
- "586 kg/km",
- "841 kg/km",
- "1022 kg/km",
- "1094 kg/km",
- "1428 kg/km",
- "1835 kg/km",
- "2150 kg/km",
- "2633 kg/km",
- "3183 kg/km",
- "4048 kg/km",
- "4887 kg/km",
- "1081 kg/km",
- "1338 kg/km",
- "1707 kg/km",
- "2158 kg/km",
- "2603 kg/km",
- "3069 kg/km",
- "3730 kg/km",
- "4727 kg/km",
- "679 kg/km",
- "954 kg/km",
- "989 kg/km",
- "1160 kg/km",
- "1207 kg/km",
- "1064 kg/km",
- "1547 kg/km",
- "1340 kg/km",
- "1431 kg/km",
- "1706 kg/km",
- "1816 kg/km",
- "2216 kg/km",
- "2338 kg/km",
- "2695 kg/km",
- "2818 kg/km",
- "3152 kg/km",
- "3396 kg/km",
- "3973 kg/km",
- "4181 kg/km",
- "4935 kg/km",
- "5234 kg/km",
- "6343 kg/km",
- "796 kg/km",
- "1147 kg/km",
- "1189 kg/km",
- "1369 kg/km",
- "1424 kg/km",
- "2088 kg/km",
- "1805 kg/km",
- "2659 kg/km",
- "2316 kg/km",
- "3549 kg/km",
- "3032 kg/km",
- "4206 kg/km",
- "3586 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "1.91",
- "1.2",
- "0.868",
- "0.641",
- "0.443",
- "0.32",
- "0.253",
- "0.206",
- "0.164",
- "0.125",
- "0.1",
- "0.0778",
- "0.0605",
- "0.0469"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T06:57:49",
- "translation": null
- },
- {
- "id": 42595,
- "translationKey": "ny2y",
- "locale": "en",
- "slug": "ny2y",
- "path": "/product/ny2y",
- "name": "NY2Y",
- "shortDescriptionHtml": "The NY2Y is an especially robust low-voltage cable for fixed installation under high mechanical demands – whether underground, in water, or in industrial environments. Thanks to its material combination, it is perfectly suited for a wide range of application conditions. \n",
- "descriptionHtml": " Reliable under heavy load The NY2Y is a low-voltage cable for use in power plants, industrial facilities, switching stations, and local distribution networks. It is suitable for fixed installation indoors, in cable ducts, outdoors, in water, and underground – wherever strong mechanical stress is expected during installation and operation. The construction complies with TP PRAKAB 16/03 based on VDE 0276-603. Detailed construction The cable consists of a copper conductor, available as solid round (RE), stranded round (RM), or sector-shaped stranded (SM). The PVC core insulation ensures electrical safety, while the cores are stranded together and protected by a common EPDM sheath. The outer sheath made of HDPE (black, UV-resistant) makes the NY2Y particularly resistant to abrasion, moisture, and environmental influences. Typical applications NY2Y is ideally suited for applications with increased requirements for mechanical strength and weather resistance. 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. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NY2Y-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NY2Y-scaled.webp",
- "sku": "NY2Y-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 40,
- "name": "Low Voltage Cables",
- "slug": "low-voltage-cables"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x10 - 0.6/1kV",
- "1x16 - 0.6/1kV",
- "1x25 - 0.6/1kV",
- "1x35 - 0.6/1kV",
- "1x50 - 0.6/1kV",
- "1x70 - 0.6/1kV",
- "1x95 - 0.6/1kV",
- "1x120 - 0.6/1kV",
- "1x150 - 0.6/1kV",
- "1x185 - 0.6/1kV",
- "1x240 - 0.6/1kV",
- "1x300 - 0.6/1kV",
- "1x400 - 0.6/1kV",
- "1x500 - 0.6/1kV",
- "3x10 - 0.6/1kV",
- "3x16 - 0.6/1kV",
- "3x25 - 0.6/1kV",
- "3x35 - 0.6/1kV",
- "3x50 - 0.6/1kV",
- "3x70 - 0.6/1kV",
- "3x95 - 0.6/1kV",
- "3x120 - 0.6/1kV",
- "3x150 - 0.6/1kV",
- "3x185 - 0.6/1kV",
- "3x240 - 0.6/1kV",
- "3x35+16 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "CU"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "1x10",
- "1x16",
- "1x25",
- "1x35",
- "1x50",
- "1x70",
- "1x95",
- "1x120",
- "1x150",
- "1x185",
- "1x240",
- "1x300",
- "1x400",
- "1x500",
- "3x10",
- "3x16",
- "3x25",
- "3x35",
- "3x50",
- "3x70",
- "3x95",
- "3x120",
- "3x150",
- "3x185",
- "3x240",
- "3x35+16"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "≤ 300 mm2: +160, > 300 mm2: +140 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "- 35 - +70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RE",
- "RMV",
- "SM",
- "SM/RE"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.6 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm",
- "2.4 mm",
- "2.6 mm",
- "2.8 mm",
- "1.2/1.0 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.1",
- "2.2",
- "2.3",
- "2.5",
- "2.7"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "10 mm",
- "11 mm",
- "12 mm",
- "14 mm",
- "15 mm",
- "17 mm",
- "19 mm",
- "20 mm",
- "22 mm",
- "25 mm",
- "27 mm",
- "30 mm",
- "34 mm",
- "37 mm",
- "18 mm",
- "24 mm",
- "28 mm",
- "31 mm",
- "36 mm",
- "38 mm",
- "43 mm",
- "47 mm",
- "53 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "157 kg/km",
- "219 kg/km",
- "329 kg/km",
- "429 kg/km",
- "565 kg/km",
- "772 kg/km",
- "1042 kg/km",
- "1278 kg/km",
- "1571 kg/km",
- "1947 kg/km",
- "2514 kg/km",
- "3130 kg/km",
- "3972 kg/km",
- "5043 kg/km",
- "589 kg/km",
- "810 kg/km",
- "1227 kg/km",
- "1464 kg/km",
- "1887 kg/km",
- "2584 kg/km",
- "3448 kg/km",
- "4199 kg/km",
- "5178 kg/km",
- "6381 kg/km",
- "8264 kg/km",
- "1698 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "1.83",
- "1.15",
- "0.727",
- "0.524",
- "0.387",
- "0.268",
- "0.193",
- "0.153",
- "0.124",
- "0.0991",
- "0.0754",
- "0.0601",
- "0.047",
- "0.0366"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T06:53:53",
- "translation": null
- },
- {
- "id": 42433,
- "translationKey": "nycwy",
- "locale": "en",
- "slug": "nycwy",
- "path": "/product/nycwy",
- "name": "NYCWY",
- "shortDescriptionHtml": "NYCWY cables are robust low-voltage cables with a concentric conductor, suitable for power distribution in buildings, industrial facilities, and underground installations. Thanks to their PVC insulation and sheath, they are mechanically durable, moisture-resistant, and versatile in use – even in concrete or water. \n",
- "descriptionHtml": " Versatile use in power distribution The NYCWY is one of the classic low-voltage cables according to VDE standard 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. Construction and materials 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 PVC sheath that protects the cable against moisture, pressure, and chemical influences. Variants and cross-sections The NYCWY is available in a wide range of versions – for example, 4x25/16, 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. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NYCWY-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NYCWY-scaled.webp",
- "sku": "NYCWY-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 40,
- "name": "Low Voltage Cables",
- "slug": "low-voltage-cables"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "2x10/10 - 0.6/1kV",
- "2x16/16 - 0.6/1kV",
- "3x10/10 - 0.6/1kV",
- "3x16/16 - 0.6/1kV",
- "3x25/16 - 0.6/1kV",
- "3x25/25 - 0.6/1kV",
- "3x35/16 - 0.6/1kV",
- "3x35/35 - 0.6/1kV",
- "3x50/25 - 0.6/1kV",
- "3x50/50 - 0.6/1kV",
- "3x70/35 - 0.6/1kV",
- "3x70/70 - 0.6/1kV",
- "3x95/50 - 0.6/1kV",
- "3x95/95 - 0.6/1kV",
- "3x120/70 - 0.6/1kV",
- "3x120/120 - 0.6/1kV",
- "3x150/70 - 0.6/1kV",
- "3x150/150 - 0.6/1kV",
- "3x185/95 - 0.6/1kV",
- "3x185/185 - 0.6/1kV",
- "3x240/120 - 0.6/1kV",
- "4x10/10 - 0.6/1kV",
- "4x16/16 - 0.6/1kV",
- "4x25/16 - 0.6/1kV",
- "4x25/25 - 0.6/1kV",
- "4x35/16 - 0.6/1kV",
- "4x35/35 - 0.6/1kV",
- "4x50/25 - 0.6/1kV",
- "4x50/50 - 0.6/1kV",
- "4x70/35 - 0.6/1kV",
- "4x70/70 - 0.6/1kV",
- "4x95/50 - 0.6/1kV",
- "4x95/70 - 0.6/1kV",
- "4x95/95 - 0.6/1kV",
- "4x120/70 - 0.6/1kV",
- "4x120/120 - 0.6/1kV",
- "4x150/70 - 0.6/1kV",
- "4x185/95 - 0.6/1kV",
- "4x185/185 - 0.6/1kV",
- "4x240/120 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "CU"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "2x10/10",
- "2x16/16",
- "3x10/10",
- "3x16/16",
- "3x25/16",
- "3x25/25",
- "3x35/16",
- "3x35/35",
- "3x50/25",
- "3x50/50",
- "3x70/35",
- "3x70/70",
- "3x95/50",
- "3x95/95",
- "3x120/70",
- "3x120/120",
- "3x150/70",
- "3x150/150",
- "3x185/95",
- "3x185/185",
- "3x240/120",
- "4x10/10",
- "4x16/16",
- "4x25/16",
- "4x25/25",
- "4x35/16",
- "4x35/35",
- "4x50/25",
- "4x50/50",
- "4x70/35",
- "4x70/70",
- "4x95/50",
- "4x95/70",
- "4x95/95",
- "4x120/70",
- "4x120/120",
- "4x150/70",
- "4x185/95",
- "4x185/185",
- "4x240/120"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "160 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "IEC 60332-1-2"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Eca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RE",
- "RMV",
- "SM"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.6 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.2",
- "2.3",
- "2.4",
- "2.6",
- "2.8",
- "2.1",
- "3"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "19 mm",
- "21 mm",
- "20 mm",
- "22 mm",
- "26 mm",
- "29 mm",
- "30 mm",
- "33 mm",
- "34 mm",
- "38 mm",
- "41 mm",
- "46 mm",
- "47 mm",
- "50 mm",
- "51 mm",
- "56 mm",
- "24 mm",
- "28 mm",
- "36 mm",
- "37 mm",
- "42 mm",
- "57 mm",
- "62 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "670 kg/km",
- "890 kg/km",
- "773 kg/km",
- "817 kg/km",
- "1045 kg/km",
- "1085 kg/km",
- "1490 kg/km",
- "1582 kg/km",
- "1729 kg/km",
- "1913 kg/km",
- "2272 kg/km",
- "2498 kg/km",
- "3128 kg/km",
- "3473 kg/km",
- "4177 kg/km",
- "4640 kg/km",
- "5168 kg/km",
- "5674 kg/km",
- "6193 kg/km",
- "6982 kg/km",
- "7689 kg/km",
- "8609 kg/km",
- "9950 kg/km",
- "903 kg/km",
- "1237 kg/km",
- "1801 kg/km",
- "1886 kg/km",
- "2156 kg/km",
- "2333 kg/km",
- "2944 kg/km",
- "3171 kg/km",
- "3932 kg/km",
- "4277 kg/km",
- "5276 kg/km",
- "5488 kg/km",
- "5740 kg/km",
- "6571 kg/km",
- "7077 kg/km",
- "7883 kg/km",
- "9892 kg/km",
- "10813 kg/km",
- "12658 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "1.83",
- "1.15",
- "0.727",
- "0.524",
- "0.387",
- "0.268",
- "0.193",
- "0.153",
- "0.124",
- "0.0991",
- "0.0754"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T06:45:48",
- "translation": null
- },
- {
- "id": 42095,
- "translationKey": "nyy",
- "locale": "en",
- "slug": "nyy",
- "path": "/product/nyy",
- "name": "NYY",
- "shortDescriptionHtml": "The NYY is a universally applicable low-voltage cable for fixed installation in buildings, outdoors, underground, or even in water – wherever no special mechanical stresses are to be expected. \n",
- "descriptionHtml": " Solid solution for standard applications The NYY cable is a standardized low-voltage cable according to VDE 0276-603. It is used in power plants, industrial facilities, switching stations, and local distribution networks. It is suitable for fixed installation indoors, in cable ducts, outdoors, underground, and in water – always under the condition that no special mechanical stresses are present. Construction and material properties The conductor consists of copper – available as solid round (RE), stranded round (RM), or sector-shaped stranded (SM). The cores are PVC-insulated, stranded together, and surrounded by a common EPDM core sheath. The outer sheath is made of black, UV-resistant PVC and reliably protects the cable against environmental influences and moisture. Fields of application The NYY cable is ideally suited for conventional power distribution, 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. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NYY-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NYY-scaled.webp",
- "sku": "NYY-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 40,
- "name": "Low Voltage Cables",
- "slug": "low-voltage-cables"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x1.5 - 0.6/1kV",
- "1x2.5 - 0.6/1kV",
- "1x4.0 - 0.6/1kV",
- "1x6.0 - 0.6/1kV",
- "1x10.0 - 0.6/1kV",
- "1x16 - 0.6/1kV",
- "1x25 - 0.6/1kV",
- "1x35 - 0.6/1kV",
- "1x50 - 0.6/1kV",
- "1x70 - 0.6/1kV",
- "1x95 - 0.6/1kV",
- "1x120 - 0.6/1kV",
- "1x150 - 0.6/1kV",
- "1x185 - 0.6/1kV",
- "1x240 - 0.6/1kV",
- "1x300 - 0.6/1kV",
- "1x400 - 0.6/1kV",
- "1x500 - 0.6/1kV",
- "2x1.5 - 0.6/1kV",
- "2x2.5 - 0.6/1kV",
- "2x4.0 - 0.6/1kV",
- "2x6.0 - 0.6/1kV",
- "2x10.0 - 0.6/1kV",
- "2x16 - 0.6/1kV",
- "2x25 - 0.6/1kV",
- "2x35 - 0.6/1kV",
- "3x1.5 - 0.6/1kV",
- "3x2.5 - 0.6/1kV",
- "3x4.0 - 0.6/1kV",
- "3x6.0 - 0.6/1kV",
- "3x10.0 - 0.6/1kV",
- "3x16 - 0.6/1kV",
- "3x25 - 0.6/1kV",
- "3x35 - 0.6/1kV",
- "3x50 - 0.6/1kV",
- "3x70 - 0.6/1kV",
- "3x95 - 0.6/1kV",
- "3x120 - 0.6/1kV",
- "3x150 - 0.6/1kV",
- "3x185 - 0.6/1kV",
- "3x240 - 0.6/1kV",
- "3x300 - 0.6/1kV",
- "3x25+16 - 0.6/1kV",
- "3x35+16 - 0.6/1kV",
- "3x50+25 - 0.6/1kV",
- "3x70+35 - 0.6/1kV",
- "3x95+50 - 0.6/1kV",
- "3x120+70 - 0.6/1kV",
- "3x150+70 - 0.6/1kV",
- "3x185+95 - 0.6/1kV",
- "3x240+120 - 0.6/1kV",
- "3x300+150 - 0.6/1kV",
- "4x1.5 - 0.6/1kV",
- "4x2.5 - 0.6/1kV",
- "4x4.0 - 0.6/1kV",
- "4x6.0 - 0.6/1kV",
- "4x10.0 - 0.6/1kV",
- "4x10 - 0.6/1kV",
- "4x16 - 0.6/1kV",
- "4x25 - 0.6/1kV",
- "4x35 - 0.6/1kV",
- "4x50 - 0.6/1kV",
- "4x70 - 0.6/1kV",
- "4x95 - 0.6/1kV",
- "4x120 - 0.6/1kV",
- "4x150 - 0.6/1kV",
- "4x185 - 0.6/1kV",
- "4x240 - 0.6/1kV",
- "4x300 - 0.6/1kV",
- "5x1.5 - 0.6/1kV",
- "5x2.5 - 0.6/1kV",
- "5x4.0 - 0.6/1kV",
- "5x6.0 - 0.6/1kV",
- "5x10.0 - 0.6/1kV",
- "5x10 - 0.6/1kV",
- "5x16 - 0.6/1kV",
- "5x25 - 0.6/1kV",
- "5x35 - 0.6/1kV",
- "5x50 - 0.6/1kV",
- "5x70 - 0.6/1kV",
- "5x95 - 0.6/1kV",
- "5x120 - 0.6/1kV",
- "7x1.5 - 0.6/1kV",
- "7x2.5 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "CU"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "1x1.5",
- "1x2.5",
- "1x4.0",
- "1x6.0",
- "1x10.0",
- "1x16",
- "1x25",
- "1x35",
- "1x50",
- "1x70",
- "1x95",
- "1x120",
- "1x150",
- "1x185",
- "1x240",
- "1x300",
- "1x400",
- "1x500",
- "2x1.5",
- "2x2.5",
- "2x4.0",
- "2x6.0",
- "2x10.0",
- "2x16",
- "2x25",
- "2x35",
- "3x1.5",
- "3x2.5",
- "3x4.0",
- "3x6.0",
- "3x10.0",
- "3x16",
- "3x25",
- "3x35",
- "3x50",
- "3x70",
- "3x95",
- "3x120",
- "3x150",
- "3x185",
- "3x240",
- "3x300",
- "3x25+16",
- "3x35+16",
- "3x50+25",
- "3x70+35",
- "3x95+50",
- "3x120+70",
- "3x150+70",
- "3x185+95",
- "3x240+120",
- "3x300+150",
- "4x1.5",
- "4x2.5",
- "4x4.0",
- "4x6.0",
- "4x10.0",
- "4x10",
- "4x16",
- "4x25",
- "4x35",
- "4x50",
- "4x70",
- "4x95",
- "4x120",
- "4x150",
- "4x185",
- "4x240",
- "4x300",
- "5x1.5",
- "5x2.5",
- "5x4.0",
- "5x6.0",
- "5x10.0",
- "5x10",
- "5x16",
- "5x25",
- "5x35",
- "5x50",
- "5x70",
- "5x95",
- "5x120",
- "7x1.5",
- "7x2.5"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "≤ 300 mm2: +160, > 300 mm2: +140 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "IEC 60332-1-2"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Eca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable coils/cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RE",
- "RMV",
- "SM",
- "RMV/RE",
- "SM/RE",
- "SM/RMV"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "0.8 mm",
- "1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.6 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm",
- "2.4 mm",
- "2.6 mm",
- "2.8 mm",
- "1.2/1.0 mm",
- "1.4/1.2 mm",
- "1.6/1.4 mm",
- "1.8/1.4 mm",
- "2.0/1.6 mm",
- "2.2/1.6 mm",
- "2.4/1.8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.1",
- "2.2",
- "2.3",
- "2.5",
- "2.7",
- "2.9",
- "2.4",
- "2.6",
- "2.8",
- "3",
- "1.2",
- "3.1"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "6.5 mm",
- "7 mm",
- "8 mm",
- "8.5 mm",
- "9 mm",
- "11 mm",
- "12 mm",
- "14 mm",
- "15 mm",
- "17 mm",
- "19 mm",
- "20 mm",
- "22 mm",
- "25 mm",
- "27 mm",
- "30 mm",
- "34 mm",
- "37 mm",
- "13 mm",
- "16 mm",
- "23 mm",
- "21 mm",
- "24 mm",
- "28 mm",
- "31 mm",
- "36 mm",
- "38 mm",
- "43 mm",
- "47 mm",
- "53 mm",
- "58 mm",
- "39 mm",
- "42 mm",
- "51 mm",
- "64 mm",
- "18 mm",
- "26 mm",
- "48 mm",
- "59 mm",
- "65 mm",
- "29 mm",
- "32 mm",
- "35 mm",
- "40 mm",
- "45 mm",
- "52 mm",
- "49 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "73 kg/km",
- "88 kg/km",
- "122 kg/km",
- "150 kg/km",
- "205 kg/km",
- "249 kg/km",
- "255 kg/km",
- "366 kg/km",
- "471 kg/km",
- "609 kg/km",
- "823 kg/km",
- "1100 kg/km",
- "1340 kg/km",
- "1640 kg/km",
- "2024 kg/km",
- "2601 kg/km",
- "3232 kg/km",
- "4093 kg/km",
- "5184 kg/km",
- "164 kg/km",
- "200 kg/km",
- "275 kg/km",
- "338 kg/km",
- "457 kg/km",
- "714 kg/km",
- "743 kg/km",
- "1059 kg/km",
- "1349 kg/km",
- "184 kg/km",
- "226 kg/km",
- "318 kg/km",
- "403 kg/km",
- "557 kg/km",
- "872 kg/km",
- "902 kg/km",
- "1303 kg/km",
- "1532 kg/km",
- "1966 kg/km",
- "2685 kg/km",
- "3582 kg/km",
- "4351 kg/km",
- "5356 kg/km",
- "6582 kg/km",
- "8519 kg/km",
- "10504 kg/km",
- "1482 kg/km",
- "1786 kg/km",
- "2364 kg/km",
- "3133 kg/km",
- "4196 kg/km",
- "5224 kg/km",
- "6210 kg/km",
- "7712 kg/km",
- "9931 kg/km",
- "12265 kg/km",
- "214 kg/km",
- "269 kg/km",
- "374 kg/km",
- "491 kg/km",
- "669 kg/km",
- "818 kg/km",
- "1062 kg/km",
- "1606 kg/km",
- "1962 kg/km",
- "2594 kg/km",
- "3492 kg/km",
- "4668 kg/km",
- "5754 kg/km",
- "7026 kg/km",
- "8715 kg/km",
- "11195 kg/km",
- "13815 kg/km",
- "327 kg/km",
- "460 kg/km",
- "598 kg/km",
- "842 kg/km",
- "975 kg/km",
- "1275 kg/km",
- "1315 kg/km",
- "1960 kg/km",
- "2584 kg/km",
- "3419 kg/km",
- "3258 kg/km",
- "4689 kg/km",
- "4411 kg/km",
- "6354 kg/km",
- "5944 kg/km",
- "7727 kg/km",
- "7255 kg/km",
- "301 kg/km",
- "388 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "12.1",
- "7.41",
- "4.61",
- "3.08",
- "1.83",
- "1.15",
- "0.727",
- "0.524",
- "0.387",
- "0.268",
- "0.193",
- "0.153",
- "0.124",
- "0.0991",
- "0.0754",
- "0.0601",
- "0.047",
- "0.0366"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T06:34:12",
- "translation": null
- },
- {
- "id": 46774,
- "translationKey": "na2xsfl2y",
- "locale": "de",
- "slug": "na2xsfl2y",
- "path": "/de/product/na2xsfl2y",
- "name": "NA2XS(FL)2Y",
- "shortDescriptionHtml": "Das NA2XS(FL)2Y Kabel ist ein leistungsstarkes Hochspannungskabel mit Aluminiumleiter, XLPE-Isolation und wasserdichtem PE-Mantel. Es bietet hohe Betriebssicherheit und ist speziell für erdverlegte und anspruchsvolle Trassen konzipiert. \n",
- "descriptionHtml": " Ideal für Hochspannungsanwendungen im Erdreich und Freien Das NA2XS(FL)2Y erfüllt die Anforderungen der IEC 60840 und eignet sich für die Verlegung im Boden, in Kabelkanälen, Innenräumen, Rohren und im Freien. Es wird projektbezogen gefertigt und ist besonders in Übertragungsnetzen, Energieversorgerinfrastrukturen und Umspannwerken im Einsatz, wo Sicherheit und Langlebigkeit oberste Priorität haben. Aufbau und technische Merkmale Im Kern arbeitet ein kompaktierter, mehrdrähtiger Aluminiumleiter nach IEC 60228, eingebettet in eine leitfähige Innenschicht, eine XLPE-Isolation und eine vollständig haftende, extrudierte Außenschicht. Die Kombination aus quellfähiger Bandierung, Kupferabschirmung mit offener Wendel und einer weiteren quellfähigen Bandage schützt das Kabel effektiv vor eindringender Feuchtigkeit. Der schwarze PE-Mantel mit fest verschweißtem Aluminiumband (Alucopo) dient gleichzeitig als mechanischer Schutz und Querwassersperre. Eigenschaften und Einsatzvorteile Das NA2XS(FL)2Y ist erdverlegbar, mechanisch belastbar und bietet durch seinen teilentladungsfreien Aufbau und die wasserabweisende Konstruktion eine sehr hohe Betriebssicherheit. Es wird projektbezogen konfiguriert und ist flexibel einsetzbar – von urbanen Energieprojekten bis zu industriellen Großanlagen. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/06/NA2XSFL2Y-3-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/06/NA2XSFL2Y-3-scaled.webp",
- "sku": "NA2XS(FL)2Y-high-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 107,
- "name": "Hochspannungskabel",
- "slug": "hochspannungskabel"
- }
- ],
- "attributes": [],
- "variations": [],
- "updatedAt": "2025-08-20T08:13:10",
- "translation": {
- "locale": "en",
- "id": 45065
- }
- },
- {
- "id": 46772,
- "translationKey": "n2xsfl2y",
- "locale": "de",
- "slug": "n2xsfl2y",
- "path": "/de/product/n2xsfl2y",
- "name": "N2XS(FL)2Y",
- "shortDescriptionHtml": "Das N2XS(FL)2Y Kabel ist ein anpassbares Hochspannungskabel mit durchdachtem Schutzaufbau gegen Wassereintritt und hoher elektrischer Belastbarkeit. Es erfüllt internationale Normen und eignet sich ideal für anspruchsvolle Energieinfrastrukturen. \n",
- "descriptionHtml": " Flexibel im Einsatz – unter Erde, Wasser und auf Pritschen Das N2XS(FL)2Y ist konzipiert für die Verlegung im Erdreich, in Kabelkanälen, in Rohren, im Freien und in Innenräumen. Es entspricht der Norm IEC 60840 und lässt sich individuell auf projektspezifische Anforderungen anpassen. Typisch eingesetzt wird es in Übertragungsnetzen, Umspannwerken und großen Industrieanlagen, wo maximale Zuverlässigkeit gefordert ist. Technischer Aufbau Das Kabel verfügt über einen mehrdrähtigen Kupferleiter (Klasse 2 nach IEC 60228). Die Isolation besteht aus vernetztem Polyethylen (XLPE), eingebettet zwischen einer leitfähigen Innenschicht und einer leitfähigen äußeren Isolationsschicht. Eine quellfähige Bandierung sorgt gemeinsam mit Kupferdrähten und einer offenen Kupferwendel für eine effektive Abschirmung. Der Außenmantel besteht aus PE, das mit einer Aluminiumkaschierung (Alucopo) fest verbunden ist – optimaler Schutz gegen mechanische Belastung und Feuchtigkeit. Einsatzmerkmale Das N2XS(FL)2Y ist wasserdicht, erdverlegbar und mechanisch belastbar – und dank seiner mehrschichtigen Schirm- und Quellstruktur 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. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/06/N2XSFL2Y-3-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/06/N2XSFL2Y-3-scaled.webp",
- "sku": "N2XS(FL)2Y-high-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 107,
- "name": "Hochspannungskabel",
- "slug": "hochspannungskabel"
- }
- ],
- "attributes": [],
- "variations": [],
- "updatedAt": "2025-08-20T07:51:26",
- "translation": {
- "locale": "en",
- "id": 46771
- }
- },
- {
- "id": 46770,
- "translationKey": "h1z2z2-k",
- "locale": "de",
- "slug": "h1z2z2-k",
- "path": "/de/product/h1z2z2-k",
- "name": "H1Z2Z2-K",
- "shortDescriptionHtml": "Das H1Z2Z2-K Kabel ist ein hochflexibles, halogenfreies Solarkabel für moderne Photovoltaikanlagen. Es erfüllt höchste Anforderungen an Sicherheit, Wetterbeständigkeit und elektrische Belastbarkeit – sowohl im Innen- als auch im Außeneinsatz. \n",
- "descriptionHtml": " Für dauerhafte Einsätze in anspruchsvollen Umgebungen Das H1Z2Z2-K entspricht der Norm DIN EN 50618 (VDE 0283-618) und ist speziell für die Verkabelung von Photovoltaiksystemen konzipiert. Es kann fest verlegt oder flexibel geführt werden – im Gebäude, im Freien, in Industrieanlagen, landwirtschaftlichen Betrieben oder sogar in explosionsgefährdeten Bereichen. Die Leitung ist UV-, ozon- und wasserbeständig (AD7) und darf direkt in der Erde verlegt werden. Aufbau und technische Merkmale Der feindrähtige verzinnt Kupferleiter (Klasse 5) ist doppelt geschützt durch eine vernetzte Isolierung und einen vernetzten Außenmantel aus Polyolefincopolymer – halogenfrei, flammwidrig und mit hoher Abriebfestigkeit. Das Kabel ist für eine maximale Leitertemperatur von 120 °C ausgelegt und bleibt auch bei -40 °C (fest verlegt) zuverlässig flexibel. Die geringe Rauchentwicklung und hohe Beständigkeit gegenüber mechanischen und thermischen Einflüssen sorgen für einen sicheren, langjährigen Betrieb. Eigenschaften im Überblick -
Halogenfrei, flammwidrig, UV- und ozonbeständig -
Kurzschluss- und erdschlusssicher gemäß VDE-AR-E 2283-4 -
Zugelassen für Innenräume, Außenbereiche und explosionsgefährdete Zonen -
Geeignet für direkte Erdverlegung -
CPR-Leistungsklasse: Eca ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/06/H1Z2Z2-K-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/06/H1Z2Z2-K-scaled.webp",
- "sku": "H1Z2Z2-K-solar-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 113,
- "name": "Solarkabel",
- "slug": "solarkabel"
- }
- ],
- "attributes": [],
- "variations": [],
- "updatedAt": "2025-08-20T07:56:57",
- "translation": {
- "locale": "en",
- "id": 46769
- }
- },
- {
- "id": 46768,
- "translationKey": "na2xfk2y",
- "locale": "de",
- "slug": "na2xfk2y",
- "path": "/de/product/na2xfk2y",
- "name": "NA2X(F)K2Y",
- "shortDescriptionHtml": "Die NA2X(F)K2Y-Hochspannungskabelserie ist für Spannungsklassen von 64/110kV konzipiert und verwendet hochleitfähige Kupferleiter, ideal für industrielle Anwendungen, die hohe Strombelastbarkeit und ausgezeichnete Durchschlagsfestigkeit erfordern. \n",
- "descriptionHtml": " Technische Übersicht Die NA2X(F)K2Y-Hochspannungskabelserie 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. Installations- und Konstruktionsmerkmale 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. - Verwendung von hochleitfähigem Kupfer als Leitermaterial für optimale Leitfähigkeit und Effizienz.
- XLPE-Isolierung gewährleistet eine verbesserte thermische Beständigkeit und Langlebigkeit unter extremen Betriebsbedingungen.
- Die Kabelkonstruktion unterstützt die Einhaltung der EMV-Anforderungen und minimiert die Risiken der Spannungsinduzierung.
Normen und Zertifizierungen 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. - CPR-Klassifizierung sorgt für die Einhaltung strenger europäischer Sicherheitsstandards.
- Die Kabelserie erfüllt die Anforderungen für hohe Spannungsklassen und bietet zuverlässige Leistung in anspruchsvollen Umgebungen.
",
- "images": [],
- "featuredImage": null,
- "sku": "NA2X(F)K2Y-high-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 107,
- "name": "Hochspannungskabel",
- "slug": "hochspannungskabel"
- }
- ],
- "attributes": [],
- "variations": [],
- "updatedAt": "2025-06-23T11:21:11",
- "translation": {
- "locale": "en",
- "id": 46767
- }
- },
- {
- "id": 46766,
- "translationKey": "n2xfk2y",
- "locale": "de",
- "slug": "n2xfk2y",
- "path": "/de/product/n2xfk2y",
- "name": "N2X(F)K2Y",
- "shortDescriptionHtml": "Die N2X(F)K2Y-Hochspannungskabelserie ist für Spannungsklassen von 64/110kV ausgelegt und verwendet hochleitfähige Kupferleiter, ideal für anspruchsvolle industrielle und infrastrukturelle Anwendungen, einschließlich Erdverlegung und Kabeltrassen-Montage. \n",
- "descriptionHtml": " Technische Übersicht Die N2X(F)K2Y-Hochspannungskabelserie 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. Technische Leistung und Konstruktion Die Kabel der N2X(F)K2Y-Serie sind für ihre hohe Strombelastbarkeit und Kurzschlussstromfestigkeit bekannt, was sie zu einer zuverlässigen Wahl für kritische Infrastrukturen macht. Die elektromagnetische Verträglichkeit wird durch eine sorgfältige Konstruktion sichergestellt, die Spannungsinduzierungen minimiert und die Signalintegrität in komplexen Installationsszenarien bewahrt. - Verwendung von hochreinem Kupfer für maximale Leitfähigkeit und geringe Widerstandsverluste
- XLPE-Isolierung für verbesserte dielektrische Stärke und thermische Beständigkeit
- Entwickelt für Verlegung in Kleeblattformation und Erdverlegung, optimiert für mechanische Stabilität und Wärmeableitung
Normen und Konformität Die Kabel entsprechen den internationalen Normen, einschließlich IEC-Konformität und CPR-Klassifizierung, und sind mit der CE-Kennzeichnung 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. 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. ",
- "images": [],
- "featuredImage": null,
- "sku": "N2X(F)K2Y-high-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 107,
- "name": "Hochspannungskabel",
- "slug": "hochspannungskabel"
- }
- ],
- "attributes": [],
- "variations": [],
- "updatedAt": "2025-06-23T11:21:19",
- "translation": {
- "locale": "en",
- "id": 46765
- }
- },
- {
- "id": 46764,
- "translationKey": "na2xfkld2y",
- "locale": "de",
- "slug": "na2xfkld2y",
- "path": "/de/product/na2xfkld2y",
- "name": "NA2X(F)KLD2Y",
- "shortDescriptionHtml": "Die NA2X(F)KLD2Y-Hochspannungskabelserie ist speziell für hohe Spannungsklassen (64/110kV) konzipiert und verwendet hochleitfähige Kupferleiter, ideal für industrielle Anwendungen, die hohe Strombelastbarkeit und Durchschlagsfestigkeit erfordern. \n",
- "descriptionHtml": " Technische Übersicht Die NA2X(F)KLD2Y-Hochspannungskabelserie 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 Durchschlagsfestigkeit und Thermozyklierung. Technische Leistung und Konstruktion Die Kabelserie ist entwickelt, um eine hohe Strombelastbarkeit und Kurzschlussstromfestigkeit 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. - Verstärkte Isolierung für verbesserte Durchschlagsfestigkeit
- Optimierte Kabelgeometrie zur Unterstützung der elektromagnetischen Verträglichkeit (EMV)
- Effektive Spannungsinduzierungsreduktion durch spezielle Abschirmtechniken
Installations- und Normkonformität Die NA2X(F)KLD2Y-Kabelserie unterstützt diverse Verlegeverfahren wie Erdverlegung, Kabeltrassen-Montage und Kleeblattformation, was ihre Vielseitigkeit in der praktischen Anwendung unterstreicht. Sie entspricht den internationalen Normen, inklusive IEC-Konformität, CPR-Klassifizierung und trägt die CE-Kennzeichnung. - Anpassungsfähigkeit an verschiedene Verlegebedingungen und Umgebungen
- Einhaltung strenger internationaler und europäischer Standards
- Verfügbar in mehreren Konfigurationen, um spezifische Anforderungen zu erfüllen
",
- "images": [],
- "featuredImage": null,
- "sku": "NA2X(F)KLD2Y-high-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 107,
- "name": "Hochspannungskabel",
- "slug": "hochspannungskabel"
- }
- ],
- "attributes": [],
- "variations": [],
- "updatedAt": "2025-06-23T11:21:27",
- "translation": {
- "locale": "en",
- "id": 46763
- }
- },
- {
- "id": 46762,
- "translationKey": "n2xfkld2y",
- "locale": "de",
- "slug": "n2xfkld2y",
- "path": "/de/product/n2xfkld2y",
- "name": "N2X(F)KLD2Y",
- "shortDescriptionHtml": "Das N2X(F)KLD2Y-Hochspannungskabel der Serie 2 ist für Spannungsklassen von 64/110kV ausgelegt und verwendet hochleitfähige Kupferleiter, ideal für industrielle Hochspannungsanwendungen mit anspruchsvollen Umgebungsbedingungen. \n",
- "descriptionHtml": " Technische Übersicht Die N2X(F)KLD2Y-Hochspannungskabel Serie 2 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. Technische Leistung und Konstruktion Die Kabel der Serie N2X(F)KLD2Y sind für ihre hohe Strombelastbarkeit und ausgezeichnete Kurzschlussstromfestigkeit bekannt. Die spezielle Konstruktion mit Kupferleitern und XLPE-Isolierung sorgt für eine hohe Durchschlagsfestigkeit und verbesserte thermische Eigenschaften, was sie ideal für den Einsatz in Hochspannungsnetzen macht. - Verwendung von hochleitfähigem Kupfer für verbesserte elektrische Leistung
- XLPE-Isolierung bietet erhöhte thermische Beständigkeit und Langlebigkeit
- Entwickelt für Installationen in Kleeblattformation, Erdverlegung und auf Kabeltrassen
EMV und Normkonformität Die Kabelserie erfüllt strenge Anforderungen an die elektromagnetische Verträglichkeit (EMV), minimiert Spannungsinduzierungen und sorgt für eine zuverlässige Funktion in elektromagnetisch anspruchsvollen Umgebungen. Die Einhaltung der IEC-Normen, CPR-Klassifizierung und die CE-Kennzeichnung bestätigen die hohe Qualität und Sicherheit dieser Kabelserie. - Konformität mit internationalen und europäischen Standards für Sicherheit und Leistung
- Optimierte Abschirmtechniken zur Reduzierung von elektromagnetischen Störungen
",
- "images": [],
- "featuredImage": null,
- "sku": "N2X(F)KLD2Y-high-voltage-cables-2",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 107,
- "name": "Hochspannungskabel",
- "slug": "hochspannungskabel"
- }
- ],
- "attributes": [],
- "variations": [],
- "updatedAt": "2025-06-23T11:25:45",
- "translation": {
- "locale": "en",
- "id": 46761
- }
- },
- {
- "id": 45066,
- "translationKey": "na2xsfl2y-2",
- "locale": "de",
- "slug": "na2xsfl2y-2",
- "path": "/de/product/na2xsfl2y-2",
- "name": "NA2XS(FL)2Y",
- "shortDescriptionHtml": "Das NA2XS(FL)2Y Kabel ist ein längswasserdichtes Mittelspannungskabel mit Aluminiumleiter, VPE-Isolation und einem kombinierten Alu-/PE-Mantel. Es wurde speziell für Versorgungsnetze entwickelt, bei denen hohe mechanische Belastbarkeit und Schutz gegen Wassereintritt gefordert sind. \n",
- "descriptionHtml": " Entwickelt für den Einsatz in Energieversorgungsnetzen Das NA2XS(FL)2Y erfüllt die Normen DIN VDE 0276-620, HD 620 S2 und IEC 60502. Es ist ideal für die Verlegung in Energieversorgungsnetzen (EVU), Innenräumen, Kabelkanälen, im Freien, in Erde und in Wasser 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. Technischer Aufbau Das Kabel besitzt einen mehrdrähtigen Aluminiumleiter (Kl. 2 nach VDE 0295 / IEC 60228), umgeben von einer VPE-Isolierung mit festhaftender äußerer Leitschicht. Eine leitfähige, längswasserdichte Bandierung sowie eine Kupferdraht-Abschirmung mit Querleitwendel sorgen für zuverlässige Feldsteuerung. Zusätzlich ist das Kabel mit einer längswasserdichten Aluminiumbandierung ausgestattet, die fest mit dem schwarzen PE-Mantel verschweißt ist. Das Ergebnis: hoher Schutz vor mechanischer Belastung und eindringender Feuchtigkeit. Eigenschaften und Anwendung Das NA2XS(FL)2Y Kabel ist erdverlegbar, silikon- und cadmiumfrei und eignet sich für Umgebungen mit hoher mechanischer Beanspruchung. Es hält Temperaturen bis +90 °C im Betrieb und bis +250 °C im Kurzschlussfall stand. Dank teilentladungsfreiem Aufbau und Querwassersperre ist es besonders gut für kritische Versorgungsbereiche in der Energieinfrastruktur geeignet. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSFL2Y-3-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSFL2Y-3-scaled.webp",
- "sku": "NA2XS(FL)2Y-medium-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 111,
- "name": "Mittelspannungskabel",
- "slug": "mittelspannungskabel"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16 - 6/10kV",
- "1x50/16 - 6/10kV",
- "1x70/16 - 6/10kV",
- "1x95/16 - 6/10kV",
- "1x120/16 - 6/10kV",
- "1x150/25 - 6/10kV",
- "1x185/25 - 6/10kV",
- "1x240/25 - 6/10kV",
- "1x300/25 - 6/10kV",
- "1x400/35 - 6/10kV",
- "1x500/35 - 6/10kV",
- "1x630/35 - 6/10kV",
- "1x800/35 - 6/10kV",
- "1x1000/35 - 6/10kV",
- "1x50/16 - 12/20kV",
- "1x70/16 - 12/20kV",
- "1x95/16 - 12/20kV",
- "1x120/16 - 12/20kV",
- "1x150/25 - 12/20kV",
- "1x185/25 - 12/20kV",
- "1x240/25 - 12/20kV",
- "1x300/25 - 12/20kV",
- "1x400/35 - 12/20kV",
- "1x500/35 - 12/20kV",
- "1x500/50 - 12/20kV",
- "1x630/35 - 12/20kV",
- "1x800/35 - 12/20kV",
- "1x1000/35 - 12/20kV",
- "1x50/16 - 18/30kV",
- "1x70/16 - 18/30kV",
- "1x95/16 - 18/30kV",
- "1x120/16 - 18/30kV",
- "1x150/25 - 18/30kV",
- "1x185/25 - 18/30kV",
- "1x240/25 - 18/30kV",
- "1x300/25 - 18/30kV",
- "1x400/35 - 18/30kV",
- "1x500/35 - 18/30kV",
- "1x630/35 - 18/30kV",
- "1x800/35 - 18/30kV",
- "1x1000/35 - 18/30kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "Aluminum"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "Conductive tape below screen",
- "slug": "Conductive tape below screen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Copper wire screen and tape",
- "slug": "Copper wire screen and tape",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Non conducting tape above screen",
- "slug": "Non conducting tape above screen",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Al Foil",
- "slug": "Al Foil",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16",
- "1x50/16",
- "1x70/16",
- "1x95/16",
- "1x120/16",
- "1x150/25",
- "1x185/25",
- "1x240/25",
- "1x300/25",
- "1x400/35",
- "1x500/35",
- "1x630/35",
- "1x800/35",
- "1x1000/35",
- "1x500/50"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "6/10 kV",
- "12/20 kV",
- "18/30 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "21 kV",
- "42 kV",
- "63 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "+90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "+250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "-20 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "uncoloured"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Flame retardant",
- "slug": "Flame retardant",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "wooden or metal drums"
- ]
- },
- {
- "id": 0,
- "name": "CE-Conformity",
- "slug": "CE-Conformity",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "yes"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "RM"
- ]
- },
- {
- "id": 0,
- "name": "Conductor diameter",
- "slug": "Conductor diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "7.2 mm",
- "8.3 mm",
- "9.8 mm",
- "11.3 mm",
- "12.8 mm",
- "14.2 mm",
- "15.8 mm",
- "18.1 mm",
- "20.2 mm",
- "23.3 mm",
- "26.5 mm",
- "29.9 mm",
- "34.2 mm",
- "38.1 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "3.4 mm",
- "5.5 mm",
- "8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Diameter over insulation",
- "slug": "Diameter over insulation",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "15.3 mm",
- "16.4 mm",
- "17.9 mm",
- "19.4 mm",
- "20.9 mm",
- "22.3 mm",
- "23.9 mm",
- "26.2 mm",
- "28.3 mm",
- "31.4 mm",
- "34.6 mm",
- "38 mm",
- "42.3 mm",
- "46.2 mm",
- "20.6 mm",
- "22.1 mm",
- "23.6 mm",
- "25.1 mm",
- "26.5 mm",
- "28.1 mm",
- "30.4 mm",
- "32.5 mm",
- "35.6 mm",
- "38.8 mm",
- "42.2 mm",
- "46.5 mm",
- "50.4 mm",
- "25.6 mm",
- "27.1 mm",
- "28.6 mm",
- "30.1 mm",
- "31.5 mm",
- "33.1 mm",
- "35.4 mm",
- "37.5 mm",
- "40.6 mm",
- "43.8 mm",
- "47.2 mm",
- "51.5 mm",
- "55.4 mm"
- ]
- },
- {
- "id": 0,
- "name": "Minimum sheath thickness",
- "slug": "Minimum sheath thickness",
- "position": 25,
- "visible": true,
- "variation": true,
- "options": [
- "2.1 mm",
- "2.4 mm"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 26,
- "visible": true,
- "variation": true,
- "options": [
- "25 mm",
- "26 mm",
- "27 mm",
- "29 mm",
- "30 mm",
- "32 mm",
- "33 mm",
- "36 mm",
- "38 mm",
- "41 mm",
- "44 mm",
- "47 mm",
- "52 mm",
- "56 mm",
- "35 mm",
- "40 mm",
- "42 mm",
- "45 mm",
- "49 mm",
- "61 mm",
- "37 mm",
- "43 mm",
- "50 mm",
- "54 mm",
- "60 mm",
- "67 mm"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 27,
- "visible": true,
- "variation": true,
- "options": [
- "500 mm",
- "520 mm",
- "405 mm",
- "580 mm",
- "600 mm",
- "640 mm",
- "660 mm",
- "720 mm",
- "760 mm",
- "820 mm",
- "880 mm",
- "940 mm",
- "1040 mm",
- "1120 mm",
- "700 mm",
- "800 mm",
- "840 mm",
- "900 mm",
- "980 mm",
- "780 mm",
- "1220 mm",
- "740 mm",
- "860 mm",
- "1000 mm",
- "1080 mm",
- "1200 mm",
- "1340 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 28,
- "visible": true,
- "variation": true,
- "options": [
- "643 kg/km",
- "712 kg/km",
- "796 kg/km",
- "902 kg/km",
- "1009 kg/km",
- "1193 kg/km",
- "1341 kg/km",
- "1546 kg/km",
- "1797 kg/km",
- "2222 kg/km",
- "2599 kg/km",
- "3062 kg/km",
- "3686 kg/km",
- "4372 kg/km",
- "876 kg/km",
- "982 kg/km",
- "1101 kg/km",
- "1217 kg/km",
- "1412 kg/km",
- "1568 kg/km",
- "1792 kg/km",
- "2020 kg/km",
- "2493 kg/km",
- "2903 kg/km",
- "3059 kg/km",
- "3383 kg/km",
- "3858 kg/km",
- "4824 kg/km",
- "1100 kg/km",
- "1213 kg/km",
- "1339 kg/km",
- "1463 kg/km",
- "1660 kg/km",
- "1837 kg/km",
- "2049 kg/km",
- "2336 kg/km",
- "2842 kg/km",
- "3269 kg/km",
- "3590 kg/km",
- "4284 kg/km",
- "5327 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "DC resistance at 20 °C",
- "slug": "DC resistance at 20 °C",
- "position": 29,
- "visible": true,
- "variation": true,
- "options": [
- "0.868 Ω/km",
- "0.641 Ω/km",
- "0.443 Ω/km",
- "0.32 Ω/km",
- "0.253 Ω/km",
- "0.206 Ω/km",
- "0.164 Ω/km",
- "0.125 Ω/km",
- "0.1 Ω/km",
- "0.0778 Ω/km",
- "0.0605 Ω/km",
- "0.0469 Ω/km",
- "0.0367 Ω/km",
- "0.0291 Ω/km",
- "0.078 Ω/km",
- "0.061 Ω/km",
- "0.047 Ω/km",
- "0.037 Ω/km"
- ]
- },
- {
- "id": 0,
- "name": "Capacitance",
- "slug": "Capacitance",
- "position": 30,
- "visible": true,
- "variation": true,
- "options": [
- "0.22 μF/km",
- "0.25 μF/km",
- "0.28 μF/km",
- "0.31 μF/km",
- "0.34 μF/km",
- "0.36 μF/km",
- "0.4 μF/km",
- "0.44 μF/km",
- "0.48 μF/km",
- "0.54 μF/km",
- "0.61 μF/km",
- "0.67 μF/km",
- "0.76 μF/km",
- "0.84 μF/km",
- "0.17 μF/km",
- "0.19 μF/km",
- "0.21 μF/km",
- "0.23 μF/km",
- "0.27 μF/km",
- "0.3 μF/km",
- "0.32 μF/km",
- "0.49 μF/km",
- "0.55 μF/km",
- "0.13 μF/km",
- "0.15 μF/km",
- "0.16 μF/km",
- "0.2 μF/km",
- "0.24 μF/km",
- "0.29 μF/km",
- "0.39 μF/km"
- ]
- },
- {
- "id": 0,
- "name": "Inductance, trefoil",
- "slug": "Inductance, trefoil",
- "position": 31,
- "visible": true,
- "variation": true,
- "options": [
- "0.44",
- "0.42",
- "0.4",
- "0.38",
- "0.36",
- "0.35",
- "0.34",
- "0.33",
- "0.32",
- "0.3",
- "0.29",
- "0.27",
- "0.26",
- "0.25",
- "0.45",
- "0.41",
- "0.39",
- "0.28",
- "0.48",
- "0.43",
- "0.37",
- "0.31"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in air, flat 1",
- "slug": "Inductance in air, flat 1",
- "position": 32,
- "visible": true,
- "variation": true,
- "options": [
- "0.61",
- "0.59",
- "0.57",
- "0.55",
- "0.54",
- "0.51",
- "0.5",
- "0.48",
- "0.47",
- "0.45",
- "0.44",
- "0.43",
- "0.42",
- "0.4",
- "0.62",
- "0.6",
- "0.58",
- "0.56",
- "0.53",
- "0.46",
- "0.65",
- "0.63",
- "0.52",
- "0.49"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in ground, flat 1",
- "slug": "Inductance in ground, flat 1",
- "position": 33,
- "visible": true,
- "variation": true,
- "options": [
- "0.74",
- "0.71",
- "0.68",
- "0.65",
- "0.63",
- "0.6",
- "0.58",
- "0.56",
- "0.54",
- "0.5",
- "0.48",
- "0.46",
- "0.45",
- "0.42",
- "0.72",
- "0.69",
- "0.66",
- "0.64",
- "0.61",
- "0.59",
- "0.57",
- "0.55",
- "0.51",
- "0.49",
- "0.73",
- "0.7",
- "0.67",
- "0.62",
- "0.52"
- ]
- },
- {
- "id": 0,
- "name": "Conductor shortcircuit current",
- "slug": "Conductor shortcircuit current",
- "position": 34,
- "visible": true,
- "variation": true,
- "options": [
- "3.3 kA",
- "4.7 kA",
- "6.6 kA",
- "9 kA",
- "11.3 kA",
- "14.2 kA",
- "17.5 kA",
- "22.7 kA",
- "28.4 kA",
- "37.8 kA",
- "47.3 kA",
- "59.6 kA",
- "75.6 kA",
- "94 kA"
- ]
- },
- {
- "id": 0,
- "name": "Screen shortcircuit current",
- "slug": "Screen shortcircuit current",
- "position": 35,
- "visible": true,
- "variation": true,
- "options": [
- "3.2 kA",
- "5 kA",
- "7 kA",
- "10 kA"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, trefoil",
- "slug": "Heating time constant, trefoil",
- "position": 36,
- "visible": true,
- "variation": true,
- "options": [
- "191",
- "273",
- "348",
- "434",
- "522",
- "644",
- "747",
- "909",
- "1098",
- "1474",
- "1740",
- "2131",
- "2673",
- "3505",
- "266",
- "339",
- "426",
- "515",
- "634",
- "733",
- "897",
- "1080",
- "1840",
- "2105",
- "2631",
- "4323",
- "261",
- "334",
- "420",
- "506",
- "625",
- "726",
- "890",
- "1062",
- "1453",
- "1724",
- "3302"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, flat",
- "slug": "Heating time constant, flat",
- "position": 37,
- "visible": true,
- "variation": true,
- "options": [
- "135",
- "193",
- "247",
- "311",
- "375",
- "479",
- "563",
- "699",
- "865",
- "1241",
- "1525",
- "1895",
- "2461",
- "3157",
- "196",
- "251",
- "318",
- "386",
- "488",
- "574",
- "714",
- "877",
- "1273",
- "1541",
- "1707",
- "1947",
- "2503",
- "3771",
- "200",
- "257",
- "325",
- "393",
- "500",
- "590",
- "733",
- "889",
- "1305",
- "1575",
- "2000",
- "2546",
- "3152"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, trefoil",
- "slug": "Current ratings in air, trefoil",
- "position": 38,
- "visible": true,
- "variation": true,
- "options": [
- "160",
- "183",
- "228",
- "278",
- "321",
- "364",
- "418",
- "494",
- "568",
- "660",
- "767",
- "861",
- "976",
- "1187",
- "185",
- "231",
- "280",
- "323",
- "366",
- "420",
- "496",
- "569",
- "766",
- "866",
- "984",
- "187",
- "232",
- "282",
- "325",
- "367",
- "421",
- "659",
- "764",
- "1196"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, flat",
- "slug": "Current ratings in air, flat",
- "position": 39,
- "visible": true,
- "variation": true,
- "options": [
- "190",
- "219",
- "273",
- "333",
- "384",
- "432",
- "496",
- "583",
- "666",
- "755",
- "868",
- "913",
- "1017",
- "1270",
- "332",
- "494",
- "581",
- "663",
- "753",
- "866",
- "900",
- "1008",
- "1262",
- "331",
- "382",
- "429",
- "492",
- "578",
- "659",
- "750",
- "861",
- "889",
- "1000",
- "1256"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, trefoil",
- "slug": "Current ratings in ground, trefoil",
- "position": 40,
- "visible": true,
- "variation": true,
- "options": [
- "145",
- "171",
- "208",
- "248",
- "283",
- "315",
- "357",
- "413",
- "466",
- "529",
- "602",
- "690",
- "764",
- "852",
- "172",
- "210",
- "251",
- "285",
- "319",
- "361",
- "417",
- "471",
- "535",
- "609",
- "705",
- "767",
- "863",
- "174",
- "213",
- "254",
- "289",
- "322",
- "364",
- "422",
- "476",
- "541",
- "616",
- "692",
- "770",
- "878"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, flat",
- "slug": "Current ratings in ground, flat",
- "position": 41,
- "visible": true,
- "variation": true,
- "options": [
- "165",
- "194",
- "236",
- "281",
- "318",
- "350",
- "394",
- "452",
- "506",
- "558",
- "627",
- "666",
- "728",
- "842",
- "195",
- "237",
- "282",
- "319",
- "352",
- "396",
- "455",
- "510",
- "564",
- "634",
- "668",
- "734",
- "852",
- "238",
- "283",
- "321",
- "354",
- "399",
- "458",
- "514",
- "570",
- "642",
- "653",
- "731",
- "863"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-28T09:07:03",
- "translation": null
- },
- {
- "id": 44907,
- "translationKey": "na2xsf2y-2",
- "locale": "de",
- "slug": "na2xsf2y-2",
- "path": "/de/product/na2xsf2y-2",
- "name": "NA2XS(F)2Y",
- "shortDescriptionHtml": "Das NA2XS(F)2Y Kabel ist ein längswasserdichtes Mittelspannungskabel mit Aluminiumleiter, VPE-Isolation und einem widerstandsfähigen PE-Mantel. Es wurde für die energieeffiziente und sichere Verlegung in Erdreich und kritischen Netzbereichen entwickelt. \n",
- "descriptionHtml": " Für leistungsstarke Versorgungsnetze mit erhöhtem Schutzbedarf Das NA2XS(F)2Y entspricht den Normen DIN VDE 0276-620, HD 620 S2 und IEC 60502. Es eignet sich für die Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser, im Freien oder auf Kabelpritschen. Der Einsatzschwerpunkt liegt in EVU-Netzen, Industrieanlagen und Umspannwerken, wo zusätzliche Sicherheitsreserven gegen eindringende Feuchtigkeit und mechanische Belastung erforderlich sind. Aufbau und Materialeigenschaften Der Leiter besteht aus mehrdrähtigem Aluminium (Klasse 2), umgeben von einer inneren Leitschicht und einer VPE-Isolierung mit festhaftender äußerer Leitschicht – extrudiert in einem Arbeitsgang für maximale Betriebssicherheit. Die Abschirmung erfolgt durch eine Kupferdraht-Umspinnung mit Querleitwendel, ergänzt durch eine längswasserdichte Bandierung. Der Außenmantel besteht aus schwarzem PE (Typ DMP2) und schützt zuverlässig vor mechanischer Beanspruchung und Feuchtigkeit. Eigenschaften und Einsatzbereiche Das NA2XS(F)2Y ist erdverlegbar, silikon- und cadmiumfrei sowie resistent gegen lackbenetzungsstörende Substanzen. Es hält Dauertemperaturen bis +90 °C stand und übersteht Kurzschlussbelastungen bis +250 °C. Dank seines durchdachten, teilentladungsfreien Aufbaus ist es besonders gut geeignet für die sichere Energieverteilung in feuchten, komplexen Installationsumgebungen. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSF2Y-3-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSF2Y-3-scaled.webp",
- "sku": "NA2XS(F)2Y-medium-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 111,
- "name": "Mittelspannungskabel",
- "slug": "mittelspannungskabel"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x50/16 - 6/10kV",
- "1x70/16 - 6/10kV",
- "1x95/16 - 6/10kV",
- "1x120/16 - 6/10kV",
- "1x150/25 - 6/10kV",
- "1x185/25 - 6/10kV",
- "1x240/25 - 6/10kV",
- "1x300/25 - 6/10kV",
- "1x400/35 - 6/10kV",
- "1x500/35 - 6/10kV",
- "1x630/35 - 6/10kV",
- "1x800/35 - 6/10kV",
- "1x1000/35 - 6/10kV",
- "1x50/16 - 12/20kV",
- "1x70/16 - 12/20kV",
- "1x95/16 - 12/20kV",
- "1x120/16 - 12/20kV",
- "1x150/25 - 12/20kV",
- "1x185/25 - 12/20kV",
- "1x240/25 - 12/20kV",
- "1x300/25 - 12/20kV",
- "1x400/35 - 12/20kV",
- "1x500/35 - 12/20kV",
- "1x630/35 - 12/20kV",
- "1x800/35 - 12/20kV",
- "1x1000/35 - 12/20kV",
- "1x50/16 - 18/30kV",
- "1x70/16 - 18/30kV",
- "1x95/16 - 18/30kV",
- "1x120/16 - 18/30kV",
- "1x150/25 - 18/30kV",
- "1x185/25 - 18/30kV",
- "1x240/25 - 18/30kV",
- "1x300/25 - 18/30kV",
- "1x400/35 - 18/30kV",
- "1x500/35 - 18/30kV",
- "1x630/35 - 18/30kV",
- "1x800/35 - 18/30kV",
- "1x1000/35 - 18/30kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "Aluminum"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "Conductive tape below screen",
- "slug": "Conductive tape below screen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Copper wire screen and tape",
- "slug": "Copper wire screen and tape",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Non conducting tape above screen",
- "slug": "Non conducting tape above screen",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Al Foil",
- "slug": "Al Foil",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "1x50/16",
- "1x70/16",
- "1x95/16",
- "1x120/16",
- "1x150/25",
- "1x185/25",
- "1x240/25",
- "1x300/25",
- "1x400/35",
- "1x500/35",
- "1x630/35",
- "1x800/35",
- "1x1000/35"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "6/10 kV",
- "12/20 kV",
- "18/30 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "21 kV",
- "42 kV",
- "63 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "+90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "+250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "-20 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "uncoloured"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Flame retardant",
- "slug": "Flame retardant",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "wooden or metal drums"
- ]
- },
- {
- "id": 0,
- "name": "CE-Conformity",
- "slug": "CE-Conformity",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "yes"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "RM"
- ]
- },
- {
- "id": 0,
- "name": "Conductor diameter",
- "slug": "Conductor diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "8.3 mm",
- "9.8 mm",
- "11.3 mm",
- "12.8 mm",
- "14.2 mm",
- "15.8 mm",
- "18.1 mm",
- "20.2 mm",
- "23.3 mm",
- "26.5 mm",
- "29.9 mm",
- "34.2 mm",
- "38.1 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "3.4 mm",
- "5.5 mm",
- "8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Diameter over insulation",
- "slug": "Diameter over insulation",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "16.4 mm",
- "17.9 mm",
- "19.4 mm",
- "20.9 mm",
- "22.3 mm",
- "23.9 mm",
- "26.2 mm",
- "28.3 mm",
- "31.4 mm",
- "34.6 mm",
- "38 mm",
- "42.3 mm",
- "46.2 mm",
- "20.5 mm",
- "22 mm",
- "23.5 mm",
- "25 mm",
- "26.4 mm",
- "28 mm",
- "30.3 mm",
- "32.4 mm",
- "35.5 mm",
- "38.7 mm",
- "42.1 mm",
- "46.4 mm",
- "50.3 mm",
- "25.5 mm",
- "27 mm",
- "28.5 mm",
- "30 mm",
- "33 mm",
- "35.3 mm",
- "37.4 mm",
- "40.5 mm",
- "43.7 mm",
- "47.1 mm",
- "51.4 mm",
- "55.3 mm"
- ]
- },
- {
- "id": 0,
- "name": "Minimum sheath thickness",
- "slug": "Minimum sheath thickness",
- "position": 25,
- "visible": true,
- "variation": true,
- "options": [
- "2.1 mm",
- "2.4 mm"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 26,
- "visible": true,
- "variation": true,
- "options": [
- "25 mm",
- "26 mm",
- "28 mm",
- "29 mm",
- "30 mm",
- "32 mm",
- "34 mm",
- "37 mm",
- "40 mm",
- "43 mm",
- "46 mm",
- "51 mm",
- "55 mm",
- "33 mm",
- "35 mm",
- "36 mm",
- "39 mm",
- "41 mm",
- "44 mm",
- "47 mm",
- "60 mm",
- "38 mm",
- "49 mm",
- "52 mm",
- "56 mm",
- "65 mm"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 27,
- "visible": true,
- "variation": true,
- "options": [
- "375 mm",
- "390 mm",
- "420 mm",
- "435 mm",
- "450 mm",
- "480 mm",
- "510 mm",
- "555 mm",
- "600 mm",
- "645 mm",
- "690 mm",
- "765 mm",
- "825 mm",
- "495 mm",
- "525 mm",
- "540 mm",
- "585 mm",
- "615 mm",
- "660 mm",
- "705 mm",
- "900 mm",
- "570 mm",
- "735 mm",
- "780 mm",
- "840 mm",
- "975 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 28,
- "visible": true,
- "variation": true,
- "options": [
- "625 kg/km",
- "707 kg/km",
- "808 kg/km",
- "909 kg/km",
- "1089 kg/km",
- "1232 kg/km",
- "1427 kg/km",
- "1666 kg/km",
- "2089 kg/km",
- "2456 kg/km",
- "2909 kg/km",
- "3521 kg/km",
- "4195 kg/km",
- "780 kg/km",
- "873 kg/km",
- "984 kg/km",
- "1093 kg/km",
- "1282 kg/km",
- "1434 kg/km",
- "1647 kg/km",
- "1869 kg/km",
- "2321 kg/km",
- "2728 kg/km",
- "3227 kg/km",
- "3846 kg/km",
- "4634 kg/km",
- "988 kg/km",
- "1094 kg/km",
- "1216 kg/km",
- "1335 kg/km",
- "1535 kg/km",
- "1699 kg/km",
- "1928 kg/km",
- "2167 kg/km",
- "2654 kg/km",
- "3087 kg/km",
- "3603 kg/km",
- "4284 kg/km",
- "5093 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "DC resistance at 20 °C",
- "slug": "DC resistance at 20 °C",
- "position": 29,
- "visible": true,
- "variation": true,
- "options": [
- "0.641 Ω/km",
- "0.443 Ω/km",
- "0.32 Ω/km",
- "0.253 Ω/km",
- "0.206 Ω/km",
- "0.164 Ω/km",
- "0.125 Ω/km",
- "0.1 Ω/km",
- "0.0778 Ω/km",
- "0.0605 Ω/km",
- "0.0469 Ω/km",
- "0.0367 Ω/km",
- "0.0291 Ω/km"
- ]
- },
- {
- "id": 0,
- "name": "Capacitance",
- "slug": "Capacitance",
- "position": 30,
- "visible": true,
- "variation": true,
- "options": [
- "0.24 μF/km",
- "0.28 μF/km",
- "0.31 μF/km",
- "0.34 μF/km",
- "0.36 μF/km",
- "0.4 μF/km",
- "0.44 μF/km",
- "0.48 μF/km",
- "0.54 μF/km",
- "0.61 μF/km",
- "0.67 μF/km",
- "0.76 μF/km",
- "0.84 μF/km",
- "0.17 μF/km",
- "0.19 μF/km",
- "0.21 μF/km",
- "0.23 μF/km",
- "0.25 μF/km",
- "0.27 μF/km",
- "0.3 μF/km",
- "0.32 μF/km",
- "0.49 μF/km",
- "0.13 μF/km",
- "0.15 μF/km",
- "0.16 μF/km",
- "0.2 μF/km",
- "0.22 μF/km",
- "0.26 μF/km",
- "0.29 μF/km",
- "0.39 μF/km"
- ]
- },
- {
- "id": 0,
- "name": "Inductance, trefoil",
- "slug": "Inductance, trefoil",
- "position": 31,
- "visible": true,
- "variation": true,
- "options": [
- "0.41",
- "0.39",
- "0.37",
- "0.36",
- "0.35",
- "0.33",
- "0.32",
- "0.31",
- "0.29",
- "0.28",
- "0.27",
- "0.26",
- "0.25",
- "0.44",
- "0.42",
- "0.4",
- "0.34",
- "0.3",
- "0.48",
- "0.45",
- "0.43",
- "0.38"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in air, flat 1",
- "slug": "Inductance in air, flat 1",
- "position": 32,
- "visible": true,
- "variation": true,
- "options": [
- "0.59",
- "0.56",
- "0.55",
- "0.53",
- "0.51",
- "0.5",
- "0.48",
- "0.47",
- "0.45",
- "0.43",
- "0.42",
- "0.41",
- "0.4",
- "0.62",
- "0.57",
- "0.54",
- "0.52",
- "0.49",
- "0.44",
- "0.65",
- "0.6",
- "0.58",
- "0.46"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in ground, flat 1",
- "slug": "Inductance in ground, flat 1",
- "position": 33,
- "visible": true,
- "variation": true,
- "options": [
- "0.71",
- "0.68",
- "0.65",
- "0.63",
- "0.6",
- "0.58",
- "0.56",
- "0.54",
- "0.5",
- "0.48",
- "0.46",
- "0.44",
- "0.42",
- "0.72",
- "0.69",
- "0.66",
- "0.64",
- "0.61",
- "0.59",
- "0.55",
- "0.51",
- "0.49",
- "0.47",
- "0.45",
- "0.73",
- "0.7",
- "0.67",
- "0.62",
- "0.53"
- ]
- },
- {
- "id": 0,
- "name": "Conductor shortcircuit current",
- "slug": "Conductor shortcircuit current",
- "position": 34,
- "visible": true,
- "variation": true,
- "options": [
- "4.7 kA",
- "6.6 kA",
- "9 kA",
- "11.3 kA",
- "14.2 kA",
- "17.5 kA",
- "22.7 kA",
- "28.4 kA",
- "37.8 kA",
- "47.3 kA",
- "59.6 kA",
- "75.6 kA",
- "94 kA",
- "94.6 kA"
- ]
- },
- {
- "id": 0,
- "name": "Screen shortcircuit current",
- "slug": "Screen shortcircuit current",
- "position": 35,
- "visible": true,
- "variation": true,
- "options": [
- "3.2 kA",
- "5 kA",
- "7 kA"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, trefoil",
- "slug": "Heating time constant, trefoil",
- "position": 36,
- "visible": true,
- "variation": true,
- "options": [
- "277",
- "353",
- "443",
- "529",
- "655",
- "760",
- "924",
- "1110",
- "1506",
- "1773",
- "2158",
- "2716",
- "3505",
- "269",
- "344",
- "433",
- "518",
- "638",
- "749",
- "909",
- "1098",
- "1485",
- "1757",
- "2131",
- "2673",
- "3315",
- "263",
- "337",
- "425",
- "510",
- "632",
- "735",
- "897",
- "1080",
- "1453",
- "1740",
- "2105",
- "2631"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, flat",
- "slug": "Heating time constant, flat",
- "position": 37,
- "visible": true,
- "variation": true,
- "options": [
- "195",
- "249",
- "316",
- "379",
- "486",
- "574",
- "710",
- "865",
- "1252",
- "1508",
- "1921",
- "2461",
- "3157",
- "198",
- "254",
- "321",
- "387",
- "485",
- "583",
- "722",
- "883",
- "1273",
- "1541",
- "1947",
- "2503",
- "3249",
- "202",
- "258",
- "327",
- "395",
- "504",
- "594",
- "737",
- "907",
- "1230",
- "1591",
- "2000",
- "2546",
- "3381"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, trefoil",
- "slug": "Current ratings in air, trefoil",
- "position": 38,
- "visible": true,
- "variation": true,
- "options": [
- "183",
- "228",
- "278",
- "321",
- "364",
- "418",
- "494",
- "568",
- "660",
- "767",
- "855",
- "968",
- "1187",
- "185",
- "231",
- "280",
- "323",
- "366",
- "420",
- "496",
- "569",
- "766",
- "861",
- "976",
- "1095",
- "187",
- "232",
- "282",
- "325",
- "367",
- "421",
- "659",
- "764",
- "866",
- "984"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, flat",
- "slug": "Current ratings in air, flat",
- "position": 39,
- "visible": true,
- "variation": true,
- "options": [
- "219",
- "273",
- "333",
- "384",
- "432",
- "496",
- "583",
- "666",
- "755",
- "868",
- "907",
- "1017",
- "1270",
- "332",
- "494",
- "581",
- "663",
- "753",
- "866",
- "900",
- "1008",
- "1107",
- "331",
- "382",
- "429",
- "492",
- "578",
- "659",
- "750",
- "861",
- "889",
- "1000",
- "1085"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, trefoil",
- "slug": "Current ratings in ground, trefoil",
- "position": 40,
- "visible": true,
- "variation": true,
- "options": [
- "171",
- "208",
- "248",
- "283",
- "315",
- "357",
- "413",
- "466",
- "529",
- "602",
- "688",
- "764",
- "852",
- "172",
- "210",
- "251",
- "285",
- "319",
- "361",
- "417",
- "471",
- "535",
- "609",
- "690",
- "837",
- "174",
- "213",
- "254",
- "289",
- "322",
- "364",
- "422",
- "476",
- "541",
- "616",
- "692",
- "770",
- "841"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, flat",
- "slug": "Current ratings in ground, flat",
- "position": 41,
- "visible": true,
- "variation": true,
- "options": [
- "194",
- "236",
- "281",
- "318",
- "350",
- "394",
- "452",
- "506",
- "558",
- "627",
- "664",
- "731",
- "842",
- "195",
- "237",
- "282",
- "319",
- "352",
- "396",
- "455",
- "510",
- "564",
- "634",
- "668",
- "770",
- "238",
- "283",
- "321",
- "354",
- "399",
- "458",
- "514",
- "570",
- "642",
- "653",
- "734",
- "784"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-28T09:03:38",
- "translation": null
- },
- {
- "id": 44744,
- "translationKey": "na2xs2y-2",
- "locale": "de",
- "slug": "na2xs2y-2",
- "path": "/de/product/na2xs2y-2",
- "name": "NA2XS2Y",
- "shortDescriptionHtml": "Das NA2XS2Y Kabel ist ein hoch belastbares Mittelspannungskabel mit Aluminiumleiter, VPE-Isolierung und widerstandsfähigem PE-Mantel. Es eignet sich hervorragend für erdverlegte Anwendungen und überzeugt durch thermische Belastbarkeit, mechanische Robustheit und teilentladungsfreien Aufbau. \n",
- "descriptionHtml": " Für raue Umgebungen und intensive Belastung Das NA2XS2Y erfüllt die Normen DIN VDE 0276-620, HD 620 S2 und IEC 60502 und ist speziell für die feste Verlegung in Innenräumen, Kabelkanälen, im Freien, in Erde und in Wasser ausgelegt. Es findet seinen Einsatz in Industrieanlagen, Schaltstationen und Kraftwerken, besonders dort, wo das Kabel beim Verlegen oder im Betrieb mechanisch stark beansprucht wird. Aufbau und technische Merkmale Das Kabel ist mit einem mehrdrähtigen Aluminiumleiter (Kl. 2 nach DIN VDE 0295 / IEC 60228) ausgestattet. Die VPE-Isolation (Typ DIX8) ist untrennbar mit der äußeren Leitschicht verbunden und sorgt gemeinsam mit der inneren Leitschicht für einen teilentladungsfreien Betrieb. Die Abschirmung erfolgt über eine Umspinnung aus Kupferdrähten mit Querleitwendeln. Der Außenmantel aus schwarzem PE (Typ DMP2) schützt vor Feuchtigkeit, mechanischem Druck und chemischen Einflüssen – allerdings ohne Flammwidrigkeit. Besondere Eigenschaften und Einsatzvorteile NA2XS2Y ist erdverlegbar und für den Einsatz bei Temperaturen ab -20 °C geeignet. Es ist silikon- und cadmiumfrei, frei von lackbenetzungsstörenden Stoffen und erreicht eine Betriebstemperatur von bis zu +90 °C, im Kurzschlussfall sogar bis +250 °C. Der schwarze PE-Mantel macht das Kabel zur ideal belastbaren Lösung für dauerhafte, unterirdische Mittelspannungsinstallationen. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NA2XS2Y-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XS2Y-scaled.webp",
- "sku": "NA2XS2Y-medium-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 111,
- "name": "Mittelspannungskabel",
- "slug": "mittelspannungskabel"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16 - 6/10kV",
- "1x50/16 - 6/10kV",
- "1x70/16 - 6/10kV",
- "1x95/16 - 6/10kV",
- "1x120/16 - 6/10kV",
- "1x150/25 - 6/10kV",
- "1x185/25 - 6/10kV",
- "1x240/25 - 6/10kV",
- "1x300/25 - 6/10kV",
- "1x400/35 - 6/10kV",
- "1x500/35 - 6/10kV",
- "1x630/35 - 6/10kV",
- "1x800/35 - 6/10kV",
- "1x1000/35 - 6/10kV",
- "1x50/16 - 12/20kV",
- "1x70/16 - 12/20kV",
- "1x95/16 - 12/20kV",
- "1x120/16 - 12/20kV",
- "1x150/25 - 12/20kV",
- "1x185/25 - 12/20kV",
- "1x240/25 - 12/20kV",
- "1x300/25 - 12/20kV",
- "1x400/35 - 12/20kV",
- "1x500/35 - 12/20kV",
- "1x630/35 - 12/20kV",
- "1x800/35 - 12/20kV",
- "1x1000/35 - 12/20kV",
- "1x50/16 - 18/30kV",
- "1x70/16 - 18/30kV",
- "1x95/16 - 18/30kV",
- "1x120/16 - 18/30kV",
- "1x150/25 - 18/30kV",
- "1x185/25 - 18/30kV",
- "1x240/25 - 18/30kV",
- "1x300/25 - 18/30kV",
- "1x400/35 - 18/30kV",
- "1x500/35 - 18/30kV",
- "1x630/35 - 18/30kV",
- "1x800/35 - 18/30kV",
- "1x1000/35 - 18/30kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "Aluminum"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "Conductive tape below screen",
- "slug": "Conductive tape below screen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Copper wire screen and tape",
- "slug": "Copper wire screen and tape",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Non conducting tape above screen",
- "slug": "Non conducting tape above screen",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Al Foil",
- "slug": "Al Foil",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16",
- "1x50/16",
- "1x70/16",
- "1x95/16",
- "1x120/16",
- "1x150/25",
- "1x185/25",
- "1x240/25",
- "1x300/25",
- "1x400/35",
- "1x500/35",
- "1x630/35",
- "1x800/35",
- "1x1000/35"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "6/10 kV",
- "12/20 kV",
- "18/30 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "21 kV",
- "42 kV",
- "63 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "+90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "+250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +90 °C",
- "-35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C",
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "-20 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "uncoloured"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Flame retardant",
- "slug": "Flame retardant",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "wooden or metal drums"
- ]
- },
- {
- "id": 0,
- "name": "CE-Conformity",
- "slug": "CE-Conformity",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "yes"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "RM"
- ]
- },
- {
- "id": 0,
- "name": "Conductor diameter",
- "slug": "Conductor diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "7.2 mm",
- "8.3 mm",
- "9.8 mm",
- "11.3 mm",
- "12.8 mm",
- "14.2 mm",
- "15.8 mm",
- "18.1 mm",
- "20.2 mm",
- "23.3 mm",
- "26.5 mm",
- "29.9 mm",
- "34.2 mm",
- "38.1 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "3.4 mm",
- "5.5 mm",
- "8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Diameter over insulation",
- "slug": "Diameter over insulation",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "15.3 mm",
- "16.4 mm",
- "17.9 mm",
- "19.4 mm",
- "20.9 mm",
- "22.3 mm",
- "23.9 mm",
- "26.2 mm",
- "28.3 mm",
- "31.4 mm",
- "34.6 mm",
- "38 mm",
- "42.3 mm",
- "46.2 mm",
- "20.6 mm",
- "22.1 mm",
- "23.6 mm",
- "25.1 mm",
- "26.5 mm",
- "28.1 mm",
- "30.4 mm",
- "32.5 mm",
- "35.6 mm",
- "38.8 mm",
- "42.2 mm",
- "46.5 mm",
- "50.4 mm",
- "25.6 mm",
- "27.1 mm",
- "28.6 mm",
- "30.1 mm",
- "31.5 mm",
- "33.1 mm",
- "35.4 mm",
- "37.5 mm",
- "40.6 mm",
- "43.8 mm",
- "47.2 mm",
- "51.5 mm",
- "55.4 mm"
- ]
- },
- {
- "id": 0,
- "name": "Minimum sheath thickness",
- "slug": "Minimum sheath thickness",
- "position": 25,
- "visible": true,
- "variation": true,
- "options": [
- "2.1 mm",
- "2.4 mm"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 26,
- "visible": true,
- "variation": true,
- "options": [
- "23 mm",
- "25 mm",
- "26 mm",
- "28 mm",
- "29 mm",
- "30 mm",
- "32 mm",
- "34 mm",
- "37 mm",
- "40 mm",
- "43 mm",
- "46 mm",
- "51 mm",
- "57 mm",
- "31 mm",
- "35 mm",
- "39 mm",
- "41 mm",
- "44 mm",
- "47 mm",
- "56 mm",
- "61 mm",
- "36 mm",
- "42 mm",
- "49 mm",
- "53 mm",
- "67 mm"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 27,
- "visible": true,
- "variation": true,
- "options": [
- "345 mm",
- "375 mm",
- "390 mm",
- "420 mm",
- "435 mm",
- "450 mm",
- "480 mm",
- "510 mm",
- "555 mm",
- "600 mm",
- "645 mm",
- "690 mm",
- "765 mm",
- "855 mm",
- "465 mm",
- "525 mm",
- "585 mm",
- "615 mm",
- "660 mm",
- "705 mm",
- "840 mm",
- "915 mm",
- "540 mm",
- "630 mm",
- "735 mm",
- "795 mm",
- "1005 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 28,
- "visible": true,
- "variation": true,
- "options": [
- "563 kg/km",
- "624 kg/km",
- "707 kg/km",
- "808 kg/km",
- "905 kg/km",
- "1085 kg/km",
- "1226 kg/km",
- "1423 kg/km",
- "1666 kg/km",
- "2082 kg/km",
- "2447 kg/km",
- "2909 kg/km",
- "3520 kg/km",
- "4422 kg/km",
- "795 kg/km",
- "888 kg/km",
- "999 kg/km",
- "1108 kg/km",
- "1301 kg/km",
- "1452 kg/km",
- "1671 kg/km",
- "1893 kg/km",
- "2357 kg/km",
- "2757 kg/km",
- "3227 kg/km",
- "3856 kg/km",
- "4824 kg/km",
- "1009 kg/km",
- "1115 kg/km",
- "1237 kg/km",
- "1357 kg/km",
- "1561 kg/km",
- "1721 kg/km",
- "1956 kg/km",
- "2203 kg/km",
- "2693 kg/km",
- "3119 kg/km",
- "3617 kg/km",
- "4300 kg/km",
- "5326 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "DC resistance at 20 °C",
- "slug": "DC resistance at 20 °C",
- "position": 29,
- "visible": true,
- "variation": true,
- "options": [
- "0.868 Ω/km",
- "0.641 Ω/km",
- "0.443 Ω/km",
- "0.32 Ω/km",
- "0.253 Ω/km",
- "0.206 Ω/km",
- "0.164 Ω/km",
- "0.125 Ω/km",
- "0.1 Ω/km",
- "0.0778 Ω/km",
- "0.0605 Ω/km",
- "0.0469 Ω/km",
- "0.0367 Ω/km",
- "0.0291 Ω/km",
- "0.078 Ω/km",
- "0.061 Ω/km",
- "0.047 Ω/km",
- "0.037 Ω/km"
- ]
- },
- {
- "id": 0,
- "name": "Capacitance",
- "slug": "Capacitance",
- "position": 30,
- "visible": true,
- "variation": true,
- "options": [
- "0.22 μF/km",
- "0.25 μF/km",
- "0.28 μF/km",
- "0.31 μF/km",
- "0.34 μF/km",
- "0.36 μF/km",
- "0.4 μF/km",
- "0.44 μF/km",
- "0.48 μF/km",
- "0.54 μF/km",
- "0.61 μF/km",
- "0.66 μF/km",
- "0.76 μF/km",
- "0.84 μF/km",
- "0.17 μF/km",
- "0.19 μF/km",
- "0.21 μF/km",
- "0.23 μF/km",
- "0.27 μF/km",
- "0.3 μF/km",
- "0.32 μF/km",
- "0.49 μF/km",
- "0.55 μF/km",
- "0.13 μF/km",
- "0.15 μF/km",
- "0.16 μF/km",
- "0.2 μF/km",
- "0.24 μF/km",
- "0.26 μF/km",
- "0.29 μF/km",
- "0.39 μF/km"
- ]
- },
- {
- "id": 0,
- "name": "Inductance, trefoil",
- "slug": "Inductance, trefoil",
- "position": 31,
- "visible": true,
- "variation": true,
- "options": [
- "0.43",
- "0.42",
- "0.39",
- "0.38",
- "0.36",
- "0.35",
- "0.33",
- "0.32",
- "0.31",
- "0.3",
- "0.28",
- "0.27",
- "0.26",
- "0.25",
- "0.44",
- "0.4",
- "0.37",
- "0.34",
- "0.29",
- "0.48",
- "0.45",
- "0.41"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in air, flat 1",
- "slug": "Inductance in air, flat 1",
- "position": 32,
- "visible": true,
- "variation": true,
- "options": [
- "0.61",
- "0.6",
- "0.56",
- "0.55",
- "0.53",
- "0.51",
- "0.5",
- "0.48",
- "0.47",
- "0.45",
- "0.43",
- "0.42",
- "0.41",
- "0.4",
- "0.62",
- "0.59",
- "0.57",
- "0.54",
- "0.52",
- "0.49",
- "0.44",
- "0.65",
- "0.58",
- "0.46"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in ground, flat 1",
- "slug": "Inductance in ground, flat 1",
- "position": 33,
- "visible": true,
- "variation": true,
- "options": [
- "0.73",
- "0.71",
- "0.68",
- "0.65",
- "0.63",
- "0.6",
- "0.58",
- "0.55",
- "0.54",
- "0.5",
- "0.48",
- "0.46",
- "0.44",
- "0.42",
- "0.72",
- "0.69",
- "0.66",
- "0.64",
- "0.61",
- "0.59",
- "0.56",
- "0.51",
- "0.49",
- "0.47",
- "0.45",
- "0.7",
- "0.67",
- "0.62",
- "0.52"
- ]
- },
- {
- "id": 0,
- "name": "Conductor shortcircuit current",
- "slug": "Conductor shortcircuit current",
- "position": 34,
- "visible": true,
- "variation": true,
- "options": [
- "3.3 kA",
- "4.7 kA",
- "6.6 kA",
- "9 kA",
- "11.3 kA",
- "14.2 kA",
- "17.5 kA",
- "22.7 kA",
- "28.4 kA",
- "37.8 kA",
- "47.3 kA",
- "59.6 kA",
- "75.6 kA",
- "94 kA"
- ]
- },
- {
- "id": 0,
- "name": "Screen shortcircuit current",
- "slug": "Screen shortcircuit current",
- "position": 35,
- "visible": true,
- "variation": true,
- "options": [
- "3.2 kA",
- "5 kA",
- "7 kA"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, trefoil",
- "slug": "Heating time constant, trefoil",
- "position": 36,
- "visible": true,
- "variation": true,
- "options": [
- "194",
- "270",
- "353",
- "440",
- "528",
- "655",
- "760",
- "928",
- "1098",
- "1496",
- "1773",
- "2158",
- "2716",
- "3505",
- "269",
- "344",
- "433",
- "520",
- "643",
- "749",
- "913",
- "1485",
- "1757",
- "2131",
- "2673",
- "4323",
- "263",
- "337",
- "424",
- "631",
- "733",
- "897",
- "1068",
- "1453",
- "1740",
- "2631",
- "3302"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, flat",
- "slug": "Heating time constant, flat",
- "position": 37,
- "visible": true,
- "variation": true,
- "options": [
- "136",
- "191",
- "249",
- "314",
- "379",
- "486",
- "574",
- "710",
- "859",
- "1262",
- "1508",
- "1895",
- "2461",
- "3157",
- "198",
- "254",
- "321",
- "388",
- "495",
- "583",
- "726",
- "883",
- "1273",
- "1541",
- "1947",
- "2503",
- "3771",
- "202",
- "258",
- "327",
- "400",
- "501",
- "592",
- "733",
- "895",
- "1294",
- "1575",
- "2000",
- "2546",
- "3152"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, trefoil",
- "slug": "Current ratings in air, trefoil",
- "position": 38,
- "visible": true,
- "variation": true,
- "options": [
- "153",
- "183",
- "228",
- "278",
- "321",
- "364",
- "418",
- "494",
- "568",
- "660",
- "767",
- "855",
- "968",
- "1187",
- "185",
- "231",
- "280",
- "323",
- "366",
- "420",
- "496",
- "569",
- "766",
- "861",
- "976",
- "187",
- "232",
- "282",
- "325",
- "367",
- "421",
- "659",
- "764",
- "984",
- "1196"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, flat",
- "slug": "Current ratings in air, flat",
- "position": 39,
- "visible": true,
- "variation": true,
- "options": [
- "182",
- "219",
- "273",
- "333",
- "384",
- "432",
- "496",
- "583",
- "666",
- "755",
- "868",
- "913",
- "1017",
- "1270",
- "332",
- "494",
- "581",
- "663",
- "753",
- "866",
- "900",
- "1008",
- "1262",
- "331",
- "382",
- "429",
- "492",
- "578",
- "659",
- "750",
- "861",
- "889",
- "1000",
- "1256"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, trefoil",
- "slug": "Current ratings in ground, trefoil",
- "position": 40,
- "visible": true,
- "variation": true,
- "options": [
- "145",
- "171",
- "208",
- "248",
- "283",
- "315",
- "357",
- "413",
- "466",
- "529",
- "602",
- "685",
- "764",
- "852",
- "172",
- "210",
- "251",
- "285",
- "319",
- "361",
- "417",
- "471",
- "535",
- "609",
- "690",
- "863",
- "174",
- "213",
- "254",
- "289",
- "322",
- "364",
- "422",
- "476",
- "541",
- "616",
- "770",
- "878"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, flat",
- "slug": "Current ratings in ground, flat",
- "position": 41,
- "visible": true,
- "variation": true,
- "options": [
- "165",
- "194",
- "236",
- "281",
- "318",
- "350",
- "394",
- "452",
- "506",
- "558",
- "627",
- "668",
- "731",
- "842",
- "195",
- "237",
- "282",
- "319",
- "352",
- "396",
- "455",
- "510",
- "564",
- "634",
- "852",
- "238",
- "283",
- "321",
- "354",
- "399",
- "458",
- "514",
- "570",
- "642",
- "734",
- "863"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-28T09:27:17",
- "translation": null
- },
- {
- "id": 44574,
- "translationKey": "na2xsy-2",
- "locale": "de",
- "slug": "na2xsy-2",
- "path": "/de/product/na2xsy-2",
- "name": "NA2XSY",
- "shortDescriptionHtml": "Das NA2XSY Kabel ist ein erdverlegbares Mittelspannungskabel mit Aluminiumleiter, VPE-Isolation und Kupferschirmung. Es wurde für anspruchsvolle Energieverteilungen konzipiert und überzeugt durch hohe Betriebssicherheit, gute Verlegeeigenschaften und thermische Belastbarkeit bis 90 °C. \n",
- "descriptionHtml": " Für leistungsstarke Mittelspannungsnetze Das NA2XSY erfüllt die Anforderungen der Normen DIN VDE 0276-620, HD 620 S2 und IEC 60502. Es eignet sich für die Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser oder im Freien – allerdings nur bei geschützter Verlegung. Typische Einsatzorte sind Industrieanlagen, Kraftwerke und Schaltanlagen, in denen Mittelspannung mit hoher Betriebssicherheit transportiert werden muss. Technischer Aufbau Der Leiter besteht aus mehrdrähtigem Aluminium (Kl. 2 nach VDE 0295 / IEC 60228). Die VPE-Isolierung ist dauerhaft mit der äußeren Leitschicht verbunden, um eine teilentladungsfreie Struktur zu gewährleisten. Der Aufbau umfasst außerdem eine innere Leitschicht, leitfähige Bandierung, eine Cu-Abschirmung mit Querleitwendeln, zusätzliche Bandierung sowie einen roten PVC-Mantel. Das Kabel ist flammwidrig und für Erdverlegung freigegeben (je nach Typ). Anwendung und Eigenschaften Dank seines präzisen Aufbaus lässt sich das NA2XSY auch bei komplexer Trassenführung gut verlegen. Es ist silikon- und cadmiumfrei, enthält keine lackbenetzungsstörenden Stoffe und hält Kurzschlusstemperaturen bis +250 °C stand. Der konzentrische Aufbau und die festhaftenden Leitschichten machen dieses Kabel zur zuverlässigen Lösung für mittelspannungsgeführte Energieverteilungen, bei denen Betriebssicherheit und Montagefreundlichkeit entscheidend sind. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSY-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSY-scaled.webp",
- "sku": "NA2XSY-medium-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 111,
- "name": "Mittelspannungskabel",
- "slug": "mittelspannungskabel"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16 - 6/10kV",
- "1x50/16 - 6/10kV",
- "1x70/16 - 6/10kV",
- "1x95/16 - 6/10kV",
- "1x120/16 - 6/10kV",
- "1x150/25 - 6/10kV",
- "1x185/16 - 6/10kV",
- "1x185/25 - 6/10kV",
- "1x240/25 - 6/10kV",
- "1x300/25 - 6/10kV",
- "1x400/35 - 6/10kV",
- "1x500/35 - 6/10kV",
- "1x630/35 - 6/10kV",
- "1x800/35 - 6/10kV",
- "1x1000/35 - 6/10kV",
- "1x50/16 - 12/20kV",
- "1x70/16 - 12/20kV",
- "1x95/16 - 12/20kV",
- "1x120/16 - 12/20kV",
- "1x150/25 - 12/20kV",
- "1x185/16 - 12/20kV",
- "1x185/25 - 12/20kV",
- "1x240/25 - 12/20kV",
- "1x300/25 - 12/20kV",
- "1x400/35 - 12/20kV",
- "1x500/35 - 12/20kV",
- "1x630/35 - 12/20kV",
- "1x800/35 - 12/20kV",
- "1x1000/35 - 12/20kV",
- "1x50/16 - 18/30kV",
- "1x70/16 - 18/30kV",
- "1x95/16 - 18/30kV",
- "1x120/16 - 18/30kV",
- "1x150/25 - 18/30kV",
- "1x185/25 - 18/30kV",
- "1x240/25 - 18/30kV",
- "1x300/25 - 18/30kV",
- "1x400/35 - 18/30kV",
- "1x500/35 - 18/30kV",
- "1x630/35 - 18/30kV",
- "1x800/35 - 18/30kV",
- "1x1000/35 - 18/30kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "Aluminum"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "Conductive tape below screen",
- "slug": "Conductive tape below screen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Copper wire screen and tape",
- "slug": "Copper wire screen and tape",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Non conducting tape above screen",
- "slug": "Non conducting tape above screen",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Al Foil",
- "slug": "Al Foil",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16",
- "1x50/16",
- "1x70/16",
- "1x95/16",
- "1x120/16",
- "1x150/25",
- "1x185/16",
- "1x185/25",
- "1x240/25",
- "1x300/25",
- "1x400/35",
- "1x500/35",
- "1x630/35",
- "1x800/35",
- "1x1000/35"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "6/10 kV",
- "12/20 kV",
- "18/30 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "21 kV",
- "42 kV",
- "63 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "+90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "+250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "-25 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C",
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "uncoloured"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "red or black"
- ]
- },
- {
- "id": 0,
- "name": "Flame retardant",
- "slug": "Flame retardant",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "EN 60 332-1-2",
- "EN 60 332-1-3",
- "EN 60 332-1-4",
- "EN 60 332-1-5",
- "EN 60 332-1-6",
- "EN 60 332-1-7",
- "EN 60 332-1-8",
- "EN 60 332-1-9",
- "EN 60 332-1-10",
- "EN 60 332-1-11",
- "EN 60 332-1-12",
- "EN 60 332-1-13",
- "EN 60 332-1-14",
- "EN 60 332-1-15",
- "EN 60 332-1-16"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "Eca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "wooden or metal drums"
- ]
- },
- {
- "id": 0,
- "name": "CE-Conformity",
- "slug": "CE-Conformity",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "yes"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "RM"
- ]
- },
- {
- "id": 0,
- "name": "Conductor diameter",
- "slug": "Conductor diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "7.2 mm",
- "8.3 mm",
- "9.8 mm",
- "11.3 mm",
- "12.8 mm",
- "14.2 mm",
- "15.8 mm",
- "18.1 mm",
- "20.2 mm",
- "23.3 mm",
- "26.5 mm",
- "29.9 mm",
- "34.2 mm",
- "38.1 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "3.4 mm",
- "5.5 mm",
- "8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Diameter over insulation",
- "slug": "Diameter over insulation",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "15.3 mm",
- "16.4 mm",
- "17.9 mm",
- "19.4 mm",
- "20.9 mm",
- "22.3 mm",
- "23.9 mm",
- "26.2 mm",
- "28.3 mm",
- "31.4 mm",
- "34.6 mm",
- "38 mm",
- "42.3 mm",
- "46.2 mm",
- "20.5 mm",
- "22 mm",
- "23.5 mm",
- "25 mm",
- "26.4 mm",
- "28 mm",
- "30.3 mm",
- "32.4 mm",
- "35.5 mm",
- "38.7 mm",
- "42.1 mm",
- "46.4 mm",
- "50.3 mm",
- "25.5 mm",
- "27 mm",
- "28.5 mm",
- "30 mm",
- "33 mm",
- "35.3 mm",
- "37.4 mm",
- "40.5 mm",
- "43.7 mm",
- "47.1 mm",
- "51.4 mm",
- "55.3 mm"
- ]
- },
- {
- "id": 0,
- "name": "Minimum sheath thickness",
- "slug": "Minimum sheath thickness",
- "position": 25,
- "visible": true,
- "variation": true,
- "options": [
- "2.1 mm",
- "2.4 mm",
- "2.9 mm",
- "3 mm"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 26,
- "visible": true,
- "variation": true,
- "options": [
- "24 mm",
- "25 mm",
- "27 mm",
- "28 mm",
- "30 mm",
- "31 mm",
- "33 mm",
- "35 mm",
- "38 mm",
- "40 mm",
- "43 mm",
- "47 mm",
- "51 mm",
- "57 mm",
- "29 mm",
- "32 mm",
- "34 mm",
- "36 mm",
- "37 mm",
- "39 mm",
- "41 mm",
- "44 mm",
- "48 mm",
- "56 mm",
- "61 mm",
- "42 mm",
- "46 mm",
- "49 mm",
- "53 mm",
- "67 mm"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 27,
- "visible": true,
- "variation": true,
- "options": [
- "360 mm",
- "375 mm",
- "405 mm",
- "420 mm",
- "450 mm",
- "465 mm",
- "495 mm",
- "525 mm",
- "570 mm",
- "600 mm",
- "645 mm",
- "705 mm",
- "765 mm",
- "855 mm",
- "435 mm",
- "480 mm",
- "510 mm",
- "540 mm",
- "555 mm",
- "585 mm",
- "615 mm",
- "660 mm",
- "720 mm",
- "840 mm",
- "915 mm",
- "630 mm",
- "690 mm",
- "735 mm",
- "795 mm",
- "1005 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 28,
- "visible": true,
- "variation": true,
- "options": [
- "668 kg/km",
- "734 kg/km",
- "824 kg/km",
- "932 kg/km",
- "1036 kg/km",
- "1222 kg/km",
- "1283 kg/km",
- "1372 kg/km",
- "1579 kg/km",
- "1834 kg/km",
- "2263 kg/km",
- "2643 kg/km",
- "3120 kg/km",
- "3760 kg/km",
- "4724 kg/km",
- "936 kg/km",
- "1037 kg/km",
- "1157 kg/km",
- "1274 kg/km",
- "1491 kg/km",
- "1546 kg/km",
- "1636 kg/km",
- "1863 kg/km",
- "2084 kg/km",
- "2567 kg/km",
- "2992 kg/km",
- "3520 kg/km",
- "4182 kg/km",
- "5165 kg/km",
- "1176 kg/km",
- "1290 kg/km",
- "1421 kg/km",
- "1548 kg/km",
- "1757 kg/km",
- "1930 kg/km",
- "2172 kg/km",
- "2424 kg/km",
- "2928 kg/km",
- "3390 kg/km",
- "3937 kg/km",
- "4667 kg/km",
- "5703 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "DC resistance at 20 °C",
- "slug": "DC resistance at 20 °C",
- "position": 29,
- "visible": true,
- "variation": true,
- "options": [
- "0.868 Ω/km",
- "0.641 Ω/km",
- "0.443 Ω/km",
- "0.32 Ω/km",
- "0.253 Ω/km",
- "0.206 Ω/km",
- "0.164 Ω/km",
- "0.125 Ω/km",
- "0.1 Ω/km",
- "0.0778 Ω/km",
- "0.0605 Ω/km",
- "0.0469 Ω/km",
- "0.0367 Ω/km",
- "0.0291 Ω/km"
- ]
- },
- {
- "id": 0,
- "name": "Capacitance",
- "slug": "Capacitance",
- "position": 30,
- "visible": true,
- "variation": true,
- "options": [
- "0.22 μF/km",
- "0.25 μF/km",
- "0.28 μF/km",
- "0.31 μF/km",
- "0.34 μF/km",
- "0.37 μF/km",
- "0.4 μF/km",
- "0.41 μF/km",
- "0.44 μF/km",
- "0.48 μF/km",
- "0.54 μF/km",
- "0.62 μF/km",
- "0.67 μF/km",
- "0.76 μF/km",
- "0.84 μF/km",
- "0.17 μF/km",
- "0.19 μF/km",
- "0.21 μF/km",
- "0.23 μF/km",
- "0.27 μF/km",
- "0.3 μF/km",
- "0.32 μF/km",
- "0.36 μF/km",
- "0.49 μF/km",
- "0.13 μF/km",
- "0.15 μF/km",
- "0.16 μF/km",
- "0.2 μF/km",
- "0.24 μF/km",
- "0.29 μF/km",
- "0.39 μF/km"
- ]
- },
- {
- "id": 0,
- "name": "Inductance, trefoil",
- "slug": "Inductance, trefoil",
- "position": 31,
- "visible": true,
- "variation": true,
- "options": [
- "0.44",
- "0.42",
- "0.39",
- "0.37",
- "0.36",
- "0.34",
- "0.33",
- "0.32",
- "0.31",
- "0.29",
- "0.28",
- "0.27",
- "0.26",
- "0.25",
- "0.4",
- "0.35",
- "0.3",
- "0.48",
- "0.45",
- "0.43",
- "0.41"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in air, flat 1",
- "slug": "Inductance in air, flat 1",
- "position": 32,
- "visible": true,
- "variation": true,
- "options": [
- "0.61",
- "0.6",
- "0.57",
- "0.54",
- "0.53",
- "0.51",
- "0.49",
- "0.48",
- "0.47",
- "0.45",
- "0.43",
- "0.42",
- "0.41",
- "0.4",
- "0.62",
- "0.58",
- "0.56",
- "0.52",
- "0.46",
- "0.44",
- "0.65",
- "0.63",
- "0.55"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in ground, flat 1",
- "slug": "Inductance in ground, flat 1",
- "position": 33,
- "visible": true,
- "variation": true,
- "options": [
- "0.74",
- "0.71",
- "0.68",
- "0.65",
- "0.62",
- "0.59",
- "0.57",
- "0.55",
- "0.54",
- "0.5",
- "0.48",
- "0.46",
- "0.44",
- "0.42",
- "0.72",
- "0.69",
- "0.66",
- "0.64",
- "0.61",
- "0.6",
- "0.51",
- "0.49",
- "0.73",
- "0.7",
- "0.67",
- "0.58",
- "0.56",
- "0.53",
- "0.47",
- "0.45"
- ]
- },
- {
- "id": 0,
- "name": "Conductor shortcircuit current",
- "slug": "Conductor shortcircuit current",
- "position": 34,
- "visible": true,
- "variation": true,
- "options": [
- "3.3 kA",
- "4.7 kA",
- "6.6 kA",
- "9 kA",
- "11.3 kA",
- "14.2 kA",
- "17.5 kA",
- "22.7 kA",
- "28.4 kA",
- "37.8 kA",
- "47.3 kA",
- "59.6 kA",
- "75.6 kA",
- "94 kA",
- "94.6 kA"
- ]
- },
- {
- "id": 0,
- "name": "Screen shortcircuit current",
- "slug": "Screen shortcircuit current",
- "position": 35,
- "visible": true,
- "variation": true,
- "options": [
- "3.2 kA",
- "5 kA",
- "7 kA"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, trefoil",
- "slug": "Heating time constant, trefoil",
- "position": 36,
- "visible": true,
- "variation": true,
- "options": [
- "197",
- "278",
- "363",
- "452",
- "541",
- "667",
- "762",
- "771",
- "955",
- "1146",
- "1549",
- "1823",
- "2237",
- "2800",
- "3505",
- "276",
- "351",
- "442",
- "532",
- "653",
- "753",
- "760",
- "920",
- "1110",
- "1474",
- "1724",
- "2105",
- "2546",
- "3116",
- "269",
- "344",
- "433",
- "530",
- "640",
- "744",
- "905",
- "1092",
- "1453",
- "2052",
- "3050"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, flat",
- "slug": "Heating time constant, flat",
- "position": 37,
- "visible": true,
- "variation": true,
- "options": [
- "140",
- "198",
- "260",
- "325",
- "393",
- "501",
- "563",
- "590",
- "745",
- "907",
- "1315",
- "1575",
- "2000",
- "2546",
- "3157",
- "204",
- "261",
- "328",
- "397",
- "500",
- "570",
- "729",
- "895",
- "1262",
- "1525",
- "1895",
- "2376",
- "2917",
- "206",
- "264",
- "334",
- "408",
- "509",
- "599",
- "737",
- "1284",
- "1541",
- "1921",
- "2461",
- "3050"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, trefoil",
- "slug": "Current ratings in air, trefoil",
- "position": 38,
- "visible": true,
- "variation": true,
- "options": [
- "153",
- "183",
- "228",
- "278",
- "321",
- "364",
- "418",
- "494",
- "568",
- "660",
- "767",
- "840",
- "953",
- "1187",
- "185",
- "231",
- "280",
- "323",
- "366",
- "420",
- "496",
- "569",
- "766",
- "866",
- "1000",
- "1130",
- "187",
- "232",
- "282",
- "325",
- "367",
- "421",
- "659",
- "764",
- "877",
- "1142"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, flat",
- "slug": "Current ratings in air, flat",
- "position": 39,
- "visible": true,
- "variation": true,
- "options": [
- "182",
- "219",
- "273",
- "333",
- "384",
- "432",
- "496",
- "583",
- "666",
- "755",
- "868",
- "889",
- "1000",
- "1270",
- "332",
- "494",
- "581",
- "663",
- "753",
- "866",
- "913",
- "1035",
- "1168",
- "331",
- "382",
- "429",
- "492",
- "578",
- "659",
- "750",
- "861",
- "907",
- "1017",
- "1142"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, trefoil",
- "slug": "Current ratings in ground, trefoil",
- "position": 40,
- "visible": true,
- "variation": true,
- "options": [
- "145",
- "171",
- "208",
- "248",
- "283",
- "315",
- "357",
- "413",
- "466",
- "529",
- "602",
- "681",
- "754",
- "852",
- "172",
- "210",
- "251",
- "285",
- "319",
- "361",
- "417",
- "471",
- "535",
- "609",
- "697",
- "780",
- "868",
- "174",
- "213",
- "254",
- "289",
- "322",
- "364",
- "422",
- "476",
- "541",
- "616",
- "702",
- "877"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, flat",
- "slug": "Current ratings in ground, flat",
- "position": 41,
- "visible": true,
- "variation": true,
- "options": [
- "165",
- "194",
- "236",
- "281",
- "318",
- "350",
- "394",
- "452",
- "506",
- "558",
- "627",
- "661",
- "725",
- "842",
- "195",
- "237",
- "282",
- "319",
- "352",
- "396",
- "455",
- "510",
- "564",
- "634",
- "664",
- "734",
- "809",
- "238",
- "283",
- "321",
- "354",
- "399",
- "458",
- "514",
- "570",
- "642",
- "672",
- "742",
- "824"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-28T09:30:22",
- "translation": null
- },
- {
- "id": 44452,
- "translationKey": "n2xsfl2y-2",
- "locale": "de",
- "slug": "n2xsfl2y-2",
- "path": "/de/product/n2xsfl2y-2",
- "name": "N2XS(FL)2Y",
- "shortDescriptionHtml": "Das N2XS(FL)2Y Kabel ist ein längswasserdichtes Mittelspannungskabel mit Kupferleiter, VPE-Isolation und fest verschweißtem Al/PE-Mantel. Es bietet maximale Betriebssicherheit für kritische Infrastrukturen und schützt zuverlässig gegen eindringende Feuchtigkeit. \n",
- "descriptionHtml": " Für anspruchsvolle Energieverteilungsnetze Das N2XS(FL)2Y erfüllt die Standards DIN VDE 0276-620, HD 620 S2 und IEC 60502. Es eignet sich hervorragend für die Verlegung in Innenräumen, Kabelkanälen, im Freien, in Erde, im Wasser sowie auf Kabelpritschen – insbesondere in EVU-Netzen, Industrieanlagen und Schaltstationen, wo erhöhte Anforderungen an mechanische Belastbarkeit und Wasserdichtigkeit bestehen. Technischer Aufbau Der Kabelaufbau basiert auf einem mehrdrähtigen Kupferleiter (Klasse 2), einer VPE-Isolation mit extrudierter, fest haftender äußerer Leitschicht, sowie einer längswasserdichten, leitfähigen Bandierung. Die Abschirmung besteht aus Kupferdrähten mit Querleitwendel, ergänzt durch eine weitere längswasserdichte Bandierung. Der äußere Schutz wird durch eine fest mit dem schwarzen PE-Mantel verschweißte Aluminiumbandierung realisiert – sie wirkt als effektive Querwassersperre. Eigenschaften und Vorteile Das N2XS(FL)2Y ist erdverlegbar, für Außenanwendungen geeignet und hält Betriebstemperaturen bis +90 °C sowie Kurzschlussbelastungen bis +250 °C stand. Es ist silikon- und cadmiumfrei und enthält keine lackbenetzungsstörenden Substanzen. Dank seines teilentladungsfreien Aufbaus und der Al/PE-Schicht ist es bestens geeignet für feuchte Umgebungen mit erhöhtem Sicherheitsbedarf. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/N2XSFL2Y-2-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/N2XSFL2Y-2-scaled.webp",
- "sku": "N2XS(FL)2Y-medium-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 111,
- "name": "Mittelspannungskabel",
- "slug": "mittelspannungskabel"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x50/16 - 6/10kV",
- "1x70/16 - 6/10kV",
- "1x95/16 - 6/10kV",
- "1x120/16 - 6/10kV",
- "1x150/25 - 6/10kV",
- "1x185/25 - 6/10kV",
- "1x240/25 - 6/10kV",
- "1x300/25 - 6/10kV",
- "1x400/35 - 6/10kV",
- "1x500/35 - 6/10kV",
- "1x50/16 - 12/20kV",
- "1x70/16 - 12/20kV",
- "1x95/16 - 12/20kV",
- "1x120/16 - 12/20kV",
- "1x150/25 - 12/20kV",
- "1x185/25 - 12/20kV",
- "1x240/25 - 12/20kV",
- "1x300/25 - 12/20kV",
- "1x400/35 - 12/20kV",
- "1x500/35 - 12/20kV",
- "1x50/16 - 18/30kV",
- "1x70/16 - 18/30kV",
- "1x95/16 - 18/30kV",
- "1x120/16 - 18/30kV",
- "1x150/25 - 18/30kV",
- "1x185/25 - 18/30kV",
- "1x240/25 - 18/30kV",
- "1x300/25 - 18/30kV",
- "1x400/35 - 18/30kV",
- "1x500/35 - 18/30kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "Copper"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "Conductive tape below screen",
- "slug": "Conductive tape below screen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Copper wire screen and tape",
- "slug": "Copper wire screen and tape",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Non conducting tape above screen",
- "slug": "Non conducting tape above screen",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Al Foil",
- "slug": "Al Foil",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "1x50/16",
- "1x70/16",
- "1x95/16",
- "1x120/16",
- "1x150/25",
- "1x185/25",
- "1x240/25",
- "1x300/25",
- "1x400/35",
- "1x500/35"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "6/10 kV",
- "12/20 kV",
- "18/30 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "21 kV",
- "42 kV",
- "63 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "+90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "+250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +90 °C",
- "-35 - +90 °C",
- "-35 - + 90 °C",
- "-35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "–35 °C",
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "-20 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "uncoloured"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Flame retardant",
- "slug": "Flame retardant",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "wooden or metal drums"
- ]
- },
- {
- "id": 0,
- "name": "CE-Conformity",
- "slug": "CE-Conformity",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "yes"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "RM"
- ]
- },
- {
- "id": 0,
- "name": "Conductor diameter",
- "slug": "Conductor diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "8.2 mm",
- "9.8 mm",
- "11.3 mm",
- "12.8 mm",
- "14.2 mm",
- "15.8 mm",
- "18.3 mm",
- "20.7 mm",
- "23.3 mm",
- "26.5 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "3.4 mm",
- "5.5 mm",
- "8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Diameter over insulation",
- "slug": "Diameter over insulation",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "16.3 mm",
- "17.9 mm",
- "19.4 mm",
- "20.9 mm",
- "22.3 mm",
- "23.9 mm",
- "26.4 mm",
- "28.8 mm",
- "31.4 mm",
- "34.6 mm",
- "20.5 mm",
- "22.1 mm",
- "23.6 mm",
- "25.1 mm",
- "26.5 mm",
- "28.1 mm",
- "30.6 mm",
- "33 mm",
- "35.6 mm",
- "38.8 mm",
- "25.5 mm",
- "27.1 mm",
- "28.6 mm",
- "30.1 mm",
- "31.5 mm",
- "33.1 mm",
- "38 mm",
- "40.6 mm",
- "43.8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Minimum sheath thickness",
- "slug": "Minimum sheath thickness",
- "position": 25,
- "visible": true,
- "variation": true,
- "options": [
- "2.1 mm",
- "2.4 mm"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 26,
- "visible": true,
- "variation": true,
- "options": [
- "26 mm",
- "28 mm",
- "29 mm",
- "31 mm",
- "32 mm",
- "34 mm",
- "36 mm",
- "39 mm",
- "42 mm",
- "44 mm",
- "30 mm",
- "33 mm",
- "35 mm",
- "38 mm",
- "40 mm",
- "43 mm",
- "45 mm",
- "49 mm",
- "37 mm",
- "41 mm",
- "48 mm",
- "51 mm",
- "54 mm"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 27,
- "visible": true,
- "variation": true,
- "options": [
- "520 mm",
- "560 mm",
- "580 mm",
- "620 mm",
- "640 mm",
- "680 mm",
- "720 mm",
- "780 mm",
- "840 mm",
- "880 mm",
- "600 mm",
- "660 mm",
- "700 mm",
- "760 mm",
- "800 mm",
- "860 mm",
- "900 mm",
- "980 mm",
- "740 mm",
- "820 mm",
- "960 mm",
- "1020 mm",
- "1080 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 28,
- "visible": true,
- "variation": true,
- "options": [
- "1010 kg/km",
- "1238 kg/km",
- "1495 kg/km",
- "1773 kg/km",
- "2119 kg/km",
- "2483 kg/km",
- "3073 kg/km",
- "3737 kg/km",
- "4697 kg/km",
- "5729 kg/km",
- "1166 kg/km",
- "1409 kg/km",
- "1675 kg/km",
- "1968 kg/km",
- "2320 kg/km",
- "2697 kg/km",
- "3303 kg/km",
- "3978 kg/km",
- "4925 kg/km",
- "6006 kg/km",
- "1405 kg/km",
- "1646 kg/km",
- "1926 kg/km",
- "2227 kg/km",
- "2590 kg/km",
- "2975 kg/km",
- "3594 kg/km",
- "4300 kg/km",
- "5290 kg/km",
- "6403 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "DC resistance at 20 °C",
- "slug": "DC resistance at 20 °C",
- "position": 29,
- "visible": true,
- "variation": true,
- "options": [
- "0.387 Ω/km",
- "0.268 Ω/km",
- "0.193 Ω/km",
- "0.153 Ω/km",
- "0.124 Ω/km",
- "0.099 Ω/km",
- "0.075 Ω/km",
- "0.06 Ω/km",
- "0.047 Ω/km",
- "0.037 Ω/km"
- ]
- },
- {
- "id": 0,
- "name": "Capacitance",
- "slug": "Capacitance",
- "position": 30,
- "visible": true,
- "variation": true,
- "options": [
- "0.24 μF/km",
- "0.28 μF/km",
- "0.3 μF/km",
- "0.34 μF/km",
- "0.36 μF/km",
- "0.4 μF/km",
- "0.44 μF/km",
- "0.48 μF/km",
- "0.54 μF/km",
- "0.61 μF/km",
- "0.17 μF/km",
- "0.19 μF/km",
- "0.21 μF/km",
- "0.23 μF/km",
- "0.25 μF/km",
- "0.27 μF/km",
- "0.32 μF/km",
- "0.13 μF/km",
- "0.15 μF/km",
- "0.16 μF/km",
- "0.2 μF/km",
- "0.22 μF/km",
- "0.26 μF/km",
- "0.29 μF/km"
- ]
- },
- {
- "id": 0,
- "name": "Inductance, trefoil",
- "slug": "Inductance, trefoil",
- "position": 31,
- "visible": true,
- "variation": true,
- "options": [
- "0.41",
- "0.39",
- "0.37",
- "0.36",
- "0.34",
- "0.33",
- "0.32",
- "0.31",
- "0.29",
- "0.28",
- "0.45",
- "0.42",
- "0.35",
- "0.3",
- "0.48",
- "0.43",
- "0.4"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in ground, flat 1",
- "slug": "Inductance in ground, flat 1",
- "position": 32,
- "visible": true,
- "variation": true,
- "options": [
- "0.7",
- "0.67",
- "0.65",
- "0.62",
- "0.59",
- "0.58",
- "0.55",
- "0.54",
- "0.5",
- "0.48",
- "0.72",
- "0.68",
- "0.66",
- "0.64",
- "0.6",
- "0.56",
- "0.51",
- "0.49",
- "0.73",
- "0.52"
- ]
- },
- {
- "id": 0,
- "name": "Conductor shortcircuit current",
- "slug": "Conductor shortcircuit current",
- "position": 33,
- "visible": true,
- "variation": true,
- "options": [
- "7.1 kA",
- "10 kA",
- "13.6 kA",
- "17.1 kA",
- "21.4 kA",
- "26.4 kA",
- "34.3 kA",
- "42.9 kA",
- "57.2 kA",
- "71.4 kA"
- ]
- },
- {
- "id": 0,
- "name": "Screen shortcircuit current",
- "slug": "Screen shortcircuit current",
- "position": 34,
- "visible": true,
- "variation": true,
- "options": [
- "3.2 kA",
- "5 kA",
- "7 kA"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, trefoil",
- "slug": "Heating time constant, trefoil",
- "position": 35,
- "visible": true,
- "variation": true,
- "options": [
- "383",
- "490",
- "618",
- "742",
- "927",
- "1094",
- "1335",
- "1595",
- "2303",
- "2803",
- "369",
- "471",
- "591",
- "718",
- "897",
- "1063",
- "1300",
- "1568",
- "2230",
- "2727",
- "360",
- "462",
- "583",
- "707",
- "876",
- "1032",
- "1274",
- "1541",
- "2206",
- "2689"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, flat",
- "slug": "Heating time constant, flat",
- "position": 36,
- "visible": true,
- "variation": true,
- "options": [
- "273",
- "353",
- "450",
- "545",
- "719",
- "866",
- "1091",
- "1336",
- "2036",
- "2538",
- "276",
- "355",
- "451",
- "554",
- "723",
- "871",
- "1350",
- "2085",
- "2614",
- "280",
- "362",
- "459",
- "563",
- "730",
- "876",
- "1108",
- "1377",
- "2109",
- "2652"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, trefoil",
- "slug": "Current ratings in air, trefoil",
- "position": 37,
- "visible": true,
- "variation": true,
- "options": [
- "238",
- "294",
- "358",
- "413",
- "468",
- "535",
- "631",
- "722",
- "827",
- "949",
- "239",
- "297",
- "361",
- "416",
- "470",
- "538",
- "634",
- "724",
- "829",
- "953",
- "241",
- "299",
- "363",
- "418",
- "472",
- "539",
- "635",
- "725",
- "831"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, flat",
- "slug": "Current ratings in air, flat",
- "position": 38,
- "visible": true,
- "variation": true,
- "options": [
- "282",
- "350",
- "426",
- "491",
- "549",
- "625",
- "731",
- "831",
- "920",
- "1043",
- "351",
- "830",
- "923",
- "1045",
- "425",
- "468",
- "548",
- "624",
- "728",
- "828",
- "922"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, trefoil",
- "slug": "Current ratings in ground, trefoil",
- "position": 39,
- "visible": true,
- "variation": true,
- "options": [
- "220",
- "268",
- "320",
- "363",
- "405",
- "456",
- "526",
- "591",
- "662",
- "744",
- "222",
- "271",
- "323",
- "367",
- "409",
- "461",
- "532",
- "599",
- "671",
- "754",
- "225",
- "274",
- "327",
- "371",
- "414",
- "466",
- "539",
- "606",
- "680",
- "765"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, flat",
- "slug": "Current ratings in ground, flat",
- "position": 40,
- "visible": true,
- "variation": true,
- "options": [
- "249",
- "302",
- "359",
- "405",
- "442",
- "493",
- "563",
- "626",
- "675",
- "748",
- "250",
- "303",
- "360",
- "407",
- "445",
- "498",
- "568",
- "633",
- "685",
- "760",
- "251",
- "304",
- "362",
- "409",
- "449",
- "502",
- "574",
- "640",
- "695",
- "773"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-28T08:52:48",
- "translation": null
- },
- {
- "id": 44325,
- "translationKey": "n2xsf2y-2",
- "locale": "de",
- "slug": "n2xsf2y-2",
- "path": "/de/product/n2xsf2y-2",
- "name": "N2XS(F)2Y",
- "shortDescriptionHtml": "Das N2XS(F)2Y Kabel ist ein längswasserdichtes Mittelspannungskabel mit Kupferleiter, VPE-Isolation und widerstandsfähigem PE-Mantel. Es kombiniert hohe elektrische Sicherheit mit robuster Außenschicht für anspruchsvolle Anwendungen im Netzbetrieb. \n",
- "descriptionHtml": " Entwickelt für leistungsstarke Netzumgebungen Das N2XS(F)2Y erfüllt die gängigen Normen DIN VDE 0276-620, HD 620 S2 und IEC 60502 und ist für die Verlegung in Innenräumen, Kabelkanälen, im Freien, in Wasser, Erde und auf Kabelpritschen geeignet. Besonders in EVU-Netzen, Industrieanlagen und Kraftwerken spielt dieses Kabel seine Stärken aus – überall dort, wo Langlebigkeit, Wasserdichtigkeit und Sicherheit gefragt sind. Aufbau und technische Eigenschaften Im Inneren befindet sich ein blanker, mehrdrähtiger Kupferleiter (Klasse 2), umgeben von einer extrudierten VPE-Isolation mit innerer und haftender äußerer Leitschicht. Eine längswasserdichte, leitfähige Bandierung, eine Abschirmung aus Kupferdrähten mit Querleitwendeln und eine zusätzliche längswasserdichte Lage sichern den Aufbau. Der schwarze PE-Außenmantel (Typ DMP2) sorgt für hohe mechanische Belastbarkeit. Anwendungsbereiche und Vorteile Das N2XS(F)2Y ist erdverlegbar, resistent gegen aggressive Umwelteinflüsse und hält Temperaturen bis +90 °C im Dauerbetrieb sowie +250 °C im Kurzschlussfall stand. Es ist frei von silikon- und cadmiumhaltigen Stoffen und dank des teilentladungsfreien Aufbaus besonders geeignet für Netze mit höchsten Anforderungen an elektrische Betriebssicherheit und Langlebigkeit. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/N2XSF2Y-3-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/N2XSF2Y-3-scaled.webp",
- "sku": "N2XS(F)2Y-medium-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 111,
- "name": "Mittelspannungskabel",
- "slug": "mittelspannungskabel"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x50/16 - 6/10kV",
- "1x70/16 - 6/10kV",
- "1x95/16 - 6/10kV",
- "1x120/16 - 6/10kV",
- "1x150/25 - 6/10kV",
- "1x185/25 - 6/10kV",
- "1x240/25 - 6/10kV",
- "1x300/25 - 6/10kV",
- "1x400/35 - 6/10kV",
- "1x500/35 - 6/10kV",
- "1x35/16 - 12/20kV",
- "1x50/16 - 12/20kV",
- "1x70/16 - 12/20kV",
- "1x95/16 - 12/20kV",
- "1x120/16 - 12/20kV",
- "1x150/25 - 12/20kV",
- "1x185/25 - 12/20kV",
- "1x240/25 - 12/20kV",
- "1x300/25 - 12/20kV",
- "1x400/35 - 12/20kV",
- "1x500/35 - 12/20kV",
- "1x50/16 - 18/30kV",
- "1x70/16 - 18/30kV",
- "1x95/16 - 18/30kV",
- "1x120/16 - 18/30kV",
- "1x150/25 - 18/30kV",
- "1x185/25 - 18/30kV",
- "1x240/25 - 18/30kV",
- "1x300/25 - 18/30kV",
- "1x400/35 - 18/30kV",
- "1x500/35 - 18/30kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "Copper"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "Conductive tape below screen",
- "slug": "Conductive tape below screen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Copper wire screen and tape",
- "slug": "Copper wire screen and tape",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Non conducting tape above screen",
- "slug": "Non conducting tape above screen",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Al Foil",
- "slug": "Al Foil",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "1x50/16",
- "1x70/16",
- "1x95/16",
- "1x120/16",
- "1x150/25",
- "1x185/25",
- "1x240/25",
- "1x300/25",
- "1x400/35",
- "1x500/35",
- "1x35/16"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "6/10 kV",
- "12/20 kV",
- "18/30 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "21 kV",
- "42 kV",
- "63 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "+90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "+250 °C",
- "+250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +90 °C",
- "-35 - +90 °C",
- "-35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "–35 °C",
- "–35 °C",
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "-20 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "uncoloured"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Flame retardant",
- "slug": "Flame retardant",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "wooden or metal drums"
- ]
- },
- {
- "id": 0,
- "name": "CE-Conformity",
- "slug": "CE-Conformity",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "yes"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "RM"
- ]
- },
- {
- "id": 0,
- "name": "Conductor diameter",
- "slug": "Conductor diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "8.2 mm",
- "9.8 mm",
- "11.3 mm",
- "12.8 mm",
- "14.2 mm",
- "15.8 mm",
- "18.3 mm",
- "20.7 mm",
- "23.3 mm",
- "26.5 mm",
- "7.2 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "3.4 mm",
- "5.5 mm",
- "8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Diameter over insulation",
- "slug": "Diameter over insulation",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "16.3 mm",
- "17.9 mm",
- "19.4 mm",
- "20.9 mm",
- "22.3 mm",
- "23.9 mm",
- "26.4 mm",
- "28.8 mm",
- "31.4 mm",
- "34.6 mm",
- "19.5 mm",
- "20.5 mm",
- "22.1 mm",
- "23.6 mm",
- "25.1 mm",
- "26.5 mm",
- "28.1 mm",
- "30.6 mm",
- "33 mm",
- "35.6 mm",
- "38.8 mm",
- "25.5 mm",
- "27.1 mm",
- "28.6 mm",
- "30.1 mm",
- "31.5 mm",
- "33.1 mm",
- "38 mm",
- "40.6 mm",
- "43.8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Minimum sheath thickness",
- "slug": "Minimum sheath thickness",
- "position": 25,
- "visible": true,
- "variation": true,
- "options": [
- "2.1 mm",
- "2.4 mm"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 26,
- "visible": true,
- "variation": true,
- "options": [
- "26 mm",
- "28 mm",
- "30 mm",
- "31 mm",
- "32 mm",
- "35 mm",
- "37 mm",
- "40 mm",
- "43 mm",
- "29 mm",
- "34 mm",
- "39 mm",
- "42 mm",
- "44 mm",
- "47 mm",
- "36 mm",
- "49 mm",
- "53 mm"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 27,
- "visible": true,
- "variation": true,
- "options": [
- "375 mm",
- "390 mm",
- "420 mm",
- "450 mm",
- "465 mm",
- "480 mm",
- "525 mm",
- "555 mm",
- "600 mm",
- "645 mm",
- "435 mm",
- "510 mm",
- "585 mm",
- "630 mm",
- "660 mm",
- "705 mm",
- "540 mm",
- "735 mm",
- "795 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 28,
- "visible": true,
- "variation": true,
- "options": [
- "928 kg/km",
- "1155 kg/km",
- "1410 kg/km",
- "1683 kg/km",
- "2052 kg/km",
- "2384 kg/km",
- "2964 kg/km",
- "3624 kg/km",
- "4575 kg/km",
- "5598 kg/km",
- "949 kg/km",
- "1079 kg/km",
- "1315 kg/km",
- "1580 kg/km",
- "1862 kg/km",
- "2212 kg/km",
- "2585 kg/km",
- "3181 kg/km",
- "3851 kg/km",
- "4795 kg/km",
- "5873 kg/km",
- "1292 kg/km",
- "1542 kg/km",
- "1818 kg/km",
- "2110 kg/km",
- "2473 kg/km",
- "2854 kg/km",
- "3468 kg/km",
- "4164 kg/km",
- "5131 kg/km",
- "6235 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "DC resistance at 20 °C",
- "slug": "DC resistance at 20 °C",
- "position": 29,
- "visible": true,
- "variation": true,
- "options": [
- "0.387 Ω/km",
- "0.268 Ω/km",
- "0.193 Ω/km",
- "0.153 Ω/km",
- "0.124 Ω/km",
- "0.099 Ω/km",
- "0.075 Ω/km",
- "0.06 Ω/km",
- "0.047 Ω/km",
- "0.037 Ω/km",
- "0.524 Ω/km"
- ]
- },
- {
- "id": 0,
- "name": "Capacitance",
- "slug": "Capacitance",
- "position": 30,
- "visible": true,
- "variation": true,
- "options": [
- "0.24 μF/km",
- "0.28 μF/km",
- "0.3 μF/km",
- "0.34 μF/km",
- "0.36 μF/km",
- "0.4 μF/km",
- "0.44 μF/km",
- "0.49 μF/km",
- "0.54 μF/km",
- "0.61 μF/km",
- "0.16 μF/km",
- "0.17 μF/km",
- "0.19 μF/km",
- "0.21 μF/km",
- "0.23 μF/km",
- "0.25 μF/km",
- "0.27 μF/km",
- "0.33 μF/km",
- "0.13 μF/km",
- "0.15 μF/km",
- "0.2 μF/km",
- "0.22 μF/km",
- "0.26 μF/km",
- "0.29 μF/km"
- ]
- },
- {
- "id": 0,
- "name": "Inductance, trefoil",
- "slug": "Inductance, trefoil",
- "position": 31,
- "visible": true,
- "variation": true,
- "options": [
- "0.41",
- "0.39",
- "0.37",
- "0.36",
- "0.34",
- "0.33",
- "0.32",
- "0.31",
- "0.29",
- "0.28",
- "0.46",
- "0.44",
- "0.42",
- "0.4",
- "0.38",
- "0.3",
- "0.48",
- "0.45",
- "0.43",
- "0.35"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in ground, flat 1",
- "slug": "Inductance in ground, flat 1",
- "position": 32,
- "visible": true,
- "variation": true,
- "options": [
- "0.71",
- "0.67",
- "0.65",
- "0.62",
- "0.59",
- "0.58",
- "0.55",
- "0.53",
- "0.5",
- "0.48",
- "0.74",
- "0.72",
- "0.68",
- "0.66",
- "0.63",
- "0.6",
- "0.56",
- "0.54",
- "0.51",
- "0.49",
- "0.73",
- "0.7",
- "0.64",
- "0.57",
- "0.52"
- ]
- },
- {
- "id": 0,
- "name": "Conductor shortcircuit current",
- "slug": "Conductor shortcircuit current",
- "position": 33,
- "visible": true,
- "variation": true,
- "options": [
- "7.1 kA",
- "10 kA",
- "13.6 kA",
- "17.1 kA",
- "21.4 kA",
- "26.4 kA",
- "34.3 kA",
- "42.9 kA",
- "57.2 kA",
- "71.4 kA",
- "5 kA"
- ]
- },
- {
- "id": 0,
- "name": "Screen shortcircuit current",
- "slug": "Screen shortcircuit current",
- "position": 34,
- "visible": true,
- "variation": true,
- "options": [
- "3.2 kA",
- "5 kA",
- "7 kA"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, trefoil",
- "slug": "Heating time constant, trefoil",
- "position": 35,
- "visible": true,
- "variation": true,
- "options": [
- "385",
- "491",
- "618",
- "744",
- "927",
- "1094",
- "1327",
- "1582",
- "2279",
- "2803",
- "259",
- "374",
- "477",
- "600",
- "724",
- "903",
- "1068",
- "1309",
- "2255",
- "2727",
- "365",
- "466",
- "589",
- "713",
- "893",
- "1048",
- "1283",
- "1555",
- "2206",
- "2689"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, flat",
- "slug": "Heating time constant, flat",
- "position": 36,
- "visible": true,
- "variation": true,
- "options": [
- "275",
- "353",
- "450",
- "550",
- "719",
- "866",
- "1082",
- "1309",
- "2061",
- "2614",
- "192",
- "278",
- "358",
- "458",
- "556",
- "730",
- "871",
- "1091",
- "1350",
- "2109",
- "283",
- "364",
- "464",
- "567",
- "740",
- "887",
- "1117",
- "1364",
- "2652"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, trefoil",
- "slug": "Current ratings in air, trefoil",
- "position": 37,
- "visible": true,
- "variation": true,
- "options": [
- "238",
- "294",
- "358",
- "413",
- "468",
- "535",
- "631",
- "722",
- "827",
- "949",
- "200",
- "239",
- "297",
- "361",
- "416",
- "470",
- "538",
- "634",
- "724",
- "829",
- "953",
- "241",
- "299",
- "363",
- "418",
- "472",
- "539",
- "635",
- "725",
- "831"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, flat",
- "slug": "Current ratings in air, flat",
- "position": 38,
- "visible": true,
- "variation": true,
- "options": [
- "282",
- "350",
- "426",
- "491",
- "549",
- "625",
- "731",
- "831",
- "920",
- "1043",
- "235",
- "351",
- "830",
- "923",
- "1045",
- "425",
- "468",
- "548",
- "624",
- "728",
- "828",
- "922"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, trefoil",
- "slug": "Current ratings in ground, trefoil",
- "position": 39,
- "visible": true,
- "variation": true,
- "options": [
- "220",
- "268",
- "320",
- "363",
- "405",
- "456",
- "526",
- "591",
- "662",
- "744",
- "189",
- "222",
- "271",
- "323",
- "367",
- "409",
- "461",
- "532",
- "599",
- "671",
- "754",
- "225",
- "274",
- "327",
- "371",
- "414",
- "466",
- "539",
- "606",
- "680",
- "765"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, flat",
- "slug": "Current ratings in ground, flat",
- "position": 40,
- "visible": true,
- "variation": true,
- "options": [
- "249",
- "302",
- "359",
- "405",
- "442",
- "493",
- "563",
- "626",
- "675",
- "748",
- "213",
- "250",
- "303",
- "360",
- "407",
- "445",
- "498",
- "568",
- "633",
- "685",
- "760",
- "251",
- "304",
- "362",
- "409",
- "449",
- "502",
- "574",
- "640",
- "695",
- "773"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in air, flat 1",
- "slug": "Inductance in air, flat 1",
- "position": 41,
- "visible": true,
- "variation": true,
- "options": [
- "0.64",
- "0.62",
- "0.59",
- "0.57",
- "0.55",
- "0.53",
- "0.52",
- "0.5",
- "0.48",
- "0.46",
- "0.45"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-28T08:42:54",
- "translation": null
- },
- {
- "id": 44194,
- "translationKey": "n2xs2y-2",
- "locale": "de",
- "slug": "n2xs2y-2",
- "path": "/de/product/n2xs2y-2",
- "name": "N2XS2Y",
- "shortDescriptionHtml": "Das N2XS2Y Kabel ist ein robustes Mittelspannungskabel mit Kupferleiter, VPE-Isolation und widerstandsfähigem PE-Mantel. Es bietet eine zuverlässige Energieübertragung selbst bei hoher mechanischer Belastung und anspruchsvollen Umweltbedingungen. \n",
- "descriptionHtml": " Für Erdverlegung und anspruchsvolle Umgebungen Das N2XS2Y erfüllt die Normen DIN VDE 0276-620, HD 620 S2 und IEC 60502. Es eignet sich zur Verlegung in Innenräumen, Kabelkanälen, im Freien, im Wasser, auf Kabelpritschen und insbesondere im Erdreich. Aufgrund seines widerstandsfähigen Mantels wird es häufig in Industrieanlagen, Kraftwerken und Schaltstationen eingesetzt, wo Stabilität und Langlebigkeit gefordert sind. Technischer Aufbau Der Leiter besteht aus blankem, mehrdrähtigem Kupfer (Klasse 2), umgeben von einer inneren Leitschicht und einer VPE-Isolierung mit festhaftender äußerer Leitschicht. Die Abschirmung erfolgt über eine Kupferdraht-Umspinnung mit Querleitwendeln. Zusätzlich ist das Kabel mit einer leitfähigen Bandierung versehen und besitzt einen schwarzen PE-Mantel (Typ DMP2), der vor Feuchtigkeit und mechanischem Abrieb schützt. Merkmale und Einsatzvorteile Das N2XS2Y ist erdverlegbar, silikon- und cadmiumfrei sowie nicht flammwidrig. Es ist für Temperaturen bis +90 °C im Betrieb und +250 °C im Kurzschlussfall ausgelegt. Dank seines teilentladungsfreien Aufbaus bietet es ein hohes Maß an Sicherheit und ist besonders gut für Netze mit hoher Belastung und schwieriger Trassenführung geeignet. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/N2XS2Y-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/N2XS2Y-scaled.webp",
- "sku": "N2XS2Y-medium-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 111,
- "name": "Mittelspannungskabel",
- "slug": "mittelspannungskabel"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16 - 6/10kV",
- "1x50/16 - 6/10kV",
- "1x70/16 - 6/10kV",
- "1x95/16 - 6/10kV",
- "1x120/16 - 6/10kV",
- "1x150/25 - 6/10kV",
- "1x185/25 - 6/10kV",
- "1x240/25 - 6/10kV",
- "1x300/25 - 6/10kV",
- "1x400/35 - 6/10kV",
- "1x500/35 - 6/10kV",
- "1x35/16 - 12/20kV",
- "1x50/16 - 12/20kV",
- "1x70/16 - 12/20kV",
- "1x95/16 - 12/20kV",
- "1x120/16 - 12/20kV",
- "1x150/25 - 12/20kV",
- "1x185/25 - 12/20kV",
- "1x240/25 - 12/20kV",
- "1x300/25 - 12/20kV",
- "1x400/35 - 12/20kV",
- "1x500/35 - 12/20kV",
- "1x50/16 - 18/30kV",
- "1x70/16 - 18/30kV",
- "1x95/16 - 18/30kV",
- "1x120/16 - 18/30kV",
- "1x150/25 - 18/30kV",
- "1x185/25 - 18/30kV",
- "1x240/25 - 18/30kV",
- "1x300/25 - 18/30kV",
- "1x400/35 - 18/30kV",
- "1x500/35 - 18/30kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "Copper"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "Conductive tape below screen",
- "slug": "Conductive tape below screen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Copper wire screen and tape",
- "slug": "Copper wire screen and tape",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Non conducting tape above screen",
- "slug": "Non conducting tape above screen",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Al Foil",
- "slug": "Al Foil",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16",
- "1x50/16",
- "1x70/16",
- "1x95/16",
- "1x120/16",
- "1x150/25",
- "1x185/25",
- "1x240/25",
- "1x300/25",
- "1x400/35",
- "1x500/35"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "6/10 kV",
- "12/20 kV",
- "18/30 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "21 kV",
- "42 kV",
- "63 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "+90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "+250 °C",
- "+250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +90 °C",
- "-35 - +90 °C",
- "-35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "–35 °C",
- "–35 °C",
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "-20 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "uncoloured"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Flame retardant",
- "slug": "Flame retardant",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "wooden or metal drums"
- ]
- },
- {
- "id": 0,
- "name": "CE-Conformity",
- "slug": "CE-Conformity",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "yes"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "RM"
- ]
- },
- {
- "id": 0,
- "name": "Conductor diameter",
- "slug": "Conductor diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "7.2 mm",
- "8.2 mm",
- "9.8 mm",
- "11.3 mm",
- "12.8 mm",
- "14.2 mm",
- "15.8 mm",
- "18.3 mm",
- "20.7 mm",
- "23.3 mm",
- "26.5 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "3.4 mm",
- "5.5 mm",
- "8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Diameter over insulation",
- "slug": "Diameter over insulation",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "15.3 mm",
- "16.3 mm",
- "17.9 mm",
- "19.4 mm",
- "20.9 mm",
- "22.3 mm",
- "23.9 mm",
- "26.4 mm",
- "28.8 mm",
- "31.4 mm",
- "34.6 mm",
- "19.5 mm",
- "20.5 mm",
- "22.1 mm",
- "23.6 mm",
- "25.1 mm",
- "26.5 mm",
- "28.1 mm",
- "30.6 mm",
- "33 mm",
- "35.6 mm",
- "38.8 mm",
- "25.5 mm",
- "27.1 mm",
- "28.6 mm",
- "30.1 mm",
- "31.5 mm",
- "33.1 mm",
- "38 mm",
- "40.6 mm",
- "43.8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Minimum sheath thickness",
- "slug": "Minimum sheath thickness",
- "position": 25,
- "visible": true,
- "variation": true,
- "options": [
- "2.1 mm",
- "2.4 mm"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 26,
- "visible": true,
- "variation": true,
- "options": [
- "24 mm",
- "25 mm",
- "26 mm",
- "28 mm",
- "30 mm",
- "31 mm",
- "32 mm",
- "35 mm",
- "37 mm",
- "40 mm",
- "43 mm",
- "29 mm",
- "34 mm",
- "39 mm",
- "42 mm",
- "44 mm",
- "47 mm",
- "36 mm",
- "49 mm",
- "53 mm"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 27,
- "visible": true,
- "variation": true,
- "options": [
- "360 mm",
- "375 mm",
- "390 mm",
- "420 mm",
- "450 mm",
- "465 mm",
- "480 mm",
- "525 mm",
- "555 mm",
- "600 mm",
- "645 mm",
- "435 mm",
- "510 mm",
- "585 mm",
- "630 mm",
- "660 mm",
- "705 mm",
- "540 mm",
- "735 mm",
- "795 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 28,
- "visible": true,
- "variation": true,
- "options": [
- "803 kg/km",
- "928 kg/km",
- "1154 kg/km",
- "1410 kg/km",
- "1682 kg/km",
- "2025 kg/km",
- "2383 kg/km",
- "2965 kg/km",
- "3624 kg/km",
- "4574 kg/km",
- "5597 kg/km",
- "948 kg/km",
- "1078 kg/km",
- "1315 kg/km",
- "1579 kg/km",
- "1861 kg/km",
- "2212 kg/km",
- "2585 kg/km",
- "3181 kg/km",
- "3763 kg/km",
- "4795 kg/km",
- "5872 kg/km",
- "1292 kg/km",
- "1542 kg/km",
- "1817 kg/km",
- "2110 kg/km",
- "2473 kg/km",
- "2853 kg/km",
- "3467 kg/km",
- "4164 kg/km",
- "5131 kg/km",
- "6234 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "DC resistance at 20 °C",
- "slug": "DC resistance at 20 °C",
- "position": 29,
- "visible": true,
- "variation": true,
- "options": [
- "0.524 Ω/km",
- "0.387 Ω/km",
- "0.268 Ω/km",
- "0.193 Ω/km",
- "0.153 Ω/km",
- "0.124 Ω/km",
- "0.099 Ω/km",
- "0.075 Ω/km",
- "0.06 Ω/km",
- "0.047 Ω/km",
- "0.037 Ω/km"
- ]
- },
- {
- "id": 0,
- "name": "Capacitance",
- "slug": "Capacitance",
- "position": 30,
- "visible": true,
- "variation": true,
- "options": [
- "0.22 μF/km",
- "0.24 μF/km",
- "0.28 μF/km",
- "0.3 μF/km",
- "0.34 μF/km",
- "0.36 μF/km",
- "0.4 μF/km",
- "0.44 μF/km",
- "0.49 μF/km",
- "0.54 μF/km",
- "0.61 μF/km",
- "0.16 μF/km",
- "0.17 μF/km",
- "0.19 μF/km",
- "0.21 μF/km",
- "0.23 μF/km",
- "0.25 μF/km",
- "0.27 μF/km",
- "0.33 μF/km",
- "0.43 μF/km",
- "0.13 μF/km",
- "0.15 μF/km",
- "0.2 μF/km",
- "0.26 μF/km",
- "0.29 μF/km"
- ]
- },
- {
- "id": 0,
- "name": "Inductance, trefoil",
- "slug": "Inductance, trefoil",
- "position": 31,
- "visible": true,
- "variation": true,
- "options": [
- "0.43",
- "0.42",
- "0.39",
- "0.38",
- "0.36",
- "0.35",
- "0.34",
- "0.32",
- "0.31",
- "0.29",
- "0.28",
- "0.46",
- "0.44",
- "0.4",
- "0.37",
- "0.33",
- "0.3",
- "0.48",
- "0.45",
- "0.41"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in ground, flat 1",
- "slug": "Inductance in ground, flat 1",
- "position": 32,
- "visible": true,
- "variation": true,
- "options": [
- "0.73",
- "0.71",
- "0.67",
- "0.65",
- "0.62",
- "0.6",
- "0.58",
- "0.55",
- "0.53",
- "0.5",
- "0.48",
- "0.74",
- "0.72",
- "0.68",
- "0.66",
- "0.63",
- "0.59",
- "0.56",
- "0.54",
- "0.51",
- "0.49",
- "0.7",
- "0.64",
- "0.57",
- "0.52"
- ]
- },
- {
- "id": 0,
- "name": "Conductor shortcircuit current",
- "slug": "Conductor shortcircuit current",
- "position": 33,
- "visible": true,
- "variation": true,
- "options": [
- "5 kA",
- "7.1 kA",
- "10 kA",
- "13.6 kA",
- "17.1 kA",
- "21.4 kA",
- "26.4 kA",
- "34.3 kA",
- "42.9 kA",
- "57.2 kA",
- "71.4 kA"
- ]
- },
- {
- "id": 0,
- "name": "Screen shortcircuit current",
- "slug": "Screen shortcircuit current",
- "position": 34,
- "visible": true,
- "variation": true,
- "options": [
- "3.2 kA",
- "5 kA",
- "7 kA"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, trefoil",
- "slug": "Heating time constant, trefoil",
- "position": 35,
- "visible": true,
- "variation": true,
- "options": [
- "267",
- "375",
- "488",
- "611",
- "742",
- "917",
- "1089",
- "1318",
- "1582",
- "2279",
- "2765",
- "259",
- "373",
- "476",
- "598",
- "722",
- "897",
- "1048",
- "1283",
- "1541",
- "2689",
- "359",
- "466",
- "585",
- "711",
- "890",
- "1555",
- "2206"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, flat",
- "slug": "Heating time constant, flat",
- "position": 36,
- "visible": true,
- "variation": true,
- "options": [
- "190",
- "269",
- "352",
- "446",
- "545",
- "709",
- "861",
- "1073",
- "1309",
- "2036",
- "2538",
- "192",
- "278",
- "358",
- "454",
- "554",
- "723",
- "2085",
- "2576",
- "280",
- "364",
- "462",
- "567",
- "740",
- "882",
- "1108",
- "1364",
- "2109",
- "2652"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, trefoil",
- "slug": "Current ratings in air, trefoil",
- "position": 37,
- "visible": true,
- "variation": true,
- "options": [
- "197",
- "238",
- "294",
- "358",
- "413",
- "468",
- "535",
- "631",
- "722",
- "827",
- "949",
- "200",
- "239",
- "297",
- "361",
- "416",
- "470",
- "538",
- "634",
- "724",
- "829",
- "953",
- "241",
- "299",
- "363",
- "418",
- "472",
- "539",
- "635",
- "725",
- "831"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, flat",
- "slug": "Current ratings in air, flat",
- "position": 38,
- "visible": true,
- "variation": true,
- "options": [
- "235",
- "282",
- "350",
- "426",
- "491",
- "549",
- "625",
- "731",
- "831",
- "920",
- "1043",
- "351",
- "830",
- "923",
- "1045",
- "425",
- "468",
- "548",
- "624",
- "728",
- "828",
- "922"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, trefoil",
- "slug": "Current ratings in ground, trefoil",
- "position": 39,
- "visible": true,
- "variation": true,
- "options": [
- "187",
- "220",
- "268",
- "320",
- "363",
- "405",
- "456",
- "526",
- "591",
- "662",
- "744",
- "189",
- "222",
- "271",
- "323",
- "367",
- "409",
- "461",
- "532",
- "599",
- "671",
- "754",
- "225",
- "274",
- "327",
- "371",
- "414",
- "466",
- "539",
- "606",
- "680",
- "765"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, flat",
- "slug": "Current ratings in ground, flat",
- "position": 40,
- "visible": true,
- "variation": true,
- "options": [
- "212",
- "249",
- "302",
- "359",
- "405",
- "442",
- "493",
- "563",
- "626",
- "675",
- "748",
- "213",
- "250",
- "303",
- "360",
- "407",
- "445",
- "498",
- "568",
- "633",
- "685",
- "760",
- "251",
- "304",
- "362",
- "409",
- "449",
- "502",
- "574",
- "640",
- "695",
- "773"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-28T08:54:49",
- "translation": null
- },
- {
- "id": 44064,
- "translationKey": "n2xsy-2",
- "locale": "de",
- "slug": "n2xsy-2",
- "path": "/de/product/n2xsy-2",
- "name": "N2XSY",
- "shortDescriptionHtml": "Das N2XSY Kabel ist ein leistungsfähiges Mittelspannungskabel mit Kupferleiter, VPE-Isolation und PVC-Mantel. Es bietet hervorragende elektrische Eigenschaften und lässt sich auch bei komplexen Trassenführungen sicher und effizient verlegen. \n",
- "descriptionHtml": " Für kraftvolle Mittelspannungsanwendungen Das N2XSY erfüllt die Normen DIN VDE 0276-620, HD 620 S2 und IEC 60502. Es ist ausgelegt für die Verlegung in Innenräumen, Kabelkanälen, im Wasser, im Erdreich oder im Freien (bei geschützter Installation). Ob in Industrieanlagen, Kraftwerken oder Schaltanlagen – dieses Kabel sorgt für eine sichere und verlustarme Energieübertragung im Mittelspannungsbereich. Aufbau und technische Merkmale Das Kabel besteht aus einem blanken, mehrdrähtigen Kupferleiter (Kl. 2), der von einer VPE-Isolation mit festhaftender äußerer Leitschicht umgeben ist. Eine leitfähige Bandierung, eine Abschirmung aus Kupferdrähten mit Querleitwendel, zusätzliche Bandierung und ein roter PVC-Mantel (Typ DMV6) runden den Aufbau ab. Die extrudierte Kombination von Isolierung und Leitschicht sorgt für einen teilentladungsfreien Betrieb und hohe Zuverlässigkeit. Eigenschaften und Einsatzvorteile Das N2XSY Kabel ist erdverlegbar, flammwidrig nach DIN VDE 0482-332-1-2 und frei von silikon- und cadmiumhaltigen Stoffen. Mit +90 °C Betriebstemperatur und +250 °C Kurzschlussresistenz eignet es sich ideal für Netze mit hoher thermischer Belastung. Die ausgezeichneten Verlegeeigenschaften ermöglichen auch bei schwieriger Streckenführung eine einfache Handhabung. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/N2XSY-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/N2XSY-scaled.webp",
- "sku": "N2XSY-medium-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 111,
- "name": "Mittelspannungskabel",
- "slug": "mittelspannungskabel"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16 - 6/10kV",
- "1x50/16 - 6/10kV",
- "1x70/16 - 6/10kV",
- "1x95/16 - 6/10kV",
- "1x120/16 - 6/10kV",
- "1x150/25 - 6/10kV",
- "1x185/25 - 6/10kV",
- "1x240/25 - 6/10kV",
- "1x300/25 - 6/10kV",
- "1x400/35 - 6/10kV",
- "1x500/35 - 6/10kV",
- "1x35/16 - 12/20kV",
- "1x50/16 - 12/20kV",
- "1x70/16 - 12/20kV",
- "1x95/16 - 12/20kV",
- "1x120/16 - 12/20kV",
- "1x150/25 - 12/20kV",
- "1x185/25 - 12/20kV",
- "1x240/25 - 12/20kV",
- "1x300/25 - 12/20kV",
- "1x400/35 - 12/20kV",
- "1x500/35 - 12/20kV",
- "1x50/16 - 18/30kV",
- "1x70/16 - 18/30kV",
- "1x95/16 - 18/30kV",
- "1x120/16 - 18/30kV",
- "1x150/25 - 18/30kV",
- "1x185/25 - 18/30kV",
- "1x240/25 - 18/30kV",
- "1x300/25 - 18/30kV",
- "1x400/35 - 18/30kV",
- "1x500/35 - 18/30kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "Copper"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "Conductive tape below screen",
- "slug": "Conductive tape below screen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Copper wire screen and tape",
- "slug": "Copper wire screen and tape",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Non conducting tape above screen",
- "slug": "Non conducting tape above screen",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Al Foil",
- "slug": "Al Foil",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "1x35/16",
- "1x50/16",
- "1x70/16",
- "1x95/16",
- "1x120/16",
- "1x150/25",
- "1x185/25",
- "1x240/25",
- "1x300/25",
- "1x400/35",
- "1x500/35"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "6/10 kV",
- "12/20 kV",
- "18/30 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "21 kV",
- "42 kV",
- "63 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "+90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "+250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +90 °C",
- "-35 - +90 °C",
- "-35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "–25 °C",
- "-25 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "uncoloured"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "red or black"
- ]
- },
- {
- "id": 0,
- "name": "Flame retardant",
- "slug": "Flame retardant",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "EN 60 332-1-2",
- "EN 60 332-1-3",
- "EN 60 332-1-4",
- "EN 60 332-1-5",
- "EN 60 332-1-6",
- "EN 60 332-1-7",
- "EN 60 332-1-8",
- "EN 60 332-1-9",
- "EN 60 332-1-10",
- "EN 60 332-1-11",
- "EN 60 332-1-12"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "Eca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "wooden or metal drums"
- ]
- },
- {
- "id": 0,
- "name": "CE-Conformity",
- "slug": "CE-Conformity",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "yes",
- "yes"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "RM"
- ]
- },
- {
- "id": 0,
- "name": "Conductor diameter",
- "slug": "Conductor diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "7.2 mm",
- "8.2 mm",
- "9.8 mm",
- "11.3 mm",
- "12.8 mm",
- "14.2 mm",
- "15.8 mm",
- "18.3 mm",
- "20.7 mm",
- "23.3 mm",
- "26.5 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "3.4 mm",
- "5.5 mm",
- "8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Diameter over insulation",
- "slug": "Diameter over insulation",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "15.3 mm",
- "16.3 mm",
- "17.9 mm",
- "19.4 mm",
- "20.9 mm",
- "22.3 mm",
- "23.9 mm",
- "26.4 mm",
- "28.8 mm",
- "31.4 mm",
- "34.6 mm",
- "19.5 mm",
- "20.5 mm",
- "22.1 mm",
- "23.6 mm",
- "25.1 mm",
- "26.5 mm",
- "28.1 mm",
- "30.6 mm",
- "33 mm",
- "35.6 mm",
- "38.8 mm",
- "25.5 mm",
- "27.1 mm",
- "28.6 mm",
- "30.1 mm",
- "31.5 mm",
- "33.1 mm",
- "38 mm",
- "40.6 mm",
- "43.8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Minimum sheath thickness",
- "slug": "Minimum sheath thickness",
- "position": 25,
- "visible": true,
- "variation": true,
- "options": [
- "2.1 mm",
- "2.4 mm"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 26,
- "visible": true,
- "variation": true,
- "options": [
- "24 mm",
- "26 mm",
- "27 mm",
- "29 mm",
- "30 mm",
- "32 mm",
- "33 mm",
- "36 mm",
- "38 mm",
- "41 mm",
- "44 mm",
- "31 mm",
- "34 mm",
- "37 mm",
- "40 mm",
- "42 mm",
- "45 mm",
- "48 mm",
- "35 mm",
- "39 mm",
- "47 mm",
- "50 mm",
- "53 mm"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 27,
- "visible": true,
- "variation": true,
- "options": [
- "360 mm",
- "390 mm",
- "405 mm",
- "435 mm",
- "450 mm",
- "480 mm",
- "495 mm",
- "540 mm",
- "570 mm",
- "615 mm",
- "660 mm",
- "465 mm",
- "510 mm",
- "555 mm",
- "600 mm",
- "630 mm",
- "675 mm",
- "720 mm",
- "525 mm",
- "585 mm",
- "705 mm",
- "750 mm",
- "795 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 28,
- "visible": true,
- "variation": true,
- "options": [
- "904 kg/km",
- "1039 kg/km",
- "1271 kg/km",
- "1530 kg/km",
- "1809 kg/km",
- "2158 kg/km",
- "2524 kg/km",
- "3117 kg/km",
- "3786 kg/km",
- "4750 kg/km",
- "5786 kg/km",
- "1069 kg/km",
- "1203 kg/km",
- "1447 kg/km",
- "1718 kg/km",
- "2007 kg/km",
- "2364 kg/km",
- "2744 kg/km",
- "3352 kg/km",
- "4032 kg/km",
- "4988 kg/km",
- "6080 kg/km",
- "1439 kg/km",
- "1697 kg/km",
- "1979 kg/km",
- "2279 kg/km",
- "2648 kg/km",
- "3036 kg/km",
- "3661 kg/km",
- "4368 kg/km",
- "5347 kg/km",
- "6472 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "DC resistance at 20 °C",
- "slug": "DC resistance at 20 °C",
- "position": 29,
- "visible": true,
- "variation": true,
- "options": [
- "0.524 Ω/km",
- "0.387 Ω/km",
- "0.268 Ω/km",
- "0.193 Ω/km",
- "0.153 Ω/km",
- "0.124 Ω/km",
- "0.099 Ω/km",
- "0.075 Ω/km",
- "0.06 Ω/km",
- "0.047 Ω/km",
- "0.037 Ω/km"
- ]
- },
- {
- "id": 0,
- "name": "Capacitance",
- "slug": "Capacitance",
- "position": 30,
- "visible": true,
- "variation": true,
- "options": [
- "0.22 μF/km",
- "0.24 μF/km",
- "0.28 μF/km",
- "0.3 μF/km",
- "0.34 μF/km",
- "0.36 μF/km",
- "0.4 μF/km",
- "0.44 μF/km",
- "0.49 μF/km",
- "0.54 μF/km",
- "0.61 μF/km",
- "0.16 μF/km",
- "0.17 μF/km",
- "0.19 μF/km",
- "0.21 μF/km",
- "0.23 μF/km",
- "0.25 μF/km",
- "0.27 μF/km",
- "0.35 μF/km",
- "0.43 μF/km",
- "0.13 μF/km",
- "0.15 μF/km",
- "0.2 μF/km",
- "0.26 μF/km",
- "0.29 μF/km"
- ]
- },
- {
- "id": 0,
- "name": "Inductance, trefoil",
- "slug": "Inductance, trefoil",
- "position": 31,
- "visible": true,
- "variation": true,
- "options": [
- "0.43",
- "0.42",
- "0.39",
- "0.38",
- "0.36",
- "0.35",
- "0.34",
- "0.32",
- "0.31",
- "0.29",
- "0.28",
- "0.46",
- "0.45",
- "0.4",
- "0.37",
- "0.33",
- "0.3",
- "0.48",
- "0.41"
- ]
- },
- {
- "id": 0,
- "name": "Inductance in ground, flat 1",
- "slug": "Inductance in ground, flat 1",
- "position": 32,
- "visible": true,
- "variation": true,
- "options": [
- "0.73",
- "0.71",
- "0.67",
- "0.65",
- "0.62",
- "0.6",
- "0.58",
- "0.55",
- "0.53",
- "0.5",
- "0.48",
- "0.74",
- "0.72",
- "0.68",
- "0.66",
- "0.63",
- "0.59",
- "0.56",
- "0.54",
- "0.51",
- "0.49",
- "0.7",
- "0.64",
- "0.57",
- "0.52"
- ]
- },
- {
- "id": 0,
- "name": "Conductor shortcircuit current",
- "slug": "Conductor shortcircuit current",
- "position": 33,
- "visible": true,
- "variation": true,
- "options": [
- "5 kA",
- "7.1 kA",
- "10 kA",
- "13.6 kA",
- "17.1 kA",
- "21.4 kA",
- "26.4 kA",
- "34.3 kA",
- "42.9 kA",
- "57.2 kA",
- "71.4 kA"
- ]
- },
- {
- "id": 0,
- "name": "Screen shortcircuit current",
- "slug": "Screen shortcircuit current",
- "position": 34,
- "visible": true,
- "variation": true,
- "options": [
- "3.2 kA",
- "5 kA",
- "7 kA"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, trefoil",
- "slug": "Heating time constant, trefoil",
- "position": 35,
- "visible": true,
- "variation": true,
- "options": [
- "275",
- "387",
- "503",
- "630",
- "763",
- "948",
- "1125",
- "1370",
- "1636",
- "2352",
- "2917",
- "266",
- "383",
- "489",
- "613",
- "742",
- "920",
- "1079",
- "1344",
- "1582",
- "2327",
- "2765",
- "367",
- "476",
- "598",
- "729",
- "910",
- "1073",
- "1318",
- "1595",
- "2255",
- "2727"
- ]
- },
- {
- "id": 0,
- "name": "Heating time constant, flat",
- "slug": "Heating time constant, flat",
- "position": 36,
- "visible": true,
- "variation": true,
- "options": [
- "198",
- "281",
- "368",
- "465",
- "569",
- "743",
- "897",
- "1135",
- "1377",
- "2133",
- "2727",
- "199",
- "288",
- "371",
- "470",
- "574",
- "747",
- "892",
- "1143",
- "1364",
- "2182",
- "2689",
- "374",
- "476",
- "585",
- "760",
- "913",
- "1405"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, trefoil",
- "slug": "Current ratings in air, trefoil",
- "position": 37,
- "visible": true,
- "variation": true,
- "options": [
- "197",
- "238",
- "294",
- "358",
- "413",
- "468",
- "535",
- "631",
- "722",
- "827",
- "949",
- "200",
- "239",
- "297",
- "361",
- "416",
- "470",
- "538",
- "634",
- "724",
- "829",
- "953",
- "241",
- "299",
- "363",
- "418",
- "472",
- "539",
- "635",
- "725",
- "831"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in air, flat",
- "slug": "Current ratings in air, flat",
- "position": 38,
- "visible": true,
- "variation": true,
- "options": [
- "235",
- "282",
- "350",
- "426",
- "491",
- "549",
- "625",
- "731",
- "831",
- "920",
- "1043",
- "351",
- "830",
- "923",
- "1045",
- "425",
- "468",
- "548",
- "624",
- "728",
- "828",
- "922"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, trefoil",
- "slug": "Current ratings in ground, trefoil",
- "position": 39,
- "visible": true,
- "variation": true,
- "options": [
- "187",
- "220",
- "268",
- "320",
- "363",
- "405",
- "456",
- "526",
- "591",
- "662",
- "744",
- "189",
- "222",
- "271",
- "323",
- "367",
- "409",
- "461",
- "532",
- "599",
- "671",
- "754",
- "225",
- "274",
- "327",
- "371",
- "414",
- "466",
- "539",
- "606",
- "680",
- "765"
- ]
- },
- {
- "id": 0,
- "name": "Current ratings in ground, flat",
- "slug": "Current ratings in ground, flat",
- "position": 40,
- "visible": true,
- "variation": true,
- "options": [
- "212",
- "249",
- "302",
- "359",
- "405",
- "442",
- "493",
- "563",
- "626",
- "675",
- "748",
- "213",
- "250",
- "303",
- "360",
- "407",
- "445",
- "498",
- "568",
- "633",
- "685",
- "760",
- "251",
- "304",
- "362",
- "409",
- "449",
- "502",
- "574",
- "640",
- "695",
- "773"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-28T08:59:18",
- "translation": null
- },
- {
- "id": 43866,
- "translationKey": "na2x2y-2",
- "locale": "de",
- "slug": "na2x2y-2",
- "path": "/de/product/na2x2y-2",
- "name": "NA2X2Y",
- "shortDescriptionHtml": "Das NA2X2Y Kabel ist ein strapazierfähiges Niederspannungskabel mit Aluminiumleiter, PE-Isolation und HDPE-Mantel. Es wurde für feste Verlegungen unter erhöhter mechanischer Beanspruchung entwickelt und eignet sich besonders für anspruchsvolle industrielle und energietechnische Infrastrukturen. \n",
- "descriptionHtml": " Optimal für mechanisch belastete Anwendungen Das NA2X2Y entspricht der Norm DIN VDE 0276-603 (HD 603) und ist ausgelegt für die feste Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser oder im Freien. Es kommt bevorzugt in Kraftwerken, Industrieanlagen, Schaltanlagen und Ortsnetzen zum Einsatz – überall dort, wo robuste Kabel gefragt sind, die im Betrieb und bei der Verlegung hohen mechanischen Belastungen standhalten. Aufbau und Eigenschaften Der elektrische Leiter besteht aus Aluminium, wahlweise als rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig (SE/SM). Die Adern sind mit PE isoliert, verseilt und durch eine gemeinsame EPDM-Aderumhüllung geschützt. Der Außenmantel besteht aus HDPE, ist schwarz, UV-beständig und besonders widerstandsfähig gegenüber Abrieb, Druck und Feuchtigkeit – ideal für langfristige Installationen in anspruchsvollen Umgebungen. Einsatzvorteile NA2X2Y Kabel bieten eine technisch robuste und wirtschaftliche Lösung 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. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NA2X2Y-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NA2X2Y-scaled.webp",
- "sku": "NA2X2Y-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 109,
- "name": "Niederspannungskabel",
- "slug": "niederspannungskabel"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x16 - 0.6/1kV",
- "1x25 - 0.6/1kV",
- "1x35 - 0.6/1kV",
- "1x50 - 0.6/1kV",
- "1x70 - 0.6/1kV",
- "1x95 - 0.6/1kV",
- "1x120 - 0.6/1kV",
- "1x150 - 0.6/1kV",
- "1x185 - 0.6/1kV",
- "1x240 - 0.6/1kV",
- "1x300 - 0.6/1kV",
- "1x400 - 0.6/1kV",
- "1x500 - 0.6/1kV",
- "3x16 - 0.6/1kV",
- "3x25 - 0.6/1kV",
- "3x35 - 0.6/1kV",
- "3x50 - 0.6/1kV",
- "3x70 - 0.6/1kV",
- "3x95 - 0.6/1kV",
- "3x120 - 0.6/1kV",
- "3x150 - 0.6/1kV",
- "3x185 - 0.6/1kV",
- "3x240 - 0.6/1kV",
- "3x35+16 - 0.6/1kV",
- "3x70+35 - 0.6/1kV",
- "3x95+50 - 0.6/1kV",
- "3x120+70 - 0.6/1kV",
- "3x150+70 - 0.6/1kV",
- "3x185+95 - 0.6/1kV",
- "3x240+120 - 0.6/1kV",
- "4x10 - 0.6/1kV",
- "4x16 - 0.6/1kV",
- "4x25 - 0.6/1kV",
- "4x35 - 0.6/1kV",
- "4x50 - 0.6/1kV",
- "4x70 - 0.6/1kV",
- "4x95 - 0.6/1kV",
- "4x120 - 0.6/1kV",
- "4x150 - 0.6/1kV",
- "4x185 - 0.6/1kV",
- "4x240 - 0.6/1kV",
- "5x10 - 0.6/1kV",
- "5x16 - 0.6/1kV",
- "5x25 - 0.6/1kV",
- "5x35 - 0.6/1kV",
- "5x50 - 0.6/1kV",
- "5x70 - 0.6/1kV",
- "5x95 - 0.6/1kV",
- "5x120 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "AL"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "1x16",
- "1x25",
- "1x35",
- "1x50",
- "1x70",
- "1x95",
- "1x120",
- "1x150",
- "1x185",
- "1x240",
- "1x300",
- "1x400",
- "1x500",
- "3x16",
- "3x25",
- "3x35",
- "3x50",
- "3x70",
- "3x95",
- "3x120",
- "3x150",
- "3x185",
- "3x240",
- "3x35+16",
- "3x70+35",
- "3x95+50",
- "3x120+70",
- "3x150+70",
- "3x185+95",
- "3x240+120",
- "4x10",
- "4x16",
- "4x25",
- "4x35",
- "4x50",
- "4x70",
- "4x95",
- "4x120",
- "4x150",
- "4x185",
- "4x240",
- "5x10",
- "5x16",
- "5x25",
- "5x35",
- "5x50",
- "5x70",
- "5x95",
- "5x120"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-20 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "- 35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RE",
- "RMV",
- "SM"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "0.7 mm",
- "0.9 mm",
- "1 mm",
- "1.1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.6 mm",
- "1.7 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm",
- "0.9/0.7 mm",
- "1.1/0.9 mm",
- "1.1/1.0 mm",
- "1.2/1.1 mm",
- "1.4/1.1 mm",
- "1.6/1.1 mm",
- "1.7/1.2 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.1",
- "2.3",
- "2.4",
- "2.6",
- "2.2",
- "2.5",
- "2.7",
- "2.8"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "10 mm",
- "12 mm",
- "13 mm",
- "14 mm",
- "16 mm",
- "18 mm",
- "20 mm",
- "22 mm",
- "24 mm",
- "26 mm",
- "29 mm",
- "32 mm",
- "36 mm",
- "19 mm",
- "25 mm",
- "30 mm",
- "33 mm",
- "39 mm",
- "41 mm",
- "45 mm",
- "51 mm",
- "37 mm",
- "40 mm",
- "49 mm",
- "56 mm",
- "21 mm",
- "28 mm",
- "46 mm",
- "57 mm",
- "27 mm",
- "31 mm",
- "38 mm",
- "42 mm",
- "47 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "104 kg/km",
- "144 kg/km",
- "179 kg/km",
- "232 kg/km",
- "309 kg/km",
- "394 kg/km",
- "479 kg/km",
- "587 kg/km",
- "722 kg/km",
- "908 kg/km",
- "1102 kg/km",
- "1398 kg/km",
- "1763 kg/km",
- "454 kg/km",
- "634 kg/km",
- "788 kg/km",
- "870 kg/km",
- "1170 kg/km",
- "1463 kg/km",
- "1802 kg/km",
- "2184 kg/km",
- "2647 kg/km",
- "3362 kg/km",
- "855 kg/km",
- "2828 kg/km",
- "3757 kg/km",
- "4707 kg/km",
- "5675 kg/km",
- "7071 kg/km",
- "9138 kg/km",
- "642 kg/km",
- "910 kg/km",
- "1391 kg/km",
- "1834 kg/km",
- "2255 kg/km",
- "3158 kg/km",
- "4200 kg/km",
- "5259 kg/km",
- "6439 kg/km",
- "7967 kg/km",
- "10324 kg/km",
- "767 kg/km",
- "1100 kg/km",
- "1676 kg/km",
- "2266 kg/km",
- "2877 kg/km",
- "3979 kg/km",
- "5342 kg/km",
- "6625 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "1.91",
- "1.2",
- "0.868",
- "0.641",
- "0.443",
- "0.32",
- "0.253",
- "0.206",
- "0.164",
- "0.125",
- "0.1",
- "0.0078",
- "0.065",
- "0.268",
- "0.193",
- "0.153",
- "0.124",
- "0.0991",
- "0.0754",
- "1.83",
- "1.15",
- "0.727",
- "0.524",
- "0.387"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T07:14:29",
- "translation": null
- },
- {
- "id": 43668,
- "translationKey": "na2xy-2",
- "locale": "de",
- "slug": "na2xy-2",
- "path": "/de/product/na2xy-2",
- "name": "NA2XY",
- "shortDescriptionHtml": "Das NA2XY Kabel ist ein robustes Niederspannungskabel mit Aluminiumleiter, PE-Isolation und PVC-Mantel. Es ist für feste Verlegung unter erhöhter mechanischer Belastung konzipiert und eignet sich besonders für Energieverteilungen in industriellen und öffentlichen Versorgungsnetzen. \n",
- "descriptionHtml": " Für anspruchsvolle Netzanwendungen Das NA2XY entspricht der Norm DIN VDE 0276-603 (HD 603) und ist ideal für die feste Verlegung in Innenräumen, Kabelkanälen, im Freien, im Wasser oder im Erdreich geeignet. Typische Einsatzorte sind Kraftwerke, Industrieanlagen, Schaltanlagen sowie Ortsnetze, bei denen mechanische Belastung im Betrieb berücksichtigt werden muss. Technischer Aufbau Der Leiter besteht aus Aluminium, verfügbar als rund eindrähtig (RE) oder rund mehrdrähtig (RM). Die Adern sind mit PE (Polyethylen) isoliert, was dem Kabel eine sehr gute elektrische Isolation und hohe thermische Belastbarkeit verleiht. Der schwarze PVC-Mantel ist UV-beständig und schützt zuverlässig vor Feuchtigkeit und Umgebungseinflüssen. Einsatzbereiche NA2XY Kabel sind die richtige Wahl für stabile Energieverteilungen unter mechanisch anspruchsvollen Bedingungen. Sie bieten eine wirtschaftliche, langlebige Lösung für Netzbetreiber, Industrie und Anlagenbauer, die auf bewährte Technik und hohe Belastbarkeit setzen. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NA2XY-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XY-scaled.webp",
- "sku": "NA2XY-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 109,
- "name": "Niederspannungskabel",
- "slug": "niederspannungskabel"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x16 - 0.6/1kV",
- "1x25 - 0.6/1kV",
- "1x35 - 0.6/1kV",
- "1x50 - 0.6/1kV",
- "1x70 - 0.6/1kV",
- "1x95 - 0.6/1kV",
- "1x120 - 0.6/1kV",
- "1x150 - 0.6/1kV",
- "1x185 - 0.6/1kV",
- "1x240 - 0.6/1kV",
- "1x300 - 0.6/1kV",
- "1x400 - 0.6/1kV",
- "1x500 - 0.6/1kV",
- "3x16 - 0.6/1kV",
- "3x25 - 0.6/1kV",
- "3x35 - 0.6/1kV",
- "3x50 - 0.6/1kV",
- "3x70 - 0.6/1kV",
- "3x95 - 0.6/1kV",
- "3x120 - 0.6/1kV",
- "3x150 - 0.6/1kV",
- "3x185 - 0.6/1kV",
- "3x240 - 0.6/1kV",
- "3x25+16 - 0.6/1kV",
- "3x35+16 - 0.6/1kV",
- "3x50+25 - 0.6/1kV",
- "3x70+35 - 0.6/1kV",
- "3x95+50 - 0.6/1kV",
- "3x120+70 - 0.6/1kV",
- "3x150+70 - 0.6/1kV",
- "3x185+95 - 0.6/1kV",
- "3x240+120 - 0.6/1kV",
- "4x16 - 0.6/1kV",
- "4x25 - 0.6/1kV",
- "4x35 - 0.6/1kV",
- "4x50 - 0.6/1kV",
- "4x70 - 0.6/1kV",
- "4x95 - 0.6/1kV",
- "4x120 - 0.6/1kV",
- "4x150 - 0.6/1kV",
- "4x185 - 0.6/1kV",
- "4x240 - 0.6/1kV",
- "5x16 - 0.6/1kV",
- "5x25 - 0.6/1kV",
- "5x35 - 0.6/1kV",
- "5x50 - 0.6/1kV",
- "5x70 - 0.6/1kV",
- "5x95 - 0.6/1kV",
- "5x120 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "AL"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "1x16",
- "1x25",
- "1x35",
- "1x50",
- "1x70",
- "1x95",
- "1x120",
- "1x150",
- "1x185",
- "1x240",
- "1x300",
- "1x400",
- "1x500",
- "3x16",
- "3x25",
- "3x35",
- "3x50",
- "3x70",
- "3x95",
- "3x120",
- "3x150",
- "3x185",
- "3x240",
- "3x25+16",
- "3x35+16",
- "3x50+25",
- "3x70+35",
- "3x95+50",
- "3x120+70",
- "3x150+70",
- "3x185+95",
- "3x240+120",
- "4x16",
- "4x25",
- "4x35",
- "4x50",
- "4x70",
- "4x95",
- "4x120",
- "4x150",
- "4x185",
- "4x240",
- "5x16",
- "5x25",
- "5x35",
- "5x50",
- "5x70",
- "5x95",
- "5x120"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "- 35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "IEC 60332-1-2"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Eca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RMV",
- "RE",
- "SM",
- "SM/RE",
- "SE"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "0.7 mm",
- "0.9 mm",
- "1 mm",
- "1.1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.6 mm",
- "1.7 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm",
- "0.9/0.7 mm",
- "1.0/0.9 mm",
- "1.1/0.9 mm",
- "1.1/1.0 mm",
- "1.2/1.1 mm",
- "1.4/1.1 mm",
- "1.6/1.1 mm",
- "1.7/1.2 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.1",
- "2.3",
- "2.4",
- "2.6",
- "2.2",
- "2.5",
- "2.7",
- "2.8"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "10 mm",
- "12 mm",
- "13 mm",
- "14 mm",
- "16 mm",
- "18 mm",
- "20 mm",
- "22 mm",
- "24 mm",
- "26 mm",
- "29 mm",
- "32 mm",
- "36 mm",
- "19 mm",
- "25 mm",
- "30 mm",
- "33 mm",
- "39 mm",
- "41 mm",
- "45 mm",
- "51 mm",
- "23 mm",
- "37 mm",
- "40 mm",
- "49 mm",
- "56 mm",
- "21 mm",
- "27 mm",
- "35 mm",
- "43 mm",
- "46 mm",
- "48 mm",
- "54 mm",
- "57 mm",
- "38 mm",
- "42 mm",
- "47 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "136 kg/km",
- "182 kg/km",
- "222 kg/km",
- "275 kg/km",
- "358 kg/km",
- "448 kg/km",
- "538 kg/km",
- "654 kg/km",
- "797 kg/km",
- "991 kg/km",
- "1194 kg/km",
- "1504 kg/km",
- "1889 kg/km",
- "513 kg/km",
- "703 kg/km",
- "868 kg/km",
- "955 kg/km",
- "1274 kg/km",
- "1584 kg/km",
- "1951 kg/km",
- "2354 kg/km",
- "2832 kg/km",
- "3597 kg/km",
- "770 kg/km",
- "940 kg/km",
- "1142 kg/km",
- "1509 kg/km",
- "1859 kg/km",
- "2245 kg/km",
- "2720 kg/km",
- "3310 kg/km",
- "4202 kg/km",
- "611 kg/km",
- "823 kg/km",
- "1015 kg/km",
- "960 kg/km",
- "1385 kg/km",
- "1115 kg/km",
- "1192 kg/km",
- "1501 kg/km",
- "1901 kg/km",
- "2012 kg/km",
- "2376 kg/km",
- "2827 kg/km",
- "3007 kg/km",
- "3466 kg/km",
- "4373 kg/km",
- "4648 kg/km",
- "688 kg/km",
- "1181 kg/km",
- "1543 kg/km",
- "2030 kg/km",
- "2604 kg/km",
- "3159 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "1.91",
- "1.2",
- "0.868",
- "0.641",
- "0.443",
- "0.32",
- "0.253",
- "0.206",
- "0.164",
- "0.125",
- "0.1",
- "0.0778",
- "0.0605"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T07:05:14",
- "translation": null
- },
- {
- "id": 43462,
- "translationKey": "n2x2y-2",
- "locale": "de",
- "slug": "n2x2y-2",
- "path": "/de/product/n2x2y-2",
- "name": "N2X2Y",
- "shortDescriptionHtml": "Das N2X2Y Kabel ist ein VPE-isoliertes Niederspannungskabel mit HDPE-Mantel, das für feste Verlegungen unter anspruchsvollen Bedingungen entwickelt wurde. Es überzeugt durch seine hohe thermische Belastbarkeit und ist optimal für den Einsatz in Energieverteilungen mit erhöhten Sicherheitsanforderungen geeignet. \n",
- "descriptionHtml": " Für anspruchsvolle Betriebsbedingungen Das N2X2Y entspricht den Normen HD 603 S1 Teil 5G und HD 627 S1 Teil 4H (gleichlautend mit DIN VDE 0276-603 und -627) und ist für eine Betriebsfrequenz von 50 Hz 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 +90 °C, im Kurzschlussfall sind +250 °C zulässig. Aufbau und technische Merkmale Der Kabelaufbau besteht aus Kupferleitern mit VPE-Isolation (vernetztes Polyethylen). Die Adern sind verseilt und von einem robusten, schwarzen HDPE-Mantel umgeben. Der integrierte konzentrische Leiter aus Kupferdrähten wird an beiden Enden geerdet und sorgt für effektiven Schutz gegen Potenzialunterschiede und Berührungsspannungen. Einsatzgebiete N2X2Y ist ideal für Installationen in Ortsnetzen, Umspannwerken, Industrieanlagen und Energieverteilungen, bei denen hohe thermische Belastbarkeit und mechanische Widerstandskraft gefragt sind. Es bietet eine langlebige Lösung für anspruchsvolle Einsatzbedingungen – zuverlässig und sicher. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/N2X2Y-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/N2X2Y-scaled.webp",
- "sku": "N2X2Y-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 109,
- "name": "Niederspannungskabel",
- "slug": "niederspannungskabel"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x10 - 0.6/1kV",
- "1x16 - 0.6/1kV",
- "1x25 - 0.6/1kV",
- "1x35 - 0.6/1kV",
- "1x50 - 0.6/1kV",
- "1x70 - 0.6/1kV",
- "1x95 - 0.6/1kV",
- "1x120 - 0.6/1kV",
- "1x150 - 0.6/1kV",
- "1x240 - 0.6/1kV",
- "1x300 - 0.6/1kV",
- "1x400 - 0.6/1kV",
- "1x500 - 0.6/1kV",
- "3x10 - 0.6/1kV",
- "3x16 - 0.6/1kV",
- "3x25 - 0.6/1kV",
- "3x35 - 0.6/1kV",
- "3x50 - 0.6/1kV",
- "3x70 - 0.6/1kV",
- "3x95 - 0.6/1kV",
- "3x120 - 0.6/1kV",
- "3x150 - 0.6/1kV",
- "3x185 - 0.6/1kV",
- "3x240 - 0.6/1kV",
- "3x35+16 - 0.6/1kV",
- "3x50+25 - 0.6/1kV",
- "3x70+35 - 0.6/1kV",
- "3x95+50 - 0.6/1kV",
- "3x120+70 - 0.6/1kV",
- "3x150+70 - 0.6/1kV",
- "3x185+95 - 0.6/1kV",
- "3x240+120 - 0.6/1kV",
- "4x10 - 0.6/1kV",
- "4x16 - 0.6/1kV",
- "4x25 - 0.6/1kV",
- "4x35 - 0.6/1kV",
- "4x50 - 0.6/1kV",
- "4x70 - 0.6/1kV",
- "4x95 - 0.6/1kV",
- "4x120 - 0.6/1kV",
- "4x150 - 0.6/1kV",
- "4x185 - 0.6/1kV",
- "4x240 - 0.6/1kV",
- "5x10 - 0.6/1kV",
- "5x16 - 0.6/1kV",
- "5x25 - 0.6/1kV",
- "5x35 - 0.6/1kV",
- "5x50 - 0.6/1kV",
- "5x70 - 0.6/1kV",
- "5x95 - 0.6/1kV",
- "5x120 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "CU"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "1x10",
- "1x16",
- "1x25",
- "1x35",
- "1x50",
- "1x70",
- "1x95",
- "1x120",
- "1x150",
- "1x240",
- "1x300",
- "1x400",
- "1x500",
- "3x10",
- "3x16",
- "3x25",
- "3x35",
- "3x50",
- "3x70",
- "3x95",
- "3x120",
- "3x150",
- "3x185",
- "3x240",
- "3x35+16",
- "3x50+25",
- "3x70+35",
- "3x95+50",
- "3x120+70",
- "3x150+70",
- "3x185+95",
- "3x240+120",
- "4x10",
- "4x16",
- "4x25",
- "4x35",
- "4x50",
- "4x70",
- "4x95",
- "4x120",
- "4x150",
- "4x185",
- "4x240",
- "5x10",
- "5x16",
- "5x25",
- "5x35",
- "5x50",
- "5x70",
- "5x95",
- "5x120"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-20 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "- 35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RE",
- "RMV",
- "SM",
- "RMV/RE",
- "SM/RMV"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "0.7 mm",
- "0.9 mm",
- "1 mm",
- "1.1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.7 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm",
- "1.6 mm",
- "0.9/0.7 mm",
- "1.0/0.9 mm",
- "1.1/0.9 mm",
- "1.1/1.0 mm",
- "1.2/1.1 mm",
- "1.4/1.1 mm",
- "1.6/1.1 mm",
- "1.7/1.2 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.1",
- "2.3",
- "2.4",
- "2.6",
- "2.2",
- "2.5",
- "2.7",
- "2.8"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "9 mm",
- "10 mm",
- "12 mm",
- "13 mm",
- "14 mm",
- "16 mm",
- "18 mm",
- "20 mm",
- "22 mm",
- "26 mm",
- "29 mm",
- "32 mm",
- "36 mm",
- "17 mm",
- "19 mm",
- "23 mm",
- "30 mm",
- "33 mm",
- "37 mm",
- "41 mm",
- "45 mm",
- "51 mm",
- "40 mm",
- "49 mm",
- "56 mm",
- "21 mm",
- "25 mm",
- "28 mm",
- "46 mm",
- "57 mm",
- "27 mm",
- "31 mm",
- "38 mm",
- "42 mm",
- "47 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "141 kg/km",
- "200 kg/km",
- "301 kg/km",
- "397 kg/km",
- "520 kg/km",
- "725 kg/km",
- "972 kg/km",
- "1207 kg/km",
- "1488 kg/km",
- "2388 kg/km",
- "2964 kg/km",
- "3772 kg/km",
- "4808 kg/km",
- "529 kg/km",
- "741 kg/km",
- "1122 kg/km",
- "1473 kg/km",
- "1729 kg/km",
- "2414 kg/km",
- "3210 kg/km",
- "3962 kg/km",
- "4906 kg/km",
- "6047 kg/km",
- "7833 kg/km",
- "1652 kg/km",
- "2075 kg/km",
- "2828 kg/km",
- "3757 kg/km",
- "4707 kg/km",
- "5675 kg/km",
- "7071 kg/km",
- "9138 kg/km",
- "642 kg/km",
- "910 kg/km",
- "1391 kg/km",
- "1834 kg/km",
- "2255 kg/km",
- "3158 kg/km",
- "4200 kg/km",
- "5259 kg/km",
- "6439 kg/km",
- "7967 kg/km",
- "10324 kg/km",
- "767 kg/km",
- "1100 kg/km",
- "1676 kg/km",
- "2266 kg/km",
- "2877 kg/km",
- "3979 kg/km",
- "5342 kg/km",
- "6625 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "1.83",
- "1.15",
- "0.727",
- "0.524",
- "0.387",
- "0.268",
- "0.193",
- "0.153",
- "0.124",
- "0.0991",
- "0.0601",
- "0.047",
- "0.0366",
- "0.0754"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T07:18:28",
- "translation": null
- },
- {
- "id": 43248,
- "translationKey": "n2xy-2",
- "locale": "de",
- "slug": "n2xy-2",
- "path": "/de/product/n2xy-2",
- "name": "N2XY",
- "shortDescriptionHtml": "Das N2XY Kabel ist ein nicht armiertes Niederspannungskabel für Strom- und Steueranwendungen bis 0,6/1 kV. Es eignet sich für feste Verlegung in Gebäuden, im Freien, in feuchter Umgebung sowie bei direkter Erdverlegung – überall dort, wo keine besonderen mechanischen Belastungen auftreten. \n",
- "descriptionHtml": " Für die feste Verlegung in Standardanwendungen Das N2XY 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. Technischer Aufbau Als Leiter dient massives oder mehrdrähtiges Kupfer (RE oder RM), die Adern sind mit XLPE (vernetztem Polyethylen) isoliert. Das Kabel ist eingebettet in eine PVC-Füllmasse und wird von einem PVC-Außenmantel umgeben, der das Kabel gegen Umwelteinflüsse und mechanische Beanspruchung im Normalbereich schützt. Varianten und Einsatzmöglichkeiten N2XY ist sowohl als N2XY-J (mit Schutzleiter) als auch als N2XY-O (ohne Schutzleiter) verfügbar. Es bietet eine platzsparende, wirtschaftliche Lösung für Verteilungen im Niederspannungsbereich, ohne auf Sicherheit oder Qualität zu verzichten. Typische Einsatzorte sind Gewerbe- und Wohnbauten, Anlageninstallationen sowie Verbindungen zwischen Schaltschränken und Verteilungen. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/N2XY-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/N2XY-scaled.webp",
- "sku": "N2XY-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 109,
- "name": "Niederspannungskabel",
- "slug": "niederspannungskabel"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x10 - 0.6/1kV",
- "1x16 - 0.6/1kV",
- "1x25 - 0.6/1kV",
- "1x35 - 0.6/1kV",
- "1x50 - 0.6/1kV",
- "1x70 - 0.6/1kV",
- "1x95 - 0.6/1kV",
- "1x120 - 0.6/1kV",
- "1x150 - 0.6/1kV",
- "1x185 - 0.6/1kV",
- "1x240 - 0.6/1kV",
- "1x300 - 0.6/1kV",
- "1x400 - 0.6/1kV",
- "1x500 - 0.6/1kV",
- "3x10 - 0.6/1kV",
- "3x16 - 0.6/1kV",
- "3x25 - 0.6/1kV",
- "3x35 - 0.6/1kV",
- "3x50 - 0.6/1kV",
- "3x70 - 0.6/1kV",
- "3x95 - 0.6/1kV",
- "3x120 - 0.6/1kV",
- "3x150 - 0.6/1kV",
- "3x185 - 0.6/1kV",
- "3x240 - 0.6/1kV",
- "3x25+16 - 0.6/1kV",
- "3x35+16 - 0.6/1kV",
- "3x50+25 - 0.6/1kV",
- "3x70+35 - 0.6/1kV",
- "3x95+50 - 0.6/1kV",
- "3x120+70 - 0.6/1kV",
- "3x150+70 - 0.6/1kV",
- "3x185+95 - 0.6/1kV",
- "3x240+120 - 0.6/1kV",
- "4x10 - 0.6/1kV",
- "4x16 - 0.6/1kV",
- "4x25 - 0.6/1kV",
- "4x35 - 0.6/1kV",
- "4x50 - 0.6/1kV",
- "4x70 - 0.6/1kV",
- "4x95 - 0.6/1kV",
- "4x120 - 0.6/1kV",
- "4x150 - 0.6/1kV",
- "4x185 - 0.6/1kV",
- "4x240 - 0.6/1kV",
- "5x10 - 0.6/1kV",
- "5x16 - 0.6/1kV",
- "5x25 - 0.6/1kV",
- "5x35 - 0.6/1kV",
- "5x50 - 0.6/1kV",
- "5x70 - 0.6/1kV",
- "5x95 - 0.6/1kV",
- "5x120 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "CU"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "XLPE"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "1x10",
- "1x16",
- "1x25",
- "1x35",
- "1x50",
- "1x70",
- "1x95",
- "1x120",
- "1x150",
- "1x185",
- "1x240",
- "1x300",
- "1x400",
- "1x500",
- "3x10",
- "3x16",
- "3x25",
- "3x35",
- "3x50",
- "3x70",
- "3x95",
- "3x120",
- "3x150",
- "3x185",
- "3x240",
- "3x25+16",
- "3x35+16",
- "3x50+25",
- "3x70+35",
- "3x95+50",
- "3x120+70",
- "3x150+70",
- "3x185+95",
- "3x240+120",
- "4x10",
- "4x16",
- "4x25",
- "4x35",
- "4x50",
- "4x70",
- "4x95",
- "4x120",
- "4x150",
- "4x185",
- "4x240",
- "5x10",
- "5x16",
- "5x25",
- "5x35",
- "5x50",
- "5x70",
- "5x95",
- "5x120"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "250 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "- 35 - +90 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "IEC 60332-1-2"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Eca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RE",
- "RMV",
- "SM",
- "RMV/RE",
- "SM/RE",
- "SM/RMV"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "0.7 mm",
- "0.9 mm",
- "1 mm",
- "1.1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.6 mm",
- "1.7 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm",
- "0.9/0.7 mm",
- "1.0/0.9 mm",
- "1.1/0.9 mm",
- "1.1/1.0 mm",
- "1.2/1.1 mm",
- "1.4/1.1 mm",
- "1.6/1.1 mm",
- "1.7/1.2 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.1",
- "2.3",
- "2.4",
- "2.6",
- "2.2",
- "2.5",
- "2.7",
- "2.8"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "9 mm",
- "10 mm",
- "12 mm",
- "13 mm",
- "14 mm",
- "16 mm",
- "18 mm",
- "20 mm",
- "22 mm",
- "24 mm",
- "26 mm",
- "29 mm",
- "32 mm",
- "36 mm",
- "17 mm",
- "19 mm",
- "23 mm",
- "30 mm",
- "33 mm",
- "37 mm",
- "41 mm",
- "45 mm",
- "51 mm",
- "40 mm",
- "49 mm",
- "56 mm",
- "21 mm",
- "25 mm",
- "46 mm",
- "57 mm",
- "27 mm",
- "31 mm",
- "35 mm",
- "38 mm",
- "42 mm",
- "47 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "166 kg/km",
- "229 kg/km",
- "336 kg/km",
- "436 kg/km",
- "562 kg/km",
- "774 kg/km",
- "1027 kg/km",
- "1267 kg/km",
- "1555 kg/km",
- "1922 kg/km",
- "2471 kg/km",
- "3055 kg/km",
- "3880 kg/km",
- "4938 kg/km",
- "581 kg/km",
- "800 kg/km",
- "1193 kg/km",
- "1553 kg/km",
- "1815 kg/km",
- "2519 kg/km",
- "3319 kg/km",
- "4089 kg/km",
- "5077 kg/km",
- "6233 kg/km",
- "8067 kg/km",
- "1357 kg/km",
- "1658 kg/km",
- "2170 kg/km",
- "2932 kg/km",
- "3897 kg/km",
- "4865 kg/km",
- "5862 kg/km",
- "7293 kg/km",
- "9407 kg/km",
- "698 kg/km",
- "974 kg/km",
- "995 kg/km",
- "1469 kg/km",
- "1818 kg/km",
- "2354 kg/km",
- "3268 kg/km",
- "4341 kg/km",
- "5429 kg/km",
- "6637 kg/km",
- "8188 kg/km",
- "10609 kg/km",
- "829 kg/km",
- "1169 kg/km",
- "1188 kg/km",
- "1795 kg/km",
- "2363 kg/km",
- "3154 kg/km",
- "4146 kg/km",
- "5516 kg/km",
- "6805 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "1.83",
- "1.15",
- "0.727",
- "0.524",
- "0.387",
- "0.268",
- "0.193",
- "0.153",
- "0.124",
- "0.0991",
- "0.0754",
- "0.0601",
- "0.047",
- "0.0366"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T07:16:44",
- "translation": null
- },
- {
- "id": 43050,
- "translationKey": "nay2y-2",
- "locale": "de",
- "slug": "nay2y-2",
- "path": "/de/product/nay2y-2",
- "name": "NAY2Y",
- "shortDescriptionHtml": "Das NAY2Y Kabel ist ein besonders robustes Niederspannungskabel mit Aluminiumleiter und HDPE-Mantel, das speziell für Installationen mit hoher mechanischer Beanspruchung entwickelt wurde. Es überzeugt durch seine Widerstandsfähigkeit in anspruchsvollen Umgebungen – ob in Industrieanlagen, Trafostationen oder Ortsnetzen. \n",
- "descriptionHtml": " Für anspruchsvolle Verlegebedingungen Das NAY2Y erfüllt die Anforderungen der Norm TP PRAKAB 12/03 in Anlehnung an VDE 0276-603 und eignet sich für die feste Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser und im Außenbereich. 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. Aufbau und Materialkomponenten Der Leiter besteht aus Aluminium, wahlweise als rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig (SE/SM). Die PVC-isolierten Adern sind verseilt und werden von einer gemeinsamen EPDM-Aderumhüllung geschützt. Der äußere Mantel aus HDPE (schwarz, UV-beständig) macht das Kabel besonders widerstandsfähig gegenüber Druck, Abrieb und Feuchtigkeit – perfekt für langfristige Installationen unter schwierigen Bedingungen. Typische Einsatzgebiete NAY2Y Kabel sind erste Wahl bei Verkabelungsprojekten mit hoher Belastung, 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. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NAY2Y-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NAY2Y-scaled.webp",
- "sku": "NAY2Y-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 109,
- "name": "Niederspannungskabel",
- "slug": "niederspannungskabel"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x16 - 0.6/1kV",
- "1x25 - 0.6/1kV",
- "1x35 - 0.6/1kV",
- "1x50 - 0.6/1kV",
- "1x70 - 0.6/1kV",
- "1x95 - 0.6/1kV",
- "1x120 - 0.6/1kV",
- "1x150 - 0.6/1kV",
- "1x185 - 0.6/1kV",
- "1x240 - 0.6/1kV",
- "1x300 - 0.6/1kV",
- "1x400 - 0.6/1kV",
- "1x500 - 0.6/1kV",
- "3x10 - 0.6/1kV",
- "3x16 - 0.6/1kV",
- "3x25 - 0.6/1kV",
- "3x35 - 0.6/1kV",
- "3x50 - 0.6/1kV",
- "3x70 - 0.6/1kV",
- "3x95 - 0.6/1kV",
- "3x120 - 0.6/1kV",
- "3x150 - 0.6/1kV",
- "3x185 - 0.6/1kV",
- "3x240 - 0.6/1kV",
- "3x35+16 - 0.6/1kV",
- "3x50+25 - 0.6/1kV",
- "3x70+35 - 0.6/1kV",
- "3x95+50 - 0.6/1kV",
- "3x120+70 - 0.6/1kV",
- "3x150+70 - 0.6/1kV",
- "3x185+95 - 0.6/1kV",
- "3x240+120 - 0.6/1kV",
- "4x16 - 0.6/1kV",
- "4x25 - 0.6/1kV",
- "4x35 - 0.6/1kV",
- "4x50 - 0.6/1kV",
- "4x70 - 0.6/1kV",
- "4x95 - 0.6/1kV",
- "4x120 - 0.6/1kV",
- "4x150 - 0.6/1kV",
- "4x185 - 0.6/1kV",
- "4x240 - 0.6/1kV",
- "5x16 - 0.6/1kV",
- "5x25 - 0.6/1kV",
- "5x35 - 0.6/1kV",
- "5x50 - 0.6/1kV",
- "5x70 - 0.6/1kV",
- "5x95 - 0.6/1kV",
- "5x120 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "AL"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "1x16",
- "1x25",
- "1x35",
- "1x50",
- "1x70",
- "1x95",
- "1x120",
- "1x150",
- "1x185",
- "1x240",
- "1x300",
- "1x400",
- "1x500",
- "3x10",
- "3x16",
- "3x25",
- "3x35",
- "3x50",
- "3x70",
- "3x95",
- "3x120",
- "3x150",
- "3x185",
- "3x240",
- "3x35+16",
- "3x50+25",
- "3x70+35",
- "3x95+50",
- "3x120+70",
- "3x150+70",
- "3x185+95",
- "3x240+120",
- "4x16",
- "4x25",
- "4x35",
- "4x50",
- "4x70",
- "4x95",
- "4x120",
- "4x150",
- "4x185",
- "4x240",
- "5x16",
- "5x25",
- "5x35",
- "5x50",
- "5x70",
- "5x95",
- "5x120"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "≤ 300 mm2: +160, > 300 mm2: +140 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "- 35 - +70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RE",
- "RMV",
- "SE",
- "SM/RMV",
- "SM"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.6 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm",
- "2.4 mm",
- "2.6 mm",
- "2.8 mm",
- "1.2/1.0 mm",
- "1.4/1.2 mm",
- "1.6/1.4 mm",
- "1.8/1.4 mm",
- "2.0/1.6 mm",
- "2.2/1.6 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.1",
- "2.2",
- "2.3",
- "2.5",
- "2.7",
- "2.4",
- "2.6",
- "2.8",
- "2.9"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "11 mm",
- "12 mm",
- "13 mm",
- "15 mm",
- "17 mm",
- "19 mm",
- "20 mm",
- "22 mm",
- "25 mm",
- "27 mm",
- "30 mm",
- "34 mm",
- "37 mm",
- "18 mm",
- "24 mm",
- "26 mm",
- "31 mm",
- "41 mm",
- "45 mm",
- "50 mm",
- "39 mm",
- "42 mm",
- "47 mm",
- "51 mm",
- "58 mm",
- "23 mm",
- "28 mm",
- "33 mm",
- "48 mm",
- "53 mm",
- "56 mm",
- "59 mm",
- "35 mm",
- "40 mm",
- "49 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "122 kg/km",
- "171 kg/km",
- "209 kg/km",
- "277 kg/km",
- "356 kg/km",
- "464 kg/km",
- "549 kg/km",
- "670 kg/km",
- "821 kg/km",
- "1035 kg/km",
- "1273 kg/km",
- "1598 kg/km",
- "2001 kg/km",
- "398 kg/km",
- "523 kg/km",
- "735 kg/km",
- "903 kg/km",
- "955 kg/km",
- "1263 kg/km",
- "1625 kg/km",
- "1911 kg/km",
- "2329 kg/km",
- "2821 kg/km",
- "3573 kg/km",
- "981 kg/km",
- "1222 kg/km",
- "1582 kg/km",
- "2004 kg/km",
- "2429 kg/km",
- "2854 kg/km",
- "3492 kg/km",
- "4437 kg/km",
- "611 kg/km",
- "649 kg/km",
- "873 kg/km",
- "906 kg/km",
- "1071 kg/km",
- "1238 kg/km",
- "1324 kg/km",
- "1591 kg/km",
- "2068 kg/km",
- "2518 kg/km",
- "3013 kg/km",
- "3183 kg/km",
- "3732 kg/km",
- "3928 kg/km",
- "4648 kg/km",
- "4929 kg/km",
- "721 kg/km",
- "1059 kg/km",
- "1320 kg/km",
- "1661 kg/km",
- "2137 kg/km",
- "2816 kg/km",
- "3342 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "1.91",
- "1.2",
- "0.868",
- "0.641",
- "0.443",
- "0.32",
- "0.253",
- "0.206",
- "0.164",
- "0.125",
- "0.1",
- "0.0778",
- "0.0605",
- "3.08"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T07:03:29",
- "translation": null
- },
- {
- "id": 42912,
- "translationKey": "naycwy-2",
- "locale": "de",
- "slug": "naycwy-2",
- "path": "/de/product/naycwy-2",
- "name": "NAYCWY",
- "shortDescriptionHtml": "Das NAYCWY Kabel ist ein geschirmtes Niederspannungskabel mit Aluminiumleiter und konzentrischem Leiter aus Kupfer. Es wurde speziell für Anwendungen entwickelt, bei denen zusätzlicher Schutz gegen Berührungsspannungen gefordert ist – etwa in industriellen Netzen, Ortsnetzen oder Energieverteilanlagen. \n",
- "descriptionHtml": " Entwickelt für erhöhte Anforderungen an Sicherheit Das NAYCWY entspricht der Norm DIN VDE 0276-603 (HD 603) und eignet sich für den Einsatz in Kraftwerken, Industrieanlagen, Schaltanlagen und Ortsnetzen. 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. Technischer Aufbau Der elektrische Leiter besteht aus Aluminium, wahlweise rund mehrdrähtig (RM), sektorförmig eindrähtig (SE) oder mehrdrähtig (SM). Die PVC-Aderisolation und eine gemeinsame EPDM-Aderumhüllung schützen die verseilten Adern. Darüber liegt ein konzentrischer Leiter aus blanken Kupferdrähten mit Kupferband-Querleitwendel – ideal als PE oder PEN-Leiter verwendbar. Ein schwarzer, UV-beständiger PVC-Mantel schließt das Kabel zuverlässig nach außen ab. Anwendung und Besonderheiten NAYCWY Kabel kommen immer dann zum Einsatz, wenn elektrische Sicherheit und Schirmung 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. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NAYCWY-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NAYCWY-scaled.webp",
- "sku": "NAYCWY-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 109,
- "name": "Niederspannungskabel",
- "slug": "niederspannungskabel"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "2x16/16 - 0.6/1kV",
- "3x16/16 - 0.6/1kV",
- "3x25/16 - 0.6/1kV",
- "3x25/25 - 0.6/1kV",
- "3x35/16 - 0.6/1kV",
- "3x35/35 - 0.6/1kV",
- "3x50/25 - 0.6/1kV",
- "3x50/50 - 0.6/1kV",
- "3x70/35 - 0.6/1kV",
- "3x70/70 - 0.6/1kV",
- "3x95/50 - 0.6/1kV",
- "3x95/95 - 0.6/1kV",
- "3x120/70 - 0.6/1kV",
- "3x120/120 - 0.6/1kV",
- "3x150/70 - 0.6/1kV",
- "3x150/150 - 0.6/1kV",
- "3x185/95 - 0.6/1kV",
- "3x185/185 - 0.6/1kV",
- "3x240/120 - 0.6/1kV",
- "4x16/10 - 0.6/1kV",
- "4x16/16 - 0.6/1kV",
- "4x25/16 - 0.6/1kV",
- "4x35/16 - 0.6/1kV",
- "4x50/25 - 0.6/1kV",
- "4x50/35 - 0.6/1kV",
- "4x70/35 - 0.6/1kV",
- "4x95/50 - 0.6/1kV",
- "4x95/95 - 0.6/1kV",
- "4x120/70 - 0.6/1kV",
- "4x150/70 - 0.6/1kV",
- "4x150/120 - 0.6/1kV",
- "4x150/150 - 0.6/1kV",
- "4x185/95 - 0.6/1kV",
- "4x240/120 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "AL"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "2x16/16",
- "3x16/16",
- "3x25/16",
- "3x25/25",
- "3x35/16",
- "3x35/35",
- "3x50/25",
- "3x50/50",
- "3x70/35",
- "3x70/70",
- "3x95/50",
- "3x95/95",
- "3x120/70",
- "3x120/120",
- "3x150/70",
- "3x150/150",
- "3x185/95",
- "3x185/185",
- "3x240/120",
- "4x16/10",
- "4x16/16",
- "4x25/16",
- "4x35/16",
- "4x50/25",
- "4x50/35",
- "4x70/35",
- "4x95/50",
- "4x95/95",
- "4x120/70",
- "4x150/70",
- "4x150/120",
- "4x150/150",
- "4x185/95",
- "4x240/120"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "160 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "IEC 60332-1-2"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Eca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RE",
- "RMV",
- "SM",
- "SE"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.6 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.2",
- "2.3",
- "2.4",
- "2.6",
- "2.8",
- "2.1",
- "3"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "21 mm",
- "22 mm",
- "26 mm",
- "28 mm",
- "29 mm",
- "33 mm",
- "34 mm",
- "38 mm",
- "41 mm",
- "40 mm",
- "46 mm",
- "44 mm",
- "50 mm",
- "48 mm",
- "56 mm",
- "24 mm",
- "27 mm",
- "30 mm",
- "31 mm",
- "35 mm",
- "36 mm",
- "39 mm",
- "42 mm",
- "51 mm",
- "53 mm",
- "62 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "651 kg/km",
- "710 kg/km",
- "969 kg/km",
- "1028 kg/km",
- "1173 kg/km",
- "1034 kg/km",
- "1235 kg/km",
- "1139 kg/km",
- "1309 kg/km",
- "1377 kg/km",
- "1441 kg/km",
- "1740 kg/km",
- "1881 kg/km",
- "1948 kg/km",
- "2243 kg/km",
- "2529 kg/km",
- "2699 kg/km",
- "2915 kg/km",
- "3011 kg/km",
- "3242 kg/km",
- "3531 kg/km",
- "3674 kg/km",
- "3925 kg/km",
- "4313 kg/km",
- "4492 kg/km",
- "5018 kg/km",
- "802 kg/km",
- "808 kg/km",
- "1090 kg/km",
- "1141 kg/km",
- "1327 kg/km",
- "1253 kg/km",
- "1691 kg/km",
- "1637 kg/km",
- "2012 kg/km",
- "2125 kg/km",
- "2631 kg/km",
- "2760 kg/km",
- "3047 kg/km",
- "3280 kg/km",
- "3407 kg/km",
- "3870 kg/km",
- "4062 kg/km",
- "4297 kg/km",
- "4263 kg/km",
- "4455 kg/km",
- "4775 kg/km",
- "4995 kg/km",
- "6235 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "1.91",
- "1.2",
- "0.868",
- "0.641",
- "0.443",
- "0.32",
- "0.253",
- "0.206",
- "0.164",
- "0.125"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T07:00:21",
- "translation": null
- },
- {
- "id": 42702,
- "translationKey": "nayy-2",
- "locale": "de",
- "slug": "nayy-2",
- "path": "/de/product/nayy-2",
- "name": "NAYY",
- "shortDescriptionHtml": "Das NAYY Kabel ist ein vielseitiges Niederspannungskabel mit Aluminiumleiter, das für die feste Verlegung in Gebäuden, im Erdreich, im Wasser oder im Freien konzipiert ist. Es bietet eine wirtschaftliche Lösung für Energieverteilungen unter normalen mechanischen Anforderungen – ideal für Ortsnetze, Industrieanlagen und Energieversorgungen. \n",
- "descriptionHtml": " Vielfältige Einsatzmöglichkeiten im Netzbau Das NAYY ist ein Energieverteilungskabel nach VDE 0276-603, das sich besonders für Anwendungen in Kraftwerken, Ortsnetzen, Industrie- und Schaltanlagen 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. Aufbau und Materialien Im Inneren arbeitet ein Aluminiumleiter, der wahlweise rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig (SE/SM) ausgeführt ist. Die Leiter sind mit PVC isoliert, verseilt und durch eine gemeinsame EPDM-Aderumhüllung geschützt. Der äußere PVC-Mantel ist schwarz, UV-beständig und widerstandsfähig gegenüber Feuchtigkeit und Umweltbedingungen. Typische Anwendungen NAYY Kabel eignen sich optimal für dauerhafte, wirtschaftliche Installationen in Versorgungsnetzen, Verteileranlagen oder bei Gebäudeverkabelungen. Sie bieten eine solide und langlebige Lösung, wenn es um sichere Energieverteilung unter standardisierten Bedingungen geht. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NAYY-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NAYY-scaled.webp",
- "sku": "NAYY-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 109,
- "name": "Niederspannungskabel",
- "slug": "niederspannungskabel"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x16 - 0.6/1kV",
- "1x25 - 0.6/1kV",
- "1x35 - 0.6/1kV",
- "1x50 - 0.6/1kV",
- "1x70 - 0.6/1kV",
- "1x95 - 0.6/1kV",
- "1x120 - 0.6/1kV",
- "1x150 - 0.6/1kV",
- "1x185 - 0.6/1kV",
- "1x240 - 0.6/1kV",
- "1x300 - 0.6/1kV",
- "1x400 - 0.6/1kV",
- "1x500 - 0.6/1kV",
- "1x630 - 0.6/1kV",
- "2x16 - 0.6/1kV",
- "3x16 - 0.6/1kV",
- "3x25 - 0.6/1kV",
- "3x35 - 0.6/1kV",
- "3x50 - 0.6/1kV",
- "3x70 - 0.6/1kV",
- "3x95 - 0.6/1kV",
- "3x120 - 0.6/1kV",
- "3x150 - 0.6/1kV",
- "3x185 - 0.6/1kV",
- "3x240 - 0.6/1kV",
- "3x300 - 0.6/1kV",
- "3x35+16 - 0.6/1kV",
- "3x50+25 - 0.6/1kV",
- "3x70+35 - 0.6/1kV",
- "3x95+50 - 0.6/1kV",
- "3x120+70 - 0.6/1kV",
- "3x150+70 - 0.6/1kV",
- "3x185+95 - 0.6/1kV",
- "3x240+120 - 0.6/1kV",
- "4x16 - 0.6/1kV",
- "4x25 - 0.6/1kV",
- "4x35 - 0.6/1kV",
- "4x50 - 0.6/1kV",
- "4x70 - 0.6/1kV",
- "4x95 - 0.6/1kV",
- "4x120 - 0.6/1kV",
- "4x150 - 0.6/1kV",
- "4x185 - 0.6/1kV",
- "4x240 - 0.6/1kV",
- "4x300 - 0.6/1kV",
- "5x16 - 0.6/1kV",
- "5x25 - 0.6/1kV",
- "5x35 - 0.6/1kV",
- "5x50 - 0.6/1kV",
- "5x70 - 0.6/1kV",
- "5x95 - 0.6/1kV",
- "5x120 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "CU",
- "AL"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "1x16",
- "1x25",
- "1x35",
- "1x50",
- "1x70",
- "1x95",
- "1x120",
- "1x150",
- "1x185",
- "1x240",
- "1x300",
- "1x400",
- "1x500",
- "1x630",
- "2x16",
- "3x16",
- "3x25",
- "3x35",
- "3x50",
- "3x70",
- "3x95",
- "3x120",
- "3x150",
- "3x185",
- "3x240",
- "3x300",
- "3x35+16",
- "3x50+25",
- "3x70+35",
- "3x95+50",
- "3x120+70",
- "3x150+70",
- "3x185+95",
- "3x240+120",
- "4x16",
- "4x25",
- "4x35",
- "4x50",
- "4x70",
- "4x95",
- "4x120",
- "4x150",
- "4x185",
- "4x240",
- "4x300",
- "5x16",
- "5x25",
- "5x35",
- "5x50",
- "5x70",
- "5x95",
- "5x120"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "≤ 300 mm2: +160, > 300 mm2: +140 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "– 35 - +70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "IEC 60332-1-2"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Eca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RE",
- "RMV",
- "SM",
- "SM/RMV",
- "SE"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.6 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm",
- "2.4 mm",
- "2.6 mm",
- "2.8 mm",
- "1.2/1.0 mm",
- "1.4/1.2 mm",
- "1.6/1.4 mm",
- "1.8/1.4 mm",
- "2.0/1.6 mm",
- "2.2/1.6 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.1",
- "2.2",
- "2.3",
- "2.5",
- "2.7",
- "2.9",
- "2.4",
- "2.6",
- "2.8",
- "3.1"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "11 mm",
- "12 mm",
- "13 mm",
- "14 mm",
- "15 mm",
- "17 mm",
- "19 mm",
- "20 mm",
- "22 mm",
- "25 mm",
- "27 mm",
- "30 mm",
- "34 mm",
- "37 mm",
- "41 mm",
- "24 mm",
- "28 mm",
- "31 mm",
- "36 mm",
- "38 mm",
- "43 mm",
- "47 mm",
- "53 mm",
- "58 mm",
- "39 mm",
- "42 mm",
- "51 mm",
- "26 mm",
- "29 mm",
- "32 mm",
- "33 mm",
- "44 mm",
- "48 mm",
- "50 mm",
- "56 mm",
- "59 mm",
- "65 mm",
- "35 mm",
- "40 mm",
- "45 mm",
- "52 mm",
- "49 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "153 kg/km",
- "196 kg/km",
- "213 kg/km",
- "236 kg/km",
- "256 kg/km",
- "322 kg/km",
- "406 kg/km",
- "519 kg/km",
- "610 kg/km",
- "738 kg/km",
- "897 kg/km",
- "1106 kg/km",
- "1371 kg/km",
- "1714 kg/km",
- "2135 kg/km",
- "2631 kg/km",
- "526 kg/km",
- "586 kg/km",
- "841 kg/km",
- "1022 kg/km",
- "1094 kg/km",
- "1428 kg/km",
- "1835 kg/km",
- "2150 kg/km",
- "2633 kg/km",
- "3183 kg/km",
- "4048 kg/km",
- "4887 kg/km",
- "1081 kg/km",
- "1338 kg/km",
- "1707 kg/km",
- "2158 kg/km",
- "2603 kg/km",
- "3069 kg/km",
- "3730 kg/km",
- "4727 kg/km",
- "679 kg/km",
- "954 kg/km",
- "989 kg/km",
- "1160 kg/km",
- "1207 kg/km",
- "1064 kg/km",
- "1547 kg/km",
- "1340 kg/km",
- "1431 kg/km",
- "1706 kg/km",
- "1816 kg/km",
- "2216 kg/km",
- "2338 kg/km",
- "2695 kg/km",
- "2818 kg/km",
- "3152 kg/km",
- "3396 kg/km",
- "3973 kg/km",
- "4181 kg/km",
- "4935 kg/km",
- "5234 kg/km",
- "6343 kg/km",
- "796 kg/km",
- "1147 kg/km",
- "1189 kg/km",
- "1369 kg/km",
- "1424 kg/km",
- "2088 kg/km",
- "1805 kg/km",
- "2659 kg/km",
- "2316 kg/km",
- "3549 kg/km",
- "3032 kg/km",
- "4206 kg/km",
- "3586 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "1.91",
- "1.2",
- "0.868",
- "0.641",
- "0.443",
- "0.32",
- "0.253",
- "0.206",
- "0.164",
- "0.125",
- "0.1",
- "0.0778",
- "0.0605",
- "0.0469"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T06:57:49",
- "translation": null
- },
- {
- "id": 42596,
- "translationKey": "ny2y-2",
- "locale": "de",
- "slug": "ny2y-2",
- "path": "/de/product/ny2y-2",
- "name": "NY2Y",
- "shortDescriptionHtml": "Das NY2Y ist ein besonders widerstandsfähiges Niederspannungskabel für die feste Verlegung unter hohen mechanischen Anforderungen – ob im Erdreich, im Wasser oder in industrieller Umgebung. Dank seiner Materialkombination ist es für vielfältige Einsatzbedingungen bestens geeignet. \n",
- "descriptionHtml": " Zuverlässig bei hoher Belastung Das NY2Y ist ein Niederspannungskabel für den Einsatz in Kraftwerken, Industrie- und Schaltanlagen sowie in Ortsnetzen. Es eignet sich für die feste Verlegung in Innenräumen, Kabelkanälen, im Freien, im Wasser und im Erdreich – überall dort, wo starke mechanische Belastungen beim Verlegen und im Betrieb zu erwarten sind. Die Konstruktion erfüllt die Vorgaben gemäß TP PRAKAB 16/03 in Anlehnung an VDE 0276-603. Aufbau im Detail Das Kabel besteht aus einem Kupferleiter, verfügbar als rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig mehrdrähtig (SM). Die PVC-Aderisolation sorgt für elektrische Sicherheit, die Adern sind verseilt und durch eine gemeinsame EPDM-Aderumhüllung geschützt. Der Außenmantel aus HDPE (schwarz, UV-beständig) macht das NY2Y besonders resistent gegen Abrieb, Feuchtigkeit und Umwelteinflüsse. Typische Einsatzbereiche NY2Y eignet sich hervorragend für Anwendungen mit erhöhten Anforderungen an mechanische Robustheit und Witterungsbeständigkeit. Typische Einsatzorte sind Energieverteilungen in industriellen Anlagen, Kraftwerken oder Trafostationen – aber auch in Umgebungen mit Feuchtigkeit, direkter Sonneneinstrahlung oder chemischer Belastung. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NY2Y-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NY2Y-scaled.webp",
- "sku": "NY2Y-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 109,
- "name": "Niederspannungskabel",
- "slug": "niederspannungskabel"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x10 - 0.6/1kV",
- "1x16 - 0.6/1kV",
- "1x25 - 0.6/1kV",
- "1x35 - 0.6/1kV",
- "1x50 - 0.6/1kV",
- "1x70 - 0.6/1kV",
- "1x95 - 0.6/1kV",
- "1x120 - 0.6/1kV",
- "1x150 - 0.6/1kV",
- "1x185 - 0.6/1kV",
- "1x240 - 0.6/1kV",
- "1x300 - 0.6/1kV",
- "1x400 - 0.6/1kV",
- "1x500 - 0.6/1kV",
- "3x10 - 0.6/1kV",
- "3x16 - 0.6/1kV",
- "3x25 - 0.6/1kV",
- "3x35 - 0.6/1kV",
- "3x50 - 0.6/1kV",
- "3x70 - 0.6/1kV",
- "3x95 - 0.6/1kV",
- "3x120 - 0.6/1kV",
- "3x150 - 0.6/1kV",
- "3x185 - 0.6/1kV",
- "3x240 - 0.6/1kV",
- "3x35+16 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "CU"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PE"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "1x10",
- "1x16",
- "1x25",
- "1x35",
- "1x50",
- "1x70",
- "1x95",
- "1x120",
- "1x150",
- "1x185",
- "1x240",
- "1x300",
- "1x400",
- "1x500",
- "3x10",
- "3x16",
- "3x25",
- "3x35",
- "3x50",
- "3x70",
- "3x95",
- "3x120",
- "3x150",
- "3x185",
- "3x240",
- "3x35+16"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "≤ 300 mm2: +160, > 300 mm2: +140 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "- 35 - +70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "no"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Fca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RE",
- "RMV",
- "SM",
- "SM/RE"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.6 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm",
- "2.4 mm",
- "2.6 mm",
- "2.8 mm",
- "1.2/1.0 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.1",
- "2.2",
- "2.3",
- "2.5",
- "2.7"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "10 mm",
- "11 mm",
- "12 mm",
- "14 mm",
- "15 mm",
- "17 mm",
- "19 mm",
- "20 mm",
- "22 mm",
- "25 mm",
- "27 mm",
- "30 mm",
- "34 mm",
- "37 mm",
- "18 mm",
- "24 mm",
- "28 mm",
- "31 mm",
- "36 mm",
- "38 mm",
- "43 mm",
- "47 mm",
- "53 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "157 kg/km",
- "219 kg/km",
- "329 kg/km",
- "429 kg/km",
- "565 kg/km",
- "772 kg/km",
- "1042 kg/km",
- "1278 kg/km",
- "1571 kg/km",
- "1947 kg/km",
- "2514 kg/km",
- "3130 kg/km",
- "3972 kg/km",
- "5043 kg/km",
- "589 kg/km",
- "810 kg/km",
- "1227 kg/km",
- "1464 kg/km",
- "1887 kg/km",
- "2584 kg/km",
- "3448 kg/km",
- "4199 kg/km",
- "5178 kg/km",
- "6381 kg/km",
- "8264 kg/km",
- "1698 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "1.83",
- "1.15",
- "0.727",
- "0.524",
- "0.387",
- "0.268",
- "0.193",
- "0.153",
- "0.124",
- "0.0991",
- "0.0754",
- "0.0601",
- "0.047",
- "0.0366"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T06:53:53",
- "translation": null
- },
- {
- "id": 42434,
- "translationKey": "nycwy-2",
- "locale": "de",
- "slug": "nycwy-2",
- "path": "/de/product/nycwy-2",
- "name": "NYCWY",
- "shortDescriptionHtml": "NYCWY Kabel sind robuste Niederspannungskabel mit konzentrischem Leiter, geeignet für die Energieverteilung in Gebäuden, Industrieanlagen und bei Erdverlegung. Durch PVC-Isolierung und -Mantel sind sie mechanisch stabil, feuchtigkeitsresistent und vielseitig einsetzbar – auch in Beton oder Wasser. \n",
- "descriptionHtml": " Vielseitig einsetzbar in der Energieverteilung Das NYCWY gehört zu den klassischen Niederspannungskabeln nach VDE-Standard 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. Aufbau und Materialien 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 PVC-Mantel, der das Kabel vor Feuchtigkeit, Druck und chemischen Einflüssen schützt. Varianten und Querschnitte Erhältlich ist das NYCWY in einer Vielzahl von Ausführungen – zum Beispiel als 4x25/16, 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. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NYCWY-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NYCWY-scaled.webp",
- "sku": "NYCWY-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 109,
- "name": "Niederspannungskabel",
- "slug": "niederspannungskabel"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "2x10/10 - 0.6/1kV",
- "2x16/16 - 0.6/1kV",
- "3x10/10 - 0.6/1kV",
- "3x16/16 - 0.6/1kV",
- "3x25/16 - 0.6/1kV",
- "3x25/25 - 0.6/1kV",
- "3x35/16 - 0.6/1kV",
- "3x35/35 - 0.6/1kV",
- "3x50/25 - 0.6/1kV",
- "3x50/50 - 0.6/1kV",
- "3x70/35 - 0.6/1kV",
- "3x70/70 - 0.6/1kV",
- "3x95/50 - 0.6/1kV",
- "3x95/95 - 0.6/1kV",
- "3x120/70 - 0.6/1kV",
- "3x120/120 - 0.6/1kV",
- "3x150/70 - 0.6/1kV",
- "3x150/150 - 0.6/1kV",
- "3x185/95 - 0.6/1kV",
- "3x185/185 - 0.6/1kV",
- "3x240/120 - 0.6/1kV",
- "4x10/10 - 0.6/1kV",
- "4x16/16 - 0.6/1kV",
- "4x25/16 - 0.6/1kV",
- "4x25/25 - 0.6/1kV",
- "4x35/16 - 0.6/1kV",
- "4x35/35 - 0.6/1kV",
- "4x50/25 - 0.6/1kV",
- "4x50/50 - 0.6/1kV",
- "4x70/35 - 0.6/1kV",
- "4x70/70 - 0.6/1kV",
- "4x95/50 - 0.6/1kV",
- "4x95/70 - 0.6/1kV",
- "4x95/95 - 0.6/1kV",
- "4x120/70 - 0.6/1kV",
- "4x120/120 - 0.6/1kV",
- "4x150/70 - 0.6/1kV",
- "4x185/95 - 0.6/1kV",
- "4x185/185 - 0.6/1kV",
- "4x240/120 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "CU"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "Yes"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "2x10/10",
- "2x16/16",
- "3x10/10",
- "3x16/16",
- "3x25/16",
- "3x25/25",
- "3x35/16",
- "3x35/35",
- "3x50/25",
- "3x50/50",
- "3x70/35",
- "3x70/70",
- "3x95/50",
- "3x95/95",
- "3x120/70",
- "3x120/120",
- "3x150/70",
- "3x150/150",
- "3x185/95",
- "3x185/185",
- "3x240/120",
- "4x10/10",
- "4x16/16",
- "4x25/16",
- "4x25/25",
- "4x35/16",
- "4x35/35",
- "4x50/25",
- "4x50/50",
- "4x70/35",
- "4x70/70",
- "4x95/50",
- "4x95/70",
- "4x95/95",
- "4x120/70",
- "4x120/120",
- "4x150/70",
- "4x185/95",
- "4x185/185",
- "4x240/120"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "160 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "IEC 60332-1-2"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Eca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RE",
- "RMV",
- "SM"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.6 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.2",
- "2.3",
- "2.4",
- "2.6",
- "2.8",
- "2.1",
- "3"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "19 mm",
- "21 mm",
- "20 mm",
- "22 mm",
- "26 mm",
- "29 mm",
- "30 mm",
- "33 mm",
- "34 mm",
- "38 mm",
- "41 mm",
- "46 mm",
- "47 mm",
- "50 mm",
- "51 mm",
- "56 mm",
- "24 mm",
- "28 mm",
- "36 mm",
- "37 mm",
- "42 mm",
- "57 mm",
- "62 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "670 kg/km",
- "890 kg/km",
- "773 kg/km",
- "817 kg/km",
- "1045 kg/km",
- "1085 kg/km",
- "1490 kg/km",
- "1582 kg/km",
- "1729 kg/km",
- "1913 kg/km",
- "2272 kg/km",
- "2498 kg/km",
- "3128 kg/km",
- "3473 kg/km",
- "4177 kg/km",
- "4640 kg/km",
- "5168 kg/km",
- "5674 kg/km",
- "6193 kg/km",
- "6982 kg/km",
- "7689 kg/km",
- "8609 kg/km",
- "9950 kg/km",
- "903 kg/km",
- "1237 kg/km",
- "1801 kg/km",
- "1886 kg/km",
- "2156 kg/km",
- "2333 kg/km",
- "2944 kg/km",
- "3171 kg/km",
- "3932 kg/km",
- "4277 kg/km",
- "5276 kg/km",
- "5488 kg/km",
- "5740 kg/km",
- "6571 kg/km",
- "7077 kg/km",
- "7883 kg/km",
- "9892 kg/km",
- "10813 kg/km",
- "12658 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "1.83",
- "1.15",
- "0.727",
- "0.524",
- "0.387",
- "0.268",
- "0.193",
- "0.153",
- "0.124",
- "0.0991",
- "0.0754"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T06:45:48",
- "translation": null
- },
- {
- "id": 42096,
- "translationKey": "nyy-2",
- "locale": "de",
- "slug": "nyy-2",
- "path": "/de/product/nyy-2",
- "name": "NYY",
- "shortDescriptionHtml": "Das NYY ist ein universell einsetzbares Niederspannungskabel für feste Verlegung in Gebäuden, im Freien, im Erdreich oder sogar im Wasser – überall dort, wo keine besonderen mechanischen Belastungen zu erwarten sind. \n",
- "descriptionHtml": " Solide Lösung für klassische Anwendungen Das NYY Kabel ist ein standardisiertes Niederspannungskabel nach VDE 0276-603. Es kommt in Kraftwerken, Industrie- und Schaltanlagen sowie in Ortsnetzen zum Einsatz. Geeignet ist es für die feste Verlegung in Innenräumen, Kabelkanälen, im Freien, im Erdreich und in Wasser – immer unter der Voraussetzung, dass keine besonderen mechanischen Beanspruchungen auftreten. Aufbau und Materialeigenschaften Der Leiter besteht aus Kupfer – wahlweise rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig mehrdrähtig (SM). Die Adern sind mit PVC isoliert, verseilt und von einer gemeinsamen EPDM-Aderumhüllung umgeben. Der Außenmantel besteht aus schwarzem, UV-beständigem PVC und schützt das Kabel zuverlässig gegen Umwelteinflüsse und Feuchtigkeit. Einsatzbereiche Das NYY Kabel eignet sich ideal für konventionelle Energieverteilungen, 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. ",
- "images": [
- "https://klz-cables.com/wp-content/uploads/2025/01/NYY-scaled.webp"
- ],
- "featuredImage": "https://klz-cables.com/wp-content/uploads/2025/01/NYY-scaled.webp",
- "sku": "NYY-low-voltage-cables",
- "regularPrice": "",
- "salePrice": "",
- "currency": "EUR",
- "stockStatus": "instock",
- "categories": [
- {
- "id": 109,
- "name": "Niederspannungskabel",
- "slug": "niederspannungskabel"
- }
- ],
- "attributes": [
- {
- "id": 0,
- "name": "Configuration",
- "slug": "Configuration",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "1x1.5 - 0.6/1kV",
- "1x2.5 - 0.6/1kV",
- "1x4.0 - 0.6/1kV",
- "1x6.0 - 0.6/1kV",
- "1x10.0 - 0.6/1kV",
- "1x16 - 0.6/1kV",
- "1x25 - 0.6/1kV",
- "1x35 - 0.6/1kV",
- "1x50 - 0.6/1kV",
- "1x70 - 0.6/1kV",
- "1x95 - 0.6/1kV",
- "1x120 - 0.6/1kV",
- "1x150 - 0.6/1kV",
- "1x185 - 0.6/1kV",
- "1x240 - 0.6/1kV",
- "1x300 - 0.6/1kV",
- "1x400 - 0.6/1kV",
- "1x500 - 0.6/1kV",
- "2x1.5 - 0.6/1kV",
- "2x2.5 - 0.6/1kV",
- "2x4.0 - 0.6/1kV",
- "2x6.0 - 0.6/1kV",
- "2x10.0 - 0.6/1kV",
- "2x16 - 0.6/1kV",
- "2x25 - 0.6/1kV",
- "2x35 - 0.6/1kV",
- "3x1.5 - 0.6/1kV",
- "3x2.5 - 0.6/1kV",
- "3x4.0 - 0.6/1kV",
- "3x6.0 - 0.6/1kV",
- "3x10.0 - 0.6/1kV",
- "3x16 - 0.6/1kV",
- "3x25 - 0.6/1kV",
- "3x35 - 0.6/1kV",
- "3x50 - 0.6/1kV",
- "3x70 - 0.6/1kV",
- "3x95 - 0.6/1kV",
- "3x120 - 0.6/1kV",
- "3x150 - 0.6/1kV",
- "3x185 - 0.6/1kV",
- "3x240 - 0.6/1kV",
- "3x300 - 0.6/1kV",
- "3x25+16 - 0.6/1kV",
- "3x35+16 - 0.6/1kV",
- "3x50+25 - 0.6/1kV",
- "3x70+35 - 0.6/1kV",
- "3x95+50 - 0.6/1kV",
- "3x120+70 - 0.6/1kV",
- "3x150+70 - 0.6/1kV",
- "3x185+95 - 0.6/1kV",
- "3x240+120 - 0.6/1kV",
- "3x300+150 - 0.6/1kV",
- "4x1.5 - 0.6/1kV",
- "4x2.5 - 0.6/1kV",
- "4x4.0 - 0.6/1kV",
- "4x6.0 - 0.6/1kV",
- "4x10.0 - 0.6/1kV",
- "4x10 - 0.6/1kV",
- "4x16 - 0.6/1kV",
- "4x25 - 0.6/1kV",
- "4x35 - 0.6/1kV",
- "4x50 - 0.6/1kV",
- "4x70 - 0.6/1kV",
- "4x95 - 0.6/1kV",
- "4x120 - 0.6/1kV",
- "4x150 - 0.6/1kV",
- "4x185 - 0.6/1kV",
- "4x240 - 0.6/1kV",
- "4x300 - 0.6/1kV",
- "5x1.5 - 0.6/1kV",
- "5x2.5 - 0.6/1kV",
- "5x4.0 - 0.6/1kV",
- "5x6.0 - 0.6/1kV",
- "5x10.0 - 0.6/1kV",
- "5x10 - 0.6/1kV",
- "5x16 - 0.6/1kV",
- "5x25 - 0.6/1kV",
- "5x35 - 0.6/1kV",
- "5x50 - 0.6/1kV",
- "5x70 - 0.6/1kV",
- "5x95 - 0.6/1kV",
- "5x120 - 0.6/1kV",
- "7x1.5 - 0.6/1kV",
- "7x2.5 - 0.6/1kV"
- ]
- },
- {
- "id": 0,
- "name": "Conductor",
- "slug": "Conductor",
- "position": 0,
- "visible": true,
- "variation": true,
- "options": [
- "CU"
- ]
- },
- {
- "id": 0,
- "name": "Insulation",
- "slug": "Insulation",
- "position": 1,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "CUScreen",
- "slug": "CUScreen",
- "position": 2,
- "visible": true,
- "variation": true,
- "options": [
- "No"
- ]
- },
- {
- "id": 0,
- "name": "Sheath",
- "slug": "Sheath",
- "position": 3,
- "visible": true,
- "variation": true,
- "options": [
- "PVC"
- ]
- },
- {
- "id": 0,
- "name": "Number of cores and cross-section",
- "slug": "Number of cores and cross-section",
- "position": 4,
- "visible": true,
- "variation": true,
- "options": [
- "1x1.5",
- "1x2.5",
- "1x4.0",
- "1x6.0",
- "1x10.0",
- "1x16",
- "1x25",
- "1x35",
- "1x50",
- "1x70",
- "1x95",
- "1x120",
- "1x150",
- "1x185",
- "1x240",
- "1x300",
- "1x400",
- "1x500",
- "2x1.5",
- "2x2.5",
- "2x4.0",
- "2x6.0",
- "2x10.0",
- "2x16",
- "2x25",
- "2x35",
- "3x1.5",
- "3x2.5",
- "3x4.0",
- "3x6.0",
- "3x10.0",
- "3x16",
- "3x25",
- "3x35",
- "3x50",
- "3x70",
- "3x95",
- "3x120",
- "3x150",
- "3x185",
- "3x240",
- "3x300",
- "3x25+16",
- "3x35+16",
- "3x50+25",
- "3x70+35",
- "3x95+50",
- "3x120+70",
- "3x150+70",
- "3x185+95",
- "3x240+120",
- "3x300+150",
- "4x1.5",
- "4x2.5",
- "4x4.0",
- "4x6.0",
- "4x10.0",
- "4x10",
- "4x16",
- "4x25",
- "4x35",
- "4x50",
- "4x70",
- "4x95",
- "4x120",
- "4x150",
- "4x185",
- "4x240",
- "4x300",
- "5x1.5",
- "5x2.5",
- "5x4.0",
- "5x6.0",
- "5x10.0",
- "5x10",
- "5x16",
- "5x25",
- "5x35",
- "5x50",
- "5x70",
- "5x95",
- "5x120",
- "7x1.5",
- "7x2.5"
- ]
- },
- {
- "id": 0,
- "name": "Rated voltage",
- "slug": "Rated voltage",
- "position": 5,
- "visible": true,
- "variation": true,
- "options": [
- "0.6/1 kV"
- ]
- },
- {
- "id": 0,
- "name": "Test voltage",
- "slug": "Test voltage",
- "position": 6,
- "visible": true,
- "variation": true,
- "options": [
- "4 kV"
- ]
- },
- {
- "id": 0,
- "name": "Maximal short-circuit temperature",
- "slug": "Maximal short-circuit temperature",
- "position": 7,
- "visible": true,
- "variation": true,
- "options": [
- "≤ 300 mm2: +160, > 300 mm2: +140 °C"
- ]
- },
- {
- "id": 0,
- "name": "Maximal operating conductor temperature",
- "slug": "Maximal operating conductor temperature",
- "position": 8,
- "visible": true,
- "variation": true,
- "options": [
- "70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal temperature for laying",
- "slug": "Minimal temperature for laying",
- "position": 9,
- "visible": true,
- "variation": true,
- "options": [
- "-5 °C"
- ]
- },
- {
- "id": 0,
- "name": "Minimal storage temperature",
- "slug": "Minimal storage temperature",
- "position": 10,
- "visible": true,
- "variation": true,
- "options": [
- "-35 °C"
- ]
- },
- {
- "id": 0,
- "name": "Operating temperature range",
- "slug": "Operating temperature range",
- "position": 11,
- "visible": true,
- "variation": true,
- "options": [
- "-35 - +70 °C"
- ]
- },
- {
- "id": 0,
- "name": "Colour of insulation",
- "slug": "Colour of insulation",
- "position": 12,
- "visible": true,
- "variation": true,
- "options": [
- "HD 308 S2"
- ]
- },
- {
- "id": 0,
- "name": "Colour of sheath",
- "slug": "Colour of sheath",
- "position": 13,
- "visible": true,
- "variation": true,
- "options": [
- "black"
- ]
- },
- {
- "id": 0,
- "name": "Self-extinguishing of single cable",
- "slug": "Self-extinguishing of single cable",
- "position": 14,
- "visible": true,
- "variation": true,
- "options": [
- "IEC 60332-1-2"
- ]
- },
- {
- "id": 0,
- "name": "CPR class",
- "slug": "CPR class",
- "position": 15,
- "visible": true,
- "variation": true,
- "options": [
- "Eca"
- ]
- },
- {
- "id": 0,
- "name": "Packaging",
- "slug": "Packaging",
- "position": 16,
- "visible": true,
- "variation": true,
- "options": [
- "cable coils/cable drums"
- ]
- },
- {
- "id": 0,
- "name": "RoHS/REACH",
- "slug": "RoHS/REACH",
- "position": 17,
- "visible": true,
- "variation": true,
- "options": [
- "yes/yes"
- ]
- },
- {
- "id": 0,
- "name": "Bending radius",
- "slug": "Bending radius",
- "position": 18,
- "visible": true,
- "variation": true,
- "options": [
- "15xD (Single core); 12xD (Multi core)"
- ]
- },
- {
- "id": 0,
- "name": "Shape of conductor",
- "slug": "Shape of conductor",
- "position": 19,
- "visible": true,
- "variation": true,
- "options": [
- "RE",
- "RMV",
- "SM",
- "RMV/RE",
- "SM/RE",
- "SM/RMV"
- ]
- },
- {
- "id": 0,
- "name": "Nominal insulation thickness",
- "slug": "Nominal insulation thickness",
- "position": 20,
- "visible": true,
- "variation": true,
- "options": [
- "0.8 mm",
- "1 mm",
- "1.2 mm",
- "1.4 mm",
- "1.6 mm",
- "1.8 mm",
- "2 mm",
- "2.2 mm",
- "2.4 mm",
- "2.6 mm",
- "2.8 mm",
- "1.2/1.0 mm",
- "1.4/1.2 mm",
- "1.6/1.4 mm",
- "1.8/1.4 mm",
- "2.0/1.6 mm",
- "2.2/1.6 mm",
- "2.4/1.8 mm"
- ]
- },
- {
- "id": 0,
- "name": "Nominal sheath thickness",
- "slug": "Nominal sheath thickness",
- "position": 21,
- "visible": true,
- "variation": true,
- "options": [
- "1.8",
- "1.9",
- "2",
- "2.1",
- "2.2",
- "2.3",
- "2.5",
- "2.7",
- "2.9",
- "2.4",
- "2.6",
- "2.8",
- "3",
- "1.2",
- "3.1"
- ]
- },
- {
- "id": 0,
- "name": "Outer diameter",
- "slug": "Outer diameter",
- "position": 22,
- "visible": true,
- "variation": true,
- "options": [
- "6.5 mm",
- "7 mm",
- "8 mm",
- "8.5 mm",
- "9 mm",
- "11 mm",
- "12 mm",
- "14 mm",
- "15 mm",
- "17 mm",
- "19 mm",
- "20 mm",
- "22 mm",
- "25 mm",
- "27 mm",
- "30 mm",
- "34 mm",
- "37 mm",
- "13 mm",
- "16 mm",
- "23 mm",
- "21 mm",
- "24 mm",
- "28 mm",
- "31 mm",
- "36 mm",
- "38 mm",
- "43 mm",
- "47 mm",
- "53 mm",
- "58 mm",
- "39 mm",
- "42 mm",
- "51 mm",
- "64 mm",
- "18 mm",
- "26 mm",
- "48 mm",
- "59 mm",
- "65 mm",
- "29 mm",
- "32 mm",
- "35 mm",
- "40 mm",
- "45 mm",
- "52 mm",
- "49 mm"
- ]
- },
- {
- "id": 0,
- "name": "Weight",
- "slug": "Weight",
- "position": 23,
- "visible": true,
- "variation": true,
- "options": [
- "73 kg/km",
- "88 kg/km",
- "122 kg/km",
- "150 kg/km",
- "205 kg/km",
- "249 kg/km",
- "255 kg/km",
- "366 kg/km",
- "471 kg/km",
- "609 kg/km",
- "823 kg/km",
- "1100 kg/km",
- "1340 kg/km",
- "1640 kg/km",
- "2024 kg/km",
- "2601 kg/km",
- "3232 kg/km",
- "4093 kg/km",
- "5184 kg/km",
- "164 kg/km",
- "200 kg/km",
- "275 kg/km",
- "338 kg/km",
- "457 kg/km",
- "714 kg/km",
- "743 kg/km",
- "1059 kg/km",
- "1349 kg/km",
- "184 kg/km",
- "226 kg/km",
- "318 kg/km",
- "403 kg/km",
- "557 kg/km",
- "872 kg/km",
- "902 kg/km",
- "1303 kg/km",
- "1532 kg/km",
- "1966 kg/km",
- "2685 kg/km",
- "3582 kg/km",
- "4351 kg/km",
- "5356 kg/km",
- "6582 kg/km",
- "8519 kg/km",
- "10504 kg/km",
- "1482 kg/km",
- "1786 kg/km",
- "2364 kg/km",
- "3133 kg/km",
- "4196 kg/km",
- "5224 kg/km",
- "6210 kg/km",
- "7712 kg/km",
- "9931 kg/km",
- "12265 kg/km",
- "214 kg/km",
- "269 kg/km",
- "374 kg/km",
- "491 kg/km",
- "669 kg/km",
- "818 kg/km",
- "1062 kg/km",
- "1606 kg/km",
- "1962 kg/km",
- "2594 kg/km",
- "3492 kg/km",
- "4668 kg/km",
- "5754 kg/km",
- "7026 kg/km",
- "8715 kg/km",
- "11195 kg/km",
- "13815 kg/km",
- "327 kg/km",
- "460 kg/km",
- "598 kg/km",
- "842 kg/km",
- "975 kg/km",
- "1275 kg/km",
- "1315 kg/km",
- "1960 kg/km",
- "2584 kg/km",
- "3419 kg/km",
- "3258 kg/km",
- "4689 kg/km",
- "4411 kg/km",
- "6354 kg/km",
- "5944 kg/km",
- "7727 kg/km",
- "7255 kg/km",
- "301 kg/km",
- "388 kg/km"
- ]
- },
- {
- "id": 0,
- "name": "Maximum resistance of conductor",
- "slug": "Maximum resistance of conductor",
- "position": 24,
- "visible": true,
- "variation": true,
- "options": [
- "12.1",
- "7.41",
- "4.61",
- "3.08",
- "1.83",
- "1.15",
- "0.727",
- "0.524",
- "0.387",
- "0.268",
- "0.193",
- "0.153",
- "0.124",
- "0.0991",
- "0.0754",
- "0.0601",
- "0.047",
- "0.0366"
- ]
- }
- ],
- "variations": [],
- "updatedAt": "2025-08-29T06:34:12",
- "translation": null
- }
-]
\ No newline at end of file
diff --git a/data/export-summary.md b/data/export-summary.md
deleted file mode 100644
index 110db203..00000000
--- a/data/export-summary.md
+++ /dev/null
@@ -1,167 +0,0 @@
-# WordPress → Next.js Export Summary
-
-## Export Overview
-**Date:** 2025-12-27
-**Target Site:** https://klz-cables.com
-**Export Timestamp:** 2025-12-27T21-26-12-521Z
-
-## Data Collected
-
-### Content Summary
-| Type | English | German | Total |
-|------|---------|--------|-------|
-| **Pages** | 9 | 9 | 18 |
-| **Posts** | 29 | 30 | 59 |
-| **Products** | 25 | 25 | 50 |
-| **Categories** | 7 | 7 | 14 |
-| **Menus** | 5 | 5 | 10 |
-| **Media Files** | 50 | - | 50 |
-| **Redirects** | 59 | - | 59 |
-
-### File Structure
-```
-data/raw/2025-12-27T21-26-12-521Z/
-├── site-info.json (0.4 KB)
-├── translation-mapping.json (0.6 KB)
-├── pages.en.json (220.5 KB)
-├── pages.de.json (231.3 KB)
-├── posts.en.json (1,117.0 KB)
-├── posts.de.json (1,163.5 KB)
-├── products.en.json (349.2 KB)
-├── products.de.json (350.2 KB)
-├── product-categories.en.json (1.7 KB)
-├── product-categories.de.json (1.7 KB)
-├── menus.en.json (2.6 KB)
-├── menus.de.json (2.6 KB)
-├── redirects.json (13.3 KB)
-└── media.json (13.2 KB)
-```
-
-## Site Information
-- **Site Title:** KLZ Cables
-- **Description:** Empowering a sustainable future through innovative and reliable energy solutions.
-- **Default Language:** English
-- **Languages:** English, German
-- **Polylang Detected:** ❌ No (API limitation)
-- **Permalink Structure:** /%postname%/
-
-## Key Findings
-
-### ✅ Successes
-1. **Complete Content Export:** All pages, posts, products, and categories successfully exported for both languages
-2. **Media Download:** 50 media files downloaded to `/public/media/`
-3. **Redirect Generation:** 59 redirect rules created (29 EN + 30 DE)
-4. **Data Structure:** All files properly formatted with consistent schema
-
-### ⚠️ Issues & Limitations
-
-#### 1. Translation Mapping
-- **Posts:** 0 translation pairs found
-- **Products:** 7 translation pairs found
-- **Pages:** 2 translation pairs found
-- **Categories:** 0 translation pairs found
-
-**Root Cause:** Posts have completely different slugs between languages:
-- EN: `focus-on-wind-farm-construction-three-typical-cable-challenges`
-- DE: `windparkbau-im-fokus-drei-typische-kabelherausforderungen`
-
-#### 2. Polylang Detection
-- API shows `polylang: false` in site-info
-- This may be due to API permissions or Polylang not exposing translation data via REST
-
-#### 3. Content Differences
-- **Posts:** 1 extra German post (30 vs 29)
-- **Pages:** Equal count (9 each)
-- **Products:** Equal count (25 each)
-
-## Data Quality Assessment
-
-### Content Integrity
-- ✅ All required content types present
-- ✅ Both languages represented
-- ✅ HTML content preserved (including WPBakery shortcodes)
-- ✅ Metadata intact (dates, authors, categories)
-
-### Media Handling
-- ✅ 50/50 files downloaded successfully
-- ✅ Files properly named with IDs
-- ✅ Manifest created with metadata
-
-### Routing & Redirects
-- ✅ 59 redirect rules generated
-- ✅ Both languages handled
-- ✅ Post slug → /blog/ prefix applied
-
-## Next Steps for Implementation
-
-### 1. Translation Mapping (Manual Review Required)
-Since automatic mapping failed, you need to:
-
-**Option A: Manual Mapping**
-Create a manual translation mapping based on content similarity:
-```json
-{
- "posts": {
- "wind-farm-construction": {
- "en": 123,
- "de": 456
- }
- }
-}
-```
-
-**Option B: Content-based Matching**
-Use post titles or content hashes to find matching pairs programmatically.
-
-### 2. Polylang Integration
-- Verify Polylang is active on the WordPress site
-- Check if REST API endpoints support `?lang=en` and `?lang=de` parameters
-- Consider using WP-CLI for direct database access to translation data
-
-### 3. Data Processing Pipeline
-The export provides raw data that needs processing:
-1. **HTML Sanitization:** Remove WPBakery shortcodes, normalize classes
-2. **Asset Mapping:** Update image URLs to local paths
-3. **Translation Keys:** Generate stable keys for i18n
-4. **Route Generation:** Create Next.js routes with locale prefixes
-
-### 4. Missing Data to Address
-- **Menu Structure:** Menus exported but items not fully populated
-- **Translation Relationships:** Need manual or enhanced mapping
-- **Polylang Metadata:** Language-specific settings and relationships
-
-## File Locations
-
-### Export Data
-- **Main Export:** `data/raw/2025-12-27T21-26-12-521Z/`
-- **Media Files:** `public/media/`
-
-### Scripts
-- **Export Script:** `scripts/wordpress-export.js`
-- **Analysis Script:** `scripts/analyze-export.js`
-
-## Recommendations
-
-### Immediate Actions
-1. ✅ **Verify Export:** Review sample data for accuracy
-2. ⚠️ **Fix Translation Mapping:** Create manual mapping or enhance script
-3. ✅ **Check Media:** Verify all images downloaded correctly
-4. ⚠️ **Polylang Verification:** Confirm Polylang configuration
-
-### For Next.js Migration
-1. **Data Processing:** Create pipeline to sanitize and transform data
-2. **Route Structure:** Implement i18n routing with `/de/` prefix
-3. **Content Rendering:** Handle WPBakery HTML compatibility
-4. **SEO Setup:** Generate hreflang tags from translation data
-
-### WordPress Site Verification
-1. Confirm Polylang is active and configured
-2. Check REST API permissions for translation data
-3. Verify all content is published (not draft)
-4. Test media file accessibility
-
-## Conclusion
-
-The export successfully gathered **all required content** for the static Next.js migration. The main limitation is the **translation mapping** due to different slugs between languages, which is common in multilingual WordPress setups. This can be resolved through manual mapping or enhanced content analysis.
-
-The data is ready for the Next.js processing pipeline, with 50 media files and complete content for both English and German locales.
\ No newline at end of file
diff --git a/data/processed/asset-map.json b/data/processed/asset-map.json
deleted file mode 100644
index 7880461b..00000000
--- a/data/processed/asset-map.json
+++ /dev/null
@@ -1,59 +0,0 @@
-{
- "https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-20T193520.620.webp": "/media/46113-image_fx_-2025-02-20T193520.620.webp",
- "https://klz-cables.com/wp-content/uploads/2025/10/1759325528650.webp": "/media/47294-1759325528650.webp",
- "https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-22T132138.470.webp": "/media/46237-image_fx_-2025-02-22T132138.470.webp",
- "https://klz-cables.com/wp-content/uploads/2025/08/NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp": "/media/47052-NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp",
- "https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-20T185502.688.webp": "/media/46055-image_fx_-2025-02-20T185502.688.webp",
- "https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-20T191245.537.webp": "/media/46094-image_fx_-2025-02-20T191245.537.webp",
- "https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-9.webp": "/media/45685-image_fx_-9.webp",
- "https://klz-cables.com/wp-content/uploads/2025/04/inter-solar.webp": "/media/46380-inter-solar.webp",
- "https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-2.webp": "/media/45692-image_fx_-2.webp",
- "https://klz-cables.com/wp-content/uploads/2025/03/closeup-shot-of-a-person-presenting-a-euro-rain-wi-2025-02-02-14-02-05-utc-scaled.webp": "/media/45979-closeup-shot-of-a-person-presenting-a-euro-rain-wi-2025-02-02-14-02-05-utc-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-6.webp": "/media/45688-image_fx_-6.webp",
- "https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-7.webp": "/media/45687-image_fx_-7.webp",
- "https://klz-cables.com/wp-content/uploads/2024/12/Medium-Voltage-Cables-–-KLZ-Cables-12-30-2024_05_20_PM-scaled.webp": "/media/10797-Medium-Voltage-Cables-–-KLZ-Cables-12-30-2024_05_20_PM-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/02/5.webp": "/media/45524-5.webp",
- "https://klz-cables.com/wp-content/uploads/2024/11/medium-voltage-category.webp": "/media/6517-medium-voltage-category.webp",
- "https://klz-cables.com/wp-content/uploads/2025/02/1.webp": "/media/45528-1.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/power-grid-station-electrical-distribution-statio-2023-11-27-05-25-36-utc-scaled.webp": "/media/27158-power-grid-station-electrical-distribution-statio-2023-11-27-05-25-36-utc-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/offshore-wind-power-and-energy-farm-with-many-wind-2023-11-27-04-51-29-utc-scaled.webp": "/media/20928-offshore-wind-power-and-energy-farm-with-many-wind-2023-11-27-04-51-29-utc-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/technicians-inspecting-wind-turbines-in-a-green-en-2024-12-09-01-25-20-utc-scaled.webp": "/media/15376-technicians-inspecting-wind-turbines-in-a-green-en-2024-12-09-01-25-20-utc-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/business-planning-hand-using-laptop-for-working-te-2024-11-01-21-25-44-utc-scaled.webp": "/media/11248-business-planning-hand-using-laptop-for-working-te-2024-11-01-21-25-44-utc-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2024/11/1234adws21312-scaled.jpg": "/media/6126-1234adws21312-scaled.jpg",
- "https://klz-cables.com/wp-content/uploads/2024/11/aerial-view-of-electricity-station-surrounded-with-2023-11-27-05-33-40-utc-scaled.jpg": "/media/6137-aerial-view-of-electricity-station-surrounded-with-2023-11-27-05-33-40-utc-scaled.jpg",
- "https://klz-cables.com/wp-content/uploads/2024/12/mockup_03-copy-scaled.webp": "/media/10801-mockup_03-copy-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/klz-directory-2-scaled.webp": "/media/10863-klz-directory-2-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2024/11/low-voltage-category.webp": "/media/6521-low-voltage-category.webp",
- "https://klz-cables.com/wp-content/uploads/2024/12/green-electric-plug-concept-2023-11-27-05-30-00-utc-scaled.webp": "/media/10816-green-electric-plug-concept-2023-11-27-05-30-00-utc-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2024/12/production-of-cable-wire-at-cable-factory-2023-11-27-05-18-33-utc-Large.webp": "/media/10667-production-of-cable-wire-at-cable-factory-2023-11-27-05-18-33-utc-Large.webp",
- "https://klz-cables.com/wp-content/uploads/2024/12/large-rolls-of-wires-against-the-blue-sky-at-sunse-2023-11-27-05-20-33-utc-Large.webp": "/media/10679-large-rolls-of-wires-against-the-blue-sky-at-sunse-2023-11-27-05-20-33-utc-Large.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/transportation-and-logistics-trucking-2023-11-27-04-54-40-utc-scaled.webp": "/media/10988-transportation-and-logistics-trucking-2023-11-27-04-54-40-utc-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/06/NA2XSFL2Y-3-scaled.webp": "/media/media-1767108208493-NA2XSFL2Y-3-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/06/N2XSFL2Y-3-scaled.webp": "/media/media-1767108208496-N2XSFL2Y-3-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/06/H1Z2Z2-K-scaled.webp": "/media/media-1767108208497-H1Z2Z2-K-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSFL2Y-3-scaled.webp": "/media/media-1767108208498-NA2XSFL2Y-3-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSF2Y-3-scaled.webp": "/media/media-1767108208499-NA2XSF2Y-3-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/NA2XS2Y-scaled.webp": "/media/media-1767108208499-NA2XS2Y-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSY-scaled.webp": "/media/media-1767108208500-NA2XSY-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/N2XSFL2Y-2-scaled.webp": "/media/media-1767108208500-N2XSFL2Y-2-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/N2XSF2Y-3-scaled.webp": "/media/media-1767108208501-N2XSF2Y-3-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/N2XS2Y-scaled.webp": "/media/media-1767108208501-N2XS2Y-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/N2XSY-scaled.webp": "/media/media-1767108208502-N2XSY-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/NA2X2Y-scaled.webp": "/media/media-1767108208502-NA2X2Y-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/NA2XY-scaled.webp": "/media/media-1767108208502-NA2XY-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/N2X2Y-scaled.webp": "/media/media-1767108208503-N2X2Y-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/N2XY-scaled.webp": "/media/media-1767108208503-N2XY-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/NAY2Y-scaled.webp": "/media/media-1767108208504-NAY2Y-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/NAYCWY-scaled.webp": "/media/media-1767108208504-NAYCWY-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/NAYY-scaled.webp": "/media/media-1767108208505-NAYY-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/NY2Y-scaled.webp": "/media/media-1767108208505-NY2Y-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/NYCWY-scaled.webp": "/media/media-1767108208506-NYCWY-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2025/01/NYY-scaled.webp": "/media/media-1767108208506-NYY-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2024/12/DSC07539-Large.webp": "/media/10432-DSC07539-Large.webp",
- "https://klz-cables.com/wp-content/uploads/2024/12/DSC07655-Large.webp": "/media/10440-DSC07655-Large.webp",
- "https://klz-cables.com/wp-content/uploads/2024/12/DSC07340-scaled.webp": "/media/10382-DSC07340-scaled.webp",
- "https://klz-cables.com/wp-content/uploads/2024/12/1694273920124-copy.webp": "/media/10616-1694273920124-copy.webp",
- "https://klz-cables.com/wp-content/uploads/2024/12/1694273920124-copy-2.webp": "/media/10615-1694273920124-copy-2.webp",
- "https://klz-cables.com/wp-content/uploads/2025/02/Still-2025-02-10-104337_1.1.1.webp": "/media/45569-Still-2025-02-10-104337_1.1.1.webp",
- "https://klz-cables.com/wp-content/uploads/2024/12/DSC08036-Large.webp": "/media/10638-DSC08036-Large.webp"
-}
\ No newline at end of file
diff --git a/data/processed/categories.json b/data/processed/categories.json
deleted file mode 100644
index ee19f1d0..00000000
--- a/data/processed/categories.json
+++ /dev/null
@@ -1,156 +0,0 @@
-[
- {
- "id": 44,
- "translationKey": "equipment",
- "locale": "en",
- "slug": "equipment",
- "name": "Equipment",
- "path": "/product-category/equipment",
- "description": "",
- "count": 0,
- "translation": null
- },
- {
- "id": 41,
- "translationKey": "high-voltage-cables",
- "locale": "en",
- "slug": "high-voltage-cables",
- "name": "High Voltage Cables",
- "path": "/product-category/high-voltage-cables",
- "description": "",
- "count": 2,
- "translation": null
- },
- {
- "id": 40,
- "translationKey": "low-voltage-cables",
- "locale": "en",
- "slug": "low-voltage-cables",
- "name": "Low Voltage Cables",
- "path": "/product-category/low-voltage-cables",
- "description": "",
- "count": 10,
- "translation": null
- },
- {
- "id": 39,
- "translationKey": "medium-voltage-cables",
- "locale": "en",
- "slug": "medium-voltage-cables",
- "name": "Medium Voltage Cables",
- "path": "/product-category/medium-voltage-cables",
- "description": "",
- "count": 8,
- "translation": null
- },
- {
- "id": 42,
- "translationKey": "power-cables",
- "locale": "en",
- "slug": "power-cables",
- "name": "Power Cables",
- "path": "/product-category/power-cables",
- "description": "",
- "count": 20,
- "translation": null
- },
- {
- "id": 43,
- "translationKey": "solar-cables",
- "locale": "en",
- "slug": "solar-cables",
- "name": "Solar Cables",
- "path": "/product-category/solar-cables",
- "description": "",
- "count": 1,
- "translation": null
- },
- {
- "id": 38,
- "translationKey": "uncategorized",
- "locale": "en",
- "slug": "uncategorized",
- "name": "Uncategorized",
- "path": "/product-category/uncategorized",
- "description": "",
- "count": 0,
- "translation": null
- },
- {
- "id": 115,
- "translationKey": "ausruestung",
- "locale": "de",
- "slug": "ausruestung",
- "name": "Ausrüstung",
- "path": "/de/product-category/ausruestung",
- "description": "",
- "count": 0,
- "translation": null
- },
- {
- "id": 107,
- "translationKey": "hochspannungskabel",
- "locale": "de",
- "slug": "hochspannungskabel",
- "name": "Hochspannungskabel",
- "path": "/de/product-category/hochspannungskabel",
- "description": "",
- "count": 2,
- "translation": null
- },
- {
- "id": 111,
- "translationKey": "mittelspannungskabel",
- "locale": "de",
- "slug": "mittelspannungskabel",
- "name": "Mittelspannungskabel",
- "path": "/de/product-category/mittelspannungskabel",
- "description": "",
- "count": 8,
- "translation": null
- },
- {
- "id": 109,
- "translationKey": "niederspannungskabel",
- "locale": "de",
- "slug": "niederspannungskabel",
- "name": "Niederspannungskabel",
- "path": "/de/product-category/niederspannungskabel",
- "description": "",
- "count": 10,
- "translation": null
- },
- {
- "id": 113,
- "translationKey": "solarkabel",
- "locale": "de",
- "slug": "solarkabel",
- "name": "Solarkabel",
- "path": "/de/product-category/solarkabel",
- "description": "",
- "count": 1,
- "translation": null
- },
- {
- "id": 105,
- "translationKey": "stromkabel",
- "locale": "de",
- "slug": "stromkabel",
- "name": "Stromkabel",
- "path": "/de/product-category/stromkabel",
- "description": "",
- "count": 20,
- "translation": null
- },
- {
- "id": 93,
- "translationKey": "uncategorized-de",
- "locale": "de",
- "slug": "uncategorized-de",
- "name": "Uncategorized",
- "path": "/de/product-category/uncategorized-de",
- "description": "",
- "count": 0,
- "translation": null
- }
-]
\ No newline at end of file
diff --git a/data/processed/media.json b/data/processed/media.json
deleted file mode 100644
index d47806b5..00000000
--- a/data/processed/media.json
+++ /dev/null
@@ -1,572 +0,0 @@
-[
- {
- "id": 46113,
- "filename": "46113-image_fx_-2025-02-20T193520.620.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-20T193520.620.webp",
- "localPath": "/media/46113-image_fx_-2025-02-20T193520.620.webp",
- "alt": "",
- "width": 1408,
- "height": 768,
- "mimeType": "image/webp"
- },
- {
- "id": 47294,
- "filename": "47294-1759325528650.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/10/1759325528650.webp",
- "localPath": "/media/47294-1759325528650.webp",
- "alt": "",
- "width": 2046,
- "height": 1536,
- "mimeType": "image/webp"
- },
- {
- "id": 46237,
- "filename": "46237-image_fx_-2025-02-22T132138.470.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-22T132138.470.webp",
- "localPath": "/media/46237-image_fx_-2025-02-22T132138.470.webp",
- "alt": "",
- "width": 1408,
- "height": 768,
- "mimeType": "image/webp"
- },
- {
- "id": 47052,
- "filename": "47052-NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/08/NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp",
- "localPath": "/media/47052-NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp",
- "alt": "",
- "width": 1920,
- "height": 1080,
- "mimeType": "image/webp"
- },
- {
- "id": 46055,
- "filename": "46055-image_fx_-2025-02-20T185502.688.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-20T185502.688.webp",
- "localPath": "/media/46055-image_fx_-2025-02-20T185502.688.webp",
- "alt": "",
- "width": 1408,
- "height": 768,
- "mimeType": "image/webp"
- },
- {
- "id": 46094,
- "filename": "46094-image_fx_-2025-02-20T191245.537.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-20T191245.537.webp",
- "localPath": "/media/46094-image_fx_-2025-02-20T191245.537.webp",
- "alt": "",
- "width": 1408,
- "height": 768,
- "mimeType": "image/webp"
- },
- {
- "id": 45685,
- "filename": "45685-image_fx_-9.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-9.webp",
- "localPath": "/media/45685-image_fx_-9.webp",
- "alt": "",
- "width": 1408,
- "height": 768,
- "mimeType": "image/webp"
- },
- {
- "id": 46380,
- "filename": "46380-inter-solar.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/04/inter-solar.webp",
- "localPath": "/media/46380-inter-solar.webp",
- "alt": "",
- "width": 1920,
- "height": 1081,
- "mimeType": "image/webp"
- },
- {
- "id": 45692,
- "filename": "45692-image_fx_-2.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-2.webp",
- "localPath": "/media/45692-image_fx_-2.webp",
- "alt": "",
- "width": 1408,
- "height": 768,
- "mimeType": "image/webp"
- },
- {
- "id": 45979,
- "filename": "45979-closeup-shot-of-a-person-presenting-a-euro-rain-wi-2025-02-02-14-02-05-utc-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/03/closeup-shot-of-a-person-presenting-a-euro-rain-wi-2025-02-02-14-02-05-utc-scaled.webp",
- "localPath": "/media/45979-closeup-shot-of-a-person-presenting-a-euro-rain-wi-2025-02-02-14-02-05-utc-scaled.webp",
- "alt": "",
- "width": 2560,
- "height": 1707,
- "mimeType": "image/webp"
- },
- {
- "id": 45688,
- "filename": "45688-image_fx_-6.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-6.webp",
- "localPath": "/media/45688-image_fx_-6.webp",
- "alt": "",
- "width": 1408,
- "height": 768,
- "mimeType": "image/webp"
- },
- {
- "id": 45687,
- "filename": "45687-image_fx_-7.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-7.webp",
- "localPath": "/media/45687-image_fx_-7.webp",
- "alt": "",
- "width": 1408,
- "height": 768,
- "mimeType": "image/webp"
- },
- {
- "id": 10797,
- "filename": "10797-Medium-Voltage-Cables-–-KLZ-Cables-12-30-2024_05_20_PM-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2024/12/Medium-Voltage-Cables-–-KLZ-Cables-12-30-2024_05_20_PM-scaled.webp",
- "localPath": "/media/10797-Medium-Voltage-Cables-–-KLZ-Cables-12-30-2024_05_20_PM-scaled.webp",
- "alt": "",
- "width": 1193,
- "height": 2560,
- "mimeType": "image/webp"
- },
- {
- "id": 45524,
- "filename": "45524-5.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/02/5.webp",
- "localPath": "/media/45524-5.webp",
- "alt": "",
- "width": 1920,
- "height": 1080,
- "mimeType": "image/webp"
- },
- {
- "id": 6517,
- "filename": "6517-medium-voltage-category.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2024/11/medium-voltage-category.webp",
- "localPath": "/media/6517-medium-voltage-category.webp",
- "alt": "",
- "width": 1920,
- "height": 1920,
- "mimeType": "image/webp"
- },
- {
- "id": 45528,
- "filename": "45528-1.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/02/1.webp",
- "localPath": "/media/45528-1.webp",
- "alt": "",
- "width": 1920,
- "height": 1080,
- "mimeType": "image/webp"
- },
- {
- "id": 27158,
- "filename": "27158-power-grid-station-electrical-distribution-statio-2023-11-27-05-25-36-utc-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/power-grid-station-electrical-distribution-statio-2023-11-27-05-25-36-utc-scaled.webp",
- "localPath": "/media/27158-power-grid-station-electrical-distribution-statio-2023-11-27-05-25-36-utc-scaled.webp",
- "alt": "",
- "width": 2560,
- "height": 1440,
- "mimeType": "image/webp"
- },
- {
- "id": 20928,
- "filename": "20928-offshore-wind-power-and-energy-farm-with-many-wind-2023-11-27-04-51-29-utc-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/offshore-wind-power-and-energy-farm-with-many-wind-2023-11-27-04-51-29-utc-scaled.webp",
- "localPath": "/media/20928-offshore-wind-power-and-energy-farm-with-many-wind-2023-11-27-04-51-29-utc-scaled.webp",
- "alt": "",
- "width": 2560,
- "height": 1078,
- "mimeType": "image/webp"
- },
- {
- "id": 15376,
- "filename": "15376-technicians-inspecting-wind-turbines-in-a-green-en-2024-12-09-01-25-20-utc-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/technicians-inspecting-wind-turbines-in-a-green-en-2024-12-09-01-25-20-utc-scaled.webp",
- "localPath": "/media/15376-technicians-inspecting-wind-turbines-in-a-green-en-2024-12-09-01-25-20-utc-scaled.webp",
- "alt": "",
- "width": 2560,
- "height": 1707,
- "mimeType": "image/webp"
- },
- {
- "id": 11248,
- "filename": "11248-business-planning-hand-using-laptop-for-working-te-2024-11-01-21-25-44-utc-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/business-planning-hand-using-laptop-for-working-te-2024-11-01-21-25-44-utc-scaled.webp",
- "localPath": "/media/11248-business-planning-hand-using-laptop-for-working-te-2024-11-01-21-25-44-utc-scaled.webp",
- "alt": "",
- "width": 2560,
- "height": 1707,
- "mimeType": "image/webp"
- },
- {
- "id": 6126,
- "filename": "6126-1234adws21312-scaled.jpg",
- "url": "https://klz-cables.com/wp-content/uploads/2024/11/1234adws21312-scaled.jpg",
- "localPath": "/media/6126-1234adws21312-scaled.jpg",
- "alt": "",
- "width": 2560,
- "height": 1920,
- "mimeType": "image/jpeg"
- },
- {
- "id": 6137,
- "filename": "6137-aerial-view-of-electricity-station-surrounded-with-2023-11-27-05-33-40-utc-scaled.jpg",
- "url": "https://klz-cables.com/wp-content/uploads/2024/11/aerial-view-of-electricity-station-surrounded-with-2023-11-27-05-33-40-utc-scaled.jpg",
- "localPath": "/media/6137-aerial-view-of-electricity-station-surrounded-with-2023-11-27-05-33-40-utc-scaled.jpg",
- "alt": "",
- "width": 2560,
- "height": 1919,
- "mimeType": "image/jpeg"
- },
- {
- "id": 10801,
- "filename": "10801-mockup_03-copy-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2024/12/mockup_03-copy-scaled.webp",
- "localPath": "/media/10801-mockup_03-copy-scaled.webp",
- "alt": "",
- "width": 2560,
- "height": 1517,
- "mimeType": "image/webp"
- },
- {
- "id": 10863,
- "filename": "10863-klz-directory-2-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/klz-directory-2-scaled.webp",
- "localPath": "/media/10863-klz-directory-2-scaled.webp",
- "alt": "",
- "width": 2560,
- "height": 1694,
- "mimeType": "image/webp"
- },
- {
- "id": 6521,
- "filename": "6521-low-voltage-category.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2024/11/low-voltage-category.webp",
- "localPath": "/media/6521-low-voltage-category.webp",
- "alt": "",
- "width": 1920,
- "height": 1920,
- "mimeType": "image/webp"
- },
- {
- "id": 10816,
- "filename": "10816-green-electric-plug-concept-2023-11-27-05-30-00-utc-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2024/12/green-electric-plug-concept-2023-11-27-05-30-00-utc-scaled.webp",
- "localPath": "/media/10816-green-electric-plug-concept-2023-11-27-05-30-00-utc-scaled.webp",
- "alt": "",
- "width": 2560,
- "height": 1457,
- "mimeType": "image/webp"
- },
- {
- "id": 10667,
- "filename": "10667-production-of-cable-wire-at-cable-factory-2023-11-27-05-18-33-utc-Large.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2024/12/production-of-cable-wire-at-cable-factory-2023-11-27-05-18-33-utc-Large.webp",
- "localPath": "/media/10667-production-of-cable-wire-at-cable-factory-2023-11-27-05-18-33-utc-Large.webp",
- "alt": "",
- "width": 1280,
- "height": 853,
- "mimeType": "image/webp"
- },
- {
- "id": 10679,
- "filename": "10679-large-rolls-of-wires-against-the-blue-sky-at-sunse-2023-11-27-05-20-33-utc-Large.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2024/12/large-rolls-of-wires-against-the-blue-sky-at-sunse-2023-11-27-05-20-33-utc-Large.webp",
- "localPath": "/media/10679-large-rolls-of-wires-against-the-blue-sky-at-sunse-2023-11-27-05-20-33-utc-Large.webp",
- "alt": "",
- "width": 1280,
- "height": 854,
- "mimeType": "image/webp"
- },
- {
- "id": 10988,
- "filename": "10988-transportation-and-logistics-trucking-2023-11-27-04-54-40-utc-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/transportation-and-logistics-trucking-2023-11-27-04-54-40-utc-scaled.webp",
- "localPath": "/media/10988-transportation-and-logistics-trucking-2023-11-27-04-54-40-utc-scaled.webp",
- "alt": "",
- "width": 2560,
- "height": 1914,
- "mimeType": "image/webp"
- },
- {
- "id": null,
- "filename": "media-1767108208493-NA2XSFL2Y-3-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/06/NA2XSFL2Y-3-scaled.webp",
- "localPath": "/media/media-1767108208493-NA2XSFL2Y-3-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208496-N2XSFL2Y-3-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/06/N2XSFL2Y-3-scaled.webp",
- "localPath": "/media/media-1767108208496-N2XSFL2Y-3-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208497-H1Z2Z2-K-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/06/H1Z2Z2-K-scaled.webp",
- "localPath": "/media/media-1767108208497-H1Z2Z2-K-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208498-NA2XSFL2Y-3-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSFL2Y-3-scaled.webp",
- "localPath": "/media/media-1767108208498-NA2XSFL2Y-3-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208499-NA2XSF2Y-3-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSF2Y-3-scaled.webp",
- "localPath": "/media/media-1767108208499-NA2XSF2Y-3-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208499-NA2XS2Y-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XS2Y-scaled.webp",
- "localPath": "/media/media-1767108208499-NA2XS2Y-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208500-NA2XSY-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSY-scaled.webp",
- "localPath": "/media/media-1767108208500-NA2XSY-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208500-N2XSFL2Y-2-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/N2XSFL2Y-2-scaled.webp",
- "localPath": "/media/media-1767108208500-N2XSFL2Y-2-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208501-N2XSF2Y-3-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/N2XSF2Y-3-scaled.webp",
- "localPath": "/media/media-1767108208501-N2XSF2Y-3-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208501-N2XS2Y-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/N2XS2Y-scaled.webp",
- "localPath": "/media/media-1767108208501-N2XS2Y-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208502-N2XSY-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/N2XSY-scaled.webp",
- "localPath": "/media/media-1767108208502-N2XSY-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208502-NA2X2Y-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/NA2X2Y-scaled.webp",
- "localPath": "/media/media-1767108208502-NA2X2Y-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208502-NA2XY-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XY-scaled.webp",
- "localPath": "/media/media-1767108208502-NA2XY-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208503-N2X2Y-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/N2X2Y-scaled.webp",
- "localPath": "/media/media-1767108208503-N2X2Y-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208503-N2XY-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/N2XY-scaled.webp",
- "localPath": "/media/media-1767108208503-N2XY-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208504-NAY2Y-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/NAY2Y-scaled.webp",
- "localPath": "/media/media-1767108208504-NAY2Y-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208504-NAYCWY-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/NAYCWY-scaled.webp",
- "localPath": "/media/media-1767108208504-NAYCWY-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208505-NAYY-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/NAYY-scaled.webp",
- "localPath": "/media/media-1767108208505-NAYY-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208505-NY2Y-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/NY2Y-scaled.webp",
- "localPath": "/media/media-1767108208505-NY2Y-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208506-NYCWY-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/NYCWY-scaled.webp",
- "localPath": "/media/media-1767108208506-NYCWY-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": null,
- "filename": "media-1767108208506-NYY-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/01/NYY-scaled.webp",
- "localPath": "/media/media-1767108208506-NYY-scaled.webp",
- "alt": "",
- "width": null,
- "height": null,
- "mimeType": null
- },
- {
- "id": 10432,
- "filename": "10432-DSC07539-Large.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2024/12/DSC07539-Large.webp",
- "localPath": "/media/10432-DSC07539-Large.webp",
- "alt": "",
- "width": 1280,
- "height": 853,
- "mimeType": "image/webp"
- },
- {
- "id": 10440,
- "filename": "10440-DSC07655-Large.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2024/12/DSC07655-Large.webp",
- "localPath": "/media/10440-DSC07655-Large.webp",
- "alt": "",
- "width": 1280,
- "height": 853,
- "mimeType": "image/webp"
- },
- {
- "id": 10382,
- "filename": "10382-DSC07340-scaled.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2024/12/DSC07340-scaled.webp",
- "localPath": "/media/10382-DSC07340-scaled.webp",
- "alt": "",
- "width": 2560,
- "height": 1707,
- "mimeType": "image/webp"
- },
- {
- "id": 10616,
- "filename": "10616-1694273920124-copy.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2024/12/1694273920124-copy.webp",
- "localPath": "/media/10616-1694273920124-copy.webp",
- "alt": "",
- "width": 1101,
- "height": 624,
- "mimeType": "image/webp"
- },
- {
- "id": 10615,
- "filename": "10615-1694273920124-copy-2.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2024/12/1694273920124-copy-2.webp",
- "localPath": "/media/10615-1694273920124-copy-2.webp",
- "alt": "",
- "width": 1100,
- "height": 401,
- "mimeType": "image/webp"
- },
- {
- "id": 45569,
- "filename": "45569-Still-2025-02-10-104337_1.1.1.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2025/02/Still-2025-02-10-104337_1.1.1.webp",
- "localPath": "/media/45569-Still-2025-02-10-104337_1.1.1.webp",
- "alt": "",
- "width": 2560,
- "height": 800,
- "mimeType": "image/webp"
- },
- {
- "id": 10638,
- "filename": "10638-DSC08036-Large.webp",
- "url": "https://klz-cables.com/wp-content/uploads/2024/12/DSC08036-Large.webp",
- "localPath": "/media/10638-DSC08036-Large.webp",
- "alt": "",
- "width": 1280,
- "height": 853,
- "mimeType": "image/webp"
- }
-]
\ No newline at end of file
diff --git a/data/processed/pages.json b/data/processed/pages.json
deleted file mode 100644
index 4ae04dac..00000000
--- a/data/processed/pages.json
+++ /dev/null
@@ -1,266 +0,0 @@
-[
- {
- "id": 10544,
- "translationKey": "terms",
- "locale": "en",
- "slug": "terms",
- "path": "/terms",
- "title": "Terms - English",
- "titleHtml": "Terms – English",
- "contentHtml": " Liefer- und Zahlungsbedingungen Stand November 2024 1. Allgemeines Diese Liefer- und Zahlungsbedingungen (L&Z) der KLZ Vertriebs GmbH gelten ausschließlich; entgegenstehende oder von unseren Bedingungen abweichende Bedingungen des Kunden erkennen wir nicht an, es sei denn, wir hätten ausdrücklich schriftlich ihrer Geltung zugestimmt. Unsere L&Z gelten auch dann, wenn wir in Kenntnis entgegenstehender oder von unseren L&Z abweichender Bedingungen des Bestellers die Lieferung an diesen vorbehaltlos ausführen. Unsere L&Z gelten nur gegenüber Unternehmern im Sinn von § 310 Abs. 1 BGB sowie juristischen Personen des öffentlichen Rechts oder öffentlich-rechtliches Sondervermögen. Nebenabreden, Vorbehalte, Änderungen, Ergänzungen usw. bedürfen zu ihrer Wirksamkeit unserer schriftlichen Bestätigung. Hinweise auf die Geltung gesetzlicher Vorschriften haben nur klarstellende Bedeutung. Auch ohne eine derartige Klarstellung gelten daher die gesetzlichen Vorschriften, soweit sie in diesen L&Z nicht unmittelbar abgeändert oder ausdrücklich ausgeschlossen werden. 2. Angebote Sofern nicht ausdrücklich als bindend bezeichnet, sind unsere Angebote freibleibend; die Bestellung des Kunden ist als Angebot gemäß § 145 BGB zu qualifizieren. 3. Preise Alle von uns genannten Preise verstehen sich zzgl. der jeweiligen gesetzlichen Mehrwertsteuer vor Metallzuschlag fracht- frei innerhalb der Bundesrepublik Deutschland (Festland), jedoch ohne Abladen. Die Verkaufspreise, soweit sie als Hohlpreis deklariert sind, enthalten keinerlei Metallwerte. Diese werden zusätzlich separat berechnet. 4. Metallnotierung Basis zur Kupferabrechnung ist die Notierung “LME Copper official price cash offer”, Durchschnitt des Liefervormonats zuzüglich der dann aktuellen von uns benannten Kupfer-Prämie. Basis zur Aluminiumabrechnung ist die Notierung “LME Aluminium official price cash offer”, Durchschnitt des Liefervormonats zuzüglich der dann von uns benannten Aluminium-Prämie. USD werden auf Basis des EUR/USD LME-FX-Rate (MTLE) in EUR umgerechnet. Die entsprechenden Notierungen können Sie der Web-Seite www.westmetall.com entnehmen. Die Prämienzuschläge können stark variieren und KLZ behält sich das Recht vor, diese fristgerecht anzupassen, ungeachtet der Angebotslegung. 5. Metallzahl Die von uns ausgewiesene Metallzahl ist eine rein kaufmännische Berechnungsgröße für den Metallinhalt, die in die Berechnung des Gesamtpreises eines Kabels eingeht. Damit entsprechen wir Ihrem Wunsch eine Vergleichbarkeit in ihrem System auf Hohlpreisbasis zu ermöglichen. Die Metallzahl gibt damit nicht das Gewicht des tatsächlich im Kabel enthaltenen Leitermetalls an. Sie ist ein rein kalkulatorischer Berechnungsfaktor, der jedoch keine unmittelbaren Rückschlüsse auf die im Kabel verwendeten Kupfer- bzw. Aluminiummengen zulässt. Wir weisen ausdrücklich darauf hin, final nur den Vollpreis für Vergleichszwecke heranzuziehen. Soweit Sie es wünschen andere Metallzahlen zu Grunde zu legen, sind wir gerne dazu bereit, das Angebot in den Bestandteilen umzurechnen. Bei jeglicher Änderung bleibt aber der Vollpreis der gleiche Betrag. 6. Auftragsänderung / Auftragsstorno Nach Auftragsbestätigung werden Änderungen an bestätigten Aufträgen nur nach Prüfung und gesonderter ausdrücklicher Zustimmung durch uns akzeptiert. Wir behalten uns bei allen Auftragsänderungen das Recht vor, einen durch die Änderung entstandenen Mehraufwand, wie z.B. Bearbeitungskosten oder Entsorgungskosten in Rechnung zu stellen. 7. Eigentumsvorbehalt Wir behalten uns an den von uns gelieferten Waren – nachfolgend: Vorbehaltsware – bis zur vollständigen Begleichung aller unserer Forderungen aus den Geschäftsbeziehungen mit dem Besteller, das Eigentum vor. Der Eigentumsvorbehalt bleibt auch dann bestehen, wenn einzelne Forderungen in eine laufende Rechnung aufgenommen werden (Kontokorrentvorbehalt). 8. Zahlungsbedingungen | Aufrechnung | Zurückbehaltungsrechte Unsere Rechnungen sind 14 Tage nach Rechnungsdatum ohne jeden Abzug zahlbar. Bei Nichteinhaltung der vereinbarten Zahlungsbedingungen sind wir berechtigt, Zinsen in Höhe von 7 %-Punkten über dem Basiszinssatz zu berechnen; das Recht zur Geltendmachung weitergehender Schäden, insbesondere nachgewiesener höherer Zinsen, bleibt hiervon unberührt. 9. Liefervorbehalt | Teillieferungen Sämtliche Lieferzusagen unsererseits stehen, sofern nichts anderes ausdrücklich schriftlich vereinbart ist, unter dem Vorbehalt der richtigen und rechtzeitigen Belieferung durch unsere Produzenten. Wir behalten uns jederzeit Teillieferungen vor. Darüber hinaus behalten wir uns branchenübliche Über- oder Unterlieferungen bis zu 10 % der bestellten Menge vor. 10. Lieferfristen und Liefertermine Die Lieferfrist wird individuell vereinbart bzw. von uns bei Annahme der Bestellung angegeben. Sofern wir verbindliche Lieferfristen aus Gründen, die wir nicht zu vertreten haben, nicht einhalten können (Nichtverfügbarkeit der Leistung), werden wir den Besteller hierüber unverzüglich informieren und gleichzeitig die voraussichtliche, neue Lieferfrist mitteilen. Ist die Leistung auch innerhalb der neuen Lieferfrist nicht verfügbar, sind wir berechtigt, ganz oder teilweise vom Vertrag zurückzutreten. Eine bereits erbrachte Gegenleistung des Bestellers werden wir unverzüglich erstatten. Nichtverfügbarkeit der Leistung liegt beispielsweise vor bei nicht recht- zeitiger Selbstbelieferung durch unseren Zulieferer, wenn wir ein kongruentes Deckungsgeschäft abgeschlossen haben, bei sonstigen Störungen in der Lieferkette etwa aufgrund höherer Gewalt oder wenn wir im Einzelfall zur Beschaffung nicht verpflichtet sind. Der Eintritt unseres Lieferverzugs bestimmt sich nach den gesetzlichen Vorschriften. In jedem Fall ist aber eine Mahnung durch den Käufer erforderlich. Die gesetzlichen Rechte bleiben im Übrigen unberührt. Fixgeschäfte setzen die ausdrückliche schriftliche Bezeichnung als solche voraus. Ansonsten ist der Besteller stets verpflichtet, uns schriftlich eine angemessene Nachfrist zu setzen, wenn von uns zugesagte Termine und/ oder Fristen nicht eingehalten werden. Wird auch die Nachfrist nicht eingehalten, ist der Besteller berechtigt, vom Vertrag zurückzutreten. Im Fall höherer Gewalt und/oder sonstiger von uns nicht vorhersehbarer außergewöhnlicher und/oder unverschuldeter Umstände, auch wenn sie bei unserem Vorlieferanten eintreten, verlängert sich eine von uns zugesagte Lieferfrist bis zur Behebung des vorerwähnten Ereignisses. Ist dieser Zeitpunkt nicht überblickbar, sind sowohl der Besteller als auch wir berechtigt, von dem abgeschlossenen Vertrag zurückzutreten. In diesem Fall sind beiderseits Schadensersatzansprüche ausgeschlossen. Wir verpflichten uns, bei Bekanntwerden vorerwähnter Umstände den Besteller hiervon unverzüglich zu benachrichtigen. Ist die Einhaltung eines Termins davon abhängig, dass uns seitens des Bestellers bestimmte Angaben und/oder Pläne, Freigabeerklärungen oder ähnliches erteilt werden, beginnt die Lieferfrist erst von dem Zeitpunkt an zu lau- fen, zu dem uns die vollständigen Angaben des Bestellers schriftlich vorliegen. Wird die Anlieferung auf Wunsch des Bestellers über den vertraglich vorgesehenen Zeitpunkt hinausgeschoben, kann von uns beginnend mit einer Frist von frühestens 10 Werktagen nach Anzeige der Versandbereitschaft dem Besteller ein Lagergeld in Höhe von 2 % des Rechnungsbetrages für jeden angefangenen Monat, maximal jedoch 10 % insgesamt berechnet werden. 11. Abrufaufträge Wird uns ein Abrufauftrag erteilt und werden über die Abruftermine keine gesonderten schriftlichen Vereinbarungen getroffen, ist der Besteller verpflichtet, uns die einzelnen Abruftermine so mitzuteilen, dass zwischen Eingang der Abrufmitteilung bei uns und Auslieferung mindestens 14 Werktage und die letzte Auslieferung spätestens 90 Tage nach unserer Auftragsbestätigung liegt. 12. Maß- und Gewichtsangaben Alle Angaben über Durchmesser, Gewicht, technische Gestaltung, Herstellung und Umfang der von uns zu liefernden Ware stehen unter dem Vorbehalt der Abweichung innerhalb der handelsüblichen zulässigen Toleranzen. Darüber hinaus behalten wir uns Änderungen, die einer technischen Verbesserung dienen, jederzeit vor. Farbabweichungen und/oder Abweichungen in der äußeren Beschaffenheit der von uns zu liefernden Ware, die jedoch deren Qualität und technische Wirksamkeit unbeeinflusst lässt, begründen keine Mängelhaftungsansprüche des Bestellers. 13. Gefahrübergang und -tragung Die Lieferung erfolgt DAP frei Bestimmungsort Deutschland, wo auch der Erfüllungsort für die Lieferung und eine etwaige Nacherfüllung ist. Wird die bestellte Ware von uns versandbereit gestellt und/oder verzögert sich die Versendung und/oder der Abruf aus Gründen, die vom Besteller zu vertreten sind, sind wir berechtigt, Ersatz des hieraus entstehenden Schadens einschließlich Mehraufwendungen zu verlangen. Hierfür berechnen wir eine pauschale Entschädigung i.H.v 2% des Rechnungsbetrages für jeden angefangenen Monat, maximal jedoch 10 % insgesamt beginnend mit der Lieferfrist bzw. – mangels einer Lieferfrist – mit der Mitteilung der Versandbereitschaft der Ware. Der Nachweis eines höheren Schadens und unsere gesetzlichen Ansprüche (insbesondere Ersatz von Mehraufwendungen, angemessene Entschädigung, Kündigung) bleiben unberührt; die Pauschale ist aber auf weitergehende Geldansprüche anzurechnen. Dem Besteller bleibt der Nachweis gestattet, dass uns überhaupt kein oder nur ein wesentlich geringerer Schaden als vorstehende Pauschale entstanden ist. Rücksendungen an uns, die nicht vorher von uns schriftlich bestätigt worden sind, erfolgen auf alleinige Gefahr des Bestellers. 14. Mängelhaftung Wir haften nur dann für die Einhaltung objektiver Anforderungen an der Ware, wenn und soweit zwischen dem Besteller und uns keine Beschaffenheitsvereinbarung getroffen wurde. Die einzuhaltenden subjektiven Anforderungen gehen den einzuhaltenden objektiven Anforderungen vor. Im Zweifel ergeben sich die vereinbarten Anforderungen an die Ware aus dem von uns bereitgestellten Datenblatt. Einzelne, nicht immer auszuschließende marginale Abweichungen, dürfen durch Reparaturen, wie zum Beispiel Mantelmanschetten nachgebessert werden. Jedwede Mängelhaftungsansprüche des Bestellers setzen voraus, dass dieser die ihm übersandte Ware unverzüglich, d. h. in der Regel sofort bei Anlieferung (noch in Anwesenheit des Transporteurs) auf ihre ordnungsgemäße Beschaffenheit hin überprüft und uns zu verzeichnende sichtbare Mängel unmittelbar nach Erhalt der Ware und verdeckte Mängel unmittelbar nach deren Feststellung schriftlich mitteilt. Soweit ein rechtzeitig gerügter, nicht nur unerheblicher Mangel der Kaufsache vorliegt, sind wir nach unserer Wahl zur Mangelbeseitigung oder zur Ersatzlieferung (Nacherfüllung) berechtigt. Wir übernehmen im Rahmen der Nacherfüllung in keinem Fall Ein- oder Ausbaukosten, wenn und soweit die Mangelhaftigkeit der Ware zum Zeitpunkt des Einbaus dem Besteller bekannt oder grob fahrlässig unbekannt geblieben ist. Sind wir zur Mangelbeseitigung/Ersatzlieferung nicht bereit oder nicht in der Lage oder verzögert sich diese über angemessene Fristen hinaus aus Gründen, die wir zu vertreten haben, oder schlägt sie in sonstiger Weise fehl, so ist der Besteller nach seiner Wahl berechtigt, vom Vertrag zurückzutreten oder eine entsprechende Minderung des Kaufpreises zu verlangen. Weitergehende Ansprüche des Bestellers, gleich aus welchem Rechtsgrund, sind nach näherer Maßgabe der Regelungen in nachstehender Ziffer 15 ausgeschlossen bzw. beschränkt. Die Verjährungsfristen für Mängelhaftungsansprüche beträgt 24 Monate ab Übergabe der Ware. Sollte es bei einer Mängelrüge zu unterschiedlichen Meinungen bezüglich des Kabelschaden kommen, gilt hier im Zweifelsfall nur die Expertise des VDE-Instituts selbst. Andere, auch akkreditierte Testlabore, akzeptieren wir nicht. Wir weisen ausdrücklich daraufhin, dass beim Verlegen des Kabels in den Graben oder in Rohren, bzw. in Bauwerke eine ständige Sichtkontrolle durch den Kabelverleger vorzunehmen ist, ob Auffälligkeiten zu vermerken sind. Eine spätere Reklamation, die fahrlässiges Verhalten vermuten lässt, schränkt sich damit ein. 15. Schadenersatz | Gesamthaftung Wir haften unbeschränkt nur für Vorsatz und grobe Fahrlässigkeit sowie für Schäden aus einer Verletzung von Leben, Körper oder Gesundheit, die auf mindestens fahrlässiger Pflichtverletzung unsererseits oder unserer gesetzlichen Vertreter oder Erfüllungsgehilfen beruhen; ebenso haften wir unbeschränkt im Fall von uns übernommenen bzw. abgegebenen Garantien und Zusicherungen, sofern ein davon umfasster Mangel unsere Haftung auslöst sowie im Fall einer Haftung nach dem Produkthaftungsgesetz oder sonstigen Gefährdungshaftungstatbeständen. Im Fall sonstiger schuldhafter Verletzung wesentlicher Vertragspflichten („Kardinalpflichten“) ist unsere verbleibende Haftung auf den vertragstypischen vorhersehbaren Schaden beschränkt. Mangelfolgeschäden sowie entgangener Gewinn schließen wir grundsätzlich aus. 16. Kabeltrommeln Unsere Kabel werden auf stabilen Vollholztrommeln geliefert. Auf Wunsch vermitteln wir Ihnen Partner, die diese Trommeln gegen eine Gebühr abholen. 17. Sonstiges Es gilt ausschließlich das Recht der Bundesrepublik Deutschland unter Ausschluss des UN-Kaufrechts (CISG). Gerichtsstand ist nach unserer Wahl Stuttgart, der Erfüllungsort der Lieferverpflichtung oder das für den Sitz des Bestellers zuständige Gericht, sofern der Besteller Kaufmann, juristische Person des öffentlichen Rechts oder öffentlich-rechtliches Sondervermögen ist oder keinen allgemeinen Gerichtsstand im Inland hat. Mit der Veröffentlichung der vorliegenden L&Z im Internet werden alle von uns früher verwendeten Bedingungen gegenstandslos. ",
- "excerptHtml": "[vc_row type=”in_container” full_screen_row_position=”middle” column_margin=”default” column_direction=”default” column_direction_tablet=”default” column_direction_phone=”default” scene_position=”center” text_color=”dark” text_align=”left” row_border_radius=”none” row_border_radius_applies=”bg” overflow=”visible” overlay_strength=”0.3″ gradient_direction=”left_to_right” shape_divider_position=”bottom” bg_image_animation=”none”][vc_column column_padding=”no-extra-padding” column_padding_tablet=”inherit” column_padding_phone=”inherit” column_padding_position=”all” column_element_direction_desktop=”default” column_element_spacing=”default” desktop_text_alignment=”default” tablet_text_alignment=”default” phone_text_alignment=”default” background_color_opacity=”1″ background_hover_color_opacity=”1″ column_backdrop_filter=”none” column_shadow=”none”… \n",
- "featuredImage": null,
- "updatedAt": "2025-08-12T11:47:27",
- "translation": null
- },
- {
- "id": 10540,
- "translationKey": "legal-notice",
- "locale": "en",
- "slug": "legal-notice",
- "path": "/legal-notice",
- "title": "Legal Notice - English",
- "titleHtml": "Legal Notice – English",
- "contentHtml": " Legal Notice Responsible for the content: Michael Bodemer KLZ Vertriebs GmbH Raiffeisenstraße 22 73630 Remshalden info@klz-cables.com www.klz-cables.com Local Court Stuttgart HRB-Nr. 798037 Place of jurisdiction: Stuttgart Copyright: All texts, images and other information published on the website are subject to copyright unless otherwise indicated. Any duplication, distribution, storage, transmission, reproduction or forwarding of the contents without written permission is expressly prohibited. For further information, please contact the above address. ",
- "excerptHtml": "[vc_row type=”in_container” full_screen_row_position=”middle” column_margin=”default” column_direction=”default” column_direction_tablet=”default” column_direction_phone=”default” scene_position=”center” text_color=”dark” text_align=”left” row_border_radius=”none” row_border_radius_applies=”bg” overflow=”visible” overlay_strength=”0.3″ gradient_direction=”left_to_right” shape_divider_position=”bottom” bg_image_animation=”none”][vc_column column_padding=”no-extra-padding” column_padding_tablet=”inherit” column_padding_phone=”inherit” column_padding_position=”all” column_element_direction_desktop=”default” column_element_spacing=”default” desktop_text_alignment=”default” tablet_text_alignment=”default” phone_text_alignment=”default” background_color_opacity=”1″ background_hover_color_opacity=”1″ column_backdrop_filter=”none” column_shadow=”none”… \n",
- "featuredImage": null,
- "updatedAt": "2025-10-08T21:29:40",
- "translation": null
- },
- {
- "id": 10535,
- "translationKey": "privacy-policy",
- "locale": "en",
- "slug": "privacy-policy",
- "path": "/privacy-policy",
- "title": "Privacy Policy - English",
- "titleHtml": "Privacy Policy – English",
- "contentHtml": " Privacy Policy 1. Data protection at a glance General information The following information provides a simple overview of what happens to your personal data when you visit our website. Personal data are all data with which you can be personally identified. For detailed information on the subject of data protection, please refer to our data protection declaration listed below this text. 2. General notes and compulsory information Data protection The operators of these pages take the protection of your personal data very seriously. We treat your personal data confidentially and in accordance with the legal data protection regulations and this data protection declaration. When you use this website, various personal data is collected. Personal data is data with which you can be personally identified. This privacy policy explains what data we collect and what we use it for. It also explains how we do this and for what purpose. We would like to point out that data transmission over the Internet (e.g. communication by e-mail) can have security gaps. It is not possible to completely protect data from access by third parties. Revocation of your consent to data processing Many data processing operations are only possible with your express consent. You can revoke a previously granted consent at any time. For this purpose, an informal notification by e-mail to us is sufficient. The lawfulness of the data processing that took place up to the revocation remains unaffected by the revocation. Right of appeal to the competent supervisory authority In the event of violations of data protection law, the person concerned has a right of appeal to the competent supervisory authority. The competent supervisory authority for data protection issues is the data protection commissioner of the federal state in which our company is located. A list of the data protection officers and their contact details can be found at the following link: https://www.bfdi.bund.de/DE/Infothek/Anschriften_Links/anschriften_links-node.html. Right to data transferability You have the right to have data which we process automatically on the basis of your consent or in fulfilment of a contract handed over to you or to a third party in a common, machine-readable format. If you request the direct transfer of the data to another responsible party, this will only be done to the extent that it is technically feasible. Information, blocking, deletion Within the framework of the applicable legal provisions, you have the right at any time to receive information free of charge about your stored personal data, its origin and recipients and the purpose of the data processing and, if applicable, a right to correct, block or delete this data. For this purpose, as well as for further questions regarding personal data, you can contact us at any time at the address given in the imprint. Contradiction against advertising mails The use of contact data published within the scope of the imprint obligation for the transmission of not expressly requested advertising and information material is hereby contradicted. The operators of the site expressly reserve the right to take legal action in the event of unsolicited sending of advertising information, such as through spam e-mails. 3. Data collection in our company Data transfer upon conclusion of the contract for services and digital contents We only transfer personal data to third parties if this is necessary within the scope of processing the contract, e.g. to the credit institution commissioned with processing payments. Any further transmission of data will not take place or only if you have expressly agreed to the transmission. Your data will not be passed on to third parties without your express consent, for example for advertising purposes. The basis for data processing is Art. 6 Par. 1 letter b DSGVO, which permits the processing of data for the fulfilment of a contract or pre-contractual measures. ",
- "excerptHtml": "[vc_row type=”in_container” full_screen_row_position=”middle” column_margin=”default” column_direction=”default” column_direction_tablet=”default” column_direction_phone=”default” scene_position=”center” text_color=”dark” text_align=”left” row_border_radius=”none” row_border_radius_applies=”bg” overflow=”visible” overlay_strength=”0.3″ gradient_direction=”left_to_right” shape_divider_position=”bottom” bg_image_animation=”none”][vc_column column_padding=”no-extra-padding” column_padding_tablet=”inherit” column_padding_phone=”inherit” column_padding_position=”all” column_element_direction_desktop=”default” column_element_spacing=”default” desktop_text_alignment=”default” tablet_text_alignment=”default” phone_text_alignment=”default” background_color_opacity=”1″ background_hover_color_opacity=”1″ column_backdrop_filter=”none” column_shadow=”none”… \n",
- "featuredImage": null,
- "updatedAt": "2025-01-16T11:13:23",
- "translation": null
- },
- {
- "id": 10487,
- "translationKey": "thanks",
- "locale": "en",
- "slug": "thanks",
- "path": "/thanks",
- "title": "Thanks - English",
- "titleHtml": "Thanks – English",
- "contentHtml": " Thank you very much! We’ve received your message and will get back to you as soon as possible. Our team is already rolling up their sleeves to assist you! JTNDJTIxLS0lMjBHb29nbGUlMjB0YWclMjAlMjhndGFnLmpzJTI5JTIwLS0lM0UlMjAlM0NzY3JpcHQlMjBhc3luYyUyMHNyYyUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3Lmdvb2dsZXRhZ21hbmFnZXIuY29tJTJGZ3RhZyUyRmpzJTNGaWQlM0RBVy0xNzA5NTg5MjIzOCUyMiUzRSUzQyUyRnNjcmlwdCUzRSUyMCUzQ3NjcmlwdCUzRSUyMHdpbmRvdy5kYXRhTGF5ZXIlMjAlM0QlMjB3aW5kb3cuZGF0YUxheWVyJTIwJTdDJTdDJTIwJTVCJTVEJTNCJTIwZnVuY3Rpb24lMjBndGFnJTI4JTI5JTdCZGF0YUxheWVyLnB1c2glMjhhcmd1bWVudHMlMjklM0IlN0QlMjBndGFnJTI4JTI3anMlMjclMkMlMjBuZXclMjBEYXRlJTI4JTI5JTI5JTNCJTIwZ3RhZyUyOCUyN2NvbmZpZyUyNyUyQyUyMCUyN0FXLTE3MDk1ODkyMjM4JTI3JTI5JTNCJTIwJTNDJTJGc2NyaXB0JTNF ",
- "excerptHtml": "[vc_row type=”full_width_background” full_screen_row_position=”middle” column_margin=”default” column_direction=”default” column_direction_tablet=”default” column_direction_phone=”default” bg_color=”#333333″ bg_image=”10432″ bg_position=”center center” background_image_loading=”default” bg_repeat=”no-repeat” scene_position=”center” top_padding=”15%” bottom_padding=”15%” text_color=”light” text_align=”left” row_border_radius=”none” row_border_radius_applies=”bg” overflow=”visible” color_overlay=”#0a0a0a” overlay_strength=”0.8″ gradient_direction=”left_to_right” shape_divider_position=”bottom” bg_image_animation=”none” parallax_bg=”true” parallax_bg_speed=”fast” gradient_type=”default” shape_type=””][vc_column… \n",
- "featuredImage": null,
- "updatedAt": "2025-05-20T03:17:50",
- "translation": null
- },
- {
- "id": 10453,
- "translationKey": "team",
- "locale": "en",
- "slug": "team",
- "path": "/team",
- "title": "Team - English",
- "titleHtml": "Team – English",
- "contentHtml": " The bright sparks behind the power Michael Bodemer “Challenges exist to be solved, not to debate how complicated they are.” Michael Bodemer is the go-to guy when things get complicated—and let’s face it, that’s often the case with cable networks. With sharp insight and a knack for practical solutions, Michael is one of our key players. He’s not just detail-oriented; he’s a driving force—whether it’s in planning, customer interactions, or securing the best cables for every project. A Legacy of Excellence in Every Connection At KLZ, our expertise is built on generations of dedication to the energy industry. With decades of hands-on experience, we’ve grown alongside the evolution of cable technology, combining traditional craftsmanship with modern innovation. Each project we take on reflects a deep understanding of what it takes to create lasting, reliable energy solutions. Paired with historic illustrations from the industry’s early days, our story is a reminder of how far cables have come – and how much care has always gone into connecting the world. Klaus Mintel “Sometimes all it takes is a clear head and a good cable to make the world a little better.” Klaus is the man with the experience, bringing perspective and calm to the table—even when cable chaos threatens to take over. With impressive industry knowledge and a network as solid as our cables, he ensures everything runs smoothly. Klaus isn’t just a problem solver; he’s a strategic thinker who knows how to get to the point with a touch of humor. Our manifesto ",
- "excerptHtml": " [vc_row type=”full_width_background” full_screen_row_position=”middle” column_margin=”default” column_direction=”default” column_direction_tablet=”default” column_direction_phone=”default” bg_color=”#ffffff” bg_image=”10440″ bg_position=”center center” background_image_loading=”default” bg_repeat=”no-repeat” scene_position=”center” top_padding=”14%” bottom_padding=”12%” text_color=”light” text_align=”left” row_border_radius=”none” row_border_radius_applies=”bg” overflow=”visible” enable_gradient=”true” color_overlay=”#0a0000″ color_overlay_2=”rgba(10,10,10,0.5)” overlay_strength=”0.8″ gradient_direction=”left_to_right” shape_divider_color=”#ffffff” shape_divider_position=”bottom” shape_divider_height=”350″ bg_image_animation=”none”… \n",
- "featuredImage": null,
- "updatedAt": "2025-05-13T10:32:39",
- "translation": {
- "locale": "de",
- "id": 10930
- }
- },
- {
- "id": 10375,
- "translationKey": "contact",
- "locale": "en",
- "slug": "contact",
- "path": "/contact",
- "title": "Contact - English",
- "titleHtml": "Contact – English",
- "contentHtml": " How can we help you? Have a project in mind? KLZ Cables Raiffeisenstraße 22 73630 Remshalden ",
- "excerptHtml": " [vc_row type=”full_width_background” full_screen_row_position=”middle” column_margin=”default” column_direction=”default” column_direction_tablet=”default” column_direction_phone=”default” bg_image=”10382″ bg_position=”center center” background_image_loading=”default” bg_repeat=”no-repeat” scene_position=”center” top_padding=”14%” bottom_padding=”5%” text_color=”dark” text_align=”left” row_border_radius=”none” row_border_radius_applies=”bg” zindex=”100″ overflow=”visible” color_overlay=”rgba(52,82,255,0.93)” color_overlay_2=”rgba(255,16,83,0.92)” overlay_strength=”0.95″ gradient_direction=”left_t_to_right_b” shape_divider_position=”bottom” bg_image_animation=”none” shape_type=”” gradient_type=”default”][vc_column column_padding=”no-extra-padding”… \n",
- "featuredImage": null,
- "updatedAt": "2025-04-25T09:58:25",
- "translation": null
- },
- {
- "id": 6032,
- "translationKey": "products",
- "locale": "en",
- "slug": "products",
- "path": "/products",
- "title": "Products",
- "titleHtml": "Products",
- "contentHtml": "",
- "excerptHtml": "",
- "featuredImage": null,
- "updatedAt": "2025-05-13T10:23:45",
- "translation": null
- },
- {
- "id": 10895,
- "translationKey": "corporate-3-landing-2",
- "locale": "en",
- "slug": "corporate-3-landing-2",
- "path": "/corporate-3-landing-2",
- "title": "Home - English",
- "titleHtml": "Home – English",
- "contentHtml": " We are helping to expand the energy cable networks for a green future Low Voltage Cables Powering everyday essentials with reliability and safety. Medium Voltage Cables The perfect balance between power and performance for industrial and urban grids. High Voltage Delivering maximum power over long distances—without compromise. Solar Cables Connecting the sun’s energy to your sustainable future. Low Voltage Cables Medium Voltage Cables High Voltage Cables Solar Cables What we do We ensure that the electricity flows – with quality-tested cables. From low voltage up to high voltage 01 Supply to energy suppliers, wind and solar parks, industry and trade We support your projects from 1 to 220 kV, from simple NYY to high-voltage cables with segment conductors and aluminum sheaths, with a particular focus on medium-voltage cables. Whether NA2XS(F)2Y in standard design, or up to 1200 mm2 cross-section, with thick sheathing or in the desired lengths. We have partners with an enormous variety. 02 Supply of cables whose quality is certified Cables are products that have to function 100%. For decades, often 80 to 100 years. Our cables are not only approved by VDE. The most well-known energy suppliers in Germany, the Netherlands and Austria trust us and our manufacturers. And often the requirements are even higher than those of the already strict VDE regulations. 03 We deliver on time because we know the consequences for you Wind farm North Germany, coordinates XYZ, delivery Wednesday 2-4 p.m., no unloading option. Yes, we know that. We organize the logistics with a back office team that has up to 20 years of cable experience. Customs clearance and proper paperwork included. 04 The cable alone is not the solution Stony ground? Perhaps a thicker outer sheath would be better? Damp ground? Can there be transverse watertight protection in addition to the longitudinal watertight tape? Longer individual lengths, but no thought given to the limitations of the laying crane? Or often underestimated? What can the floor in the warehouse support? A copper cable can easily weigh 10 tons per kilometer. We think for you and ask questions. Decades of experience rooted in cable history At KLZ, cables run in our veins. Klaus began his journey at the renowned Felten & Guilleaume, following in the footsteps of his parents, who dedicated their lives to the same iconic company. For Klaus, this isn’t just work – it’s a legacy built on craftsmanship, innovation, and pride. We honor this history with original illustrations from Felten & Guilleaume’s era, once used as postcards. These images remind us of the generations who wired the world together – a tradition we proudly continue today. Why choose us Experience prevents many mistakes, but we learn something new every day 01 Expertise with depth Our team has decades of experience – far beyond the founding of KLZ in 2009. The entire team has over 100 years of cable experience, gained in a wide variety of plants, from low voltage to medium voltage to high voltage. We know what cables smell like, what the colleague at the shielding machine is responsible for how testing is carried out. We know the main raw material manufacturers, know the risks of production, and can compare plants. Whether in old or new buildings. Anyone who has decades of audits and prequalification behind them knows where to look. And what are the right questions. 02 Tailor-made solutions for your project When things get more complex, we involve our technical consultants. That’s where you need experts who haven’t just started their careers. You need people who read and understand standards and have sometimes been involved. We have them, and with their and our experience we differentiate ourselves from simple cable trading 03 Reliability that keeps your projects on track Accessibility, quick response in a fast-moving world. Do you still have questions after 5 p.m.? Or at the weekend? We are always there. And that is how we have developed our partners so that as a team we can realize what you have paid for. And if something does not go well, no one hides. |