CylindricalRequestPoints

The cylindrical request point positions.

Example

app = cf.GetApplication()
project = app:NewProject()

    -- Add a Cylindrical NearFiled starting at (0,0,0) extending up to a height of 1,
    -- an inner radius of 1 and an outer radius of 2.

nearField = project.SolutionConfigurations[1].NearFields:AddCylindrical(1,0,0,
                                                                      2,360,1,
                                                                      3,21,11)

cylindricalRequestPoints = nearField.CylindricalRequestPoints

    -- Get the Phi coordinate of the start of the NearField, which is 0 degrees

startPhi = cylindricalRequestPoints.Start.Phi

    -- Get the Phi coordinate of the end of the NearField, which is 360 degrees

endPhi = cylindricalRequestPoints.End.Phi



Usage locations (object properties)

The following objects have properties using the CylindricalRequestPoints object:

Property List

End
The end point. (Read only CylindricalPoint)
Increment
The increment per axis. Only valid if PointSpecificationMethod is Increment. (Read only CylindricalPoint)
NumberOfPoints
The number of points per axis. Only valid if PointSpecificationMethod is NumberOfPoints. (Read only CylindricalPoint)
Start
The start point. (Read only CylindricalPoint)

Property Details

End
The end point.
Type
CylindricalPoint
Access
Read only
Increment
The increment per axis. Only valid if PointSpecificationMethod is Increment.
Type
CylindricalPoint
Access
Read only
NumberOfPoints
The number of points per axis. Only valid if PointSpecificationMethod is NumberOfPoints.
Type
CylindricalPoint
Access
Read only
Start
The start point.
Type
CylindricalPoint
Access
Read only