Hi, I would like to extract resistance in my layou...
# magic
s
Hi, I would like to extract resistance in my layout. Below is how I type the command. Does anyone know why it's not working? I do have the
comparator_miyahara.sim
file shows in the same directory as the
.gds
and
.ext
s
t
The recipe for full R-C extraction is floating around on the slack channel in several places; I should probably pin it. It requires multiple commands in sequence. My preference includes flattening the cell:
Copy code
select top cell
expand
flatten ${cellname}_flat
load ${cellname}_flat
cellname delete ${cellname}
cellname rename ${cellname}_flat ${cellname}
select top cell
extract all
ext2sim labels on
ext2sim
extresist tolerance 10
extresist
ext2spice lvs
ext2spice cthresh 0
ext2spice extresist on
ext2spice
quit -noprompt
s
Thank you @SUMANTO KAR @Tim Edwards
👍 1