Dear Chengjiang,
This is a good question. This case is supported, but one needs to
work slightly harder (and I admit we do not show this case). You
should do as follows:
std::vector<Quadrature<1>> quad;
quad.push_back(QGauss<1>(fe_degree + 1));
quad.push_back(QGaussLobatto<1>(fe_degree + 2));
mf_data.reinit(MappingQ1<dim>{},
dof,
constraints,
quad,
typename MatrixFree<dim,
number>::AdditionalData(
MatrixFree<dim,
number>::AdditionalData::none));
I added a test with this code now to make sure this feature keeps
working: https://github.com/dealii/dealii/pull/18148 . If you want
to construct the quadrature objects in place, you should be able
to do so by casting both objects in the initializer list to
Quadrature<1>.
Best regards,
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 dealii+un...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/dealii/7e995192-78a4-44a4-8cdd-d12450858ae7n%40googlegroups.com.