CylindricalXPoint

The cylindrical (X axis) request point.

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)

    -- Get the start of the Cylinder

cylindricalPoint = nearField.CylindricalXRequestPoints.Start

    -- Get the Phi coordinate of the point, which is 0 degrees

phi = cylindricalPoint.Phi

    -- Get the Rho coordinate of the point, which is 1

rho = cylindricalPoint.Rho

    -- Get the X coordinate of the point, which is 0 

x = cylindricalPoint.X


Usage locations (object properties)

The following objects have properties using the CylindricalXPoint object:

Property List

Phi
The Phi value. (Read/Write Expression)
Rho
The Rho value. (Read/Write Expression)
X
The X value. (Read/Write Expression)

Property Details

Phi
The Phi value.
Type
Expression
Access
Read/Write
Rho
The Rho value.
Type
Expression
Access
Read/Write
X
The X value.
Type
Expression
Access
Read/Write