Re: [deal.II] Obtaining the final position of the vertices

2019-03-20 Thread David F
Thank you very much. With those functions in DofTools I should be able to do what I need. Best, David. On Tuesday, 19 March 2019 17:41:32 UTC+1, Wolfgang Bangerth wrote: > > On 3/19/19 9:57 AM, David F wrote: > > > > I am not sure how to answer your question. I'm using a very basic a > setup

Re: [deal.II] Obtaining the final position of the vertices

2019-03-19 Thread Wolfgang Bangerth
On 3/19/19 9:57 AM, David F wrote: > > I am not sure how to answer your question. I'm using a very basic a setup > equivalent to step-8. Therefore, I have a solution vector with final > displacements where each entry corresponds to the displacement of a dof. My > aim is to find the initial

Re: [deal.II] Obtaining the final position of the vertices

2019-03-19 Thread David F
Dear prof. Bangerth, I am not sure how to answer your question. I'm using a very basic a setup equivalent to step-8. Therefore, I have a solution vector with final displacements where each entry corresponds to the displacement of a dof. My aim is to find the initial position of the vertices

Re: [deal.II] Obtaining the final position of the vertices

2019-03-19 Thread Wolfgang Bangerth
On 3/19/19 9:12 AM, David F wrote: > > I want to obtain the final position of the vertices (specifically, the > vertices at the faces), i.e., the deformed configuration. I think that a way > of doing this is by creating a set of points and using fe_values to > extrapolate the solution to those

[deal.II] Obtaining the final position of the vertices

2019-03-19 Thread David F
Hi all, I want to obtain the final position of the vertices (specifically, the vertices at the faces), i.e., the deformed configuration. I think that a way of doing this is by creating a set of points and using fe_values to extrapolate the solution to those points. However, I don't like the