Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Fem Namespace / Beam Class / CalcForces Method
The nodes of the FemMesh
The parameter, comprised between 0 and the beam length
The axial force at t
The shear force parallel to the local V axis at t
The shear force parallel to the local W axis at t

In This Topic
    CalcForces Method
    In This Topic
    Computes the axial and shear forces of the beam at the specified point.
    Syntax
    'Declaration
     
    Public Sub CalcForces( _
       ByVal nodes() As Point3D, _
       ByVal t As Double, _
       ByRef axial As Double, _
       ByRef shearV As Double, _
       ByRef shearW As Double _
    ) 
    public void CalcForces( 
       Point3D[] nodes,
       double t,
       out double axial,
       out double shearV,
       out double shearW
    )

    Parameters

    nodes
    The nodes of the FemMesh
    t
    The parameter, comprised between 0 and the beam length
    axial
    The axial force at t
    shearV
    The shear force parallel to the local V axis at t
    shearW
    The shear force parallel to the local W axis at t
    See Also