CylindricalYPoint

The cylindrical (Y axis) request point.

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)

    -- Get the start of the Cylinder

cylindricalPoint = nearField.CylindricalYRequestPoints.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 Z coordinate of the point, which is 0 

y = cylindricalPoint.Y


Usage locations (object properties)

The following objects have properties using the CylindricalYPoint object:

Property List

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

Property Details

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