Ahmed Reda
11/27/2022, 6:28 PMgds read bandgap
select top cell
flatten bandgap_flat
load bandgap_flat
extract do local
extract all
ext2sim labels on
ext2sim
extresist tolerance 10
extresist
ext2spice lvs
ext2spice cthresh 0
ext2spice extresist on
ext2spice
Tim Edwards
11/27/2022, 6:57 PMTim Edwards
11/27/2022, 7:07 PMload bandgap_flat
I need to do an additional `select top cell`; otherwise the extresist
command acts on the original cell (which is still selected).
The following recipe should work and extracts the cell with the original cellname:
gds read bandgap
select top cell
flatten bandgap_flat
load bandgap_flat
cellname delete bandgap
cellname rename bandgap_flat bandgap
select top cell
extract do local
extract all
ext2sim labels on
ext2sim
extresist tolerance 10
extresist
ext2spice lvs
ext2spice cthresh 0
ext2spice extresist on
ext2spice
Ahmed Reda
11/27/2022, 11:46 PM