🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

Directional RBE2 or RBE3

User: "Altair Forum User"
Altair Employee
Updated by Altair Forum User

Hi ,

 

 I need to crate set/comp of Rbe2/RBE3 elements which has specific direction (x,y,z). It is very easy to find all DOF rigid.

 

I need to find only X direction rigid in my model as we are using one directional rigid in bolt modelling .

Can any help me in this case. How to create macro file for this situation?.

 

Regards,

Nilesh Gadre

Find more posts tagged with

Sort by:
1 - 3 of 31
    User: "tinh"
    Altair Community Member
    Updated by tinh

    Hi Gadre,

    How do you create x-direction rigids on GUI?

    User: "Altair Forum User"
    Altair Employee
    OP
    Updated by Altair Forum User

    Hi,

     

    We have macro for creation of washer split along with combination of RBE2 and RBE3 in which RBE3 has all DOF and RBE 2 has direction perpendicular to plane of washer.

     

    Reagrds,

    Nileesh Gadre

    User: "tinh"
    Altair Community Member
    Updated by tinh

    Hi, suppose rbe2 have 2 nodes, this may work:

    *createmark elems 1 'by config' rigid rigidlink

    foreach eid [hm_getmark elems 1] {

         lassign [hm_nodelist $eid] node1 node2

         lassign [hm_getdistance nodes $node1 $node2] -> dx dy dz

         if {abs($dy)>1e-4 || abs($dz)>1e-4} {

              hm_markremove elems 1 $eid

         }

    }

    hm_highlightmark elems 1 h

    set xdir_rbe2_list [hm_getmark elems 1]