ResultData

Result data that can be plotted.

Example

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

    -- Get some result data items
    
resultDataTable = {}
resultDataTable[1] = app.Models[1].Configurations[1].FarFields[1]
resultDataTable[2] = app.Models[1].Configurations[1].Power[1]
resultDataTable[3] = app.Models[1].Configurations[1].NearFields[1]
    
    -- Print the labels of the data items
    
for index, item in pairs(resultDataTable) do
    print("ResultData item " .. index .. " has label \"" .. item.Label .. "\"")
end

Inheritance

The following objects are derived (specialisations) from the ResultData object:

Usage locations (object properties)

The following objects have properties using the ResultData object:

Property List

Label
The object label. (Read/Write string)

Property Details

Label
The object label.
Type
string
Access
Read/Write