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:
- Properties
- NearFieldDataFileStructure object has property CylindricalStructure.
- Methods
- CylindricalStructureList object has method Append().
- CylindricalStructureList object has method Get(number).
Property List
- Height
- The height of the cylindrical face. (Read/Write NormalDimension)
- 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
- NormalDimension
- 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