CylindricalYRequestPoints

The cylindrical (Y axis) request point positions.

Example

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

    -- Add a Cylindrical NearFiled starting at (0,0,0) extending along Y to a width of 1,
    -- an inner radius of 1 and an outer radius of 2.
    
nearField = project.SolutionConfigurations[1].NearFields:AddCylindricalY(1,0,0,
                                                                      2,360,1,
                                                                      3,21,11)

cylindricalYRequestPoints = nearField.CylindricalYRequestPoints

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

startPhi = cylindricalYRequestPoints.Start.Phi

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

endPhi = cylindricalYRequestPoints.End.Phi



Usage locations (object properties)

The following objects have properties using the CylindricalYRequestPoints object:

Property List

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

Property Details

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