compositeFEA
Mechanical
- Jun 26, 2011
- 9
Hello Ansys users,
My question is about the "Restart" technique, which allows to start an analysis from the last converged loadstep. I understand the concept and how to use it, but the problem comes up when I try to change the material number of an element prior to restart the analysis: at each *Do loop, the "Restart" command seems to "forget" the last modification of the material numbers. Here is a rough description of what I want to do:
With the previous code I expect to get 3 solutions:
1- The initial solution;
2- The 2nd solution with new loading and material of element 1 changed to #2;
3- The 3rd solution with new loading and material of elements 1 and 2 changed to #2.
Unfortunately, at step 3 the element 1 is back to its initial material number. I thought that adding a SAVE command at the end of the loop would rectify this, but it does not... So apparently there is something I don't understand regarding the combination of the RESTART technique and the modification of element properties.
Any advice would be appreciated. Thanks!
My question is about the "Restart" technique, which allows to start an analysis from the last converged loadstep. I understand the concept and how to use it, but the problem comes up when I try to change the material number of an element prior to restart the analysis: at each *Do loop, the "Restart" command seems to "forget" the last modification of the material numbers. Here is a rough description of what I want to do:
Code:
/PREP7
(...) ! Parameters, geometry, materials...
/SOLU
(...) ! Boundary conditions, loadings
NLGEOM,ON ! Large displ.
SOLVE ! First solution
*DO,j,1,2
/SOLU
PARSAV
ANTYPE,,REST ! Restart the analysis from the last converged loadstep
PARRES ! Bring back the parameters
MPCHG,2,j ! Change the material # of element j to #2
F,.... ! Change the loadings
ALLS
SOLVE ! Solution with new loadings, new material #, starting from the last converged solution
/POST1
(...) ! Verification of the rupture criteria, ....
SAVE ! Save the database
*ENDDO
With the previous code I expect to get 3 solutions:
1- The initial solution;
2- The 2nd solution with new loading and material of element 1 changed to #2;
3- The 3rd solution with new loading and material of elements 1 and 2 changed to #2.
Unfortunately, at step 3 the element 1 is back to its initial material number. I thought that adding a SAVE command at the end of the loop would rectify this, but it does not... So apparently there is something I don't understand regarding the combination of the RESTART technique and the modification of element properties.
Any advice would be appreciated. Thanks!