<div dir="auto"><a href="https://dev.opencascade.org/doc/overview/html/occt_user_guides__boolean_operations.html">https://dev.opencascade.org/doc/overview/html/occt_user_guides__boolean_operations.html</a><br><br><div data-smartmail="gmail_signature">--<br>jeremy theler<br><a href="http://www.seamplex.com">www.seamplex.com</a></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Feb 24, 2020, 19:01 tao song <<a href="mailto:songtao198801@gmail.com">songtao198801@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Dear Christophe,<br>
It's really solved my problem, and i'm looking forward to the new algorithm!<br>
Is there any introduction about bool function, like BooleanFragments,<br>
the introduction is vague in gmsh manual.<br>
Thank you very much.<br>
<br>
Best regards,<br>
Songt.<br>
<br>
Christophe Geuzaine <<a href="mailto:cgeuzaine@uliege.be" target="_blank" rel="noreferrer">cgeuzaine@uliege.be</a>> 于2020年2月24日周一 上午3:42写道:<br>
<br>
><br>
><br>
> Dear Songt,<br>
><br>
> Very thin (or very long) cylinders have very anisotropic parametric representations in OpenCASCADE. When the ratio is sufficiently large you run into floating point tolerance issues in the mesh generation process.<br>
><br>
> With OpenCASCADE cylinders, the workaround is to segment the cylinders in several parts. Attached is a modified version of your file that shows one way of doing it:<br>
><br>
><br>
><br>
> Christophe<br>
><br>
> PS: once the new hxt algorithm supports Fields (hopefully later this year), 3D meshing time for very refined meshes will be dramatically decreased.<br>
><br>
><br>
> > On 23 Feb 2020, at 17:52, tao song <<a href="mailto:songtao198801@gmail.com" target="_blank" rel="noreferrer">songtao198801@gmail.com</a>> wrote:<br>
> ><br>
> > Dear all,<br>
> > While i meshing a model with small cylinder in a huge domain, if the<br>
> > filed is not given, it gives me an error "No elements in volume x",<br>
> > where x denote the small cylinder volume, and if the field is used,<br>
> > the gmsh blocked and finally crashed.<br>
> > How can i get the right mesh of this kind of model (small cylinder in<br>
> > a huge domain)? I want the whole domain and the small cylinder both<br>
> > are meshed.<br>
> ><br>
> > Kind regards,<br>
> > Songt.<br>
> ><br>
> > The code i used:<br>
> > ---------------------------<br>
> > SetFactory("OpenCASCADE");<br>
> ><br>
> > Point(1) = {0,0,0}; Point(2) = {0,0,-40};<br>
> > Line(1) = {1,2};<br>
> ><br>
> > Box(1)={-50,-50,-50,100,100,100};<br>
> > Cylinder(2) = {0, 0, 0, 0, 0, -40, 0.01, 2*Pi};<br>
> > //Cylinder(2) = {0, 0, 0, 0, 0, -40, 1, 2*Pi};<br>
> > BooleanDifference(3) = { Volume{1}; Delete; }{ Volume{2}; };<br>
> > //Coherence;<br>
> > Physical Volume ( "c",11 ) = {1};<br>
> > Physical Volume ( "d",12 ) = {2};<br>
> ><br>
> > len = 0.001;<br>
> > Field[1] = Distance;<br>
> > Field[1].NNodesByEdge = 100;<br>
> > Field[1].EdgesList = {1};<br>
> ><br>
> > Field[2] = Threshold;<br>
> > Field[2].IField = 1;<br>
> > Field[2].LcMin = len*5;<br>
> > Field[2].LcMax = 20;<br>
> > Field[2].DistMin = 200*len;<br>
> > Field[2].DistMax = 30;<br>
> > Field[3] = Min;<br>
> > Field[3].FieldsList = {2};<br>
> > Background Field = 3;<br>
> > ---------------------------<br>
> ><br>
> > _______________________________________________<br>
> > gmsh mailing list<br>
> > <a href="mailto:gmsh@onelab.info" target="_blank" rel="noreferrer">gmsh@onelab.info</a><br>
> > <a href="http://onelab.info/mailman/listinfo/gmsh" rel="noreferrer noreferrer" target="_blank">http://onelab.info/mailman/listinfo/gmsh</a><br>
><br>
> —<br>
> Prof. Christophe Geuzaine<br>
> University of Liege, Electrical Engineering and Computer Science<br>
> <a href="http://www.montefiore.ulg.ac.be/~geuzaine" rel="noreferrer noreferrer" target="_blank">http://www.montefiore.ulg.ac.be/~geuzaine</a><br>
><br>
><br>
><br>
<br>
_______________________________________________<br>
gmsh mailing list<br>
<a href="mailto:gmsh@onelab.info" target="_blank" rel="noreferrer">gmsh@onelab.info</a><br>
<a href="http://onelab.info/mailman/listinfo/gmsh" rel="noreferrer noreferrer" target="_blank">http://onelab.info/mailman/listinfo/gmsh</a><br>
</blockquote></div>