SARStoredData

Stored SAR results.

Example

app = pf.GetApplication()
app:NewProject()
app:OpenFile(FEKO_HOME..[[/shared/Resources/Automation/SAR_Example.fek]])

    -- Obtain a 'SARStoredData' object

sar = app.Models[1].Configurations[1].SAR
sarData = sar["SAR1"]   
sarStoredData = sarData:StoreData()

    -- Print the label of the'SARStoredData' object
    
print("Stored data (in the project browser window) : " .. sarStoredData.Label)

Inheritance

The SARStoredData object is derived from the ResultData object.

Property List

Label
The object label. (Read/Write string)
Type
The object type string. (Read only string)

Method List

Delete ()
Delete the stored data.
GetDataSet ()
Returns a data set containing the SAR values. (Returns a DataSet object.)
GetDataSet (samplePoints number)
Returns a data set containing the SAR values. (Returns a DataSet object.)
GetDataSet (startFrequency number, endFrequency number, samplePoints number)
Returns a data set containing the SAR values. (Returns a DataSet object.)

Property Details

Label
The object label.
Type
string
Access
Read/Write
Type
The object type string.
Type
string
Access
Read only

Method Details

Delete ()
Delete the stored data.
GetDataSet ()
Returns a data set containing the SAR values.
Return
DataSet
The data set containing the SAR values.
GetDataSet (samplePoints number)
Returns a data set containing the SAR values.
Input Parameters
samplePoints(number)
The number of sample points used to sample the continuous frequency axis.
Return
DataSet
The data set containing the SAR values.
GetDataSet (startFrequency number, endFrequency number, samplePoints number)
Returns a data set containing the SAR values.
Input Parameters
startFrequency(number)
The start frequency used to sample the continuous frequency axis.
endFrequency(number)
The end frequency used to sample the continuous frequency axis.
samplePoints(number)
The number of sample points used to sample the continuous frequency axis.
Return
DataSet
The data set containing the SAR values.