*/
const std::vector<double> & get_JxW_values () const;
- /**
- * Return the present cell.
- */
- const typename DoFHandler<dim>::cell_iterator & get_cell() const;
-
/**
* Constant reference to the
* selected mapping object.
*/
const std::vector<Tensor<1,dim> > & get_boundary_forms () const;
- /**
- * Return the present
- * face.
- */
- typename DoFHandler<dim>::face_iterator get_face() const;
-
/**
* Return a reference to the copy
* of the quadrature formula
* formula here.
*/
const Quadrature<dim-1> quadrature;
-
- /**
- * Stores the face or subface,
- * resp., that was selected the
- * last time the @p{reinit}
- * function was called. Is used
- * by the @p{get_face} function.
- */
- typename DoFHandler<dim>::face_iterator present_face;
};
-template <int dim>
-inline
-const typename DoFHandler<dim>::cell_iterator &
-FEValuesBase<dim>::get_cell() const
-{
- return present_cell;
-}
-
-
-
template <int dim>
inline
const FiniteElement<dim> &
}
-template <int dim>
-inline
-typename DoFHandler<dim>::face_iterator
-FEFaceValuesBase<dim>::get_face() const
-{
- return present_face;
-}
-
-
-
-
template <int dim>
const Quadrature<dim-1> &
FEFaceValuesBase<dim>::get_quadrature () const
FEFaceValuesBase<dim>::memory_consumption () const
{
return (FEValuesBase<dim>::memory_consumption () +
- MemoryConsumption::memory_consumption (quadrature) +
- MemoryConsumption::memory_consumption (present_face));
+ MemoryConsumption::memory_consumption (quadrature));
}
typename FEValuesBase<dim>::ExcFEDontMatch());
this->present_cell = cell;
- this->present_face = cell->face(face_no);
this->get_mapping().fill_fe_face_values(cell, face_no,
this->quadrature,
ExcIndexRange (subface_no, 0, GeometryInfo<dim>::subfaces_per_face));
this->present_cell = cell;
- this->present_face = cell->face(face_no);
this->get_mapping().fill_fe_subface_values(cell, face_no, subface_no,
this->quadrature,
<h3>deal.II</h3>
<ol>
+ <li> <p>
+ Changed: The <code class="member">FEValues::get_cell</code> and
+ <code class="member">FEValues::get_face</code> functions have
+ been removed, since they limited our inability to use this
+ class for other types of DoFHandlers, for example future
+ extensions for hp elements.
+ <br>
+ (WB 2003/01/17)
+ </p>
+
<li> <p>
New: The DoF accessor classes now have a function <code
class="member">get_fe()</code> that returns a reference to the finite