Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by marscosta

  1. marscosta

    UEL subroutine problem reading "coords" variable

    Hello akabarten, You were right, the problem was the debug function. After printing the contents of coords without any assist the coordinates were correctly printed. Upon debugging, the culprit was: real, dimension(n,m) :: A Changing it to dimension A(n,m) Fixed the problem. Now I'm a...
  2. marscosta

    UEL subroutine problem reading "coords" variable

    Hello akabarten, This is the code: subroutine debug_matriz(A,n,m,B,C) include 'ABA_PARAM.INC' real, dimension(n,m) :: A character(len=*), intent(in) :: B character(len=*), intent(in) :: C open(unit=2, file=B, ACTION="write")...
  3. marscosta

    UEL subroutine problem reading "coords" variable

    So I'm building a UEL subroutine and I'm having a basic problem: the coordinates of the nodes of my custom element are not being read correctly. In my inp file I have a simple model (two solid elements and one cohesive zero-thickness element): *Node 1, 0.,0., 2, 1.,0., 3, 0.,1., 4, 1.,1...

Part and Inventory Search

Back
Top