CylindricalRequestPoints

The cylindrical request point positions.

Example

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

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

endPhi = cylindricalRequestPoints.Phi.End

Inheritance

The CylindricalRequestPoints object is derived from the CompositeValue object.

Usage locations

The CylindricalRequestPoints 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)
Z
The Z 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
Z
The Z range of points.
Type
PointRange
Access
Read/Write