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

asiFormatSpecialParameterForRel

asiFormatSpecialParameterForRel(
o_oasisSession
p_fp
)
=> t

Description

Netlists the new options added to the customized tab.

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

Arguments

o_oasisSession

The OASIS session object.

p_fp

The handle to the netlist file.

Value Returned

t

Returns t by default.

Examples

Add the following SKILL code in the .cdsinit file to netlist the circuitReport and circuitReportPath options added to the Custom tab.

(defun  asiFormatSpecialParameterForRel (session)
     when(relxGetReliabilityOptionVal(session 'circuitReport)
(artFprintf fp "parameters circuit_report=1\n")
(artFprintf fp  "parameters path_report=%s\n"      relxGetReliabilityOptionVal(session 'circuitReportPath))
    )
)

Return to top
 ⠀
X