Re: [deal.II] Re: Trouble with VisIt 2.11

2016-11-02 Thread Praveen C
So the VisIt people said they forgot to include the xdmf plugin in v2.11 and we have to wait for the next release to get it back. Meanwhile an alternative is suggested, see https://elist.ornl.gov/pipermail/visit-users/2016-November/019322.html Best praveen On Tue, Nov 1, 2016 at 4:07 PM,

Re: [deal.II] GridGeneration

2016-11-02 Thread Wolfgang Bangerth
On 11/02/2016 05:54 PM, benhour.amiria...@gmail.com wrote: I want to use half_hyper_ball for my domain. Unfortunately, I cannot refine the mesh around the center. I attached my geometry below. The code that I am using has been written as follows: Point <2> center; const double radius = 30e-9;

Re: [deal.II] Re: hp convergence for non-linear solver.

2016-11-02 Thread Wolfgang Bangerth
On 11/02/2016 07:17 PM, Jaekwang Kim wrote: I'd like check the visualized error per cell. Is there any module in deal.ii that enables this...? Yes, you just need to create a vector with as many entries as there are cell (e.g., the output of VectorTools::integrate_difference) and attach that

[deal.II] Re: How can I find the neighbouring element if I'm on a given face in a given cell?

2016-11-02 Thread smetcalfephd
That looks good! Thanks for the help. Stephen On Wednesday, 2 November 2016 18:36:02 UTC+1, Bruno Turcksin wrote: > Stephen, > > On Wednesday, November 2, 2016 at 1:20:58 PM UTC-4, smetca...@gmail.com > wrote: > >> I'm currently implementing a blow-up problem with space-time adaptivity >>

[deal.II] Re: How can I find the neighbouring element if I'm on a given face in a given cell?

2016-11-02 Thread Bruno Turcksin
Stephen, On Wednesday, November 2, 2016 at 1:20:58 PM UTC-4, smetcalfe...@gmail.com wrote: > I'm currently implementing a blow-up problem with space-time adaptivity > controlled by a derived pointwise a posteriori error bound and I'm having > trouble implementing the estimator (previously, I

[deal.II] How can I find the neighbouring element if I'm on a given face in a given cell?

2016-11-02 Thread smetcalfephd
I'm currently implementing a blow-up problem with space-time adaptivity controlled by a derived pointwise a posteriori error bound and I'm having trouble implementing the estimator (previously, I just used meshworker and it did most of the work for me but you cannot use such an approach for

[deal.II] Re: Extra layer around mesh

2016-11-02 Thread Daniel Arndt
Joel, Same error with your changes. I searched for subdivided in > http://www.dealii.org/developer/doxygen/deal.II/changes_between_8_3_and_8_4.html > > and found under specific improvements, that subdivided_parallelepiped > produced the wrong boundary indicators. Could this be the reason, why

Re: [deal.II] Changing geometry

2016-11-02 Thread A Banerjee
I got my mistake. Thanks Atanu -- The deal.II project is located at http://www.dealii.org/ For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en --- You received this message because you are subscribed to the Google Groups "deal.II User Group" group. To

Re: [deal.II] Changing geometry

2016-11-02 Thread A Banerjee
Yes. I agree. This was stupid question. Thanks Atanu -- The deal.II project is located at http://www.dealii.org/ For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en --- You received this message because you are subscribed to the Google Groups "deal.II User

Re: [deal.II] Re: Convergence problem arising for large number of DoFs

2016-11-02 Thread Hamed Babaei
Dear Wolfgang, I wrote the sequential code first and It converged to the exact solution using SolverCG and SSOR preconditioner. However, the parallel code diverges at the first call to SolverCG but using GMRES or Bicgstab it works though up to 15 DoFs not more. First and the most

Re: [deal.II] Re: Convergence problem arising for large number of DoFs

2016-11-02 Thread Wolfgang Bangerth
On 11/01/2016 10:31 AM, Hamed Babaei wrote: I mean non of the standard preconditioners helped to make it converged. Like Bruno mentioned, if the standard preconditioners don't work, then you will need to think about more complicated ones. Take a look at my video lectures on preconditioners,

Re: [deal.II] Re: hp convergence for non-linear solver.

2016-11-02 Thread Wolfgang Bangerth
On 11/01/2016 11:06 PM, Jaekwang Kim wrote: do you have any other idea? Output the errors per cell and visualize. Is there a pattern? Is the error localized on the boundary, for example? Best W. -- Wolfgang