.tool-header {
margin-bottom: 30px;
padding: 25px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
color: white;
}
.tool-header h2 {
margin-top: 0;
color: white;
font-size: 28px;
margin-bottom: 10px;
}
.tool-header p {
margin: 10px 0;
opacity: 0.95;
font-size: 15px;
line-height: 1.6;
}
.control-section {
background: white;
border-radius: 8px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.control-row {
display: flex;
gap: 20px;
align-items: flex-end;
flex-wrap: wrap;
}
.control-group {
flex: 1;
min-width: 200px;
}
.control-group label {
display: block;
font-weight: bold;
color: #333;
margin-bottom: 8px;
font-size: 14px;
}
.control-group select {
width: 100%;
padding: 12px;
font-size: 16px;
border: 2px solid rgba(102, 126, 234, 0.3);
border-radius: 6px;
background: #f9f9f9;
cursor: pointer;
transition: all 0.3s ease;
}
.control-group select:focus {
outline: none;
border-color: #667eea;
background: white;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.visualization-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-bottom: 20px;
}
.connector-panel {
background: white;
border: 1px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.panel-header {
background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
color: white;
padding: 12px 20px;
font-weight: bold;
font-size: 16px;
}
.panel-header.receptacle {
background: linear-gradient(135deg, #2196F3 0%, #1976d2 100%);
}
.panel-header.plug {
background: linear-gradient(135deg, #FF9800 0%, #f57c00 100%);
}
.panel-content {
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
min-height: 280px;
background: #fafafa;
}
.connector-svg {
width: 220px;
height: 220px;
}
.connector-label {
margin-top: 15px;
font-size: 14px;
color: #666;
text-align: center;
}
.wiring-section {
background: white;
border: 1px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
margin-bottom: 20px;
}
.wiring-header {
background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
color: white;
padding: 12px 20px;
font-weight: bold;
font-size: 16px;
}
.wiring-content {
padding: 20px;
background: #fafafa;
}
.wiring-diagram {
display: flex;
justify-content: center;
margin-bottom: 20px;
}
.wiring-svg {
max-width: 100%;
height: 200px;
}
.wire-legend {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
padding: 15px;
background: white;
border-radius: 6px;
border: 1px solid #e0e0e0;
}
.wire-item {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
}
.wire-color {
width: 24px;
height: 12px;
border-radius: 3px;
border: 1px solid rgba(0,0,0,0.2);
}
.wire-color.hot { background: #000000; }
.wire-color.hot2 { background: #CC0000; }
.wire-color.hot3 { background: #0066CC; }
.wire-color.neutral { background: #FFFFFF; border: 1px solid #999; }
.wire-color.ground { background: #00AA00; }
.wire-color.ground-bare { background: linear-gradient(90deg, #B87333 0%, #CD7F32 50%, #B87333 100%); }
.specs-section {
background: white;
border: 1px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
margin-bottom: 20px;
}
.specs-header {
background: linear-gradient(135deg, #607D8B 0%, #455A64 100%);
color: white;
padding: 12px 20px;
font-weight: bold;
font-size: 16px;
}
.specs-content {
padding: 20px;
}
.specs-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 15px;
margin-bottom: 20px;
}
.spec-card {
background: #f5f5f5;
padding: 15px;
border-radius: 6px;
text-align: center;
border-left: 4px solid #4CAF50;
}
.spec-value {
font-size: 24px;
font-weight: bold;
color: #333;
font-family: 'Courier New', monospace;
}
.spec-label {
font-size: 12px;
color: #666;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-top: 5px;
}
.uses-list {
background: #e3f2fd;
border: 1px solid #2196F3;
border-radius: 6px;
padding: 15px;
margin-top: 15px;
}
.uses-list h4 {
margin: 0 0 10px 0;
color: #1565c0;
font-size: 14px;
}
.uses-list ul {
margin: 0;
padding-left: 20px;
color: #333;
}
.uses-list li {
margin: 5px 0;
font-size: 14px;
}
.connector-notes {
background: #fff3e0;
border: 1px solid #FF9800;
border-radius: 6px;
padding: 15px;
margin-top: 15px;
font-size: 14px;
color: #e65100;
}
.awg-table-section {
margin-top: 20px;
padding: 15px;
background: #f5f5f5;
border: 1px solid #ddd;
border-radius: 6px;
}
.awg-table-section h4 {
margin: 0 0 15px 0;
color: #333;
font-size: 14px;
}
.awg-table {
width: 100%;
border-collapse: collapse;
font-size: 13px;
}
.awg-table th {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 10px;
text-align: center;
}
.awg-table td {
padding: 10px;
border-bottom: 1px solid #ddd;
text-align: center;
}
.awg-table tr:hover {
background: #e3f2fd;
}
.awg-table .highlight {
background: #c8e6c9;
font-weight: bold;
}
.info-section {
background: white;
border-radius: 8px;
padding: 20px;
margin-top: 30px;
border-top: 3px solid #4CAF50;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.info-section h3 {
color: #4CAF50;
margin-top: 0;
}
.info-section p {
line-height: 1.6;
color: #555;
}
.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 20px;
}
.info-card {
background: #f5f5f5;
padding: 15px;
border-radius: 8px;
border-left: 4px solid #667eea;
}
.info-card h4 {
margin: 0 0 10px 0;
color: #333;
font-size: 15px;
}
.info-card p {
margin: 0;
font-size: 14px;
color: #666;
}
.nema-code-table {
width: 100%;
border-collapse: collapse;
margin-top: 15px;
font-size: 14px;
}
.nema-code-table th {
background: #667eea;
color: white;
padding: 10px;
text-align: left;
}
.nema-code-table td {
padding: 10px;
border-bottom: 1px solid #e0e0e0;
}
.nema-code-table tr:hover {
background: #f5f5f5;
}
.safety-note {
background: #ffebee;
border: 1px solid #f44336;
border-radius: 6px;
padding: 15px;
margin-top: 20px;
}
.safety-note h4 {
margin: 0 0 10px 0;
color: #c62828;
}
.safety-note ul {
margin: 0;
padding-left: 20px;
color: #333;
}
/* SVG Styling */
.connector-face {
fill: #f0f0f0;
stroke: #333;
stroke-width: 3;
}
.slot {
fill: #1a1a1a;
stroke: #000;
stroke-width: 1;
}
.pin {
fill: #C0C0C0;
stroke: #808080;
stroke-width: 1;
}
.terminal-label {
font-size: 10px;
font-weight: bold;
fill: #333;
text-anchor: middle;
}
.connector-type-label {
font-size: 14px;
font-weight: bold;
fill: #667eea;
text-anchor: middle;
}
/* Wire diagram styling */
.wire-line {
stroke-width: 4;
stroke-linecap: round;
fill: none;
}
.wire-hot { stroke: #000000; }
.wire-hot2 { stroke: #CC0000; }
.wire-hot3 { stroke: #0066CC; }
.wire-neutral { stroke: #CCCCCC; stroke-dasharray: none; }
.wire-ground { stroke: #00AA00; }
.terminal-circle {
stroke-width: 2;
stroke: #333;
}
/* Responsive */
@media (max-width: 768px) {
.visualization-grid {
grid-template-columns: 1fr;
}
.control-row {
flex-direction: column;
}
.control-group {
width: 100%;
}
.specs-grid {
grid-template-columns: 1fr 1fr;
}
.wire-legend {
flex-direction: column;
align-items: flex-start;
}
}
NEMA کنیکٹر کی قسم منتخب کریں:
NEMA 1-15 (125V 15A) - میراث بے بنیاد ہے۔
NEMA 1-20 (125V 20A) - میراث بے بنیاد ہے۔
NEMA 1-30 (125V 30A) - میراث بے بنیاد ہے۔
NEMA 2-15 (250V 15A) - Legacy 240V
NEMA 2-20 (250V 20A) - Legacy 240V
NEMA 2-30 (250V 30A) - Legacy 240V
NEMA 5-15 (125V 15A) - معیاری گھریلو
NEMA 5-20 (125V 20A) - کچن/باتھ روم
NEMA 5-30 (125V 30A) - ہائی کرنٹ 125V
NEMA 5-50 (125V 50A) - بھاری سامان
NEMA 6-15 (250V 15A) - ونڈو اے سی
NEMA 6-20 (250V 20A) - بڑا AC/سامان
NEMA 6-30 (250V 30A) - دکان کا سامان
NEMA 6-50 (250V 50A) - ویلڈر
NEMA 7-15 (277V 15A) - کمرشل لائٹنگ
NEMA 7-20 (277V 20A) - کمرشل لائٹنگ
NEMA 7-30 (277V 30A) - کمرشل
NEMA 7-50 (277V 50A) - صنعتی
NEMA 10-20 (125/250V 20A) - میراث
NEMA 10-30 (125/250V 30A) - میراثی ڈرائر
NEMA 10-50 (125/250V 50A) - لیگیسی رینج
NEMA 11-15 (250V 15A) - 3 فیز ڈیلٹا
NEMA 11-20 (250V 20A) - 3 فیز ڈیلٹا
NEMA 11-30 (250V 30A) - 3 فیز ڈیلٹا
NEMA 11-50 (250V 50A) - 3 فیز ڈیلٹا
NEMA 14-15 (125/250V 15A) - چھوٹے آلات
NEMA 14-20 (125/250V 20A) - سامان
NEMA 14-30 (125/250V 30A) - جدید ڈرائر
NEMA 14-50 (125/250V 50A) - رینج/EV
NEMA 14-60 (125/250V 60A) - بھاری سامان
NEMA 15-15 (250V 15A) - 3 فیز
NEMA 15-20 (250V 20A) - 3 فیز
NEMA 15-30 (250V 30A) - 3 فیز
NEMA 15-50 (250V 50A) - 3 فیز
NEMA 15-60 (250V 60A) - 3 فیز
NEMA 18-15 (120/208V 15A) - 3 فیز وائی
NEMA 18-20 (120/208V 20A) - 3 فیز وائی
NEMA 18-30 (120/208V 30A) - 3 فیز وائی
NEMA 18-50 (120/208V 50A) - 3 فیز وائی
NEMA 18-60 (120/208V 60A) - 3 فیز وائی
NEMA L5-15 (125V 15A) - لائٹ ڈیوٹی
NEMA L5-20 (125V 20A) - عام مقصد
NEMA L5-30 (125V 30A) - جنریٹر/RV
NEMA L5-50 (125V 50A) - بھاری سامان
NEMA L6-15 (250V 15A) - چھوٹا سامان
NEMA L6-20 (250V 20A) - سرور PDU
NEMA L6-30 (250V 30A) - صنعتی
NEMA L6-50 (250V 50A) - بھاری صنعتی
NEMA L7-15 (277V 15A) - کمرشل لائٹنگ
NEMA L7-20 (277V 20A) - کمرشل لائٹنگ
NEMA L7-30 (277V 30A) - کمرشل
NEMA L7-50 (277V 50A) - صنعتی
NEMA L8-20 (480V 20A) - صنعتی
NEMA L8-30 (480V 30A) - صنعتی
NEMA L9-20 (600V 20A) - بھاری صنعتی
NEMA L9-30 (600V 30A) - بھاری صنعتی
NEMA L10-20 (125/250V 20A) - میراث
NEMA L10-30 (125/250V 30A) - میراث
NEMA L11-15 (250V 15A) - 3 فیز کوئی گراؤنڈ نہیں۔
NEMA L11-20 (250V 20A) - 3 فیز کوئی گراؤنڈ نہیں۔
NEMA L11-30 (250V 30A) - 3 فیز کوئی گراؤنڈ نہیں۔
NEMA L14-20 (125/250V 20A) - ہلکا سامان
NEMA L14-30 (125/250V 30A) - جنریٹر کی منتقلی
NEMA L14-50 (125/250V 50A) - بھاری سامان
NEMA L14-60 (125/250V 60A) - صنعتی
NEMA L15-20 (250V 20A) - 3 فیز
NEMA L15-30 (250V 30A) - 3 فیز
NEMA L15-50 (250V 50A) - 3 فیز
NEMA L15-60 (250V 60A) - 3 فیز
NEMA L16-20 (480V 20A) - صنعتی 3 فیز
NEMA L16-30 (480V 30A) - صنعتی 3 فیز
NEMA L17-30 (600V 30A) - بھاری صنعتی 3 فیز
NEMA L18-20 (120/208V 20A) - 3 فیز وائی کوئی گراؤنڈ
NEMA L18-30 (120/208V 30A) - 3 فیز وائی کوئی گراؤنڈ
NEMA L19-20 (277/480V 20A) - کمرشل 3 فیز
NEMA L19-30 (277/480V 30A) - کمرشل 3 فیز
NEMA L20-20 (347/600V 20A) - صنعتی 3 فیز
NEMA L20-30 (347/600V 30A) - صنعتی 3 فیز
NEMA L21-20 (120/208V 20A) - ڈیٹا سینٹر
NEMA L21-30 (120/208V 30A) - ڈیٹا سینٹر
NEMA L22-20 (277/480V 20A) - کمرشل 3 فیز
NEMA L22-30 (277/480V 30A) - کمرشل 3 فیز
NEMA L23-20 (347/600V 20A) - صنعتی 3 فیز
NEMA L23-30 (347/600V 30A) - صنعتی 3 فیز
NEMA TT-30 (125V 30A) - RV پارکس
وال آؤٹ لیٹ - سلاٹ پلگ پن کو قبول کرتے ہیں۔
ہڈی کا اختتام - رسیپٹیکل میں پن داخل کریں۔
1,875W
زیادہ سے زیادہ واٹج
عام درخواستیں:
معیاری گھریلو دکان
امریکہ/کینیڈا میں سب سے زیادہ عام
AWG وائر گیج حوالہ
ایمپریج
معیاری (50 فٹ تک)
بڑھا ہوا (50-100 فٹ)
15A
14 AWG
12 AWG
20A
12 AWG
10 AWG
30A
10 AWG
8 AWG
40A
8 AWG
6 AWG
50A
6 AWG
4 AWG
60A
4 AWG
2 AWG
NEMA کنیکٹر کے نام کو سمجھنا
NEMA کنیکٹر کے عہدہ ایک معیاری پیٹرن کی پیروی کرتے ہیں جو وولٹیج کی ترتیب اور امپریج کی درجہ بندی کی نشاندہی کرتا ہے۔
سلسلہ
وولٹیج
تاریں
تفصیل
1
125V
2
بے بنیاد (وراثت)
2
250V
2
بے بنیاد 240V (وراثت)
5
125V
3
زمینی - معیاری گھریلو
6
250V
3
گراؤنڈ 240V سنگل فیز
7
277V
3
کمرشل سنگل فیز
10
125/250V
3
زمین کے بغیر تقسیم کا مرحلہ (وراثت)
11
250V
3
3 فیز ڈیلٹا بغیر زمین کے
14
125/250V
4
زمین کے ساتھ اسپلٹ فیز (جدید)
15
250V
4
زمین کے ساتھ 3 فیز ڈیلٹا
18
120/208V
4
3 فیز وائی
L- سابقہ
مختلف
3-4
لاکنگ (ٹوئسٹ لاک) کنیکٹر
125V کنفیگریشنز (1, 5, L5)
معیاری گھریلو وولٹیج۔ گرم پیتل کے ٹرمینل سے جوڑتا ہے، چاندی سے غیر جانبدار، زمین سے سبز۔
250V کنفیگریشنز (2, 6, L6)
سنگل فیز 240V۔ دو ہاٹ (غیر جانبدار نہیں)، عام طور پر ویلڈرز اور بڑے AC یونٹ جیسے آلات کے لیے استعمال ہوتے ہیں۔
125/250V کنفیگریشنز (10, 14, L14)
غیر جانبدار کے ساتھ سپلٹ فیز 240V۔ 120V اور 240V دونوں فراہم کرتا ہے۔ رینج، ڈرائر، ای وی چارجرز کے لیے استعمال کیا جاتا ہے۔
3-مرحلہ (11، 15، 18)
صنعتی اور تجارتی طاقت۔ ڈیلٹا (11، 15) یا وائی (18) موٹرز اور بھاری سامان کے لیے کنفیگریشنز۔
حفاظتی رہنما خطوط
برقی کنکشن پر کام کرنے سے پہلے ہمیشہ بریکر پر بجلی بند کر دیں۔
سرکٹ ایمپریج اور رن کی لمبائی کے لیے مناسب ریٹیڈ وائر گیج کا استعمال کریں۔
غیر مطابقت پذیر کنیکٹرز کو ایک ساتھ زبردستی کرنے کے لیے کبھی بھی اڈاپٹر استعمال نہ کریں۔
240V اور 3 فیز سرکٹس کو صرف مستند الیکٹریشنز کے ذریعے نصب کیا جانا چاہیے۔
زمینی رابطے حفاظت کے لیے اہم ہیں - انہیں کبھی نہ چھوڑیں اور نہ ہی نظرانداز کریں۔
NEMA 1، 2، اور 10 سیریز (بے بنیاد) میراث ہیں - نئی تنصیبات کے لیے زمینی مساوی استعمال کریں