.claude/skills/manufacturers/wima/SKILL.md
# WIMA Handler Skill Use this skill when working with WIMA premium film capacitors - adding patterns, parsing WIMA MPNs, extracting capacitance values, voltage ratings, dielectric types, or package codes from WIMA part numbers. ## Overview WIMA is a German manufacturer specializing in high-quality film capacitors for audio, pulse, and general applications. They are particularly renowned for their audio-grade capacitors. ## Series Naming Convention WIMA uses a 3-letter prefix system followed
npx skillsauth add Cantara/lib-electronic-components .claude/skills/manufacturers/wimaInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill when working with WIMA premium film capacitors - adding patterns, parsing WIMA MPNs, extracting capacitance values, voltage ratings, dielectric types, or package codes from WIMA part numbers.
WIMA is a German manufacturer specializing in high-quality film capacitors for audio, pulse, and general applications. They are particularly renowned for their audio-grade capacitors.
WIMA uses a 3-letter prefix system followed by a size code:
| Series | Construction | Dielectric | Typical Use | |--------|--------------|------------|-------------| | MKS | Metallized | Polyester (PET) | General purpose, compact, coupling | | MKP | Metallized | Polypropylene (PP) | Audio, snubber, pulse | | FKS | Foil | Polyester (PET) | Precision, low loss | | FKP | Foil | Polypropylene (PP) | Highest quality, premium audio | | FKC | Foil | Polycarbonate | Legacy (discontinued) |
| Code | Pitch | |------|-------| | 2 | 5mm | | 3 | 7.5mm | | 4 | 7.5mm | | 6 | 10mm | | 10 | 15mm (MKP10 pulse) | | 20 | 22.5mm |
Format: [Series][Size]-[Value]/[Voltage]/[Tolerance]
| MPN | Series | Size | Value | Voltage | Tolerance | |-----|--------|------|-------|---------|-----------| | MKS4-100/63/10 | MKS | 4 (7.5mm) | 100nF | 63V | 10% | | MKP10-0.01/1000/10 | MKP | 10 (15mm) | 10nF | 1000V | 10% | | FKP2-330/100/5 | FKP | 2 (5mm) | 330pF | 100V | 5% | | MKS2-100/63/10 | MKS | 2 (5mm) | 100nF | 63V | 10% |
100 = 100nF (default unit for larger values)0.01 = 10nF (decimal format)330P = 330pF (with unit suffix)100N = 100nF (with unit suffix)1U = 1uF (with unit suffix)src/main/java/.../manufacturers/WIMAHandler.javasrc/test/java/.../handlers/WIMAHandlerTest.javaComponentType.CAPACITOR (base type)ComponentType.CAPACITOR_FILM_WIMA (manufacturer-specific)// Check if MPN is a WIMA capacitor
handler.matches(mpn, ComponentType.CAPACITOR_FILM_WIMA, registry)
// Extract series (e.g., "MKS4", "MKP10", "FKP2")
handler.extractSeries(mpn)
// Extract package/pitch (e.g., "5mm", "7.5mm", "15mm")
handler.extractPackageCode(mpn)
// Get dielectric type (e.g., "PET", "PP", "PC")
handler.getDielectricType(mpn)
// Get construction type (e.g., "Metallized", "Foil")
handler.getConstructionType(mpn)
The handler uses regex patterns to identify WIMA parts:
// Main series pattern
"^(MKS|MKP|FKS|FKP|FKC)\\d+.*"
// SMD series pattern
"^SMD[PM]\\d+.*"
WIMA capacitors are highly regarded in audio applications:
| Original | Upgrade | Notes | |----------|---------|-------| | MKS | MKP | Lower loss, better audio | | MKS | FKS | Lower loss | | MKP | FKP | Lowest loss, premium | | FKS | FKP | Better dielectric |
// Test MPN detection
assertTrue(handler.matches("MKS4-100/63/10", ComponentType.CAPACITOR_FILM_WIMA, registry));
// Test series extraction
assertEquals("MKS4", handler.extractSeries("MKS4-100/63/10"));
// Test package extraction
assertEquals("7.5mm", handler.extractPackageCode("MKS4-100/63/10"));
// Test dielectric type
assertEquals("PET", handler.getDielectricType("MKS4-100/63/10"));
assertEquals("PP", handler.getDielectricType("MKP10-100/1000/10"));
// Test construction type
assertEquals("Metallized", handler.getConstructionType("MKS4-100/63/10"));
assertEquals("Foil", handler.getConstructionType("FKP2-330/100/5"));
Historical WIMA color coding:
Note: Since 2024, WIMA has standardized to black marking on all capacitors.
data-ai
Cost-effective task delegation strategy using Haiku model for straightforward work. Use when planning how to approach simple, pattern-following tasks to minimize costs.
tools
Use when working with component similarity calculations - comparing MPNs, finding equivalent parts, implementing new similarity calculators, or understanding how component matching works.
testing
Use when working with transistor similarity calculations - comparing BJT MPNs, understanding NPN/PNP polarity matching, equivalent groups like 2N2222/PN2222, or transistor-specific similarity logic.
testing
Use when working with sensor similarity calculations - comparing temperature/accelerometer/humidity sensor MPNs, understanding sensor families, equivalent parts, or sensor-specific similarity logic.