![]() |
Reference documentation for deal.II version 8.4.2
|
#include <deal.II/grid/tria_boundary_lib.h>
Public Member Functions | |
| HyperBallBoundary (const Point< spacedim > p=Point< spacedim >(), const double radius=1.0) | |
| virtual Point< spacedim > | get_new_point_on_line (const typename Triangulation< dim, spacedim >::line_iterator &line) const |
| virtual Point< spacedim > | get_new_point_on_quad (const typename Triangulation< dim, spacedim >::quad_iterator &quad) const |
| virtual void | get_intermediate_points_on_line (const typename Triangulation< dim, spacedim >::line_iterator &line, std::vector< Point< spacedim > > &points) const |
| virtual void | get_intermediate_points_on_quad (const typename Triangulation< dim, spacedim >::quad_iterator &quad, std::vector< Point< spacedim > > &points) const |
| virtual Tensor< 1, spacedim > | normal_vector (const typename Triangulation< dim, spacedim >::face_iterator &face, const Point< spacedim > &p) const |
| virtual void | get_normals_at_vertices (const typename Triangulation< dim, spacedim >::face_iterator &face, typename Boundary< dim, spacedim >::FaceVertexNormals &face_vertex_normals) const |
| Point< spacedim > | get_center () const |
| double | get_radius () const |
| DeclException0 (ExcRadiusNotSet) | |
Public Member Functions inherited from StraightBoundary< dim, spacedim > | |
| StraightBoundary () | |
| virtual Point< spacedim > | project_to_surface (const typename Triangulation< dim, spacedim >::line_iterator &line, const Point< spacedim > &candidate) const |
| virtual Point< spacedim > | project_to_surface (const typename Triangulation< dim, spacedim >::quad_iterator &quad, const Point< spacedim > &candidate) const |
| virtual Point< spacedim > | project_to_surface (const typename Triangulation< dim, spacedim >::hex_iterator &hex, const Point< spacedim > &candidate) const |
Public Member Functions inherited from Boundary< dim, spacedim > | |
| virtual | ~Boundary () |
| void | get_intermediate_points_on_face (const typename Triangulation< dim, spacedim >::face_iterator &face, std::vector< Point< spacedim > > &points) const |
| virtual void | get_normals_at_vertices (const typename Triangulation< dim, spacedim >::face_iterator &face, FaceVertexNormals &face_vertex_normals) const |
Public Member Functions inherited from FlatManifold< dim, spacedim > | |
| FlatManifold (const Point< spacedim > periodicity=Point< spacedim >(), const double tolerance=1e-10) | |
| virtual Point< spacedim > | get_new_point (const Quadrature< spacedim > &quad) const |
| virtual Point< spacedim > | project_to_manifold (const std::vector< Point< spacedim > > &points, const Point< spacedim > &candidate) const |
Public Member Functions inherited from Manifold< dim, spacedim > | |
| virtual | ~Manifold () |
| virtual Point< spacedim > | get_new_point_on_hex (const typename Triangulation< dim, spacedim >::hex_iterator &hex) const |
| Point< spacedim > | get_new_point_on_face (const typename Triangulation< dim, spacedim >::face_iterator &face) const |
| Point< spacedim > | get_new_point_on_cell (const typename Triangulation< dim, spacedim >::cell_iterator &cell) const |
Public Member Functions inherited from Subscriptor | |
| Subscriptor () | |
| Subscriptor (const Subscriptor &) | |
| virtual | ~Subscriptor () |
| Subscriptor & | operator= (const Subscriptor &) |
| void | subscribe (const char *identifier=0) const |
| void | unsubscribe (const char *identifier=0) const |
| unsigned int | n_subscriptions () const |
| void | list_subscribers () const |
| DeclException3 (ExcInUse, int, char *, std::string &,<< "Object of class "<< arg2<< " is still used by "<< arg1<< " other objects."<< "\"<< "(Additional information: "<< arg3<< ")\"<< "See the entry in the Frequently Asked Questions of "<< "deal.II (linked to from http://www.dealii.org/) for "<< "a lot more information on what this error means and "<< "how to fix programs in which it happens.") | |
| DeclException2 (ExcNoSubscriber, char *, char *,<< "No subscriber with identifier <"<< arg2<< "> subscribes to this object of class "<< arg1<< ". Consequently, it cannot be unsubscribed.") | |
| template<class Archive > | |
| void | serialize (Archive &ar, const unsigned int version) |
Protected Attributes | |
| const Point< spacedim > | center |
| const double | radius |
| bool | compute_radius_automatically |
Private Member Functions | |
| void | get_intermediate_points_between_points (const Point< spacedim > &p0, const Point< spacedim > &p1, std::vector< Point< spacedim > > &points) const |
Additional Inherited Members | |
Public Types inherited from Boundary< dim, spacedim > | |
| typedef Tensor< 1, spacedim > | FaceVertexNormals[GeometryInfo< dim >::vertices_per_face] |
Protected Member Functions inherited from Boundary< dim, spacedim > | |
| const std::vector< Point< 1 > > & | get_line_support_points (const unsigned int n_intermediate_points) const |
Specialization of Boundary<dim>, which places the new point on the boundary of a ball in arbitrary dimension. It works by projecting the point in the middle of the old points onto the ball. The middle is defined as the arithmetic mean of the points.
The center of the ball and its radius may be given upon construction of an object of this type. They default to the origin and a radius of 1.0.
This class is derived from StraightBoundary rather than from Boundary, which would seem natural, since this way we can use the StraightBoundary::in_between() function.
Definition at line 320 of file tria_boundary_lib.h.
| HyperBallBoundary< dim, spacedim >::HyperBallBoundary | ( | const Point< spacedim > | p = Point<spacedim>(), |
| const double | radius = 1.0 |
||
| ) |
Constructor
Definition at line 481 of file tria_boundary_lib.cc.
|
virtual |
Refer to the general documentation of this class and the documentation of the base class.
Reimplemented from StraightBoundary< dim, spacedim >.
Definition at line 493 of file tria_boundary_lib.cc.
|
virtual |
Refer to the general documentation of this class and the documentation of the base class.
Reimplemented from StraightBoundary< dim, spacedim >.
Definition at line 537 of file tria_boundary_lib.cc.
|
virtual |
Refer to the general documentation of this class and the documentation of the base class.
Calls get_intermediate_points_between_points.
Reimplemented from StraightBoundary< dim, spacedim >.
Definition at line 571 of file tria_boundary_lib.cc.
|
virtual |
Refer to the general documentation of this class and the documentation of the base class.
Only implemented for dim=3 and for points.size()==1.
Reimplemented from StraightBoundary< dim, spacedim >.
Definition at line 705 of file tria_boundary_lib.cc.
|
virtual |
Implementation of the function declared in the base class.
Refer to the general documentation of this class and the documentation of the base class.
Reimplemented from StraightBoundary< dim, spacedim >.
Definition at line 717 of file tria_boundary_lib.cc.
|
virtual |
Compute the normals to the boundary at the vertices of the given face.
Refer to the general documentation of this class and the documentation of the base class.
Reimplemented from StraightBoundary< dim, spacedim >.
Definition at line 749 of file tria_boundary_lib.cc.
| Point< spacedim > HyperBallBoundary< dim, spacedim >::get_center | ( | ) | const |
Return the center of the ball.
Definition at line 760 of file tria_boundary_lib.cc.
| double HyperBallBoundary< dim, spacedim >::get_radius | ( | ) | const |
Return the radius of the ball.
Definition at line 769 of file tria_boundary_lib.cc.
| HyperBallBoundary< dim, spacedim >::DeclException0 | ( | ExcRadiusNotSet | ) |
Exception. Thrown by the get_radius if the compute_radius_automatically, see below, flag is set true.
|
private |
Called by get_intermediate_points_on_line and by get_intermediate_points_on_quad.
Refer to the general documentation of get_intermediate_points_on_line in the documentation of the base class.
Definition at line 585 of file tria_boundary_lib.cc.
|
protected |
Center point of the hyperball.
Definition at line 413 of file tria_boundary_lib.h.
|
protected |
Radius of the hyperball.
Definition at line 418 of file tria_boundary_lib.h.
|
protected |
This flag is false for this class and for all derived classes that set the radius by the constructor. For example this flag is false for the HalfHyperBallBoundary class but it is true for the HyperShellBoundary class, for example. The latter class doesn't get its radii by the constructor but need to compute the radii automatically each time one of the virtual functions is called.
Definition at line 428 of file tria_boundary_lib.h.
1.8.12