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...
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")...
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...