eng23bio
Structural
- Oct 11, 2011
- 24
Hi everybody!
I would like to use the DISP subroutine to impose displacements in some nodes. Since I am new with this subroutine I am trying with a simple experiment....
SUBROUTINE DISP(U,KSTEP,KINC,TIME,NODE,NOEL,JDOF,COORDS)
C
INCLUDE 'ABA_PARAM.INC'
C
DIMENSION U(3),TIME(2),COORDS(3)
C
PRINT*,'----the program goes past this point-----'
IF(NODE.EQ.10.AND.JDOF.EQ.1) THEN
U(1)=2
ENDIF
RETURN
END
.... but it simply does not work. It does not even write the '----the program goes past this point-----' line. Any ideas about what I'm missing?
Thank you!
I would like to use the DISP subroutine to impose displacements in some nodes. Since I am new with this subroutine I am trying with a simple experiment....
SUBROUTINE DISP(U,KSTEP,KINC,TIME,NODE,NOEL,JDOF,COORDS)
C
INCLUDE 'ABA_PARAM.INC'
C
DIMENSION U(3),TIME(2),COORDS(3)
C
PRINT*,'----the program goes past this point-----'
IF(NODE.EQ.10.AND.JDOF.EQ.1) THEN
U(1)=2
ENDIF
RETURN
END
.... but it simply does not work. It does not even write the '----the program goes past this point-----' line. Any ideas about what I'm missing?
Thank you!