1×2/2×2 1480/1550nm Fused WDM

◎ P/N: 77744

◎ Attention: For a formal quote, please send product details to sales@fiber-life.com.

DeliveryDelivery: Order today and it will be shipped before from the U.S. or Hong Kong via FedEx/DHL/UPS. Free shipping on orders over US$200.

WarrantyWarranty: Fiber-Life offers a 1-year warranty, 30-day returns, and 30-day exchanges.


  Compartilhar

Price range: $152.21 through $189.43

Total produto
Total opções
Total

1×2/2×2 Fused WDM, 1480/1550nm

The 1×2/2×2 1480/1550nm Fused WDM is a wavelength division multiplexing device that uses fused technology to combine or separate optical signals at 1480nm and 1550nm wavelengths. The 1480nm wavelength is commonly used as the pump light in erbium-doped fiber amplifiers (EDFA), while the 1550nm wavelength is the standard for long-distance fiber optic communication due to its low loss. Available in 1×2 and 2×2 configurations, the 1×2 version can combine or split signals at different wavelengths, and the 2×2 version can manage the combination or splitting of two wavelengths across two ports. This device is widely used in EDFA systems and WDM networks, enhancing bandwidth and transmission efficiency by enabling multiple wavelengths to be transmitted simultaneously on a single fiber.


Specifications

Parameter Value
Wavelength (nm) 1480/1550±5
Insertion Loss (Max) ≤0.25
Isolation (dB) ≥16
PDL (dB) ≤0.10
Fiber Type SMF-28e
Directivity (dB) ≥55
Operating Temperature (°C) -40 ~ +85
Storage Temperature (°C) -40 ~ +85
Port Configuration 1×2 Or 2×2
Package (250μm, 900μm) Steel Tube
Package (2.0mm, 3.0mm) ABS Box

Features Applications
Low Insertion Loss Long-Haul Uni and Bi-Directional
High Isolation Telecommunications System
Compact Size Digital, Hybrid and AM-Video Systems
Top Quality-Price Ratio High-Speed Multi-Wavelength Systems
CATV Links & Fiber Sensors
1×2, 2×2 Fused WDM Specification
0.00
0 avaliações
5
0
4
0
3
0
2
0
1
0
Seja o primeiro a avaliar “1×2/2×2 1480/1550nm Fused WDM”

Avaliações

Não há comentários ainda.

Meu carrinho
Lista de Desejos
Visualizado recentemente
Categorias
// 创建 MutationObserver 监听DOM变化 const observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { // 检查新增的节点 if (mutation.addedNodes.length) { checkElement(); } }); }); // 开始观察DOM变化 observer.observe(document.body, { childList: true, subtree: true }); // 检查元素并隐藏 function checkElement() { try { // 使用querySelector增加兼容性 const element = document.querySelector('#elementor-panel-state-loading'); if (element) { console.log('元素已找到,正在隐藏...'); element.style.display = 'none'; // 找到元素后停止观察 observer.disconnect(); // 同时清除定时器(如果还在运行) clearInterval(checkInterval); } } catch (error) { console.error('检查元素时出错:', error); } } // 初始检查 checkElement(); // 设置超时定时器,避免无限循环 const checkInterval = setInterval(checkElement, 200); setTimeout(() => { observer.disconnect(); clearInterval(checkInterval); console.log('搜索超时,停止检测'); }, 100000); // 10秒后超时