Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Fem Namespace / Beam Class / CalcMoments Method
The nodes of the FemMesh
The parameter, comprised between 0 and the beam length
The torsion moment at t
The bending moment around the local V axis at t
The bending moment around the local W axis at t

In This Topic
    CalcMoments Method
    In This Topic
    Computes the torsion and bending moments of the beam at the specified point.
    Syntax
    'Declaration
     
    Public Sub CalcMoments( _
       ByVal nodes() As Point3D, _
       ByVal t As Double, _
       ByRef torsion As Double, _
       ByRef bendingV As Double, _
       ByRef bendingW As Double _
    ) 
    public void CalcMoments( 
       Point3D[] nodes,
       double t,
       out double torsion,
       out double bendingV,
       out double bendingW
    )

    Parameters

    nodes
    The nodes of the FemMesh
    t
    The parameter, comprised between 0 and the beam length
    torsion
    The torsion moment at t
    bendingV
    The bending moment around the local V axis at t
    bendingW
    The bending moment around the local W axis at t
    See Also