mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-30 19:30:35 +05:00
0021859: SMESH : Add conversion from QUAD8 to QUAD9 and from HEXA20 to HEXA27
This commit is contained in:
parent
52ffb07d75
commit
0a56ccc761
@ -4,10 +4,22 @@
|
|||||||
|
|
||||||
\n MESH module allows you to work with <b>Quadratic Elements</b>.
|
\n MESH module allows you to work with <b>Quadratic Elements</b>.
|
||||||
|
|
||||||
Quadratic Edge is not a straight but a broken line and can be defined
|
Quadratic elements are defined by same corner nodes as the
|
||||||
by three points: first, middle and last. All more complex \b Quadratic
|
corresponding linear ones, and in addition they bear \a midside nodes
|
||||||
\b Elements differ from ordinary ones in that they consist of Quadratic
|
located between the corner nodes on element sides.
|
||||||
Edges.
|
|
||||||
|
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).
|
||||||
|
|
||||||
|
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).
|
||||||
|
|
||||||
<em>To add a quadratic element to your mesh:</em>
|
<em>To add a quadratic element to your mesh:</em>
|
||||||
<ol>
|
<ol>
|
||||||
|
@ -23,6 +23,9 @@ Quadratic Mesh hypothesis allows to build a quadratic mesh (whose
|
|||||||
edges are not straight but curved lines and can be defined by three
|
edges are not straight but curved lines and can be defined by three
|
||||||
points: first, middle and last instead of an ordinary two).
|
points: first, middle and last instead of an ordinary two).
|
||||||
|
|
||||||
|
See \ref adding_quadratic_elements_page
|
||||||
|
for more information about quadratic meshes.
|
||||||
|
|
||||||
\anchor propagation_anchor
|
\anchor propagation_anchor
|
||||||
<h2>Propagation of 1D Hypothesis on opposite edges</h2>
|
<h2>Propagation of 1D Hypothesis on opposite edges</h2>
|
||||||
|
|
||||||
|
@ -3,13 +3,13 @@
|
|||||||
\page convert_to_from_quadratic_mesh_page Convert to/from Quadratic Mesh
|
\page convert_to_from_quadratic_mesh_page Convert to/from Quadratic Mesh
|
||||||
|
|
||||||
\n This functionality allows transforming linear meshes (or
|
\n This functionality allows transforming linear meshes (or
|
||||||
sub-meshes) to quadratic (or bi-quadratic) and vice versa.
|
sub-meshes) to quadratic and vice versa.
|
||||||
See \ref adding_quadratic_elements_page "Adding quadratic elements"
|
Note that conversion of a sub-mesh most probably will produce a
|
||||||
for more information about quadratic meshes.
|
non-conformal mesh. Elements on the boundary between quadratic and
|
||||||
Note that conversion of a sub-mesh most probably will
|
linear sub-meshes become (or remain) quadratic.
|
||||||
produce a non-conformal mesh. Elements on the boundary between
|
|
||||||
quadratic (or bi-quadratic) and linear sub-meshes become (or remain)
|
See \ref adding_quadratic_elements_page for more information about
|
||||||
quadratic (or bi-quadratic).
|
quadratic meshes.
|
||||||
|
|
||||||
<em>To produce a conversion:</em>
|
<em>To produce a conversion:</em>
|
||||||
<ol>
|
<ol>
|
||||||
@ -19,8 +19,10 @@ Viewer.</li>
|
|||||||
Mesh item </b>, or click <em>"Convert to/from quadratic"</em> button in the
|
Mesh item </b>, or click <em>"Convert to/from quadratic"</em> button in the
|
||||||
toolbar.
|
toolbar.
|
||||||
|
|
||||||
|
<center>
|
||||||
\image html image154.png
|
\image html image154.png
|
||||||
<center><em>"Convert to/from quadratic" button</em></center>
|
<em>"Convert to/from quadratic" button</em>
|
||||||
|
</center>
|
||||||
|
|
||||||
The following dialog box will appear:
|
The following dialog box will appear:
|
||||||
|
|
||||||
@ -31,10 +33,12 @@ The following dialog box will appear:
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>If it is necessary to convert a linear mesh to quadratic or a quadratic
|
<li>If it is necessary to convert a linear mesh to quadratic or a quadratic
|
||||||
mesh to linear. Note that the choice is available only if the selected mesh
|
mesh to linear. **Convert to bi-quadratic** option means same as
|
||||||
(or sub-mesh) contains both quadratic and linear elements, else the
|
**Convert to quadratic** except that QUAD9 elements are created
|
||||||
direction of conversion is selected automatically.</li>
|
instead of QUAD8, and HEXA27 elements are created instead of
|
||||||
|
HEXA20. Note that the choice is available only if the selected mesh
|
||||||
|
(or sub-mesh) contains both quadratic and linear elements, else the
|
||||||
|
direction of conversion is selected automatically.</li>
|
||||||
<li>If it is necessary to place medium nodes of the quadratic mesh on the
|
<li>If it is necessary to place medium nodes of the quadratic mesh on the
|
||||||
geometry (meshed object). This option is relevant for conversion to
|
geometry (meshed object). This option is relevant for conversion to
|
||||||
quadratic provided that the mesh is based on a geometry (not imported from file).</li>
|
quadratic provided that the mesh is based on a geometry (not imported from file).</li>
|
||||||
|
Loading…
Reference in New Issue
Block a user