[deal.II] Question regarding P:D:Tria

2017-03-04 Thread RAJAT ARORA
Hello all, I am using deal.ii along with PetSc and P4est to solve a 3D solid mechanics problem. I am using the GridGenerator::hyper_rectangle function to create a rectangular grid with 1000 X 500 X 1 (0.5 million) elements. My question is: - since the coarsest mesh contains 0.5 million element

[deal.II] Re: any suggestion how to run same code repeatedly with different boundary condition ?

2017-03-04 Thread Jean-Paul Pelteret
Hi Jaekwang, The error message is pointing you to the fact that when you call run() a second time you end up trying to rebuild the triangulation on top of the one that you have the first time run() was called. There are a few ways that you can work around this. Here are two suggestions: 1. Cre

[deal.II] any suggestion how to run same code repeatedly with different boundary condition ?

2017-03-04 Thread Jaekwang Kim
Hi all, I want to run same problem for different boundary condition values that will come globally... for example, if i want to run step-4 code with different boundary condition, #include #include #include #include #include #include #include #include #include #include #inc