I used the command CERIG to create some rigid links, but I am getting the following error message:

Label ROTZ is not an active DOF. The CERI command is ignored.

What does this mean, and what can I do to fix it?


The CERIG command is trying to form a rigid region controlled from one node, but if this one node has no rotational degree of freedom, then the rigid region could not rotate. The simplest way to resolve this is to add a massless mass element which has a ROTZ in it at the master node. Please see the following example:



finish
/clear

/prep7
rect,0,10,0,10
esize,1
et,1,42
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
! but since I don't have rotational DOF, I'll add a point mass
et,2,mass21,,,3
r,2,0
real,2
type,2
e,ndnext(0)
! 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!