CylindricalXRequestPoints

The cylindrical (X axis) request point positions.

Example

application = cf.Application.GetInstance()
project = application: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.Contents.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.Phi.Start

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

endPhi = cylindricalXRequestPoints.Phi.End

Inheritance

The CylindricalXRequestPoints object is derived from the CompositeValue object.

Usage locations

The CylindricalXRequestPoints object can be accessed from the following locations:

Property List

Phi
The Phi range of points. (Read/Write PointAngleRange)
Rho
The Rho range of points. (Read/Write PointRange)
X
The X range of points. (Read/Write PointRange)

Property Details

Phi
The Phi range of points.
Type
PointAngleRange
Access
Read/Write
Rho
The Rho range of points.
Type
PointRange
Access
Read/Write
X
The X range of points.
Type
PointRange
Access
Read/Write