CylindricalStructure

The cylindrical coordinate system source description.

Example

application = cf.Application.getInstance()
project = application: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.Definitions.FieldDataList:AddNearFieldDataFileStructure(properties)

    -- Change the height of the cylindrical face

nearFieldData.CylindricalStructure.Height = "4"

Inheritance

The CylindricalStructure object is derived from the CompositeValue object.

Usage locations

The CylindricalStructure object can be accessed from the following locations:

Property List

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

Property Details

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