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

maeGetMTSBlock

maeGetMTSBlock(
t_testName
[ ?lib t_lib ]
[ ?cell t_cell ]
[ ?inst t_instName ]
[ ?type t_type ]
[ ?session t_sessionName ]
)
=> l_mtsBlockInformation / nil

Description

Returns the requested MTS-related information about the specified library cell (block) or instance.

Arguments

t_testName

Name of the test.

?lib t_lib

Name of the library.

?cell t_cell

Name of the cell.

?inst t_instName

Name of the instance.

?type t_type

Type of information you want to print for the specified block or instance.

  • enable: Returns t if local scoping is enabled for the specified block or instance. Returns nil if local scoping is disabled for the specified block or instance.
  • modelFiles: Returns the information related to the models files that are locally scoped for the specified block or instance.
  • simOptions: Returns the process parameters with their values that are included in the simulation locally for the specified block or instance.
  • all: Returns all the above information for the specified block or instance. This is the default.

?session t_sessionName

Name of the session.

If you do not specify this argument, the currently active session is used.

Value Returned

l_mtsBlockInformation

The requested MTS-related information is returned about the specified library cell (block) or the instance.

nil

The MTS-related information is not returned.

Examples

Returns all the MTS-related information for the library cell, design_45 inv in the test_MTS test.

maeGetMTSBlock("test_MTS" ?lib "design_45" ?cell "inv")
=>(nil modelFiles (
    ("gpdk045/gpdk045_v_3_0/models/spectre/gpdk045.scs" "tt")
) simOptions (
    temp("40") 
    scale "5") 
    scalem "2")
)
enable t
)

Returns the values of the process parameters that are included in the simulation for the library cell, design_45 inv in the test_MTS test, locally.

maeGetMTSBlock("test_MTS" ?lib "design_45" ?cell "inv" ?type "simOptions")
=>(temp("40") 
    (scale "5") 
    (scalem "2")
)

Return to top
 ⠀
X