Re: [deal.II] Re: FE_Q

2019-11-30 Thread Simon Sticko
Hi, Just to elaborate on what Daniel already said, Oliver, note that it is the constructor of the Step3-class that calls the constructor of FE_Q, that is Step3::Step3() : fe(1) , dof_handler(triangulation) {} If you miss this call in the Step3-constructor, you will get the error you

Re: [deal.II] Re: FE_Q

2019-11-29 Thread Daniel Arndt
Oli, what is your question? Please elaborate and we are happy to help. You might want to have a look at "Getting started and posting guidelines for new users" at https://groups.google.com/forum/#!topic/dealii/GRZMUTLIm2I. Best, Daniel Am Fr., 29. Nov. 2019 um 14:26 Uhr schrieb Oliver Br : > Hi

[deal.II] Re: FE_Q

2019-11-29 Thread Oliver Br
Hi Daniel, Thank you for your answer. My question is about step3 in which: Triangulation<2> triangulation; FE_Q<2> fe; Best, Oli

[deal.II] Re: FE_Q

2019-11-28 Thread Daniel Arndt
Oli, you need to specify a polynomial degree you want to use. If you have a look at step-2 (https://www.dealii.org/current/doxygen/deal.II/step_2.html), you see that it has a line saying const FE_Q<2> finite_element(1); to

[deal.II] Re: FE_Q constructor

2017-02-23 Thread Aycil Cesmelioglu
Thanks Wolfgang. I'll give it a try assuming everything depends on x and y. Best, Aycil. -- 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

Re: [deal.II] Re: FE_Q constructor

2017-02-23 Thread Wolfgang Bangerth
On 02/23/2017 08:47 AM, Aycil Cesmelioglu wrote: I have an elasticity type problem; the horizontal displacement depends on (x,y) but the vertical component of the displacement doesn't depend on y. It's like it is 1.5 dimensional instead of 2. Because of this the variational formulation also has