SpiceProbeData
SpiceProbe results generated by the Feko Solver.
Example
app = pf.GetApplication() app:NewProject() app:OpenFile(FEKO_HOME..[[/shared/Resources/Automation/SpiceProbeTest.fek]]) -- Retrieve the 'SpiceProbesData' called 'CableProbe1' spiceProbeData = app.Models[1].Configurations[1].SpiceProbes["CableProbe1"] -- Add a cartesian graph. cartesianGraph = app.CartesianGraphs:Add() -- Add a SPICE probe trace. spiceProbesPlot = cartesianGraph.Traces:Add(app.Models[1].Configurations[1].SpiceProbes[1])
Inheritance
The SpiceProbeData object is derived from the ResultData object.
Usage locations
The SpiceProbeData object can be accessed from the following locations:
- Methods
- SpiceProbeCollection collection has method Items().
 - SpiceProbeCollection collection has method Item(number).
 - SpiceProbeCollection collection has method Item(string).
 
 
Property List
- Configuration
 - The result data's solution configuration in the model. (Read only SolutionConfiguration)
 - Label
 - The object label. (Read/Write string)
 - Type
 - The object type string. (Read only string)
 
Method List
- StoreData ()
 - Creates a local stored version of the result data. (Returns a ResultData object.)
 
Property Details
- Configuration
 - The result data's solution configuration in the model.
- Type
 - SolutionConfiguration
 - Access
 - Read only
 
 - Label
 - The object label.
- Type
 - string
 - Access
 - Read/Write
 
 - Type
 - The object type string.
- Type
 - string
 - Access
 - Read only
 
 
Method Details
- StoreData ()
 - Creates a local stored version of the result data.
- Return
 - ResultData
 - The new stored data.