maeCloseSession
maeCloseSession( [?sessiont_sessionName] [?forceCloseg_forceClose] ) => t/ nil
Description
Closes the sessions opened using maeOpenSetup in the SKILL code. This function cannot be used to close the sessions opened from the Virtuoso user interface.
Arguments
|
A Boolean value that specifies whether the current session needs to be closed immediately or not if simulations are pending. In both cases, appropriate information messages are added to the log. |
||
Value Returned
|
Closes the sessions opened using |
||
Examples
Closes the session fnxSession2 that is opened using the function maeOpenSetup and edited using the function maeSetSetup.
; load the setup
maeOpenSetup("solutions" "ampTest" "maestro")
=>"fnxSession2"
; check which tests are there in setup
maeGetSetup()
=> ("solutions"amptest:1" "solutions:amptest:2")
; Enable a test "solution:amptest:1"
maeSetSetup(?tests '("solutions:amptest:1"))
; Set the value of global variable
"CAP" as 5p: maeSetVar("CAP" 5p)
; Disable corners C0 and C1
maeSetSetup(?corners '("C0" "C1") ?enabled nil)
; save changes in the cellview maeSaveSetup()
; Run Simulation
maeRunSimulation()
maeCloseSession() => t
; The tool waits for the simulation to complete before closing the session
Related Topics
Return to top