CylindricalXRequestPoints

The cylindrical (X axis) request point positions.

Example

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

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

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

cylindricalXRequestPoints = nearField.CylindricalXRequestPoints

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

startPhi = cylindricalXRequestPoints.Start.Phi

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

endPhi = cylindricalXRequestPoints.End.Phi



Usage locations (object properties)

The following objects have properties using the CylindricalXRequestPoints object:

Property List

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

Property Details

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