NearFieldPowerIntegralData
Near field power integral results generated by the Feko Solver.
Example
app = pf.GetApplication() app:NewProject() app:OpenFile(FEKO_HOME..[[/shared/Resources/Automation/Example_Expanded.fek]]) -- Retrieve the 'NearFieldPowerIntegralData' called 'NearFields' nearFieldPowerData = app.Models[1].Configurations[1].NearFieldPowerIntegrals["NearFields"] -- Create a graph and add the near field power data to it graph = app.CartesianGraphs:Add() trace = graph.Traces:Add(nearFieldPowerData)
Inheritance
The NearFieldPowerIntegralData object is derived from the ResultData object.
Usage locations
The NearFieldPowerIntegralData object can be accessed from the following locations:
- Methods
- NearFieldPowerIntegralCollection collection has method Items().
- NearFieldPowerIntegralCollection collection has method Item(number).
- NearFieldPowerIntegralCollection 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.