2003-05-19 19:54:48 +06:00
|
|
|
# creer des geometries, en selectionner une
|
|
|
|
|
|
|
|
import SMESH
|
|
|
|
import smeshpy
|
|
|
|
import salome
|
|
|
|
from salome import sg
|
|
|
|
import math
|
|
|
|
#import SMESH_BasicHypothesis_idl
|
|
|
|
|
|
|
|
import geompy
|
|
|
|
|
2003-05-20 13:18:29 +06:00
|
|
|
geom = salome.lcc.FindOrLoadComponent("FactoryServer", "GEOM")
|
2003-05-19 19:54:48 +06:00
|
|
|
myBuilder = salome.myStudy.NewBuilder()
|
|
|
|
from geompy import gg
|
|
|
|
|
|
|
|
ShapeTypeCompSolid = 1
|
|
|
|
ShapeTypeSolid = 2
|
|
|
|
ShapeTypeShell = 3
|
|
|
|
ShapeTypeFace = 4
|
|
|
|
ShapeTypeWire = 5
|
|
|
|
ShapeTypeEdge = 6
|
|
|
|
ShapeTypeVertex = 7
|
|
|
|
|
|
|
|
# ---- define a box
|
|
|
|
|
|
|
|
box = geompy.MakeBox(0., 0., 0., 100., 200., 300.)
|
|
|
|
idb = geompy.addToStudy(box,"box")
|
|
|
|
|
|
|
|
# ---- add first face of box in study
|
|
|
|
|
|
|
|
subShapeList=geompy.SubShapeAll(box,ShapeTypeFace)
|
|
|
|
face=subShapeList[0]
|
|
|
|
name = geompy.SubShapeName( face._get_Name(), box._get_Name() )
|
|
|
|
print name
|
|
|
|
idf=geompy.addToStudyInFather(box,face,name)
|
|
|
|
|
|
|
|
# ---- add shell from box in study
|
|
|
|
|
|
|
|
subShellList=geompy.SubShapeAll(box,ShapeTypeShell)
|
|
|
|
shell = subShellList[0]
|
|
|
|
name = geompy.SubShapeName( shell._get_Name(), box._get_Name() )
|
|
|
|
print name
|
|
|
|
ids=geompy.addToStudyInFather(box,shell,name)
|
|
|
|
|
|
|
|
# ---- add first edge of face in study
|
|
|
|
|
|
|
|
edgeList = geompy.SubShapeAll(face,ShapeTypeEdge)
|
|
|
|
edge=edgeList[0];
|
|
|
|
name = geompy.SubShapeName( edge._get_Name(), face._get_Name() )
|
|
|
|
print name
|
|
|
|
ide=geompy.addToStudyInFather(face,edge,name)
|
|
|
|
|
|
|
|
# ---- launch SMESH, init a Mesh with the box
|
|
|
|
gen=smeshpy.smeshpy()
|
|
|
|
mesh=gen.Init(idb)
|
|
|
|
|
|
|
|
# ---- create Hypothesis
|
|
|
|
|
|
|
|
print "-------------------------- create Hypothesis"
|
|
|
|
print "-------------------------- LocalLength"
|
|
|
|
hyp1=gen.CreateHypothesis("LocalLength")
|
|
|
|
print hyp1.GetName()
|
|
|
|
print hyp1.GetId()
|
|
|
|
hypo1 = hyp1._narrow(SMESH.SMESH_LocalLength)
|
|
|
|
print hypo1.GetLength()
|
|
|
|
hypo1.SetLength(100)
|
|
|
|
print hypo1.GetLength()
|
|
|
|
|
|
|
|
print "-------------------------- bidon"
|
|
|
|
hyp3=gen.CreateHypothesis("bidon")
|
|
|
|
|
|
|
|
print "-------------------------- NumberOfSegments"
|
|
|
|
hyp3=gen.CreateHypothesis("NumberOfSegments")
|
|
|
|
hypo3=hyp3._narrow(SMESH.SMESH_NumberOfSegments)
|
|
|
|
hypo3.SetNumberOfSegments(7)
|
|
|
|
print hypo3.GetName()
|
|
|
|
print hypo3.GetNumberOfSegments()
|
|
|
|
print hypo3.GetId()
|
|
|
|
|
|
|
|
print "-------------------------- MaxElementArea"
|
|
|
|
hyp4=gen.CreateHypothesis("MaxElementArea")
|
|
|
|
hypo4=hyp4._narrow(SMESH.SMESH_MaxElementArea)
|
|
|
|
hypo4.SetMaxElementArea(5000)
|
|
|
|
print hypo4.GetName()
|
|
|
|
print hypo4.GetMaxElementArea()
|
|
|
|
print hypo4.GetId()
|
|
|
|
|
|
|
|
print "-------------------------- Regular_1D"
|
|
|
|
alg1=gen.CreateHypothesis("Regular_1D")
|
|
|
|
print alg1.GetName()
|
|
|
|
print alg1.GetId()
|
|
|
|
algo1=alg1._narrow(SMESH.SMESH_Algo)
|
|
|
|
listHyp=algo1.GetCompatibleHypothesis()
|
|
|
|
for hyp in listHyp:
|
|
|
|
print hyp
|
|
|
|
|
|
|
|
algo_1=alg1._narrow(SMESH.SMESH_Regular_1D)
|
|
|
|
print algo_1.GetId()
|
|
|
|
|
|
|
|
print "-------------------------- MEFISTO_2D"
|
|
|
|
alg2=gen.CreateHypothesis("MEFISTO_2D")
|
|
|
|
print alg2.GetName()
|
|
|
|
print alg2.GetId()
|
|
|
|
algo2=alg2._narrow(SMESH.SMESH_Algo)
|
|
|
|
listHyp=algo2.GetCompatibleHypothesis()
|
|
|
|
for hyp in listHyp:
|
|
|
|
print hyp
|
|
|
|
algo_2=alg2._narrow(SMESH.SMESH_MEFISTO_2D)
|
|
|
|
print algo_2.GetId()
|
|
|
|
|
|
|
|
# ---- add hypothesis to edge
|
|
|
|
|
|
|
|
print "-------------------------- add hypothesis to edge"
|
|
|
|
edge=salome.IDToObject(ide)
|
|
|
|
submesh=mesh.GetElementsOnShape(edge)
|
|
|
|
ret=mesh.AddHypothesis(edge,algo_1)
|
|
|
|
print ret
|
|
|
|
ret=mesh.AddHypothesis(edge,hypo1)
|
|
|
|
print ret
|
|
|
|
|
|
|
|
# ---- compute edge
|
|
|
|
|
|
|
|
##print "-------------------------- compute edge"
|
|
|
|
##ret=gen.Compute(mesh,ide)
|
|
|
|
##print ret
|
|
|
|
##log=mesh.GetLog(1);
|
|
|
|
##for a in log:
|
|
|
|
## print a
|
|
|
|
|
|
|
|
# ---- add hypothesis to box
|
|
|
|
|
|
|
|
print "-------------------------- add hypothesis to box"
|
|
|
|
box=salome.IDToObject(idb)
|
|
|
|
submesh=mesh.GetElementsOnShape(box)
|
|
|
|
ret=mesh.AddHypothesis(box,algo_1)
|
|
|
|
print ret
|
|
|
|
ret=mesh.AddHypothesis(box,hypo1)
|
|
|
|
print ret
|
|
|
|
ret=mesh.AddHypothesis(box,algo_2)
|
|
|
|
print ret
|
|
|
|
ret=mesh.AddHypothesis(box,hypo4)
|
|
|
|
print ret
|
|
|
|
|
|
|
|
# ---- compute face
|
|
|
|
|
|
|
|
print "-------------------------- compute face"
|
|
|
|
ret=gen.Compute(mesh,idf)
|
|
|
|
print ret
|
|
|
|
log=mesh.GetLog(1);
|
|
|
|
for a in log:
|
|
|
|
print "-------"
|
|
|
|
ii = 0
|
|
|
|
ir = 0
|
|
|
|
comType = a.commandType
|
|
|
|
if comType == 0:
|
|
|
|
for i in range(a.number):
|
|
|
|
ind = a.indexes[ii]
|
|
|
|
ii = ii+1
|
|
|
|
r1 = a.coords[ir]
|
|
|
|
ir = ir+1
|
|
|
|
r2 = a.coords[ir]
|
|
|
|
ir = ir+1
|
|
|
|
r3 = a.coords[ir]
|
|
|
|
ir = ir+1
|
|
|
|
print "AddNode %i - %g %g %g" % (ind, r1, r2, r3)
|
|
|
|
elif comType == 1:
|
|
|
|
for i in range(a.number):
|
|
|
|
ind = a.indexes[ii]
|
|
|
|
ii = ii+1
|
|
|
|
i1 = a.indexes[ii]
|
|
|
|
ii = ii+1
|
|
|
|
i2 = a.indexes[ii]
|
|
|
|
ii = ii+1
|
|
|
|
print "AddEdge %i - %i %i" % (ind, i1, i2)
|
|
|
|
elif comType == 2:
|
|
|
|
for i in range(a.number):
|
|
|
|
ind = a.indexes[ii]
|
|
|
|
ii = ii+1
|
|
|
|
i1 = a.indexes[ii]
|
|
|
|
ii = ii+1
|
|
|
|
i2 = a.indexes[ii]
|
|
|
|
ii = ii+1
|
|
|
|
i3 = a.indexes[ii]
|
|
|
|
ii = ii+1
|
|
|
|
print "AddTriangle %i - %i %i %i" % (ind, i1, i2, i3)
|
|
|
|
|
|
|
|
# ---- compute box
|
|
|
|
|
|
|
|
##print "-------------------------- compute box"
|
|
|
|
##ret=gen.Compute(mesh,idb)
|
|
|
|
##print ret
|
|
|
|
##log=mesh.GetLog(1);
|
|
|
|
##print log
|
|
|
|
|
|
|
|
##shell=salome.IDToObject(ids)
|
|
|
|
##submesh=mesh.GetElementsOnShape(shell)
|
|
|
|
##ret=mesh.AddHypothesis(shell,algo_1)
|
|
|
|
##print ret
|
|
|
|
##ret=mesh.AddHypothesis(shell,hypo1)
|
|
|
|
##print ret
|
|
|
|
##ret=gen.Compute(mesh,ids)
|
|
|
|
##print ret
|
|
|
|
|