]> SALOME platform Git repositories - modules/smesh.git/commitdiff
Salome HOME
Corrections for example
authorYoann Audouin <yoann.audouin@edf.fr>
Mon, 4 Apr 2022 14:35:06 +0000 (16:35 +0200)
committerYoann Audouin <yoann.audouin@edf.fr>
Mon, 4 Apr 2022 14:35:06 +0000 (16:35 +0200)
13 files changed:
doc/salome/examples/basic_shaper_smesh_without_session.py
doc/salome/examples/creating_meshes_ex03.py
doc/salome/examples/generate_flat_elements.py
doc/salome/examples/quality_controls_ex05.py
doc/salome/examples/shaper_smesh_groups_without_session.py
doc/salome/examples/tests.set
doc/salome/gui/SMESH/input/additional_hypo.rst
doc/salome/gui/SMESH/input/smesh_migration.rst
doc/salome/gui/SMESH/locale/fr/LC_MESSAGES/python_api.po
src/SMESH_SWIG/SMESH_Nut.py
src/SMESH_SWIG/SMESH_mechanic_tetra.py
src/SMESH_SWIG/SMESH_test.py
src/SMESH_SWIG/SMESH_test4.py

index 54594a19448632239395f27a33a4a813f212de79..ae84cd85a6acd225825b8518ff4473a65877282d 100644 (file)
@@ -33,10 +33,8 @@ model.end()
 ###
 ### SHAPERSTUDY component
 ###
-#import pdb; pdb.set_trace()
 model.publishToShaperStudy()
 import SHAPERSTUDY
-#import pdb; pdb.set_trace()
 Box_1_1, = SHAPERSTUDY.shape(model.featureStringId(Box_1))
 ###
 ### SMESH component
index fc20d36608bddef585b768c0413720f662eb581a..6f04d4d30503972868fa36daaeeddd2ec6d66616 100644 (file)
@@ -27,19 +27,19 @@ Max_Element_Volume_1 = Tetrahedron.MaxElementVolume(40000)
 # create sub-mesh and assign algorithms on Face_1
 Regular_1D_1 = Mesh_1.Segment(geom=Face_1)
 Nb_Segments_2 = Regular_1D_1.NumberOfSegments(4)
-MEFISTO_2D_1 = Mesh_1.Triangle(algo=smeshBuilder.MEFISTO,geom=Face_1)
+MEFISTO_2D_1 = Mesh_1.Triangle(algo=smeshBuilder.NETGEN_2D,geom=Face_1)
 SubMesh_1 = MEFISTO_2D_1.GetSubMesh()
 
 # create sub-mesh and assign algorithms on Face_2
 Regular_1D_2 = Mesh_1.Segment(geom=Face_2)
 Nb_Segments_3 = Regular_1D_2.NumberOfSegments(8)
-MEFISTO_2D_2 = Mesh_1.Triangle(algo=smeshBuilder.MEFISTO,geom=Face_2)
+MEFISTO_2D_2 = Mesh_1.Triangle(algo=smeshBuilder.NETGEN_2D,geom=Face_2)
 SubMesh_2 = MEFISTO_2D_2.GetSubMesh()
 
 # create sub-mesh and assign algorithms on Face_3
 Regular_1D_3 = Mesh_1.Segment(geom=Face_3)
 Nb_Segments_4 = Regular_1D_3.NumberOfSegments(12)
-MEFISTO_2D_3 = Mesh_1.Triangle(algo=smeshBuilder.MEFISTO,geom=Face_3)
+MEFISTO_2D_3 = Mesh_1.Triangle(algo=smeshBuilder.NETGEN_2D,geom=Face_3)
 SubMesh_3 = MEFISTO_2D_3.GetSubMesh()
 
 # check existing sub-mesh priority order
index d14cb0495a39de07d8f1aaf082f0d151039819a2..d8c86051411c7b0e85ba44eed99b2d7b927b7be4 100644 (file)
@@ -15,7 +15,7 @@ from salome.smesh import smeshBuilder
 smesh =  smeshBuilder.New()
 
 
