Product Documentation
Virtuoso Technology Data SKILL Reference
Product Version IC23.1, June 2023

techGetParams

techGetParams(
d_techFileID
) 
=> l_params / nil

Description

Returns the list of control parameters that are set in the specified technology database.

Arguments

d_techFileID

The database identifier of the technology file.

Value Returned

l_params

List of control parameters and their values. The list has the following syntax:

( ( t_paramName g_paramValue ) … )

where,

  • t_paramName is the name of the control parameter.
  • g_paramValue is the value of the parameter.

nil

The technology file does not exist, or the technology file does not define any control parameters.

Example

tfID = techGetTechFile(ddGetObj("testLib"))
db:0x0180200d
techGetParams(tfID) 
=> (("lambda" 0.6)
("theta" 2.5)
)

Returns the parameters defined in the technology file identified by tfID (testLib).


Return to top
 ⠀
X