NearFieldBoundarySurface

The near field Cartesian boundary surface settings.

Example

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

    -- Add a NearFiled starting at (1,0,0) ending at (0,0,0) with 11 points along X

nearField = project.SolutionConfigurations[1].NearFields:AddCartesianBoundary(0,0,0,
                                                                      1,1,1,
                                                                      11,11,11)

boundarySurface = nearField.BoundarySurface

    -- Get enabled state of the positive U face of the Cartesian bounding box

positiveUEnabled = boundarySurface.PositiveUEnabled

    -- Set the positive U face of the Cartesian bounding box to be disabled

boundarySurface.PositiveUEnabled = false



Usage locations (object properties)

The following objects have properties using the NearFieldBoundarySurface object:

Property List

NegativeNEnabled
Enables the negative N Cartesian boundary face. Only valid if DefinitionMethod is CartesianBoundary. (Read/Write boolean)
NegativeUEnabled
Enables the negative U Cartesian boundary face. Only valid if DefinitionMethod is CartesianBoundary. (Read/Write boolean)
NegativeVEnabled
Enables the negative V Cartesian boundary face. Only valid if DefinitionMethod is CartesianBoundary. (Read/Write boolean)
PositiveNEnabled
Enables the positive N Cartesian boundary face. Only valid if DefinitionMethod is CartesianBoundary. (Read/Write boolean)
PositiveUEnabled
Enables the positive U Cartesian boundary face. Only valid if DefinitionMethod is CartesianBoundary. (Read/Write boolean)
PositiveVEnabled
Enables the positive V Cartesian boundary face. Only valid if DefinitionMethod is CartesianBoundary. (Read/Write boolean)

Property Details

NegativeNEnabled
Enables the negative N Cartesian boundary face. Only valid if DefinitionMethod is CartesianBoundary.
Type
boolean
Access
Read/Write
NegativeUEnabled
Enables the negative U Cartesian boundary face. Only valid if DefinitionMethod is CartesianBoundary.
Type
boolean
Access
Read/Write
NegativeVEnabled
Enables the negative V Cartesian boundary face. Only valid if DefinitionMethod is CartesianBoundary.
Type
boolean
Access
Read/Write
PositiveNEnabled
Enables the positive N Cartesian boundary face. Only valid if DefinitionMethod is CartesianBoundary.
Type
boolean
Access
Read/Write
PositiveUEnabled
Enables the positive U Cartesian boundary face. Only valid if DefinitionMethod is CartesianBoundary.
Type
boolean
Access
Read/Write
PositiveVEnabled
Enables the positive V Cartesian boundary face. Only valid if DefinitionMethod is CartesianBoundary.
Type
boolean
Access
Read/Write