CylindricalDescription

The description of an analytical curve using the cylindrical coordinate system.

Example

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

    -- Define two local variables used to create a cylindrical analytical curve 
    
rho = "t*sqrt(1+t^2)"
phi = "deg(arctan(t))"

analyticalCurve = project.Geometry:AddAnalyticalCurveCylindrical(0, 1, rho, phi, 0)

    -- Access the cylindrical description and change Phi

analyticalCurve.CylindricalDescription.Phi = "t*deg(arctan(t))"

Usage locations (object properties)

The following objects have properties using the CylindricalDescription object:

Property List

N
The curve description in the N dimension as a function of variable t. (Read/Write Expression)
Phi
The curve description in the phi dimension as a function of variable t. (Read/Write Expression)
Rho
The curve description in the rho dimension as a function of variable t. (Read/Write Expression)

Property Details

N
The curve description in the N dimension as a function of variable t.
Type
Expression
Access
Read/Write
Phi
The curve description in the phi dimension as a function of variable t.
Type
Expression
Access
Read/Write
Rho
The curve description in the rho dimension as a function of variable t.
Type
Expression
Access
Read/Write