I would like to create a rigid region of nodes. Is it possible?


To create a rigid region, you can use CERIG (you could also just make the modulus of those elements really high, but you may run into condition issues there). The attached simple input file demonstrates the idea. It is worth noting that you may want to delete the rigid elements before creating the rigid region, but leaving them in for the purpose of this example shows that the elements carry no load.




finish
/clear

/prep7
rect,0,10,0,10
esize,1
et,1,181
r,1,1/10
mp,ex,1,2e5
mp,nuxy,1,0.3
amesh,1
nsel,s,loc,x
d,all,ux
nsel,s,loc,y
d,all,uy
nsel,s,loc,y,10
cp,next,uy,all
f,ndnext(0),fy,100

! I'll arbitrarily choose a region to be rigid
nsel,s,loc,x,5,10
nsel,r,loc,y,3,6
! then, I'll use CERIG to make it rigid
cerig,ndnext(0),all,all

! you may want to delete the unneeded nodes elements
! before creating the rigid region, but they are left
! here to demonstrate that they carry no load

nsel,all
finish

/solu
solve
finish

/post1
/view,,1,2,3
plesol,s,y





Show Form
No comments yet. Be the first to add a comment!