Felix,
also, if the point you want is not a quadrature point, you can exploit the following trick:
Point<dim> my_point_in_reference_cell;
std::vector<Point<dim> > quad(1, my_point_in_reference_cell);
and then you can initialize an
FEValues<dim> fev(fe, quad, update_inverse_jacobians);
This will give you access to what you need by
fev.reinit(cell);
auto &jac_invs = fev.get_inverse_jacobians();
Best,
Luca.
> How do I get the inverse Jacobian at this point?
>
>
>
> 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 "deal.II User Group" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to
dealii+un...@googlegroups.com.
> For more options, visit
https://groups.google.com/d/optout.