27 lines
748 B
Tcl
27 lines
748 B
Tcl
# extract.tcl
|
|
#
|
|
# Complete Magic extraction workflow:
|
|
# 1. Load technology
|
|
# 2. Load layout
|
|
# 3. Extract parasitic capacitances (extract all → __CELL__.ext)
|
|
# 4. Extract parasitic resistances (extresist all → __CELL__.res.ext)
|
|
# 5. Write SPICE netlist (ext2spice → __CELL__.spice)
|
|
#
|
|
# __TECH__ and __CELL__ are substituted by extract.js before execution.
|
|
|
|
tech load __TECH__
|
|
load /work/__CELL__
|
|
|
|
# Write all intermediate files to /work/ so ext2spice can find __CELL__.res.ext
|
|
extract path /work
|
|
extract do resistance
|
|
extract all
|
|
|
|
# extresist requires a valid box cursor; span the full layout to be safe
|
|
select top cell
|
|
ext2spice format ngspice
|
|
ext2spice extresist on
|
|
ext2spice cthresh 0
|
|
|
|
ext2spice /work/__CELL__
|