ScrSetTDCrosstalkScanParameters

Specifies the parameters for running a time domain Crosstalk Scan via ScrRunSimulation.

UI Command:   Simulation > Crosstalk Scan > Time Domain. Set values for solver options.
Syntax:  

obj.ScrSetTDCrosstalkScanParameters(<partNameList>, <refDesNameList>, <pinNameList>, <impedanceList>, <typeList>, <riseTimeList>, <voltageList>)

Parameters:  

ARRAY partNameList

ARRAY refDesNameList

ARRAY pinNameList

ARRAY impedanceList

ARRAY typeList ("1" represents Driver; "0" represents Receiver)

ARRAY riseTimeList

ARRAY voltageList

**Each input parameter is an array of strings, and the number of elements in the array should be the same for all parameters. The first 3 are used to identify the pin and the rest are parameters to apply for the pin.

Return Value:  

BOOL

  • 0 – Failure
  • 1 – Success
VB Example:  

obj.ScrSetTDCrosstalkScanParameters(parts, refdes, pins, impedances, types, risetimes, voltages)

IPY Example:  

parts = ["G83568-001", "IPD031-201"]

refdes = ["U1A1", "U2A5"]

pins = ["K7", "9"]

impedances = ["55ohms", "60"]

types = ["0", "1"]

risetimes = ["0", "6ns"]

voltages = ["0", "1.2V"]

oDoc.ScrSetTDCrosstalkScanParameters(parts, refdes, pins, impedances, types, risetimes, voltages)