スキル一覧に戻る
Cantara

inductor

by Cantara

1🍴 0📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


name: inductor description: Use when working with inductor components - adding inductor patterns, parsing inductor MPNs, extracting inductance values, current ratings, or package codes from inductor part numbers.

Inductor Component Skill

Guidance for working with inductor components in the lib-electronic-components library.

Supported Manufacturers & Patterns

ManufacturerHandlerMPN PatternsExample
MurataMurataHandlerLQG..., LQH..., LQW..., LQM...LQG15HS2N2S02D
TDKTDKHandlerMLF#..., NLV..., SDR...MLF2012A100KT000
BournsBournsHandlerSRR..., SRN..., SRP...SRR1208-100M

ComponentTypes

// Base type
ComponentType.INDUCTOR

// Manufacturer-specific types
ComponentType.INDUCTOR_CHIP_MURATA
ComponentType.INDUCTOR_POWER_MURATA
ComponentType.INDUCTOR_CHIP_TDK
ComponentType.INDUCTOR_POWER_TDK
ComponentType.INDUCTOR_CHIP_BOURNS
ComponentType.INDUCTOR_THT_BOURNS
ComponentType.INDUCTOR_CHIP_YAGEO
ComponentType.INDUCTOR_CHIP_COILCRAFT
ComponentType.INDUCTOR_PANASONIC

MPN Structure

Murata LQG Series (Chip Inductor)

LQG 15 HS 2N2 S 02 D
│   │  │  │   │ │  │
│   │  │  │   │ │  └── Packaging (D=180mm Reel)
│   │  │  │   │ └───── Special code
│   │  │  │   └──────── Tolerance (S=±0.3nH)
│   │  │  └──────────── Value (2N2=2.2nH)
│   │  └─────────────── Series (HS=High Frequency)
│   └────────────────── Size (15=0402)
└────────────────────── Family (LQG=Chip)

TDK MLF Series

MLF 2012 A 100 K T 000
│   │    │ │   │ │ │
│   │    │ │   │ │ └── Special code
│   │    │ │   │ └──── Packaging (T=Taping)
│   │    │ │   └────── Tolerance (K=±10%)
│   │    │ └────────── Value (100=10µH)
│   │    └──────────── Type (A=Standard)
│   └───────────────── Size (2012=0805)
└────────────────────── Series (MLF=Multilayer)

Inductor Types

TypeDescriptionApplications
ChipMultilayer ceramic/ferriteRF, filtering
PowerShielded/unshielded woundDC-DC, power
Common Mode ChokeCoupled inductorsEMI filtering
Ferrite BeadLossy inductorNoise suppression
ComponentType.FERRITE_BEAD_TDK
ComponentType.FERRITE_BEAD_YAGEO
ComponentType.EMI_FILTER_MURATA
ComponentType.EMI_FILTER_TDK
ComponentType.COMMON_MODE_CHOKE_MURATA
ComponentType.COMMON_MODE_CHOKE_TDK

Adding New Inductor Patterns

  1. In the manufacturer handler's initializePatterns():
registry.addPattern(ComponentType.INDUCTOR, "^NEWIND[0-9]{4}.*");
registry.addPattern(ComponentType.INDUCTOR_CHIP_MANUFACTURER, "^NEWIND[0-9]{4}.*");
  1. Add to getSupportedTypes():
types.add(ComponentType.INDUCTOR);
types.add(ComponentType.INDUCTOR_CHIP_MANUFACTURER);

Value Notation

NotationValue
2N22.2 nH
10N10 nH
R100.10 µH
10010 µH (10 × 10^0)
101100 µH (10 × 10^1)
1021000 µH (10 × 10^2)

Murata Size Codes

CodeImperialMetric
1504021005
1806031608
2108052012
3112063216

Learnings & Quirks

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です