Re: [deal.II] Re: element birth using FE_Nothing and FE_Collection in time-dependent problem with adaptive mesh refinement

2024-01-24 Thread Magdalena
:41 Uhr schrieb luis miguel reig buades < luis.rei...@gmail.com>: > That worked! And it was fairly easy to implement. Thank you very much > Magdalena. > > However, it does not seem to apply the initial solution I specify to the > recently activated elements ( solution = 50. )

Re: [deal.II] Re: element birth using FE_Nothing and FE_Collection in time-dependent problem with adaptive mesh refinement

2024-01-22 Thread Magdalena
are averaged. Of course you have to decide yourself if the obtained values are still feasible for your computations. Best, Magdalena luis@gmail.com schrieb am Sonntag, 21. Januar 2024 um 22:37:19 UTC+1: > I have even tried to do add an initial solution like in this test: > https://gith

[deal.II] Re: Finding cut cells

2022-12-16 Thread Magdalena
... Sorry, there is a mistake in one of the last code lines. It should be: // append cell if it is cut by the interface if (surface_vertices.size() > 0) cut_cells.emplace_back(cell); Magdalena schrieb am Freitag, 16. Dezember 2022 um 11:09:40 UTC+1: > Dear Praveen, > > if

[deal.II] Re: Finding cut cells

2022-12-16 Thread Magdalena
es); // append cell if it is cut by the interface if (surface_vertices.size() == 0) cut_cells.emplace_back(cell); } } I hope this matches for your purpose. Best, Magdalena marco@gmail.com schrieb am Donnerstag, 15. Dezember 2022 um 13:26:21 UTC+1: > Hi, > I think Step 85 do