CylindricalYRequestPoints
The cylindrical (Y axis) request point positions.
Example
application = cf.Application.getInstance() project = application: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.Contents.SolutionConfigurations[1].NearFields:AddCylindricalY(1,0,0, 2,360,1, 3,21,11) cylindricalYRequestPoints = nearField.CylindricalYRequestPoints -- Get the Phi coordinate of the start of the NearField, which is 0 degrees startPhi = cylindricalYRequestPoints.Phi.Start -- Get the Phi coordinate of the end of the NearField, which is 360 degrees endPhi = cylindricalYRequestPoints.Phi.End
Inheritance
The CylindricalYRequestPoints object is derived from the CompositeValue object.
Usage locations
The CylindricalYRequestPoints object can be accessed from the following locations:
- Properties
- NearField object has property CylindricalYRequestPoints.
- Methods
- CylindricalYRequestPointsList object has method Append().
- CylindricalYRequestPointsList object has method Get(number).
Property List
- Phi
- The Phi range of points. (Read/Write PointAngleRange)
- Rho
- The Rho range of points. (Read/Write PointRange)
- Y
- The Y 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
- Y
- The Y range of points.
- Type
- PointRange
- Access
- Read/Write