jlabani
Newbie level 1
I'm brand new to Skill and trying to learn it. I figured out how to open and do a check and save.
Ex:
cvId = dbOpenCellViewByType("aka180a" "test_nfet" "schematic" nil "w")
schCheck(cvId)
dbSave(cvId)
I'm trying to make a script that does an export of a schematic CDL netlist without using the Cadence GUI. Here is what I have tried:
procedure(make_cdl_netlist(cvId)
cvId = dbOpenCellViewByType("aka180a" "test_nfet" "schematic" nil "w") hnlCDLPrintNMOSElement("cmhv7sf" "nfet")
)
I get these errors:
>>>> Running specific SRC for unknown technology library and then IBM SRC
Warn : No schematic in current window.Running ibmPdkSRC rules checking....
Exiting TopMetal check, IBM_PDK library property for nil not set.
function make_cdl_netlist redefined
t
I'm thinking one of the issues is I have to somehow re-identify the tech library in my script for the lib I'm trying to access. I also tried entering "techBindTechFile <libName>" into the CIW and I received an error that the libName entered is unbound. Any input on what I'm missing would be helpful.
Ex:
cvId = dbOpenCellViewByType("aka180a" "test_nfet" "schematic" nil "w")
schCheck(cvId)
dbSave(cvId)
I'm trying to make a script that does an export of a schematic CDL netlist without using the Cadence GUI. Here is what I have tried:
procedure(make_cdl_netlist(cvId)
cvId = dbOpenCellViewByType("aka180a" "test_nfet" "schematic" nil "w") hnlCDLPrintNMOSElement("cmhv7sf" "nfet")
)
I get these errors:
>>>> Running specific SRC for unknown technology library and then IBM SRC
Warn : No schematic in current window.Running ibmPdkSRC rules checking....
Exiting TopMetal check, IBM_PDK library property for nil not set.
function make_cdl_netlist redefined
t
I'm thinking one of the issues is I have to somehow re-identify the tech library in my script for the lib I'm trying to access. I also tried entering "techBindTechFile <libName>" into the CIW and I received an error that the libName entered is unbound. Any input on what I'm missing would be helpful.