smesh/doc/salome/gui/SMESH/viewing_meshes.htm
2005-11-28 09:57:47 +00:00

249 lines
6.8 KiB
HTML
Executable File

<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
<html>
<head>
<title>Viewing Meshes</title>
<meta http-equiv="content-type" content="text/html; charset=windows-1252">
<meta name="generator" content="RoboHelp by eHelp Corporation www.ehelp.com"><style type="text/css">
<!--
p.whs1 { font-family:'Lucida Console' , monospace; margin-top:0pt; margin-bottom:0pt; }
p.whs2 { margin-top:0pt; margin-bottom:0pt; font-family:'Times New Roman' , serif; }
-->
</style><script type="text/javascript" language="JavaScript">
<!--
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
{
var strNSS = "<style type='text/css'>";
strNSS += "p.whs1 {margin-top:1pt;margin-bottom:1pt; }";
strNSS += "p.whs2 {margin-top:1pt;margin-bottom:1pt; }";
strNSS +="</style>";
document.write(strNSS);
}
//-->
</script>
<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!--
function reDo() {
if (innerWidth != origWidth || innerHeight != origHeight)
location.reload();
}
if ((parseInt(navigator.appVersion) == 4) && (navigator.appName == "Netscape")) {
origWidth = innerWidth;
origHeight = innerHeight;
onresize = reDo;
}
onerror = null;
//-->
</script>
<style type="text/css">
<!--
div.WebHelpPopupMenu { position:absolute; left:0px; top:0px; z-index:4; visibility:hidden; }
-->
</style><script type="text/javascript" language="javascript1.2" src="whmsg.js"></script>
<script type="text/javascript" language="javascript" src="whver.js"></script>
<script type="text/javascript" language="javascript1.2" src="whproxy.js"></script>
<script type="text/javascript" language="javascript1.2" src="whutils.js"></script>
<script type="text/javascript" language="javascript1.2" src="whtopic.js"></script>
</head>
<body><script type="text/javascript" language="javascript1.2">
<!--
if (window.gbWhTopic)
{
if (window.addTocInfo)
{
addTocInfo("MESH module\nTUI Scripts\nViewing Meshes");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
}
if (window.writeBtnStyle)
writeBtnStyle();
if (window.writeIntopicBar)
writeIntopicBar(1);
if (window.setRelStartPage)
{
setRelStartPage("smesh.htm");
autoSync(1);
sendSyncInfo();
sendAveInfoOut();
}
}
else
if (window.gbIE4)
document.location.reload();
//-->
</script>
<h1>Viewing Meshes</h1>
<h3>Viewing Mesh Infos</h3>
<p class="whs1">import salome</p>
<p class="whs1">import geompy</p>
<p class="whs1">import SMESH</p>
<p class="whs1">import StdMeshers</p>
<p class="whs1">&nbsp;</p>
<p class="whs1">smesh = salome.lcc.FindOrLoadComponent(&quot;FactoryServer&quot;,
&quot;SMESH&quot;)</p>
<p class="whs1">smesh.SetCurrentStudy(salome.myStudy)</p>
<p class="whs1">&nbsp;</p>
<p class="whs1">box &nbsp;&nbsp;=
geompy.MakeBox(0., 0., 0., 20., 20., 20.)</p>
<p class="whs1">idbox = geompy.addToStudy(box, &quot;box&quot;)</p>
<p class="whs1">&nbsp;</p>
<p class="whs1">subShapeList = geompy.SubShapeAll(box,
geompy.ShapeType[&quot;EDGE&quot;])</p>
<p class="whs1">edge &nbsp;&nbsp;=
subShapeList[0]</p>
<p class="whs1">name &nbsp;&nbsp;=
geompy.SubShapeName(edge, box)</p>
<p class="whs1">idedge = geompy.addToStudyInFather(box,
edge, name)</p>
<p class="whs1">&nbsp;</p>
<p class="whs1">box &nbsp;=
salome.IDToObject(idbox)</p>
<p class="whs1">edge = salome.IDToObject(idedge)</p>
<p class="whs1">&nbsp;</p>
<p class="whs1">hyp1 = smesh.CreateHypothesis(&quot;NumberOfSegments&quot;,
&quot;libStdMeshersEngine.so&quot;)</p>
<p class="whs1">hyp1.SetNumberOfSegments(3)</p>
<p class="whs1">hyp2 = smesh.CreateHypothesis(&quot;MaxElementArea&quot;,
&quot;libStdMeshersEngine.so&quot;)</p>
<p class="whs1">hyp2.SetMaxElementArea(10)</p>
<p class="whs1">hyp3 = smesh.CreateHypothesis(&quot;Arithmetic1D&quot;,
&quot;libStdMeshersEngine.so&quot;)</p>
<p class="whs1">hyp3.SetLength(1,1)</p>
<p class="whs1">hyp3.SetLength(6,0)</p>
<p class="whs1">hyp4 = smesh.CreateHypothesis(&quot;Propagation&quot;,
&quot;libStdMeshersEngine.so&quot;)</p>
<p class="whs1">&nbsp;</p>
<p class="whs1">algo1 = smesh.CreateHypothesis(&quot;Regular_1D&quot;,
&quot;libStdMeshersEngine.so&quot;)</p>
<p class="whs1">algo2 = smesh.CreateHypothesis(&quot;MEFISTO_2D&quot;,
&quot;libStdMeshersEngine.so&quot;)</p>
<p class="whs1">mesh = smesh.CreateMesh(box)</p>
<p class="whs1">&nbsp;</p>
<p class="whs1">mesh.AddHypothesis(box,hyp1)</p>
<p class="whs1">mesh.AddHypothesis(box,hyp2)</p>
<p class="whs1">mesh.AddHypothesis(box,algo1)</p>
<p class="whs1">mesh.AddHypothesis(box,algo2)</p>
<p class="whs1">mesh.AddHypothesis(edge,hyp3)</p>
<p class="whs1">mesh.AddHypothesis(edge,hyp4)</p>
<p class="whs1">mesh.AddHypothesis(edge,algo1)</p>
<p class="whs1">smesh.Compute(mesh,box)</p>
<p class="whs1">salome.sg.updateObjBrowser(1)</p>
<p class="whs1">&nbsp;</p>
<p class="whs2"># remove one hypothesis</p>
<p class="whs1">mesh.RemoveHypothesis(edge,hyp4)</p>
<p class="whs1">smesh.Compute(mesh,box)</p>
<p class="whs1">salome.sg.updateObjBrowser(1)</p>
<p class="whs1">&nbsp;</p>
<p class="whs2"># change the value
of the hypothesis</p>
<p class="whs1">hyp2.SetMaxElementArea(2)</p>
<p class="whs1">mesh.AddHypothesis(box,hyp2)</p>
<p class="whs1">smesh.Compute(mesh,box)</p>
<p class="whs1">print &quot;Information about mesh:&quot;</p>
<p class="whs1">print &quot;Number of nodes &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:
&quot;, mesh.NbNodes()</p>
<p class="whs1">print &quot;Number of edges &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:
&quot;, mesh.NbEdges()</p>
<p class="whs1">print &quot;Number of faces &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:
&quot;, mesh.NbFaces()</p>
<p class="whs1">print &quot;Number of triangles &nbsp;&nbsp;:
&quot;, mesh.NbTriangles()</p>
<p class="whs1">print &quot;Number of quadrangles : &quot;,
mesh.NbQuadrangles()</p>
<p class="whs1">print &quot;Number of polygons &nbsp;&nbsp;&nbsp;:
&quot;, mesh.NbPolygons()</p>
<p class="whs1">print &quot;Number of volumes &nbsp;&nbsp;&nbsp;&nbsp;:
&quot;, mesh.NbVolumes()</p>
<p class="whs1">print &quot;Number of tetrahedrons: &quot;,
mesh.NbTetras()</p>
<p class="whs1">print &quot;Number of hexahedrons : &quot;,
mesh.NbHexas()</p>
<p class="whs1">print &quot;Number of prisms &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:
&quot;, mesh.NbPrisms()</p>
<p class="whs1">print &quot;Number of pyramids &nbsp;&nbsp;&nbsp;:
&quot;, mesh.NbPyramids()</p>
<p class="whs1">print &quot;Number of polyhedrons : &quot;,
mesh.NbPolyhedrons()</p>
<p class="whs1">salome.sg.updateObjBrowser(1) </p>
<p class="whs1">&nbsp;</p>
<script type="text/javascript" language="javascript1.2">
<!--
if (window.writeIntopicBar)
writeIntopicBar(0);
//-->
</script>
</body>
</html>