mirror of
https://github.com/torvalds/GuitarPedal.git
synced 2025-12-25 01:06:29 +00:00
The removed TOPLEVEL hackery also tried to deal with the problem of finding the spice models for simulation, which had the same confusion with project-specific files and no sane kicad model that I could find for it. This attempts to deal with it by just making a 'spice' symlink from the "kicad project" directory to the "real project" directory, and dealing with the spice model paths that way. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
14 lines
414 B
Plaintext
14 lines
414 B
Plaintext
** MMBD1203 is a dual diode package with two diodes in series:
|
|
** pin1: anode of the first one,
|
|
** pin2: cathode of the second one
|
|
** pin3: center (cathode of first, anode of second)
|
|
** KiCad calls this "Dual_Series_AKC"
|
|
** presumably for Anode/Kathode/Center ??
|
|
**
|
|
.subckt MMBD1203 A K C
|
|
D1 A C MMBD1203MODEL
|
|
D2 C K MMBD1203MODEL
|
|
.model MMBD1203MODEL D(Is=10E-15 Rs=1.0 CJO=1.3p Tt=12n Bv=70 Ibv=0.1p)
|
|
.ends
|
|
|