Correct test script for mesh information

This commit is contained in:
vsr 2009-11-10 13:33:37 +00:00
parent 91b0f0faee
commit 7b99421d57

View File

@ -14,6 +14,7 @@ import SMESH
# create a box # create a box
box = geompy.MakeBox(0., 0., 0., 20., 20., 20.) box = geompy.MakeBox(0., 0., 0., 20., 20., 20.)
geompy.addToStudy(box, "box") geompy.addToStudy(box, "box")
[Face_1,Face_2,Face_3,Face_4,Face_5,Face_5] = geompy.SubShapeAll(box, geompy.ShapeType["FACE"])
# create a mesh # create a mesh
tetra = smesh.Mesh(box, "MeshBox") tetra = smesh.Mesh(box, "MeshBox")
@ -48,7 +49,8 @@ print " polyhedrons : ", tetra.NbPolyhedrons()
# Get Information About Mesh by GetMeshInfo # Get Information About Mesh by GetMeshInfo
print "\nInformation about mesh by GetMeshInfo:" print "\nInformation about mesh by GetMeshInfo:"
info = smesh.GetMeshInfo(tetra) info = smesh.GetMeshInfo(tetra)
for i in info: keys = info.keys(); keys.sort()
for i in keys:
print " %s : %d" % ( i, info[i] ) print " %s : %d" % ( i, info[i] )
pass pass
@ -59,22 +61,24 @@ nbAdd = group.Add( [ 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
# Get Information About Group by GetMeshInfo # Get Information About Group by GetMeshInfo
print "\nInformation about group by GetMeshInfo:" print "\nInformation about group by GetMeshInfo:"
info = smesh.GetMeshInfo(group) info = smesh.GetMeshInfo(group)
for i in info: keys = info.keys(); keys.sort()
for i in keys:
print " %s : %d" % ( i, info[i] ) print " %s : %d" % ( i, info[i] )
pass pass
# Creation of SubMesh # Creation of SubMesh
Regular_1D_1_1 = tetra.Segment(geom=Face) Regular_1D_1_1 = tetra.Segment(geom=Face_1)
Nb_Segments_1 = Regular_1D_1_1.NumberOfSegments(5) Nb_Segments_1 = Regular_1D_1_1.NumberOfSegments(5)
Nb_Segments_1.SetDistrType( 0 ) Nb_Segments_1.SetDistrType( 0 )
Quadrangle_2D = tetra.Quadrangle(geom=Face) Quadrangle_2D = tetra.Quadrangle(geom=Face_1)
isDone = tetra.Compute() isDone = tetra.Compute()
submesh = Regular_1D_1_1.GetSubMesh() submesh = Regular_1D_1_1.GetSubMesh()
# Get Information About SubMesh by GetMeshInfo # Get Information About SubMesh by GetMeshInfo
print "\nInformation about Submesh by GetMeshInfo:" print "\nInformation about Submesh by GetMeshInfo:"
info = smesh.GetMeshInfo(submesh) info = smesh.GetMeshInfo(submesh)
for i in info: keys = info.keys(); keys.sort()
for i in keys:
print " %s : %d" % ( i, info[i] ) print " %s : %d" % ( i, info[i] )
pass pass