SphericalRequestPoints

The spherical request point positions.

Example

app = cf.GetApplication()
project = app:NewProject()

    -- Add a Spherical NearFiled 
    -- that spans the quadrant with phi = [0,90] and theta = [-45,45]
    -- with an inner radius 1 and outer radius 2

nearField = project.SolutionConfigurations[1].NearFields:AddSpherical(1,0,-45,
                                                                      2,90,45,
                                                                      5,11,11)

 
sphericalRequestPoints = nearField.SphericalRequestPoints

    -- Get the Phi coordinate of the start of the NearField, which is 0

startPhi = sphericalRequestPoints.Start.Phi

    -- Get the Phi coordinate of the end of the NearField, which is 45

endPhi = sphericalRequestPoints.End.Phi



Usage locations (object properties)

The following objects have properties using the SphericalRequestPoints object:

Property List

End
The end point. (Read only SphericalPoint)
Increment
The increment per axis. Only valid if PointSpecificationMethod is Increment. (Read only SphericalPoint)
NumberOfPoints
The number of points per axis. Only valid if PointSpecificationMethod is NumberOfPoints. (Read only SphericalPoint)
Start
The start point. (Read only SphericalPoint)

Property Details

End
The end point.
Type
SphericalPoint
Access
Read only
Increment
The increment per axis. Only valid if PointSpecificationMethod is Increment.
Type
SphericalPoint
Access
Read only
NumberOfPoints
The number of points per axis. Only valid if PointSpecificationMethod is NumberOfPoints.
Type
SphericalPoint
Access
Read only
Start
The start point.
Type
SphericalPoint
Access
Read only