Dear all,
I'm now programming my own 3D element, and using single element to test its ability. Unfortunately, I came across the following problem:
(1) Model description:
single element with one surface is fixed in x1 direction, and applying tension load on the opposite surface. (see attached IUEX input file and solve.UEX )
(2) Problem
The strain are excessively large at the beginning. as shown in figure 1 and figure2. "time" denotes current time.
(3) Part of codes
do j = 1,nel
strn(1) = strn(1) + ul(1,j,1)*shp(1,j)
strn(2) = strn(2) + ul(2,j,1)*shp(2,j)
strn(3) = strn(3) + ul(3,j,1)*shp(3,j)
strn(4) = strn(4) + 0.5d0*(ul(2,j,1)*shp(1,j)
& + ul(1,j,1)*shp(2,j)) ! exy
strn(5) = strn(5) + 0.5d0*(ul(3,j,1)*shp(2,j)
& + ul(2,j,1)*shp(3,j)) ! eyz
strn(6) = strn(6) + 0.5d0*(ul(3,j,1)*shp(1,j)
& + ul(1,j,1)*shp(3,j)) ! ezx
end do
Thank all, I appreciate any help.
Best