geom/doc/salome/gui/GEOM/input/creating_divideddisk.doc

58 lines
2.0 KiB
Plaintext
Raw Normal View History

2012-08-09 13:58:02 +06:00
/*!
\page create_divideddisk_page DividedDisk
2012-12-13 14:40:36 +06:00
The <b>Divided disk</b> object is a disk divided into \b blocks for easy hexahedral meshing. Two division patterns are available :
2012-10-08 17:16:36 +06:00
<ul>
2012-12-13 14:40:36 +06:00
<li> A square pattern, which is frequently used; </li>
<li> A hexagonal pattern, which ensures a better mesh quality and especially less acute or obtuse angles. </li>
2012-10-08 17:16:36 +06:00
</ul>
2012-08-09 13:58:02 +06:00
2012-12-13 14:40:36 +06:00
\n Moreover, this shape can be used as a basis in an \ref create_extrusion_alongpath_page "Extrusion along a path" operation in order to obtain any <b>tube shape</b> prepared for hexahedral meshing
2012-10-08 17:16:36 +06:00
(see example below). (Another alternative is to create a 2D mesh on the divided disk and create a 3D mesh by extrusion in the SMESH module.)
2012-08-09 13:58:02 +06:00
Example:
\image html divided_disk.png
To create a <b> Divided Disk </b> in the <b>Main Menu</b> select <b>New Entity - >
Advanced - > DividedDisk </b>
2012-12-13 14:40:36 +06:00
\n There are 2 ways to create a <b> Divided Disk</b> in 3D space.
2012-08-09 13:58:02 +06:00
\n For both operations :
Specify the parameters of the DividedDisk object creation in the opened dialog
box and press "Apply" or "Apply & Close" button.
2012-10-08 17:16:36 +06:00
The result of each operation will be a GEOM_Object.
2012-08-09 13:58:02 +06:00
2012-12-13 14:40:36 +06:00
\n At first it is possible to define a disk by its radius and orientation (plane "OXY", "OYZ" or "OZX"). The resulting disk is located at the origin of coordinates
2012-08-09 13:58:02 +06:00
2012-10-08 17:16:36 +06:00
<b>TUI Command:</b> <em>geompy.MakeDividedDisk(Radius, Orientation, Pattern)</em>
2012-08-09 13:58:02 +06:00
<b>Arguments:</b>
- \b Radius - Radius of the disk
- \b Orientation - Plane on wich the disk will be built
2012-10-08 17:16:36 +06:00
- \b Pattern - Division pattern
2012-08-09 13:58:02 +06:00
\image html divided_disk_dlg.png
2012-12-13 14:40:36 +06:00
\n At second the disk can be defined by its center, normal and radius.
2012-08-09 13:58:02 +06:00
<b>TUI Command:</b> <em>geompy.MakeDividedDiskPntVecR(Center, Vector,
2012-10-08 17:16:36 +06:00
Radius, Pattern)</em>
2012-08-09 13:58:02 +06:00
<b>Arguments:</b>
- \b Center - Center of the disk
- \b Vector - Normal to the plane of the disk
- \b Radius - Radius of the disk
2012-10-08 17:16:36 +06:00
- \b Pattern - Division pattern
2012-08-09 13:58:02 +06:00
\image html divided_disk_PntVecR_dlg.png
Our <b>TUI Scripts</b> provide you with useful examples of creation of
\ref tui_creation_divideddisk "Advanced objects".
*/