Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

relxInitOptionsInCdsenv

relxInitOptionsInCdsenv(
o_tool
)
=> nil

Description

Creates environment variables for the customized options added to the Reliability Options form.

You need to define this function in the .cdsinit file. You need not call it.

Arguments

o_tool

Simulation tool object.

Value Returned

nil

Returns nil by default.

Examples

Add the following SKILL code in the .cdsinit file to add the customized variables circuitReport and circuitReportPath in the .cdsenv file: .

(defun relxInitOptionsInCdsenv (tool)
        relxAddReliabilityOption( tool
           ?name           'circuitReport
?type 'Boolean
?value nil
?page "Custom"
?private   t
                   )
relxAddReliabilityOption( tool
?name 'circuitReportPath
?type 'string
?value ""
?page "Custom"
?private   t
        )
)

Return to top
 ⠀
X