GetSolutionDataPerVariation
Obtains solution data for a given report type and solution. You must have already run a simulation.
| UI Access | N/A | ||||||||||||||||||
| Parameters |
|
||||||||||||||||||
| Return Value |
ARRAY of ISolutionDataResultComInterface objects, containing:
|
- This command is not recordable from the UI, but its parameters are similar to CreateReport, so you may record a CreateReport script to get the parameter values.
- For the returned ISolutionDataResultComInterface object, some of its functions have an optional boolean parameter: SIValue. SIValue defaults to True. When the pass in value is True, return data values will be in Standard International values; when False, return data values will be in the current units.
Example: Freq Sweep with [1GHz, 2GHz,3GHz], GetSweepUnits(“Freq”) return “GHz”; GetSweepValues(“Freq”, True) return [1000000,2000000,3000000]; GetSweepValues(“Freq”, False) return [1,2,3].
| Python Syntax | GetSolutionDataPerVariation(reportTypeArg, solutionNameArg, simValueCtxtArg, familiesArg, expressionArg) |
| Python Example |
|
| VB Syntax | GetSolutionDataPerVariation(reportTypeArg, solutionNameArg, simValueCtxtArg, familiesArg, expressionArg) |
| VB Example |
|