[deal.II] Re: Discrete Galekin with periodic boundary condition

2018-11-09 Thread Daniel Arndt
Jaekwang, It seems that I don't need to add_periodicity to the triangulation unless > it is parallel distributed triangulation? > I would be heavily surprised if you get correct results without calling Triangulation::add_periodicity() if you are using discontinuous elements and a serial

Re: [deal.II] Petrov-Galerkin stabilization approach to solve Navier-Stoke equations

2018-11-09 Thread Sebastian Glane
Hi Jie, thanks a lot. The link to your repository was very helpful. I could significantly reduce the number of iterations using your implementation of computing the pressure laplacian through: K_p = B diag(velocity_mass_matrix)^-1 B^T. I have tested the dependence of the preconditioner on

[deal.II] Re: Discrete Galekin with periodic boundary condition

2018-11-09 Thread Jaekwang Kim
It seems that I don't need to add_periodicity to the triangulation unless it is parallel distributed triangulation? On Friday, November 9, 2018 at 9:45:53 AM UTC-6, Jaekwang Kim wrote: > > Thanks! Now it becomes clear to me. > > By the way, when I 'add_periodicity', I have compiler error on

Re: [deal.II] Modelling Anistropic materials for electrostatic simulations

2018-11-09 Thread phillip mobley
Great, Thank you Dr. Bangerth, I will start to look from some of the book. Thank you for all of your help. On Fri, Nov 9, 2018 at 1:29 PM Wolfgang Bangerth wrote: > > > Yes, it is true that there are many lackings in the theory of finite > > element. For the most part, I am self taught and

Re: [deal.II] Modelling Anistropic materials for electrostatic simulations

2018-11-09 Thread Wolfgang Bangerth
> Yes, it is true that there are many lackings in the theory of finite > element. For the most part, I am self taught and doing my best to learn > the material at hand. With that, I do have a final question, would you > be able to recommend some books or authors that I can start looking into

[deal.II] Re: Discrete Galekin with periodic boundary condition

2018-11-09 Thread Jaekwang Kim
Thanks! Now it becomes clear to me. By the way, when I 'add_periodicity', I have compiler error on the red line of the code. Can you give me a clue to resolve this error? //original argument std::vector::cell_iterator>> pairs;