asiDcStore
asiDcStore(o_sessiont_fileName) =>t/nil
Description
Copies the DC node voltages in processId.dc to the name you pass in fileName. This function assumes that your simulator writes the DC node voltages to netlistDir/raw/processId.dc.
Note for Integrators: This function is defined as a method for the Analog Class. You can overload this method for your simulator class, as shown in the example for integrators.
Arguments
Value Returned
Examples
defmethod( asiDcStore ( ( session XYZ_session ) fileName ) let( ( netlistDirprocessIdstr ) netlistDir = asiGetNetlistDir(session)
processId= asiGetSimProcessId(session) str = strcat( "/bin/cp " netlistDir "/raw/"processId".dc " fileName )
system( str )
t
)
)
Return to top