fedoo.mesh.hollow_disk_mesh

hollow_disk_mesh(radius=1.0, thickness=0.1, nr=5, nt=41, elm_type='quad4', ndim=None, name='')

Create a surface mesh of an hollow disk or an ellipse

Parameters:
  • radius (float, default = 1) – The radius of the disk (default : 1).

  • thickness (float, default = 0.1) – The thickness of the hollow disk

  • nr (int, default: nr = 5, nt=41.) – number of nodes in the radial (nr) and tangential (nt) directions.

  • nt (int, default: nr = 5, nt=41.) – number of nodes in the radial (nr) and tangential (nt) directions.

  • elm_type ({'quad4', 'quad9', 'tri3', 'tri6'}) – The type of the element generated (default=’quad4’)

  • ndim (int, optional) – dimension of the generated mesh. By default, the returned mesh will be in 2d.

  • name (str, optional) – Name of the returned mesh.

Returns:

The generated geometry in Mesh format. See the Mesh class for more details.

Return type:

Mesh

See also

rectangle_mesh

Mesh of a retangle

disk_mesh

Mesh of a disk or an ellipse