CylindricalStructure

The cylindrical 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.Cylindrical
properties.CylindricalStructure.Height = "2"
properties.CylindricalStructure.Radius = "2"
properties.CylindricalStructure.NPoints = "11"
properties.CylindricalStructure.PhiPoints = "11"
properties.EFieldFilename = [[EFieldFileName]]
properties.HFieldFilename = [[HFieldFileName]]

nearFieldData = project.FieldDataList:AddNearFieldDataFileStructure(properties)

    -- Change the height of the cylindrical face
    
nearFieldData.CylindricalStructure.Height = "4"

Usage locations (object properties)

The following objects have properties using the CylindricalStructure object:

Property List

Height
The height of the cylindrical face. (Read/Write Expression)
NPoints
The number of points along N. (Read/Write Expression)
PhiPoints
The number of points along Phi. (Read/Write Expression)
Radius
The radius of the cylindrical face. (Read/Write Expression)

Property Details

Height
The height of the cylindrical face.
Type
Expression
Access
Read/Write
NPoints
The number of points along N.
Type
Expression
Access
Read/Write
PhiPoints
The number of points along Phi.
Type
Expression
Access
Read/Write
Radius
The radius of the cylindrical face.
Type
Expression
Access
Read/Write