SphericalStructure

The spherical coordinate system source description.

Example

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

    -- Create a 'NearFieldFileStructure' from a set of default properties

properties = cf.NearFieldDataFileStructure.GetDefaultProperties()
properties.CoordinateType = cf.Enums.NearFieldDataCoordinateTypeEnum.Spherical
properties.SphericalStructure.Radius = "2"
properties.SphericalStructure.ThetaPoints = "11"
properties.SphericalStructure.PhiPoints = "11"
properties.EFieldFilename = [[EFieldFileName]]
properties.HFieldFilename = [[HFieldFileName]]

nearFieldData = project.FieldDataList:AddNearFieldDataFileStructure(properties)

    -- Change the radius of the spherical shell
    
nearFieldData.SphericalStructure.Radius = "4"

Usage locations (object properties)

The following objects have properties using the SphericalStructure object:

Property List

PhiPoints
The number of points along Phi. (Read/Write Expression)
Radius
The radius of the spherical shell. (Read/Write Expression)
ThetaPoints
The number of points along Theta. (Read/Write Expression)

Property Details

PhiPoints
The number of points along Phi.
Type
Expression
Access
Read/Write
Radius
The radius of the spherical shell.
Type
Expression
Access
Read/Write
ThetaPoints
The number of points along Theta.
Type
Expression
Access
Read/Write