X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=doc%2Fsalome%2Fgui%2FSMESH%2Finput%2Fsmeshpy_interface.doc;h=e725ef99cf237c4d8d012ac6cd3f0752efb768f4;hp=6669892c019c2a40c05ede1f98834fc2084ceed3;hb=d44f22428b2b8255f0481f9ff5c1c459b7d395b7;hpb=da4fe2a060153eadccd50faeec22f80b0613fd80 diff --git a/doc/salome/gui/SMESH/input/smeshpy_interface.doc b/doc/salome/gui/SMESH/input/smeshpy_interface.doc index 6669892c0..e725ef99c 100644 --- a/doc/salome/gui/SMESH/input/smeshpy_interface.doc +++ b/doc/salome/gui/SMESH/input/smeshpy_interface.doc @@ -36,21 +36,13 @@ distribution are always available: - Hexa(3D) - etc... -There are also some algorithms, which can be installed optionally, -some of them are based on open-source meshers: -- NETGEN (1D-2D, 2D, 1D-2D-3D, 3D) - -... and others are based on commercial meshers: -- GHS3D (3D) -- BLSURF (2D) - To add hypotheses, use the interfaces, provided by the assigned algorithms. Below you can see an example of usage of the package smesh for 3d mesh generation. \anchor example_3d_mesh -

Example of 3d mesh generation with NETGEN:

+

Example of 3d mesh generation:

\code from geompy import * @@ -115,7 +107,7 @@ algo2d = tetra.Triangle() algo2d.LengthFromEdges() # Define 3D hypothesis -algo3d = tetra.Tetrahedron(smesh.NETGEN) +algo3d = tetra.Tetrahedron() algo3d.MaxElementVolume(100) # Compute the mesh