-# geometry 
+# geometry
 
 O = geompy.MakeVertex(0, 0, 0)
 OX = geompy.MakeVectorDXDYDZ(1, 0, 0)
@@ -44,8 +44,8 @@ vec2 = geompy.MakeVector(Vertex_5, Vertex_6)
 Mesh_1 = smesh.Mesh(Partition_1)
 Regular_1D = Mesh_1.Segment()
 Nb_Segments_1 = Regular_1D.NumberOfSegments(15)
-MEFISTO_2D = Mesh_1.Triangle(algo=smeshBuilder.MEFISTO)
-Length_From_Edges_2D = MEFISTO_2D.LengthFromEdges()
+NETGEN_2D = Mesh_1.Triangle(algo=smeshBuilder.NETGEN_2D)
+Length_From_Edges_2D = NETGEN_2D.LengthFromEdges()
 ALGO3D = Mesh_1.Tetrahedron()
 isDone = Mesh_1.Compute()
 
index b01e35cae1a6d0dcd44785cda7454ef5b5af4342..738c44ecea15208e6b3ceecc26a623e9899fa8f0 100644 (file)
@@ -19,9 +19,9 @@ idbox = geompy.addToStudy(box, "box")
 mesh = smesh.Mesh(box, "Mesh_free_nodes")
 algo = mesh.Segment()
 algo.NumberOfSegments(10)
-algo = mesh.Triangle(smeshBuilder.MEFISTO)
+algo = mesh.Triangle(smeshBuilder.NETGEN_2D)
 algo.MaxElementArea(150.)
-mesh.Compute() 
+mesh.Compute()
 
 # Remove some elements to obtain free nodes
 # Criterion : AREA < 80.
index 592dc506af04470acd8396a7cb7f15f381cdfc9f..d155b143607b8d26f94fbc8dc1aa9e250b35d5ee 100644 (file)
@@ -63,7 +63,7 @@ Mesh_1 = smesh.Mesh(Box_1_1)
 Regular_1D = Mesh_1.Segment()
 Local_Length_1 = Regular_1D.LocalLength(5)
 
-MEFISTO_2D = Mesh_1.Triangle(algo=smeshBuilder.MEFISTO)
+NETGEN_2D = Mesh_1.Triangle(algo=smeshBuilder.NETGEN_2D)
 
 ok = Mesh_1.Compute()
 
index 6c2a12a1d11669f213cda08577f5ff17eec8cd2b..295351b17355ab2e36e44a4d70976ed6ea24b0a7 100644 (file)
@@ -50,7 +50,9 @@ SET(BAD_TESTS
   blocFissure_04_without_session.py
   blocFissure_05_without_session.py
   blocFissure_06_without_session.py
-  blocFissure_07_without_session.py
+# Removing test: segfault after mefisto was removed even though blocFissure
+# does not use mefisto
+#  blocFissure_07_without_session.py
   )
 
 IF(NOT WIN32)
index 6fa98f9c29687becdc4a6b4da847f2e9299285af..70ff5216e99c840bb8cfc3bc5ab8abfea13864d9 100644 (file)
@@ -1,4 +1,4 @@
-.. _additional_hypo_page: 
+.. _additional_hypo_page:
 
 *********************
 Additional Hypotheses
@@ -9,10 +9,10 @@ Additional Hypotheses
 An **Additional Hypothesis** can be defined in the same way as any main hypothesis in :ref:`Create Mesh <create_mesh_anchor>` or :ref:`Create Sub-Mesh <constructing_submeshes_page>` dialog.
 
 The following additional hypothesis are available:
+
 * :ref:`propagation_anchor` and :ref:`propagofdistribution_anchor` hypotheses are useful for creation of quadrangle and hexahedral meshes.
 * :ref:`Viscous Layers <viscous_layers_anchor>` and :ref:`Viscous Layers 2D <viscous_layers_anchor>` hypotheses allow creation of layers of highly stretched elements near mesh boundary, which is beneficial for high quality viscous computations.
-* :ref:`quadratic_mesh_anchor` hypothesis allows generation of second order meshes. 
+* :ref:`quadratic_mesh_anchor` hypothesis allows generation of second order meshes.
 * :ref:`quadrangle_preference_anchor` hypothesis enables generation of quadrangles.
 
 
