2008-03-07 12:47:05 +05:00
|
|
|
/*!
|
|
|
|
|
|
|
|
\page adding_quadratic_elements_page Adding Quadratic Elements
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
\n MESH module allows you to work with <b>Quadratic Elements</b>.
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2013-03-06 19:57:01 +06:00
|
|
|
Quadratic elements are defined by same corner nodes as the
|
|
|
|
corresponding linear ones, and in addition they bear \a midside nodes
|
|
|
|
located between the corner nodes on element sides.
|
|
|
|
|
|
|
|
The quadratic quadrilateral element can bear an additional node at the
|
|
|
|
element center, then it is referred as bi-quadratic one (or
|
|
|
|
QUAD9). The quadratic hexahedral element can bear 7 additional nodes:
|
|
|
|
at the element center and at centers of sides, then it is referred as
|
|
|
|
tri-quadratic one (or HEXA27).
|
|
|
|
|
2013-04-01 19:05:47 +06:00
|
|
|
SALOME uses the convention of nodal connectivity of elements of MED library. You
|
|
|
|
can consult description of the nodal connectivity of elements located
|
|
|
|
within documentation on MED library or
|
|
|
|
<a href="http://www.code-aster.org/outils/med/html/connectivites.html">
|
|
|
|
here </a>.
|
|
|
|
|
2013-03-06 19:57:01 +06:00
|
|
|
There are several ways you can create quadratic elements in your mesh:
|
|
|
|
- manually create quadratic elements (the way described below);
|
|
|
|
- use \ref quadratic_mesh_anchor "Quadratic Mesh" hypothesis to
|
|
|
|
generate quadratic mesh on your geometry;
|
|
|
|
- convert an existing linear mesh to a quadratic one
|
|
|
|
(see \ref convert_to_from_quadratic_mesh_page).
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
<em>To add a quadratic element to your mesh:</em>
|
|
|
|
<ol>
|
|
|
|
<li>Select your mesh in the Object Browser or in the 3D viewer.</li>
|
|
|
|
|
|
|
|
<li>From the \b Modification menu choose the \b Add item and select
|
|
|
|
one of the following:
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
\image html image152.png
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
\note All dialogs for quadratic element adding to the mesh
|
|
|
|
provide the possibility to automatically add an element
|
|
|
|
to the specified group or to create the group anew using
|
|
|
|
<b>Add to group</b> box, that allows choosing an existing group for
|
|
|
|
the created node or element or giving the name to a new group. By
|
|
|
|
default, the <b>Add to group</b> check box is switched off. If the user
|
|
|
|
swiches this check box on, the combo box listing all currently
|
|
|
|
existing groups of the corresponding type becomes available. By
|
|
|
|
default, no group is selected. In this case, when the user presses
|
|
|
|
<b>Apply</b> or <b>Apply & Close</b> button, the warning message box
|
|
|
|
informs the user about the necessity to input a new group name. The
|
|
|
|
combo box lists both \ref standalone_group "standalone groups"
|
|
|
|
and \ref group_on_geom "groups on geometry". If the user chooses a
|
|
|
|
group on geometry, he is warned and proposed to
|
|
|
|
\ref convert_to_standalone "convert this group to standalone".
|
|
|
|
If the user rejects conversion operation, it is cancelled and
|
|
|
|
a new quadratic element is not created.
|
|
|
|
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
To create any <b>Quadratic Element</b> specify the nodes which will form your
|
|
|
|
triangle by selecting them in the 3D viewer with pressed Shift
|
|
|
|
button. Their numbers will appear in the dialog box as <b>Corner Nodes</b>
|
|
|
|
(alternatively you can just input numbers in this field without
|
|
|
|
selection).The edges formed by the corner nodes will appear in the
|
|
|
|
table. To define the middle nodes for each edge double-click on the
|
|
|
|
respective field and input the number of the node. All edges and the
|
|
|
|
object formed by them will be displayed in the Object browser. When
|
2009-02-17 10:27:49 +05:00
|
|
|
all edges are defined you will be able to click \b Apply or <b>Apply and Close</b> button to
|
2008-03-07 12:47:05 +05:00
|
|
|
add the element to the mesh.
|
|
|
|
|
|
|
|
\image html aqt.png
|
|
|
|
|
|
|
|
\b Reverse button for Quadratic Edges switches the first and the last
|
|
|
|
nodes. For all other elements it reverses the element.
|
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/
|