Dear Jaekwang,
> *FESystem<dim> fe; * > > > and constructor mentions taylor hood space as follow > > > StokesProblem<dim>::StokesProblem (constunsignedintdegree) > > : > > degree (degree), > > *fe (FE_Q<dim>(degree+**1), dim,* > > * FE_Q<dim>(degree), 1),* > You would write fe (FE_Q<dim>(QGaussLobatto<1>(degree+2)), dim, FE_Q<dim>(QGaussLobatto<1>(degree+1)). In case you are using the development version, you will automatically get the Gauss-Lobatto nodes because we recently made them the default point distribution in higher degree FE_Q elements. In case you are on 8.4 or older, the default distribution is equidistant and you need the above constructor. Best, Martin -- 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 unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
