Dear all
I am formulating a User element in which I required to store previous step strains
Though I am assigning the history variable hr(nh1) for the previous and hr(nh2) for the current step. But, during simulation values are not getting stored!! any suggestions about what probably going wrong?
do i = 1,3
en(i) = hr(nh1+nn) ! getting previously stored strains
end do
And updating the history with,
do i = 1,3
hr(nh2+nn) = ee(i)
end do
For each step, I am getting en as a zero vector.
Thanks in advance!