Skip to content
Snippets Groups Projects
Commit 141b3728 authored by Jean-François Remacle's avatar Jean-François Remacle
Browse files

add occ shapes and boolean operators on shapes

add benchmark/boolean
parent fe1eccdf
No related branches found
No related tags found
No related merge requests found
......@@ -331,6 +331,7 @@ class GModel
int writeOCCBREP(const std::string &name);
int importOCCShape(const void *shape);
int applyOCCMeshConstraints(const void *constraints);
void addOCCFillet(std::vector<int> & , double &);
void addShape(std::string name, std::vector<double> &p, std::string op);
// Gmsh mesh file format
......
......@@ -545,15 +545,23 @@ void GModel::addShape(std::string name, std::vector<double> &p,
_occ_internals->Box(SPoint3(p[0],p[1],p[2]),
SPoint3(p[3],p[4],p[5]),o);
}
else if (name=="Fillet"){
std::vector<int> edges;
for (int i=0;i<p.size()-1;i++)edges.push_back((int)p[i]);
addOCCFillet(edges,p[p.size()-1]);
}
else{
// we should that at the end, a test now !!
_occ_internals->buildLists();
_occ_internals->buildGModel(this);
return;
}
destroy();
_occ_internals->buildLists();
_occ_internals->buildGModel(this);
}
catch(Standard_Failure &err){
Msg::Error("%s", err.GetMessageString());
}
}
TopoDS_Shape GlueFaces (const TopoDS_Shape& theShape,
......@@ -604,6 +612,51 @@ TopoDS_Shape GlueFaces (const TopoDS_Shape& theShape,
// return aRes;
}
void OCC_Internals::Fillet(std::vector<TopoDS_Edge> & edgesToFillet,
double Radius){
// create a tool for fillet
BRepFilletAPI_MakeFillet fill (shape);
for (int i=0;i<edgesToFillet.size();++i){
fill.Add(edgesToFillet[i]);
}
for (int i = 1; i <= fill.NbContours(); i++) {
fill.SetRadius(Radius, i, 1);
}
fill.Build();
if (!fill.IsDone()) {
Msg::Error("Fillet can't be computed on the given shape with the given radius");
return;
}
shape = fill.Shape();
if (shape.IsNull()) return;
// Check shape validity
BRepCheck_Analyzer ana (shape, false);
if (!ana.IsValid()) {
Msg::Error("Fillet algorithm have produced an invalid shape result");
}
}
void GModel::addOCCFillet(std::vector<int> & edgesToFillet,
double &Radius)
{
std::vector<TopoDS_Edge> toto;
for (int i=0;i<edgesToFillet.size();++i){
GEdge *ge = getEdgeByTag(edgesToFillet[i]);
if (ge->getNativeType() == GEntity::OpenCascadeModel){
toto.push_back(*(TopoDS_Edge*)ge->getNativePtr());
}
}
_occ_internals->Fillet(toto,Radius);
}
void OCC_Internals::applyBooleanOperator(TopoDS_Shape tool, const BooleanOperator &op)
{
if (tool.IsNull()) return;
......@@ -822,7 +875,7 @@ void OCC_Internals::Torus(const SPoint3 &p, const SVector3 &d, double R1, double
BRepPrimAPI_MakeTorus MC (anAxes, R1, R2);
MC.Build();
if (!MC.IsDone()) {
Msg::Error("Cylinder can't be computed from the given parameters");
Msg::Error("Torus can't be computed from the given parameters");
return;
}
TopoDS_Shape aShape = MC.Shape();
......@@ -839,7 +892,7 @@ void OCC_Internals::Torus(const SPoint3 &p, const SVector3 &d, double R1, double
BRepPrimAPI_MakeTorus MC(anAxes, R1, R2, angle);
MC.Build();
if (!MC.IsDone()) {
Msg::Error("Cylinder can't be computed from the given parameters");
Msg::Error("Torus can't be computed from the given parameters");
return;
}
TopoDS_Shape aShape = MC.Shape();
......@@ -1145,4 +1198,9 @@ void GModel::addShape(std::string name, std::vector<double> &p,
"Boolean Operators On Solids");
}
void GModel:: addOCCFillet(std::vector<int> & , double &){
Msg::Error("Gmsh must be compiled with OpenCascade support to apply "
"the Fillet operator");
}
#endif
......@@ -58,6 +58,7 @@ class OCC_Internals {
const BooleanOperator &op);
void Torus(const SPoint3 &bottom_center, const SVector3 &dir, double R1, double R2,
double angle, const BooleanOperator &op);
void Fillet(std::vector<TopoDS_Edge> &shapes, double radius);
void applyBooleanOperator(TopoDS_Shape tool, const BooleanOperator &op);
};
......
......@@ -114,6 +114,7 @@ using std::iostream;
#include "BRepAlgoAPI_Cut.hxx"
#include "BRepAlgoAPI_Section.hxx"
#include "BRepAlgoAPI_Fuse.hxx"
#include "BRepFilletAPI_MakeFillet.hxx"
#endif
#if defined(WIN32)
......
......@@ -409,10 +409,23 @@ static void Mesh2D(GModel *m)
// and curve meshes) is global as it depends on a smooth normal
// field generated from the surface mesh of the source surfaces
if(!Mesh2DWithBoundaryLayers(m)){
std::for_each(m->firstFace(), m->lastFace(), meshGFace());
std::vector<GFace*> blob;
for(GModel::fiter it = m->firstFace() ; it!=m->lastFace(); ++it){
blob.push_back(*it);
}
meshGFace mesher;
#pragma omp parallel for schedule(dynamic)
for(int i=0; i<blob.size();i++){
mesher(blob[i]);
}
#pragma omp barrier
// std::for_each(m->firstFace(), m->lastFace(), meshGFace());
int nIter = 0;
while(1){
meshGFace mesher;
int nbPending = 0;
for(GModel::fiter it = m->firstFace() ; it!=m->lastFace(); ++it){
if ((*it)->meshStatistics.status == GFace::PENDING){
......
L = 100;
H = 30;
Z = 10;
OCCShape("Box",{0,0,0,L,H,Z},"none");
R = 4;
OCCShape("Fillet",{1:12,R},"none");
OCCShape("Cone",{0*L/2,H/2,-Z,0,0,1,.3*R,2*R,3*Z},"Fuse");
OCCShape("Fillet",{1,R},"none");
OCCShape("Fillet",{14,R/8},"none");
OCCShape("Cone",{0.99*L/2,H/2,-Z,0,0,1,.3*R,2*R,3*Z},"Fuse");
OCCShape("Fillet",{1,R},"none");
OCCShape("Fillet",{83,R/8},"none");
OCCShape("Cone",{0.99*L,H/2,-Z,0,0,1,3*R,.2*R,3*Z},"Cut");
Compound Surface(100000000) = {31, 40, 43, 13};
L = 100;
H = 30;
Z = 10;
OCCShape("Box",{0,0,0,L,H,Z},"none");
R = 10;
X = 5;
For I In {0:5}
OCCShape("Cylinder",{2*I*X,H/2,-3*Z,0,0,1,R,6*Z},"Cut");
EndFor
OCCShape("Sphere",{H-X,H/2,Z/2,R},"Fuse");
OCCShape("Torus",{L,H/2,Z/2,0,0,1,2*R,R/2},"Fuse");
OCCShape("End",{},"none");
OCCShape("Torus",{0,0,0,0,0,1,10,9.9},"None");
OCCShape("End",{},"none");
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment