Hi,
I am doing something similar to Interpolation problem from mesh to mesh. I am trying to model a composite problem where there is an inclusion embedded in the matrix. In the inclusion, there is a residual stress field P_r, which need to be calculated from another simlation. Here is what I am planning to do:
- Calculate a function P_r in the first simulation with
mesh1
; - During the first step, the function should be defined in the deformed configuration, so I have a set of deformed coordinates (x, y) and the corresponding function value, I will name it with P_r^*(x, y);
- Create a new mesh base on the displacement information in step 1;
- Apply this function as a flux term (residual stress) to the new mesh
mesh2
- Model the inclusion problem with residual stress in another hyperelastic simulation.
Since I want to do some parametric study, i.e. changing matrix’s modulus, volume fraction of the inclusion, is there an elegant way to interpolate P_r^*(x, y) to a function defined on mesh2
?
Note: It’s not easy to fit to some explicit form for this residual stress field.
Thank you in advance for any help!