ScrSetSyzInterpSweepParams

Sets the convergence criterion (error tolerance) and maximum number of points to use during SYZ interpolating sweeps.

UI Command:   Simulation > Compute SYZ Parameters. Select Interpolating Sweep and enter a value for Error Tolerance.
Syntax:   obj.ScrSetSyzInterpSweepParams(<convergence>, <maxInterpPts>)
Parameters:  

DOUBLE convergence

INT maxInterpPts

Return Value:  

BOOL

  • 0 – Failure
  • 1 – Success
VB Example:  

' outcome is TRUE on success, FALSE if "maxInterpPts" exceeds the number of discrete sweep points

outcome = obj.ScrSetSyzInterpSweepParams ( 0.005, 150)

IPY Example:  

oDoc.ScrSetSyzInterpSweepParams(0.005, 150)