- Member libMesh::Elem::set_node (const unsigned int i)
- This setter cannot update the multiple node pointers used in a general polyhedron; use the
set_node overload that takes an argument.
- Member libMesh::ExodusII_IO::set_coordinate_offset (Point p)
- As requested by Roy in libmesh PR #90, this function was "deprecated on arrival". There is not really a suitable replacement for it in the works, however. The same effect could be achieved by calling MeshTools::Modification::translate() twice, but that approach seems inefficient in the case of very large problems with millions of nodes. That said, this should probably become a base class API so that it works for all the different IO subclasses.
- Member libMesh::FEAbstract::on_reference_element (const Point &p, const ElemType t, const Real eps=TOLERANCE)
- This method overload does not support all finite element types; e.g. the reference element for an arbitrary polygon or polyhedron type may differ from element to element. Use
Elem::on_reference_element() instead.
- Member libMesh::FEInterface::ifem_n_dofs_at_node (const unsigned int dim, const FEType &fe_t, const ElemType t, const unsigned int n)
- Call the version of ifem_n_dofs_at_node() which takes a pointer-to-Elem instead.
- Member libMesh::FEInterface::ifem_n_dofs_per_elem (const unsigned int dim, const FEType &fe_t, const ElemType t)
- Call the version of ifem_n_dofs_per_elem() which takes a pointer-to-Elem instead.
- Member libMesh::FEInterface::ifem_shape (const unsigned int dim, const FEType &fe_t, const ElemType t, const unsigned int i, const Point &p)
- Call version that takes a pointer-to-Elem and does not require an explicit dim parameter instead.
- Member libMesh::FEInterface::ifem_shape (const unsigned int dim, const FEType &fe_t, const Elem *elem, const unsigned int i, const Point &p)
- Call version that takes a pointer-to-Elem and does not require an explicit dim parameter instead.
- Member libMesh::FEInterface::ifem_shape_deriv (const unsigned int dim, const FEType &fe_t, const ElemType t, const unsigned int i, const unsigned int j, const Point &p)
- Call version that takes a pointer-to-Elem and does not require an explicit dim parameter instead.
- Member libMesh::FEInterface::ifem_shape_deriv (const unsigned int dim, const FEType &fe_t, const Elem *elem, const unsigned int i, const unsigned int j, const Point &p)
- Call version that takes a pointer-to-Elem and does not require an explicit dim parameter instead.
- Member libMesh::FEInterface::n_dofs (const unsigned int dim, const FEType &fe_t, const Elem *elem)
- Use n_dofs(const FEType &, Elem*) or n_dofs(const FEType &, int, Elem*) instead.
- Member libMesh::FEInterface::n_dofs (const unsigned int dim, const FEType &fe_t, const ElemType t)
- Use n_dofs(const FEType &, Elem*) or n_dofs(const FEType &, int, Elem*) instead.
- Member libMesh::FEInterface::n_dofs_at_node (const unsigned int dim, const FEType &fe_t, const ElemType t, const unsigned int n)
- Call the version of n_dofs_at_node() taking an Elem * instead, this one accounts for Elem::p_level() internally rather than requiring the user to do it.
- Member libMesh::FEInterface::n_dofs_at_node_function (const unsigned int dim, const FEType &fe_t)
- Use the version of this function that takes an Elem* for consistency.
- Member libMesh::FEInterface::n_dofs_per_elem (const unsigned int dim, const FEType &fe_t, const ElemType t)
- Call the version of this function that takes an Elem* instead.
- Member libMesh::FEInterface::n_shape_functions (const unsigned int dim, const FEType &fe_t, const ElemType t)
- Call the version of this function taking an Elem* instead.
- Member libMesh::FEInterface::on_reference_element (const Point &p, const ElemType t, const Real eps=TOLERANCE)
- This method overload does not support all finite element types; e.g. the reference element for an arbitrary polygon or polyhedron type may differ from element to element. Use
Elem::on_reference_element() instead.
- Member libMesh::FEInterface::shape (const unsigned int dim, const FEType &fe_t, const Elem *elem, const unsigned int i, const Point &p, OutputType &phi)
- Use the version of this function that accounts for Elem::p_level() internally or the version which takes an extra_order parameter.
- Member libMesh::FEInterface::shape (const unsigned int dim, const FEType &fe_t, const ElemType t, const unsigned int i, const Point &p)
- Use the version of this function that accounts for Elem::p_level() internally or the version which takes an extra_order parameter.
- Member libMesh::FEInterface::shape (const unsigned int dim, const FEType &fe_t, const Elem *elem, const unsigned int i, const Point &p)
- Use the version of this function that accounts for Elem::p_level() internally or the version which takes an extra_order parameter.
- Member libMesh::FEInterface::shape (const unsigned int dim, const FEType &fe_t, const ElemType t, const unsigned int i, const Point &p, OutputType &phi)
- Use the version of this function that accounts for Elem::p_level() internally or the version which takes an extra_order parameter.
- Member libMesh::FEInterface::shape_deriv (const unsigned int dim, const FEType &fe_t, const ElemType t, const unsigned int i, const unsigned int j, const Point &p)
- Call the version of this function taking an Elem* instead.
- Member libMesh::FEInterface::shape_deriv (const unsigned int dim, const FEType &fe_t, const Elem *elem, const unsigned int i, const unsigned int j, const Point &p)
- Call the version of this function taking an Elem* instead.
- Member libMesh::FEInterface::shape_deriv_function (const unsigned int dim, const FEType &fe_t, const ElemType t)
- Call the version of this function taking an Elem * instead.
- Member libMesh::FEInterface::shape_function (const unsigned int dim, const FEType &fe_t, const ElemType t)
- Call the version of this function taking an Elem* instead.
- Member libMesh::FEInterface::shape_second_deriv (const unsigned int dim, const FEType &fe_t, const ElemType t, const unsigned int i, const unsigned int j, const Point &p)
- Call version of this function which does not require
dim and takes an Elem * instead.
- Member libMesh::FEInterface::shape_second_deriv (const unsigned int dim, const FEType &fe_t, const Elem *elem, const unsigned int i, const unsigned int j, const Point &p)
- Call version of this function which does not require
dim and takes an Elem * instead.
- Member libMesh::FEInterface::shape_second_deriv_function (const unsigned int dim, const FEType &fe_t, const ElemType t)
- Call the version of this function that takes an Elem * instead.
- Member libMesh::InfFE< Dim, T_radial, T_map >::n_dofs_per_elem (const FEType &fet, const ElemType inf_elem_type)
- Call the version of this function that takes an Elem* instead for consistency with other FEInterface::n_dofs() methods.
- Member libMesh::LaplaceMeshSmoother::LaplaceMeshSmoother (UnstructuredMesh &mesh)
- This constructor has been deprecated in favor of the (UnstructuredMesh, const unsigned int) constructor. By specifying the number of smoothing iterations in the constructor, there is no need to pass this parameter to the smooth method. As such, the smooth method's signature will match that of the parent class and the sister VariationalMeshSmoother class.
- Member libMesh::LaplaceMeshSmoother::smooth (unsigned int n_iterations)
- The number of iterations should be set in the class constructor. The parameterless smooth() override should be used to smooth.
- Member libMesh::MeshBase::cache_elem_dims ()
- This method has ben replaced by
cache_elem_data which caches data in addition to elem dimensions (e.g.
- Member libMesh::Node::build (const Node &n)
- - anyone copying a Node would almost certainly be better off copying the much cheaper Point or taking a reference to the Node.
- Member libMesh::Node::Node (const Node &n)
- - the constructor from Point is what we really want.
- Member libMesh::NumericVector< T >::type ()
- because it is dangerous to change the ParallelType of an already-initialized NumericVector. See NumericVector::set_type() for a safer, non-deprecated setter.