need skill code to remove the special net in a layout

H

harry

Guest
Hi,

I'm importing a def into cadence virtuoso. The def was generated using
cadence SOC encounter. It has two special nets power and ground. I
would like to delete these two nets and make the the whole power grid
only as a regular metal layer.

Let me know if anyone has as idea.
thanx,
harry.
 
do you want to remove the net or the shapes connected to the net
or both?
-jim

harry wrote:
Hi,

I'm importing a def into cadence virtuoso. The def was generated using
cadence SOC encounter. It has two special nets power and ground. I
would like to delete these two nets and make the the whole power grid
only as a regular metal layer.

Let me know if anyone has as idea.
thanx,
harry.
 
Hi Jimka,

I just want to remove the net, not the shapes connected to the net.

hari.

Jimka wrote:
do you want to remove the net or the shapes connected to the net
or both?
-jim

harry wrote:
Hi,

I'm importing a def into cadence virtuoso. The def was generated using
cadence SOC encounter. It has two special nets power and ground. I
would like to delete these two nets and make the the whole power grid
only as a regular metal layer.

Let me know if anyone has as idea.
thanx,
harry.
 
The following code will remove the "power" and "ground" nets from layout:

cv = geGetWindowCellView()
id1 = dbFindNetByName(cv "power")
id2 = dbFindNetByName(cv "ground")
when(id1 dbDeleteObject(id1))
when(id2 dbDeleteObject(id2))

Let me know if you only want to remove these nets from certain metal
objects in the layout.
 

Welcome to EDABoard.com

Sponsor

Back
Top