Mentions légales du service

Skip to content
Snippets Groups Projects
Commit b818de87 authored by ALI Olivier's avatar ALI Olivier :monkey_face:
Browse files

Fixed the docblock of the normal and boundary_normal methods.

parent d42ae3e4
No related branches found
No related tags found
No related merge requests found
...@@ -103,14 +103,14 @@ class Init_orientation_3D(fe.UserExpression): ...@@ -103,14 +103,14 @@ class Init_orientation_3D(fe.UserExpression):
def normal(domain, scale=1, interior=None, degree=1, name='normal'): def normal(domain, scale=1, interior=None, degree=1, name='normal'):
"""Compute a displacement field along the normals to a mesh. """Computes the normal vector field to a given domain.
Parameters Parameters
---------- ----------
domain : subclass of :class:`Domain<bvpy.domains.AbstracDomain>` domain : subclass of :class:`Domain<bvpy.domains.AbstracDomain>`
The meshed surface on which we want to compute the normal field. The meshed surface on which we want to compute the normal field.
scale : float, optional scale : float, optional
The displacement intensity to consider (the default is 1). The norm of the vector field (the default is 1).
interior : list(float), optional interior : list(float), optional
A 3D vector to set the mesh orientation (the default is None). A 3D vector to set the mesh orientation (the default is None).
degree : int, optional degree : int, optional
...@@ -128,7 +128,7 @@ def normal(domain, scale=1, interior=None, degree=1, name='normal'): ...@@ -128,7 +128,7 @@ def normal(domain, scale=1, interior=None, degree=1, name='normal'):
if domain.mesh is not None: if domain.mesh is not None:
mesh = domain.mesh mesh = domain.mesh
else: else:
print('WARNING - (geometry.py - l.84): no mesh on the domain.') print('WARNING - (geometry.normal): no mesh on the domain.')
np.seterr(divide='ignore', invalid='ignore') np.seterr(divide='ignore', invalid='ignore')
V = fe.VectorFunctionSpace(mesh, 'P', degree, dim=3) V = fe.VectorFunctionSpace(mesh, 'P', degree, dim=3)
...@@ -224,7 +224,29 @@ def get_boundary_vertex(mesh): ...@@ -224,7 +224,29 @@ def get_boundary_vertex(mesh):
return bnd_vertex return bnd_vertex
def boundary_normal(mesh, scale=1): def boundary_normal(domain, scale=1, name='boundary_normal'):
"""Computes along the boundary the normals within the tangent plane.
Parameters
----------
domain : subclass of :class:`Domain<bvpy.domains.AbstracDomain>`
The meshed surface on which we want to compute the normal field.
scale : float, optional
The norm of the vector field (the default is 1).
name : str, optional
the label we want to attach to the normal field.
Returns
-------
:class:`dolfin.cpp.function.Function<dolfin.cpp.function.Function>`
The computed normal field.
"""
if domain.mesh is not None:
mesh = domain.mesh
else:
print('WARNING - (geometry.boundary_normal): no mesh on the domain.')
mesh.init() mesh.init()
bnd_facets = get_boundary_facets(mesh) bnd_facets = get_boundary_facets(mesh)
facets_index = [f.index() for f in bnd_facets] facets_index = [f.index() for f in bnd_facets]
...@@ -257,5 +279,7 @@ def boundary_normal(mesh, scale=1): ...@@ -257,5 +279,7 @@ def boundary_normal(mesh, scale=1):
d2v = fe.dof_to_vertex_map(V) d2v = fe.dof_to_vertex_map(V)
u.vector().set_local(normals.flatten()[d2v]) u.vector().set_local(normals.flatten()[d2v])
u.rename(name, 'label')
return u return u
# geometry.py ends here # geometry.py ends here
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment