Salome HOME
Correction after the proof reading
authoreap <eap@opencascade.com>
Thu, 18 Apr 2013 07:58:41 +0000 (07:58 +0000)
committereap <eap@opencascade.com>
Thu, 18 Apr 2013 07:58:41 +0000 (07:58 +0000)
doc/salome/gui/SMESH/input/adding_nodes_and_elements.doc
doc/salome/gui/SMESH/input/adding_quadratic_elements.doc
doc/salome/gui/SMESH/input/basic_meshing_algos.doc
doc/salome/gui/SMESH/input/prism_3d_algo.doc
doc/salome/gui/SMESH/input/projection_algos.doc
doc/salome/gui/SMESH/input/smesh_migration.doc

index b91324b85ae4b65aba1d79f7b4db2272e0b442a3..e46385b2d204371c8a43f853f0b9d2900dbe3f67 100644 (file)
@@ -19,8 +19,9 @@
 <li>\ref adding_polyhedrons_anchor "Polyhedrons"</li>
 </ul>
 
-SALOME uses the convention of nodal connectivity of MED library elements. You
-can consult the description of nodal connectivity of elements in the documentation on MED library or 
+The convention of nodal connectivity of elements used in SALOME is
+the MED library convention. You can consult the description of
+nodal connectivity of elements in the documentation on MED library or 
 <a href="http://www.code-aster.org/outils/med/html/connectivites.html">
   here </a>.
 
index aaa7978123967b5729a7d9867b5ec293cbadf6f3..11b7931d8f93e1750c46daacd2efa514c9347868 100644 (file)
@@ -11,11 +11,12 @@ located between the corner nodes on element sides.
 If a quadratic quadrilateral element has an additional node at the
 element center, it is a bi-quadratic element (or
 QUAD9). If a quadratic hexahedral element has 7 additional nodes:
-at the element center and at the center of each side it is a
+at the element center and at the center of each side, it is a
 tri-quadratic element (or HEXA27).
 
-SALOME uses the convention of nodal connectivity of MED library elements. You
-can consult the description of nodal connectivity of elements in the documentation on MED library or 
+The convention of nodal connectivity of elements used in SALOME is
+the MED library convention. You can consult the description of nodal
+connectivity of elements in the documentation on MED library or 
 <a href="http://www.code-aster.org/outils/med/html/connectivites.html">
   here </a>.
 
index eca53a6b3fe5a90934b56ae1be6e38683493aef7..5aed468f1880cb68c3fa57181744d875aeb6aba1 100644 (file)
@@ -46,7 +46,8 @@ where the geometrical boundary intersects Cartesian cells.</li>
 \image html image126.gif "Example of a hexahedral 3D mesh"
 </ul>
 
-Some 3D meshing algorithms, such as Hexahedron(i,j,k) and GHS3D (commercial), also can generate 3D meshes from 2D meshes, working without
+Some 3D meshing algorithms, such as Hexahedron(i,j,k) and some
+commercial ones, also can generate 3D meshes from 2D meshes, working without
 geometrical objects. 
 
 There is also a number of more specific algorithms:
index 5f6c57cc5b2ccdded693137ffdbfd3a8dbc848f3..d377b549fba48f3514c584d8c461a661ece47d78 100644 (file)
@@ -63,7 +63,7 @@ The \b Local algorithms and hypotheses to be chosen at
     the highlighted edge. 
 </li></ul>
 
-\image html image157.gif "Prism with 3D extrusion meshing. Vertical division is different on neighbor edges because a local 1D hypotheses is assigned."
+\image html image157.gif "Prism with 3D extrusion meshing. Vertical division is different on neighbor edges because several local 1D hypotheses are assigned."
 
 \sa a sample TUI Script of
 \ref tui_prism_3d_algo "Use 3D extrusion meshing algorithm".
index e2f68a8974a25633cfbebab8c650032215d6527b..4e5b6e90d4e0ed7932631fb04d1682de30b2b277 100644 (file)
@@ -60,7 +60,9 @@ In this dialog you can define
     face being meshed.</li>
 </ul>
 
-The groups of faces are suitable for this algorithm only if they contain an equal number of faces and form topologically equal structures. 
+The groups of faces are suitable for this algorithm only if they
+contain an equal number of faces and form topologically equal
+structures.
 
 \n <b>Projection 1D-2D</b> algorithm differs from <b>Projection 2D</b>
 algorithm in one aspect: it generates mesh segments on edges of
index 055723dd766ee073bf1afd79d7c1431ccd8483cf..e14640e8ba40f2bfe651cdde716a341daa5a5786 100644 (file)
@@ -38,7 +38,7 @@ smesh =  smeshBuilder.New(salome.myStudy)
 <b> Of course, <em>from smesh import *</em> is no more possible.</b>
 \n You have to explicitely write <em>smesh.some_method()</em>.
 
-<b>Some algorithms have been transferred from the namespace <em>smesh</em> to the namespace <em>smeshBuilder</em>.</b>
+<b>All algorithms have been transferred from the namespace <em>smesh</em> to the namespace <em>smeshBuilder</em>.</b>
 \n For instance:
 \code
 MEFISTO_2D_1 = Mesh_1.Triangle(algo=smesh.MEFISTO,geom=Face_1)