Hello!
I have a problem when using the MESH comand to change a material parameter during computation.
I am using a user element with 4 degrees of freedom in every node, and I'm using partitions to solve the problem:
PART
1 1 0 0
0 0 1 1
My code for computing the solution looks like this:
BATCh
DT,,0.01
LOOP,time,10
TIME
PART,,1
LOOP,iter,20
UTAN,,1
NEXT,iter
PART,,2
LOOP,iter,20
UTAN,,1
NEXT,iter
NEXT,time
END
BATCh
MESH,matchange
END
BATCh
DT,,0.01
LOOP,time,15
TIME
PART,,1
LOOP,iter,20
UTAN,,1
NEXT,iter
PART,,2
LOOP,iter,20
UTAN,,1
NEXT,iter
NEXT,time
END
In the file matchange, I copy the material set that I want to change, with the new value of the desired parameter. As it is written in the manual, the file matchange ends with the command END.
It is working fine when I have a monolithic solution procedure, but when I use partitions like it is shown in the example above, it doesn't compute the solution properly after the change of parameters.
Do you know where the issue could be?
Thanks in advance!