Re: [deal.II] Re: get_function_value error with hp class

2017-06-14 Thread Wolfgang Bangerth
On 06/13/2017 06:16 PM, Weixiong Zheng wrote: | | As the problem is a scalar problem, fv.shape_value and shape_grad work as they are supposed to, but not the get_function_values. It is a coincidence that the former two work -- they return the one non-zero component of a vector valued

[deal.II] Re: weak form for advection-diffusion equation

2017-06-14 Thread Jaekwang Kim
Thanks for the response! I've read some articles that the governing equation (advection + diffusion) is unstable when it has large Peclet number. (Even though it has diffusion term.) What I am concerning is that it is how to imply SUPG stabilization method in deal.ii., because my future

Re: [deal.II] Re: get errors when installing dealii on openSUSE Leap 42.1 by using candi

2017-06-14 Thread Rene Gassmöller
@Timo: Thanks for the confimation and feedback. I needed to do some adjustments to candi to get parmetis to run, but a combination of https://github.com/dealii/candi/pull/33 and https://github.com/dealii/candi/pull/32 should now be able to automatically install deal.II on most Cray machines.

[deal.II] Re: weak form for advection-diffusion equation

2017-06-14 Thread Jaekwang Kim
Adding up to this, I was trying as... scratch_data.fe_values.shape_grad_grad (j,q_point) but keep receiving errors */Users/kimjaekwang/repos/advection_diffusion/step9/step-9.cc:487:53: **error: **no member named 'shape_grad_grad' in* * 'dealii::FEValues<2, 2>'* *

[deal.II] Re: problems with installation ; Unknown CMake command "DEAL_II_ADD_LIBRARY"

2017-06-14 Thread Bruno Turcksin
Hi, On Wednesday, June 14, 2017 at 1:10:53 PM UTC-4, Bulent Tokay wrote: > > daieren@daieren:~/deal.ii$ cmake > -DCMAKE_INSTALL_PREFIX=/home/daieren/deal.ii/ > /home/daieren/deal.ii-8.4.2/source > > this looks strange. Try: cmake -DCMAKE_INSTALL_PREFIX=/home/daieren/deal.ii/

[deal.II] Weak form for advection - diffusion equation

2017-06-14 Thread Jaekwang Kim
Since since my question include some mathematical expression, I attached figure for this...

[deal.II] Re: problems with installation ; Unknown CMake command "DEAL_II_ADD_LIBRARY"

2017-06-14 Thread Bulent Tokay
Hello, I am using xubuntu 16.04 as a newbie and trying to install deal.ii. At the stage of building the error shown as below emerged unfortunately. I tried the same way with a different release (i.e. deal.ii-8.5.0) and faced with the similar problem again. I checked another replies to fix it,

Re: [deal.II] Compute jacobian at point (no quadrature point)

2017-06-14 Thread Felix Lorenz
Thank you very much. This is exactly what I wanted. Best regards, Felix -- 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

Re: [deal.II] Re: get errors when installing dealii on openSUSE Leap 42.1 by using candi

2017-06-14 Thread Timo Heister
> I am not quite sure what is happening there (I do not have much experience > with PETSc or MUMPS). As far as I can see MUMPS is not a separate package > for deal.II but needs to be installed with PETSc. corect. > Maybe somebody else knows > which options need to be added to the petsc.package

Re: [deal.II] Compute jacobian at point (no quadrature point)

2017-06-14 Thread luca.heltai
Felix, also, if the point you want is not a quadrature point, you can exploit the following trick: Point my_point_in_reference_cell; std::vector quad(1, my_point_in_reference_cell); and then you can initialize an FEValues fev(fe, quad, update_inverse_jacobians); This will give you