@@ -31,8 +31,8 @@ parameters will be propagated via opposite sides of quadrangles to the
 whole geometry, and this propagation stops at an edge with other local
 meshing parameters.
 
-This hypothesis can be taken into account by 
-:ref:`Wire Discretization <a1d_algos_anchor>` and 
+This hypothesis can be taken into account by
+:ref:`Wire Discretization <a1d_algos_anchor>` and
 :ref:`Composite Side Discretization <a1d_algos_anchor>` algorithms.
 
 **See Also** a sample TUI Script of a :ref:`Propagation hypothesis <tui_propagation>` operation
@@ -48,9 +48,9 @@ propagation are defined on an edge of a quadrangular face, the
 opposite edge will have the same number of nodes and the same
 relations between segment lengths, unless another hypothesis
 has been locally defined on the opposite edge.
-This hypothesis can be taken into account by 
-:ref:`Wire Discretization <a1d_algos_anchor>` and 
+
+This hypothesis can be taken into account by
+:ref:`Wire Discretization <a1d_algos_anchor>` and
 :ref:`Composite Side Discretization <a1d_algos_anchor>` algorithms.
 
 **See Also** a sample TUI Script of a :ref:`Propagation hypothesis <tui_propagation>` operation
@@ -63,7 +63,7 @@ Viscous Layers and Viscous Layers 2D
 **Viscous Layers** and **Viscous Layers 2D** additional
 hypotheses can be used by several 3D algorithms, for example
 Hexahedron(i,j,k), or 2D algorithms, for example Triangle
-(MEFISTO), correspondingly. These hypotheses allow creation of layers
+(NETGEN2D), correspondingly. These hypotheses allow creation of layers
 of highly stretched elements, prisms in 3D and quadrilaterals in 2D,
 near mesh boundary, which is beneficial for high quality viscous
 computations.
@@ -73,7 +73,7 @@ computations.
 
 .. image:: ../images/viscous_layers_2d_hyp.png
        :align: center
-   
+
 
 * **Name** - allows to define the name of the hypothesis.
 * **Total thickness** - gives the total thickness of element layers.
@@ -83,18 +83,18 @@ computations.
 
   * **Surface offset + smooth** method extrudes nodes along the normal to the underlying geometrical surface. Smoothing of the internal surface of element layers is possible to avoid creation of invalid prisms.
   * **Face offset** method extrudes nodes along the average normal of surrounding mesh faces to the intersection with a neighbor mesh face translated along its own normal by the thickness of layers. The thickness of layers can be limited to avoid creation of invalid prisms.
-  * **Node offset** method extrudes nodes along the average normal of surrounding mesh faces by the thickness of layers. The thickness of layers can be limited to avoid creation of invalid prisms. 
+  * **Node offset** method extrudes nodes along the average normal of surrounding mesh faces by the thickness of layers. The thickness of layers can be limited to avoid creation of invalid prisms.
 
-       .. image:: ../images/viscous_layers_extrusion_method.png 
+       .. image:: ../images/viscous_layers_extrusion_method.png
                :align: center
 
        .. centered::
                Prisms created by the tree extrusion methods at the same other parameters
 
-* **Specified Faces/Edges are** - defines how the shapes specified by the next parameter are used.     
+* **Specified Faces/Edges are** - defines how the shapes specified by the next parameter are used.
 * **Faces/Edges with/without layers** - defines geometrical faces or edges on which element layers either should be or should not be constructed, depending on the value of the previous parameter (**Specified Faces/Edges are**). Faces (or edges) can be selected either in the Object Browser or in the VTK Viewer. **Add** button becomes active as soon as a suitable sub-shape is selected.
 
-  .. note:: 
+  .. note::
        A mesh shown in the 3D Viewer can prevent selection of faces and edges, just hide the mesh to avoid this. If a face, which should be selected, is hidden by other faces, consider creating a group of faces to be selected in the Geometry module. To avoid a long wait when a geometry with many faces (or edges) is displayed, the number of faces (edges) shown at a time is limited by the value of :ref:`Sub-shapes preview chunk size <chunk_size_pref>` preference (in Preferences/Mesh/General tab).
 
 
