CartesianStructure

The cartesian 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.Cartesian
properties.CartesianStructure.Height = "2"
properties.CartesianStructure.Width = "2"
properties.CartesianStructure.UPoints = "11"
properties.CartesianStructure.VPoints = "11"
properties.EFieldFilename = [[EFieldFileName]]
properties.HFieldFilename = [[HFieldFileName]]

nearFieldData = project.Definitions.FieldDataList:AddNearFieldDataFileStructure(properties)

    -- Change the height of the cartesian face

nearFieldData.CartesianStructure.Height = "4"

Inheritance

The CartesianStructure object is derived from the CompositeValue object.

Usage locations

The CartesianStructure object can be accessed from the following locations:

Property List

Height
The height of the Cartesian face. (Read/Write Dimension)
UPoints
The number of points along U. (Read/Write ParametricExpression)
VPoints
The number of points along V. (Read/Write ParametricExpression)
Width
The width of the Cartesian face. (Read/Write Dimension)

Property Details

Height
The height of the Cartesian face.
Type
Dimension
Access
Read/Write
UPoints
The number of points along U.
Type
ParametricExpression
Access
Read/Write
VPoints
The number of points along V.
Type
ParametricExpression
Access
Read/Write
Width
The width of the Cartesian face.
Type
Dimension
Access
Read/Write