maeGetStressFile
maeGetStressFile(t_relxSetupName[?cornerNamet_cornerName] [?historyNamet_historyName] [?runt_runName] [?matchParamsl_matchParams] ) =>t_output/nil
Description
Returns the path of the stress file to be reused from the specified reliability setup.
Value Returned
Examples
Returns the path of the stress file that is reused from the reliability setup Rel1:
maeGetStressFile("Rel1")
=> "/servers/user/Reliability/simulation/library/cell/view/results/maestro/history/1/Test/netlist/input.bs0"
Returns the path of the stress file that is reused from the C1 corner in the reliability setup Rel1:
maeGetStressFile("Rel1" ?cornerName "C1")
=>
"/servers/user/Reliability/simulation/library/cell/view/results/maestro/history/2/Test/netlist/input.bs0"
Returns the path of the stress file that is reused from the history Interactive.2 for the reliability setup Rel1:
maeGetStressFile("Rel1" ?historyName "Interactive.2")
=>
"/servers/user/Reliability/simulation/library/cell/view/results/maestro/history/3/Test/netlist/input.bs0"
Returns the path of the stress file that is reused from the run Run.0 for the reliability setup Rel1:
maeGetStressFile("Rel1" ?run "Run.0")
=>
"/servers/user/Reliability/simulation/library/cell/view/results/maestro/history/4/Test/netlist/input.bs0"
Consider the following setup in which the variable cload is a sweep variable. Note that the corner C0 is also swept for different values of vdc.

When you run the reliability setup Reliability0, six stress files are generated for the following design points:
-
cload=1f,vdc=1.8(C0_0) -
cload=2f,vdc=1.8(C0_0) -
cload=1f,vdc=2.0(C0_1) -
cload=2f,vdc=2.0(C0_1) -
cload=1f,vdc=2.2(C0_2) -
cload=2f,vdc=2.2(C0_2)
To identify the design point from which you want to reuse the stress file, use the ?matchParams argument as follows:
maeGetStressFile("Reliability0" ?matchParams list(list("cload" "1f") list("vdc" "1.8")))
maeGetStressFile("Reliability0" ?matchParams list(list("cload" "2f") list("vdc" "1.8")))
maeGetStressFile("Reliability0" ?matchParams list(list("cload" "1f") list("vdc" "2.0")))
maeGetStressFile("Reliability0" ?matchParams list(list("cload" "2f") list("vdc" "2.0")))
maeGetStressFile("Reliability0" ?matchParams list(list("cload" "1f") list("vdc" "2.2")))
maeGetStressFile("Reliability0" ?matchParams list(list("cload" "2f") list("vdc" "2.2")))
Return to top