Gets the Parameterized-Cell's (P-Cell) design parameters and its default values from the Cadence Virtuoso P-Cell database.
Syntax |
Description |
---|---|
out=itkdbgetparams(inputs); |
Gets the Parameterized-Cell (P-Cell) design parameters and its default values from the Cadence Virtuoso P-Cells. inputs: a struct that contains the target P-Cell information. The struct should contain the information of:
This command returns design parameters for the target P-Cell as a struct that includes the following keys:
|
Example
This example gets the design parameters for the "NPPhaseModulator" component in the "gopdk" library for its "layout" view:
cdsLib = pwd+"/cds.lib";
libName = "gopdk";
cellName = "NPPhaseModulator";
viewName = "layout";
parameters = itkdbgetparams({"cdsLib":cdsLib,
"libName":libName,
"cellName":cellName,
"viewName":viewName}
);
# display parameter information
for(i=1:length(parameters.type)){
?parameters.name{i};
?parameters.type{i};
?parameters.value{i};
}