一键导入
cyntec
Cyntec power inductor MPN encoding patterns, value decoding, and handler guidance. Use when working with Cyntec inductors or CyntecHandler.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Cyntec power inductor MPN encoding patterns, value decoding, and handler guidance. Use when working with Cyntec inductors or CyntecHandler.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when refactoring, cleaning up, or enhancing the lib-electronic-components codebase. Provides guidance on architecture patterns, known issues, duplication hotspots, and recommended improvements.
Base skill for working with electronic components in this library. Use when adding new component types, manufacturer handlers, or working with MPN (Manufacturer Part Number) operations, BOM entries, or component classification.
Use this skill BEFORE creating a PR to ensure all documentation, skills, and learnings are updated. Critical for preserving institutional knowledge and preventing documentation drift.
Use when working with component similarity calculations - comparing MPNs, finding equivalent parts, implementing new similarity calculators, or understanding how component matching works.
Use when working with capacitor similarity calculations - comparing ceramic/electrolytic/film capacitor MPNs, understanding value/voltage/dielectric matching, or capacitor-specific similarity logic.
Use when working with connector similarity calculations - comparing connector MPNs, understanding pin count/pitch/family matching, or connector-specific similarity logic.
| name | cyntec |
| description | Cyntec power inductor MPN encoding patterns, value decoding, and handler guidance. Use when working with Cyntec inductors or CyntecHandler. |
Cyntec MPNs follow this structure:
[SERIES][SIZE][TYPE]-[VALUE][TOLERANCE][PACK]
| | | | | |
| | | | | +-- Packaging (N=Tape/Reel)
| | | | +-- M=20%, K=10%
| | | +-- Inductance code
| | +-- Type variant (T, S, etc.)
| +-- 3-4 digit size code
+-- Series (PCMC, VCMD, MCPA, CMC)
PCMC063T-1R0MN
| | | | ||
| | | | |+-- Packaging (N=Tape/Reel)
| | | | +-- Tolerance (M=+/-20%)
| | | +-- Inductance (1R0 = 1.0uH)
| | +-- Type variant (T)
| +-- Size (063 = 6.3mm)
+-- PCMC = Power Inductor series
MCPA0504-1R0MN
| | | ||
| | | |+-- Packaging (N=Tape/Reel)
| | | +-- Tolerance (M=+/-20%)
| | +-- Inductance (1R0 = 1.0uH)
| +-- Size (0504 = 5.0mm x 4.0mm)
+-- MCPA = Automotive Power Inductor series
CMC0503-471M
| | | |
| | | +-- Tolerance (M=+/-20%)
| | +-- Impedance (471 = 470 ohm)
| +-- Size (0503 = 5.0mm x 3.0mm)
+-- CMC = Common Mode Choke series
| Feature | Description |
|---|---|
| Type | Power inductor |
| Pattern | ^PCMC[0-9]{3,4}.* |
| Size format | 3-4 digits |
| Application | General power conversion |
| Feature | Description |
|---|---|
| Type | Molded power inductor |
| Pattern | ^VCMD[0-9]{3,4}.* |
| Size format | 3-4 digits |
| Application | High current, shielded |
| Feature | Description |
|---|---|
| Type | Automotive-grade power inductor |
| Pattern | ^MCPA[0-9]{4}.* |
| Size format | 4 digits |
| Application | AEC-Q200 qualified |
| Feature | Description |
|---|---|
| Type | Common mode choke |
| Pattern | ^CMC[0-9]{4}.* |
| Size format | 4 digits |
| Application | EMI/EMC filtering |
Cyntec uses standard R-notation:
| Code | Value | Notes |
|---|---|---|
| R47 | 0.47uH | R at start = sub-1uH |
| R68 | 0.68uH | R at start |
| 1R0 | 1.0uH | R in middle |
| 2R2 | 2.2uH | R in middle |
| 4R7 | 4.7uH | R in middle |
| 6R8 | 6.8uH | R in middle |
| Code | Value | Calculation |
|---|---|---|
| 100 | 10uH | 10 x 10^0 |
| 101 | 100uH | 10 x 10^1 |
| 220 | 22uH | 22 x 10^0 |
| 470 | 47uH | 47 x 10^0 |
| 471 | 470uH | 47 x 10^1 |
// R at start (R47, R68)
if (code.startsWith("R")) {
double value = Double.parseDouble("0." + code.substring(1));
return formatInductance(value);
}
// R in middle (1R0, 2R2)
if (code.contains("R")) {
String[] parts = code.split("R");
double value = Double.parseDouble(parts[0] + "." + parts[1]);
return formatInductance(value);
}
// 3-digit code
if (code.matches("\\d{3}")) {
int mantissa = Integer.parseInt(code.substring(0, 2));
int exponent = Integer.parseInt(code.substring(2, 3));
double microhenries = mantissa * Math.pow(10, exponent);
return formatInductance(microhenries);
}
| Code | Dimension |
|---|---|
| 063 | 6.3mm |
| 050 | 5.0mm |
| 040 | 4.0mm |
| Code | Dimensions |
|---|---|
| 0504 | 5.0mm x 4.0mm |
| 0403 | 4.0mm x 3.0mm |
| 0503 | 5.0mm x 3.0mm |
| Code | Tolerance |
|---|---|
| K | +/- 10% |
| M | +/- 20% |
| Series | Package Type |
|---|---|
| PCMC | Power Inductor |
| VCMD | Molded Power Inductor |
| MCPA | Automotive Power Inductor |
| CMC | Common Mode Choke |
// Returns series + size + type as the full identifier
// PCMC063T-1R0MN -> "PCMC063T"
// MCPA0504-1R0MN -> "MCPA0504"
Matcher m = PCMC_PATTERN.matcher(upperMpn);
if (m.matches()) {
String type = m.group(3);
return m.group(1) + m.group(2) + (type != null ? type : "");
}
m = VCMD_PATTERN.matcher(upperMpn);
if (m.matches()) {
String type = m.group(3);
return m.group(1) + m.group(2) + (type != null ? type : "");
}
// MCPA and CMC don't have type suffix
m = MCPA_PATTERN.matcher(upperMpn);
if (m.matches()) {
return m.group(1) + m.group(2);
}
// Returns the package type description based on series
String series = extractSeriesPrefix(mpn);
return SERIES_PACKAGE_MAP.get(series);
// Returns: "Power Inductor", "Molded Power Inductor", etc.
// Value code position varies by series
// PCMC/VCMD: group(4) after type
// MCPA/CMC: group(3) directly after size
Matcher m = PCMC_PATTERN.matcher(mpn);
if (m.matches()) {
String valueCode = m.group(4);
return parseInductanceCode(valueCode);
}
m = MCPA_PATTERN.matcher(mpn);
if (m.matches()) {
String valueCode = m.group(3);
return parseInductanceCode(valueCode);
}
Pattern.compile(
"^(PCMC)(\\d{3,4})([A-Z]?)[-]?([0-9R]+)([A-Z]*)$"
);
// Groups: (1)series (2)size (3)type (4)value (5)tolerance+options
Pattern.compile(
"^(VCMD)(\\d{3,4})([A-Z]?)[-]?([0-9R]+)([A-Z]*)$"
);
// Same structure as PCMC
Pattern.compile(
"^(MCPA)(\\d{4})[-]?([0-9R]+)([A-Z]*)$"
);
// No type field, 4-digit size only
Pattern.compile(
"^(CMC)(\\d{4})[-]?([0-9]+)([A-Z]*)$"
);
// Numeric-only value (impedance), no R-notation
Cyntec products map to:
INDUCTOR - All inductor and choke productsIC - Also registered for pattern matching compatibilityCommon mode chokes use 3-digit impedance code (like ferrite beads):
| Code | Impedance |
|---|---|
| 471 | 470 ohm |
| 102 | 1000 ohm |
| 222 | 2200 ohm |
| MPN | Description |
|---|---|
| PCMC063T-1R0MN | 1.0uH power inductor, 6.3mm |
| VCMD063T-2R2MN | 2.2uH molded inductor, 6.3mm |
| MCPA0504-1R0MN | 1.0uH automotive inductor |
| CMC0503-471M | 470 ohm common mode choke |
manufacturers/CyntecHandler.javaINDUCTOR, IC