mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-12 00:29:17 +05:00
Fix of bug 0020420: Bad links in Documentation
This commit is contained in:
parent
184f00f38e
commit
142fbce46d
47
doc/salome/gui/SMESH/input/tui_notebook_smesh.doc
Normal file
47
doc/salome/gui/SMESH/input/tui_notebook_smesh.doc
Normal file
@ -0,0 +1,47 @@
|
||||
/*!
|
||||
|
||||
\page tui_notebook_smesh_page Using SALOME NoteBook
|
||||
|
||||
\anchor tui_notebook_smesh
|
||||
|
||||
\code
|
||||
import geompy
|
||||
import smesh
|
||||
import salome_notebook
|
||||
|
||||
# set variables
|
||||
notebook = salome_notebook.notebook
|
||||
notebook.set("Length", 100)
|
||||
notebook.set("Width", 200)
|
||||
notebook.set("Offset", 50)
|
||||
|
||||
notebook.set("NbSegments", 7)
|
||||
notebook.set("MaxElementArea", 800)
|
||||
notebook.set("MaxElementVolume", 900)
|
||||
|
||||
# create a box
|
||||
box = geompy.MakeBoxDXDYDZ("Length", "Width", 300)
|
||||
idbox = geompy.addToStudy(box, "Box")
|
||||
|
||||
# create a mesh
|
||||
tetra = smesh.Mesh(box, "MeshBox")
|
||||
|
||||
algo1D = tetra.Segment()
|
||||
algo1D.NumberOfSegments("NbSegments")
|
||||
|
||||
algo2D = tetra.Triangle()
|
||||
algo2D.MaxElementArea("MaxElementArea")
|
||||
|
||||
algo3D = tetra.Tetrahedron(smesh.NETGEN)
|
||||
algo3D.MaxElementVolume("MaxElementVolume")
|
||||
|
||||
# compute the mesh
|
||||
ret = tetra.Compute()
|
||||
|
||||
# translate the mesh
|
||||
point = smesh.PointStructStr("Offset", 0., 0.)
|
||||
vector = smesh.DirStructStr(point)
|
||||
tetra.TranslateObject(tetra, vector, 0)
|
||||
\endcode
|
||||
|
||||
*/
|
Loading…
Reference in New Issue
Block a user