Salome HOME
Minor corrections
authornge <nge>
Thu, 8 Oct 2009 16:05:12 +0000 (16:05 +0000)
committernge <nge>
Thu, 8 Oct 2009 16:05:12 +0000 (16:05 +0000)
doc/salome/gui/SMESH/input/tui_defining_ghs3d_hypotheses.doc

index b014845bb338b064d34392f8731d73d14170b410..57a6aaf88a08e2584b0363d88a7b2e43e7349cca 100644 (file)
@@ -22,10 +22,10 @@ ghs3dMesh = smesh.Mesh(box,"box: Ghs3D and BLSurf mesh")
 BLSURF = ghs3dMesh.Triangle(algo=smesh.BLSURF)
 
 # create a Ghs3D algorithm for volume
-GHS3D = Mesh_1.Tetrahedron(algo=smesh.GHS3D)
+GHS3D = ghs3dMesh.Tetrahedron(algo=smesh.GHS3D)
 
 # get Ghs3D algorithm hypothesis
-GHS3D_Parameters = GHS3D.Parameters())
+GHS3D_Parameters = GHS3D.Parameters()
 
 # define an enforced vertex at (50,50,100) with a physical size of 2
 GHS3D_Parameters.SetEnforcedVertex( 50, 50, 100, 2 )