RayCollection
A collection of ray results.
Example
app = pf.GetApplication() app:NewProject() app:OpenFile(FEKO_HOME..[[/shared/Resources/Automation/Dipole_Antenna_and_UTD_Plate.fek]]) RayCollection = app.Models[1].Configurations[1].Rays -- Add the first ray to the 3D view RayTrace1 = app.Views[1].Plots:Add(RayCollection[1]) -- Index method RayTrace2 = app.Views[1].Plots:Add(RayCollection["Rays1"]) -- Name method -- Add all the ray in the collection to the 3D view for index, RayData in pairs(RayCollection) do RayPlot = app.Views[1].Plots:Add(RayData) end
Usage locations
The RayCollection object can be accessed from the following locations:
- Collection lists
- SolutionConfiguration object has collection Rays.
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 RayData at the given index. (Returns a RayData object.)
- Item (label string)
- Returns the RayData with the given label. (Returns a RayData object.)
- Items ()
- Returns a table of RayData. (Returns a List of RayData 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 RayData at the given index.
- Item (label string)
- Returns the RayData with the given label.
- Items ()
- Returns a table of RayData.
- 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.