Hi! I am obtaining a segmentation fault with latest git and the attached
geo file (it uses the OpenCASCADE factory):

$ gdb --args gmsh -3 veeder.geo
[...]
Program received signal SIGSEGV, Segmentation fault.
lpcvt::step3 (this=this@entry=0x7fffffffd6b0, triangulator=...,
gf=gf@entry=0x1bb2e80)
    at /home/gtheler/codigos/3ros/build/gmsh/Mesh/meshGFaceLloyd.cpp:948
948               s1 = borders[i].get_segment(0);
(gdb) 


Any suggestions?

-- 
Jeremy Theler
www.seamplex.com



// use gmsh >= 2.16.0
SetFactory("OpenCASCADE");

Point(1) = {0, 0, 0, 0.125};
Point(2) = {0, 0, 0.5, 0.125};
Cylinder(4) = {0,0,0, 0,0,0.5, 1};

// embed both centers in the surfaces
Point{1} In Surface{3};
Point{2} In Surface{2};

// mesh size
Mesh.CharacteristicLengthMin = 0.8*0.125;
Mesh.CharacteristicLengthMax = 1.2*0.125;
Mesh.CharacteristicLengthExtendFromBoundary = 0;

// optimization
Mesh.Lloyd = 1;
Mesh.HighOrderOptimize = 1;
Mesh.Optimize = 1;
Mesh.OptimizeNetgen = 1;


Physical Point("origin") = {1};
Physical Point("up") = {2};

Physical Surface("lat") = {1};
Physical Surface("sup") = {2};
Physical Surface("inf") = {3};

Physical Volume("bulk") = {4};
_______________________________________________
gmsh mailing list
[email protected]
http://onelab.info/mailman/listinfo/gmsh

Reply via email to