> I saw that it's possible to write : > const FEFaceValues<dim> &fft= hp_fft.get_present_fe_values(); > const unsigned int Temperature_dofs_per_cell = fft.dofs_per_cell; > but does it exist "fft.dofs_per_face" ? or something equivalent for > face ?
The FEFaceValues object offers the values of all shape functions of a given cell for quadrature points on the face, thus you should still use dofs_per_cell. Best, Tobias _______________________________________________ dealii mailing list http://poisson.dealii.org/mailman/listinfo/dealii
