Forum Message

 

 

We have moved the forum to https://forum.ngsolve.org . This is an archived version of the topics until 05/05/23. All the topics were moved to the new forum and conversations can be continued there. This forum is just kept as legacy to not invalidate old links. If you want to continue a conversation just look for the topic in the new forum.

Notice

The forum is in read only mode.

Elasto-Plasticity

More
1 year 5 months ago #4530 by khuldoon
Elasto-Plasticity was created by khuldoon
Hello everyone,

I am trying to recreate the fenics example of plasticity (code and output attached). The NGSolve example uses the potential approach but I personally wanted to try the return mapping algorithm for trial stress shown by fenics. The fenics examples combines the elastic and plastic calculations in one step (such that there are no plastic corrections to the stress in the elastic region) and uses the concept of projection on quadrature spaces for computations of stresses and plastic strains with a custom integration measure for the quadrature space.

In the fenics example, they get a different initial norm for the right hand side compared to my version and after one successful solution of the system (enough for the initial elastic steps), the displacement increment that they get is totally different because they residuum norm is different and thus with the displacement increment they get, the external load and the internal strain energy are balanced. My initial external load gets a very different norm (as a Linear Form)  compared to their external load and the displacement increment I get does not balance out the external work and internal strain energy thus my residual norm does not go to zero.

The weird thing is that my disp_inc is correct (albeit for the wrong external load) because substracting the external work and the internal energy (even though they are different) still gives me zero solution for the next iteration as it should because the internal energy is subtracted from the external work on the right hand side and thus the linear system gives a zero solution (as it should).

I have seen that there are some DOFs at which there is a discrepancy between external load.vec and internal energy.vec but this shouldn't be so but then why is the solution zero?

I have attached python scripts for my example (Small_Strain_Plasticity_2D.py) and the fenics script (Fenics_plasticity.py) as well as outputs from both codes as well.

Please let me know whether there is an error in the computation of my external load vector and if so why?

Best regards
Khuldoon Usman
More
1 year 5 months ago #4531 by khuldoon
Replied by khuldoon on topic Elasto-Plasticity
I want to add files but I cannot, gives me error " Unable to get properties from the image"
More
1 year 5 months ago #4533 by christopher
Replied by christopher on topic Elasto-Plasticity
Hi, yes sorry we have problems with attachments in the forum right now due to kunena/joomla problems... Can you upload the files somewhere else (ie. a github gist) and give a link to it?
More
1 year 5 months ago - 1 year 5 months ago #4534 by khuldoon
Replied by khuldoon on topic Elasto-Plasticity
Hello Dr. Lehrenfeld,

I have uploaded all the files in the following repo:
github.com/khuldoon1994/plasticity_problem

The fenics' files are the code (fenics_plasticity.py) and its corresponding output (fenics_plasticity_out.txt).
My own version in NG solve also has a code (Small_Strain_Plasticity_2D.py) and the corresponding output (Small_Strain_Plasticity_2D_out.txt)

One more thing to add is that the discrepancy between the internal strain energy and the external work purely arises from the DirichletBCs. If you define two linear forms, one for computing the strain energy with the known stress and the other for computing the external work with the known force. Then, the norms of these two forms is different due to the dirichlet BCs imposed when solving for the displacement increment from which stress is then calculated.

Moreover, further refining the mesh with finer elements not only gives a different solution norm and residual norm but even the neumann boundary load computed has a different norm
Last edit: 1 year 5 months ago by khuldoon.
More
1 year 5 months ago #4537 by mrambausek
Replied by mrambausek on topic Elasto-Plasticity
I'll probably find some time to look at this issue today as well and keep you posted...
Best,
Matthias
More
1 year 5 months ago #4538 by mrambausek
Replied by mrambausek on topic Elasto-Plasticity
So, after having a first look: in the NGSolve version, "source" does not have boundary conditions applied, i.e. you still have reaction forces corresponding to nodes with Dirichlet boundary conditions.
You can kick these out with
Code:
        nRes = Norm(bc_projector * source.vec) print("Norm res:", nRes)
where is defined upfront as
Code:
bc_projector = Projector(V.FreeDofs(), True)

This will give you vanishing residual in the elastic regime (i.e. Newton converges after first step).

In the inelastic regime, there seems to be an issue with "Jacobian" stress as Newton does not converge.
I did not spot the bug though.
Besides that, I found it unusual, that you have used (u...trial func, v... tst func)
Code:
InnerProduct(Strain(u), Jacobian_stress(Strain(v)))
This is consistent with your FEniCS implementation, but I would have guessed that you need
Code:
InnerProduct(Strain(v), Jacobian_stress(Strain(u)))
instead. In my test, it didn't make a difference though, maybe shadowed by "the" bug?
(didn't run FEniCS yet to see whether it makes a difference there)
Time to create page: 0.158 seconds