Home / Boundary Condition Settings / CMechanical / Property / bSlideFixA
bSlideFixA Property
Syntax
bSlideFixA As Boolean| Gets the value | Yes | |
| Sets the value | Yes |
Parameters
No parametersNotes
Sets or gets whether to constrain the normal displacement in the acceleration (yes if true; no if false).Example
Dim Femtet As New CFemtetDim Bnd As CBoundary
If Femtet.OpenNewProject() = False Then
Femtet.ShowLastError
End If
'Substitute Femtet.Boundary for variable Bnd.
Set Bnd = Femtet.Boundary
Bnd.Add "BoundaryA"
Bnd.Mechanical(0).Condition = ACCEL_C
Bnd.Mechanical(0).SetA 0, 0, 0
Bnd.Mechanical(0).bSlideFixA = True


