Number
JxW(const unsigned int point_index) const;
+ /**
+ * Return the position in real coordinates of the given point index among
+ * the points passed to reinit().
+ *
+ * @deprecated Use the function quadrature_point() instead.
+ */
+ DEAL_II_DEPRECATED_EARLY Point<spacedim, Number>
+ real_point(const unsigned int point_index) const;
+
/**
* Return the position in real coordinates of the given point index among
* the points passed to reinit().
*/
Point<spacedim, Number>
- real_point(const unsigned int point_index) const;
+ quadrature_point(const unsigned int point_index) const;
/**
* Return the position in unit/reference coordinates of the given point
inline Point<spacedim, Number>
FEPointEvaluationBase<n_components_, dim, spacedim, Number>::real_point(
const unsigned int point_index) const
+{
+ return quadrature_point(point_index);
+ ;
+}
+
+
+
+template <int n_components_, int dim, int spacedim, typename Number>
+inline Point<spacedim, Number>
+FEPointEvaluationBase<n_components_, dim, spacedim, Number>::quadrature_point(
+ const unsigned int point_index) const
{
AssertIndexRange(point_index, n_q_points);
Assert(real_point_ptr != nullptr,
// ------------------------------------------------------------------------
-// check FEPointEvaluation::real_point(), FEPointEvaluation::unit_point(),
+// check FEPointEvaluation::quadrature_point(), FEPointEvaluation::unit_point(),
// FEPointEvaluation::jacobian(), FEPointEvaluation::inverse_jacobian(),
// FEPointEvaluation::get_unit_gradient().
deallog << "unit point " << unit_points[i] << std::endl
<< "unit point via evaluator: " << evaluator.unit_point(i)
<< std::endl
- << "real point: " << evaluator.real_point(i) << std::endl
+ << "real point: " << evaluator.quadrature_point(i) << std::endl
<< "jacobian: " << Tensor<2, dim>(evaluator.jacobian(i))
<< std::endl
<< "inverse jacobian: "