LoadDistributed

Distributed load results generated by the Feko Solver.

Example

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

    -- Retrieve the 'LoadDistributed' called 'LDLoad1'.

loadDistributed = app.Models[1].Configurations[1].Loads["LDLoad1"]

    -- Retrieve the load label and its associated solution configuration 
    
configuration = loadDistributed.Configuration
label = loadDistributed.label

Inheritance

The LoadDistributed object is derived from the LoadData object.

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.