skill copy cellview

K

kev

Guest
Hi,

Anyone know how I can copy/rename views with a cellview within cadence?
e.g.. Lib->Cellname->schematic to Lib->Cellname->schematic_rf with
skill.

Can I use ccpCopy()?

regards
Kevin
 
kev wrote:
Hi,

Anyone know how I can copy/rename views with a cellview within cadence?
e.g.. Lib->Cellname->schematic to Lib->Cellname->schematic_rf with
skill.

Can I use ccpCopy()?

regards
Kevin
First open the source cellView in skill ( with dbOpenCellViewByType() )
then you can use dbCopyCellView()

dbCopyCellView(
d_srcCVId
t_libName
t_cellName
t_viewName
[ t_version
[ g_contextId
[ b_overwrite ] ] ]
)
=> d_cellViewId / nil

Copies a cellview to a destination cellview.

-
Suresh
 
thanks!


On Jan 27, 8:12 am, Suresh Jeevanandam <sure...@DELETETHISti.com>
wrote:
kev wrote:
Hi,

Anyone know how I can copy/rename views with a cellview within cadence?
e.g.. Lib->Cellname->schematic to Lib->Cellname->schematic_rf with
skill.

Can I use ccpCopy()?

regards
KevinFirst open the source cellView in skill ( with dbOpenCellViewByType() )
then you can use dbCopyCellView()

dbCopyCellView(
d_srcCVId
t_libName
t_cellName
t_viewName
[ t_version
[ g_contextId
[ b_overwrite ] ] ]
)
=> d_cellViewId / nil

Copies a cellview to a destination cellview.

-
Suresh
 
Hi Suresh,

Also, any idea on a skill function to add pins to a symbol view?
I want to add power pins with net expresions on a spectre view
automatically...
I can't find anything suitable in the cdsdoc or on tbis group..

Kevin

On Jan 29, 9:06 am, "kev" <kevin.kelli...@gmail.com> wrote:
thanks!

On Jan 27, 8:12 am, Suresh Jeevanandam <sure...@DELETETHISti.com
wrote:

kev wrote:
Hi,

Anyone know how I can copy/rename views with a cellview within cadence?
e.g.. Lib->Cellname->schematic to Lib->Cellname->schematic_rf with
skill.

Can I use ccpCopy()?

regards
KevinFirst open the source cellView in skill ( with dbOpenCellViewByType() )
then you can use dbCopyCellView()

dbCopyCellView(
d_srcCVId
t_libName
t_cellName
t_viewName
[ t_version
[ g_contextId
[ b_overwrite ] ] ]
)
=> d_cellViewId / nil

Copies a cellview to a destination cellview.

-
Suresh
 

Welcome to EDABoard.com

Sponsor

Back
Top