@@ -110,7 +110,7 @@ computations.
 
 * **Create groups from layers** - activates creation of a group containing elements of the layers.
 
-  .. image:: ../images/viscous_layers_on_submesh.png 
+  .. image:: ../images/viscous_layers_on_submesh.png
      :align: center
 
   .. centered::
@@ -146,9 +146,9 @@ Quadratic Mesh hypothesis allows to build a quadratic mesh (in which
 links between element nodes are not straight but curved lines due to
 presence of an additional mid-side node).
 
-This 1D hypothesis can be taken into account by 
-:ref:`Wire Discretization <a1d_algos_anchor>` and 
-:ref:`Composite Side Discretization <a1d_algos_anchor>` algorithms. To create a quadratic mes assign this hypothesis at 
+This 1D hypothesis can be taken into account by
+:ref:`Wire Discretization <a1d_algos_anchor>` and
+:ref:`Composite Side Discretization <a1d_algos_anchor>` algorithms. To create a quadratic mes assign this hypothesis at
 :ref:`mesh construction <constructing_meshes_page>`.
 
 See :ref:`adding_quadratic_elements_page` for more information about quadratic meshes.
index dad99f4bf571f2ccb255e506c847bb26631f851a..1035a6eca40282e1a5df177f73fad8e82305e613 100644 (file)
@@ -42,11 +42,11 @@ User Guide.
 
   For instance::
 
-       MEFISTO_2D_1 = Mesh_1.Triangle(algo=smesh.MEFISTO,geom=Face_1)
+       NETGEN_2D_1 = Mesh_1.Triangle(algo=smesh.NETGEN_2D,geom=Face_1)
 
   is replaced by::
 
-       MEFISTO_2D_1 = Mesh_1.Triangle(algo=smeshBuilder.MEFISTO,geom=Face_1)
+       NETGEN_2D_1 = Mesh_1.Triangle(algo=smeshBuilder.NETGEN_2D,geom=Face_1)
 
   StdMeshers algorithms concerned are *REGULAR, PYTHON, COMPOSITE, MEFISTO, Hexa, QUADRANGLE, RADIAL_QUAD*.
 
@@ -97,7 +97,7 @@ User Guide.
        import GHS3DPlugin
        import HexoticPLUGIN
 
-  is replaced by:: 
+  is replaced by::
 
        from salome.StdMeshers import StdMeshersBuilder
        from salome.NETGENPlugin import NETGENPluginBuilder
index 35fcb88cfc2a13967e6e16c8a4c99daa74567d17..433087bd3db641d0b41027da113af57d944e6bdf 100644 (file)
@@ -1539,13 +1539,6 @@ msgstr ""
 msgid "for the python function that calculates the length of all segments"
 msgstr ""
 
-# d547c98271ce4546853aef52f20e3c2e
-#: StdMeshersBuilder.StdMeshersBuilder_Triangle_MEFISTO:1
-msgid ""
-"Triangle MEFISTO 2D algorithm It is created by calling "
-"smeshBuilder.Mesh.Triangle(smeshBuilder.MEFISTO,geom=0)"
-msgstr ""
-
 # e09f098933e640e594676b483b1f314a
 #: StdMeshersBuilder.StdMeshersBuilder_Triangle_MEFISTO.LengthFromEdges:1
 msgid "Defines \"LengthFromEdges\" hypothesis to build triangles"
index 1f45f16a8c0819e5fd5efbe3e958f7ba8a1f6364..79d3b20b84ca8b6c45fa29805878a801bd666288 100644 (file)
@@ -23,7 +23,7 @@
 
 #####################################################################
 #Created                :17/02/2005
-#Author                 :MASLOV Eugeny, KOVALTCHUK Alexey 
+#Author                 :MASLOV Eugeny, KOVALTCHUK Alexey
 #####################################################################
 #
 import salome
@@ -41,7 +41,7 @@ import math
 
 #Sketcher_1 creation
 print("Sketcher creation...")
