aquiles viza
04/20/2024, 7:40 AMset lvs_netlist 1; set spiceprefix 1
. I'm developing with gf180mcu.
The idea is to evaluate LVS with netgen, so I'm not sure if the strategy should be adding the X
prefix and .subckt
declaration in the schematic netlist, or remove it from the layout netlist (I don't know how to do this).aquiles viza
04/20/2024, 7:50 AMlvs_format=@name @pinlist...
when it should be lvs_format=@spiceprefix@name @pinlist...
. I guess no fet symbol has it.Stefan Schippers
04/20/2024, 7:54 AMaquiles viza
04/20/2024, 7:57 AMStefan Schippers
04/20/2024, 7:58 AMdiode_dw2ps.sym:format="@name @pinlist @model area='@r_w * @r_l ' pj='2*@r_w + 2*@r_l ' m=@m"
diode_nd2ps_03v3.sym:format="@name @pinlist @model area='@r_w * @r_l ' pj='2*@r_w + 2*@r_l ' m=@m"
diode_nd2ps_06v0.sym:format="@name @pinlist @model area='@r_w * @r_l ' pj='2*@r_w + 2*@r_l ' m=@m"
diode_nw2ps_03v3.sym:format="@name @pinlist @model area='@r_w * @r_l ' pj='2*@r_w + 2*@r_l ' m=@m"
diode_nw2ps_06v0.sym:format="@name @pinlist @model area='@r_w * @r_l ' pj='2*@r_w + 2*@r_l ' m=@m"
diode_pd2nw_03v3.sym:format="@name @pinlist @model area='@r_w * @r_l ' pj='2*@r_w + 2*@r_l ' m=@m"
diode_pd2nw_06v0.sym:format="@name @pinlist @model area='@r_w * @r_l ' pj='2*@r_w + 2*@r_l ' m=@m"
diode_pw2dw.sym:format="@name @pinlist @model area='@r_w * @r_l ' pj='2*@r_w + 2*@r_l ' m=@m"
sc_diode.sym:format="@name @pinlist @model area='@r_w * @r_l ' pj='2*@r_w + 2*@r_l ' m=@m"
Stefan Schippers
04/20/2024, 7:59 AM@spiceprefix
but you need to fix only n and pfets: (all others don't have lvs_format
)
sed -i 's/lvs_format="@name/lvs_format="@spiceprefix@name/' *fet*.sym
aquiles viza
04/20/2024, 8:02 AMStefan Schippers
04/20/2024, 8:04 AMaquiles viza
04/20/2024, 8:06 AMStefan Schippers
04/20/2024, 8:17 AMaquiles viza
04/20/2024, 8:18 AMStefan Schippers
04/20/2024, 8:56 AMTim Edwards
04/20/2024, 12:07 PMaquiles viza
04/20/2024, 1:40 PM@spiceprefix
? I remember this was discussed months ago and the solution was the same we discussed at the bottom.
I don't see how to perform lvs without the addition of spiceprefix at the beginning of that particular fieldTim Edwards
04/20/2024, 2:11 PMTim Edwards
04/20/2024, 2:14 PMStefan Schippers
04/20/2024, 5:38 PMTim Edwards
04/21/2024, 12:04 PM