Subroutine ORIENT
Subroutine ORIENT
(OP)
Dear All,
I'm totally new in Abaqus subroutines and currently I intend to use the subroutine ORIENT. The question is how can I assign various material orientations to different sections of a body. More clearly, I need to define two different material orientations to a bisection solid via ORIENT coding. I managed to do it in the Abaqus/CAE, but I need to perform the same work by the mentioned user subroutine.
I appreciate any advice in advance.
I'm totally new in Abaqus subroutines and currently I intend to use the subroutine ORIENT. The question is how can I assign various material orientations to different sections of a body. More clearly, I need to define two different material orientations to a bisection solid via ORIENT coding. I managed to do it in the Abaqus/CAE, but I need to perform the same work by the mentioned user subroutine.
I appreciate any advice in advance.





RE: Subroutine ORIENT
Are you new to this forum? If so, please read these FAQ:
http://www.eng-tips.com/faqs.cfm?fid=376
http://www.eng-tips.com/faqs.cfm?fid=1083
RE: Subroutine ORIENT
SUBROUTINE ORIENT(T,NOEL,NPT,LAYER,KSPT,COORDS,BASIS,ANAME,
1 NNODES,CNODES,JNNUM)
include 'aba_param.inc'
C
CHARACTER*80 ANAME
DIMENSION T(3,3),COORDS(3),BASIS(3,3),CNODES(3,NNODES)
DIMENSION JNNUM(NNODES)
C
defining the T array should be implemented here
C
RETURN
END
now here the question arises that how it's possible (which commands should be used?) to assign two different orientation to two sections in the above subroutine, one for section 1 and one for the another section.
RE: Subroutine ORIENT
Are you new to this forum? If so, please read these FAQ:
http://www.eng-tips.com/faqs.cfm?fid=376
http://www.eng-tips.com/faqs.cfm?fid=1083
RE: Subroutine ORIENT
RE: Subroutine ORIENT
Are you new to this forum? If so, please read these FAQ:
http://www.eng-tips.com/faqs.cfm?fid=376
http://www.eng-tips.com/faqs.cfm?fid=1083