Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Fem Namespace / Beam2D Class / CalcMomentAndForces Method
The nodes of the FemMesh
The parameter, comprised between 0 and the beam length
The bending moment
The shear force
The axial force

In This Topic
    CalcMomentAndForces Method
    In This Topic
    Computes the bending moment and the shear force of the beam at the specified point.
    Syntax
    'Declaration
     
    Public Sub CalcMomentAndForces( _
       ByVal nodes() As Point3D, _
       ByVal t As Double, _
       ByRef bendingMoment As Double, _
       ByRef shearForce As Double, _
       ByRef axialForce As Double _
    ) 
    public void CalcMomentAndForces( 
       Point3D[] nodes,
       double t,
       out double bendingMoment,
       out double shearForce,
       out double axialForce
    )

    Parameters

    nodes
    The nodes of the FemMesh
    t
    The parameter, comprised between 0 and the beam length
    bendingMoment
    The bending moment
    shearForce
    The shear force
    axialForce
    The axial force
    See Also