mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-29 14:17:30 +02:00
Added Yageo CC series of ceramic SMT capacitors.
- boom/dist/dk/Makefile, boom/dist/dk/yageo-cc.catq: added catalog query for Yageo CC series of ceramic chip capacitors - boom/manu/yageo/yageo.gen: generate characteristics of Yageo CC series
This commit is contained in:
parent
310e8866bc
commit
0b24c43e6a
2
boom/dist/dk/Makefile
vendored
2
boom/dist/dk/Makefile
vendored
@ -1,5 +1,5 @@
|
|||||||
MASTER = db/all.equ db/all.dsc db/all.inv
|
MASTER = db/all.equ db/all.dsc db/all.inv
|
||||||
PARTS = panasonic-erj stackpole-rmcf yageo-rc
|
PARTS = panasonic-erj stackpole-rmcf yageo-cc yageo-rc
|
||||||
|
|
||||||
.SECONDARY: # prevent *.cache from being automatically deleted
|
.SECONDARY: # prevent *.cache from being automatically deleted
|
||||||
|
|
||||||
|
5
boom/dist/dk/yageo-cc.catq
vendored
Normal file
5
boom/dist/dk/yageo-cc.catq
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
YAGEO
|
||||||
|
yageo
|
||||||
|
Ceramic
|
||||||
|
Series = CC
|
||||||
|
Packaging = Cut Tape (CT)
|
@ -1,10 +1,9 @@
|
|||||||
#GEN
|
#GEN
|
||||||
|
|
||||||
# http://www.yageo.com/documents/recent/PYu-RC0402_51_RoHS_L_5.pdf
|
|
||||||
# http://www.yageo.com/documents/recent/Product Selection Guide 2009.pdf
|
# http://www.yageo.com/documents/recent/Product Selection Guide 2009.pdf
|
||||||
|
# http://www.yageo.com/documents/recent/PYu-RC0402_51_RoHS_L_5.pdf
|
||||||
|
|
||||||
RC* -> T=R {
|
RC* -> T=R {
|
||||||
|
|
||||||
RC(????)([FJ])[RK]-(07|10|13)(*)L* ->
|
RC(????)([FJ])[RK]-(07|10|13)(*)L* ->
|
||||||
FP=$REF:1 _TOL=$REF:2 _R=$REF:4
|
FP=$REF:1 _TOL=$REF:2 _R=$REF:4
|
||||||
|
|
||||||
@ -16,21 +15,41 @@ RC* -> T=R {
|
|||||||
FP=0603 -> P=1/10W V=50V
|
FP=0603 -> P=1/10W V=50V
|
||||||
FP=0805 -> P=1/8W V=150V
|
FP=0805 -> P=1/8W V=150V
|
||||||
FP=1206 -> P=1/4W V=200V
|
FP=1206 -> P=1/4W V=200V
|
||||||
|
|
||||||
|
# Adjust multipliers
|
||||||
|
|
||||||
|
_R=(*)R(*) -> _R=0$_R:1.$_R:2
|
||||||
|
_R=(*)K(*) -> _R=$_R:1.${_R:2}k
|
||||||
|
_R=(*)M(*) -> _R=$_R:1.${_R:2}M
|
||||||
|
|
||||||
|
# Remove leading and trailing zeroes
|
||||||
|
|
||||||
|
_R=0([0-9]*) -> _R=$_R:1
|
||||||
|
_R=(*.[0-9]*)0([kM]) -> _R=$_R:1$_R:2
|
||||||
|
_R=(*).0([kM]) -> _R=$_R:1$_R:2
|
||||||
|
_R=(*.[0-9]*)0 -> _R=$_R:1
|
||||||
|
_R=(*).0 -> _R=$_R:1
|
||||||
|
_R=(*).([kM]|) -> _R=$_R:1$_R:2
|
||||||
}
|
}
|
||||||
|
|
||||||
# Adjust multipliers
|
# http://www.yageo.com/documents/recent/UPY-GPHC_Y5V_6.3V-to-50V_5.pdf
|
||||||
|
|
||||||
_R=(*)R(*) -> _R=0$_R:1.$_R:2
|
CC* -> T=C {
|
||||||
_R=(*)K(*) -> _R=$_R:1.${_R:2}k
|
CC(????)(?)?(???)(?)??([0-9][0-9R][0-9]) ->
|
||||||
_R=(*)M(*) -> _R=$_R:1.${_R:2}M
|
FP=$REF:1 _TOL=$REF:2 M=$REF:3 _V=$REF:4 _E12_P=$REF:5
|
||||||
|
|
||||||
# Remove leading and trailing zeroes
|
include ../../lib/captol.inc
|
||||||
|
|
||||||
_R=0([0-9]*) -> _R=$_R:1
|
_V=5 -> V=6.3V
|
||||||
_R=(*.[0-9]*)0([kM]) -> _R=$_R:1$_R:2
|
_V=6 -> V=10V
|
||||||
_R=(*).0([kM]) -> _R=$_R:1$_R:2
|
_V=7 -> V=16V
|
||||||
_R=(*.[0-9]*)0 -> _R=$_R:1
|
_V=8 -> V=25V
|
||||||
_R=(*).0 -> _R=$_R:1
|
_V=9 -> V=50V
|
||||||
_R=(*).([kM]|) -> _R=$_R:1$_R:2
|
_V=C -> V=1kV
|
||||||
|
_V=E -> V=3kV
|
||||||
|
}
|
||||||
|
|
||||||
|
include ../../lib/e12.inc
|
||||||
|
|
||||||
T=R -> R=${_R}R !
|
T=R -> R=${_R}R !
|
||||||
|
T=C -> C=${_E12}F !
|
||||||
|
Loading…
Reference in New Issue
Block a user