ModelCollection
A collection of Feko models.
Example
app = pf.GetApplication() app:NewProject() app:OpenFile(FEKO_HOME..[[/shared/Resources/Automation/startup.fek]]) -- Get the model count and access the 'Model' modelCount = #app.Models startupModel = app.Models["startup"]
Usage locations
The ModelCollection object can be accessed from the following locations:
- Collection lists
- Application object has collection Models.
Property List
Method List
- Contains (label string)
- Checks if the collection contains an item with the given label. (Returns a boolean object.)
- Item (index number)
- Returns the Model at the given index. (Returns a Model object.)
- Item (label string)
- Returns the Model with the given label. (Returns a Model object.)
- Items ()
- Returns a table of Model. (Returns a List of Model object.)
- UniqueName (label string)
- Generates a unique name base of of the provided base name.If the base name already exists in the collection, a digit will be appended until a valid name is generated. (Returns a boolean object.)
Index List
Property Details
Method Details
- Contains (label string)
- Checks if the collection contains an item with the given label.
- Item (index number)
- Returns the Model at the given index.
- Item (label string)
- Returns the Model with the given label.
- Items ()
- Returns a table of Model.
- UniqueName (label string)
- Generates a unique name base of of the provided base name.If the base name already exists in the collection, a digit will be appended until a valid name is generated.