-Sketcher_1 = geompy.MakeSketcher("Sketcher:F 100 -57.7:TT 100 57.7:TT 0 115.47:TT -100 57.7:TT -100 -57.7:TT 0 -115.47:WW") 
+Sketcher_1 = geompy.MakeSketcher("Sketcher:F 100 -57.7:TT 100 57.7:TT 0 115.47:TT -100 57.7:TT -100 -57.7:TT 0 -115.47:WW")
 geompy.addToStudy(Sketcher_1, "Sketcher_1")
 Face_1 = geompy.MakeFace(Sketcher_1, 1)
 geompy.addToStudy(Face_1, "Face_1")
@@ -58,7 +58,7 @@ geompy.addToStudy(Prism_1, "Prism_1")
 
 #Sketcher_2 creation
 print("Sketcher creation...")
-Sketcher_2 = geompy.MakeSketcher("Sketcher:F 50 0:TT 80 0:TT 112 13:TT 112 48:TT 80 63:TT 80 90:TT 50 90:WW", [0,0,0, 1,0,0, 0,1,0]) 
+Sketcher_2 = geompy.MakeSketcher("Sketcher:F 50 0:TT 80 0:TT 112 13:TT 112 48:TT 80 63:TT 80 90:TT 50 90:WW", [0,0,0, 1,0,0, 0,1,0])
 geompy.addToStudy(Sketcher_2, "Sketcher_2")
 Face_2 = geompy.MakeFace(Sketcher_2, 1)
 geompy.addToStudy(Face_2, "Face_2")
@@ -129,7 +129,7 @@ smesh.SetName(hAvLength, "AverageLength_"+str(theAverageLength))
 
 print("-------------------------- MaxElementArea")
 theMaxElementArea = 20
-algoMef = mesh.Triangle(smeshBuilder.MEFISTO)
+algoMef = mesh.Triangle(smeshBuilder.NETGEN_2D)
 hArea = algoMef.MaxElementArea( theMaxElementArea )
 print(hArea.GetName())
 print(hArea.GetId())
index 1e424cbddfe1485cc222f4eed20412023f0ffcb7..922523e0e6bf8ac440844fb051e95fbbf46f57b6 100644 (file)
@@ -128,7 +128,7 @@ smesh.SetName(hypNbSeg, "NumberOfSegments_" + str(numberOfSegment))
 
 maxElementArea = 20
 
-algo2 = mesh.Triangle(smeshBuilder.MEFISTO)
+algo2 = mesh.Triangle(smeshBuilder.NETGEN_2D)
 hypArea = algo2.MaxElementArea(maxElementArea)
 print(hypArea.GetName())
 print(hypArea.GetId())
index c6504e37ae1dd6304703514358d4c821a5247807..644c4b2af9b939b065da3f2ff6df393ee3428aa5 100644 (file)
@@ -75,7 +75,7 @@ print(hyp.GetName())
 print(hyp.GetId())
 print(hyp.GetLength())
 
-algo_2 = mesh.Triangle(smeshBuilder.MEFISTO, box)
+algo_2 = mesh.Triangle(smeshBuilder.NETGEN_2D, box)
 hyp = algo_2.MaxElementArea(5000)
 print(hyp.GetName())
 print(hyp.GetId())
index 1fd2773081cc2cbcbcc92b364c9771e35d50f0f3..e8551e187088da5d08a1ad6a12d1d0cf7aeb337a 100644 (file)
@@ -55,13 +55,13 @@ algo1 = mesh.Segment()
 algo1.NumberOfSegments(10)
 
 # Set 2D algorithm/hypotheses to mesh
-algo2 = mesh.Triangle(smeshBuilder.MEFISTO)
+algo2 = mesh.Triangle(smeshBuilder.NETGEN_2D)
 algo2.MaxElementArea(10)
 
 # Create submesh on face
 algo3 = mesh.Segment(face)
 algo3.NumberOfSegments(10)
-algo4 = mesh.Triangle(smeshBuilder.MEFISTO, face)
+algo4 = mesh.Triangle(smeshBuilder.NETGEN_2D, face)
 algo4.MaxElementArea(100)
 submesh = algo4.GetSubMesh()
 smesh.SetName(submesh, "SubMeshFace")