Feellgood
meshUtils.h
1 #include <gmsh.h>
2 
6 template <int TYPE>
7 bool all_elems_are(std::vector<int> &container)
8  { return std::all_of(container.begin(), container.end(), [](int &e_type){return e_type == TYPE;} ); }
9 
13 template <class T>
14 bool checkNamedObjects(std::vector<T> const &v_prm, const int dim_obj)
15  {
16  bool existRegions(true);
17  std::vector<std::pair<int, int> > physGroups;
18  gmsh::model::getPhysicalGroups(physGroups,dim_obj);
19  std::vector<std::string> o_names;
20  std::for_each(physGroups.begin(),physGroups.end(),[&o_names]( std::pair<int, int> &pGroup)
21  {
22  std::string physGroupName;
23  gmsh::model::getPhysicalName(pGroup.first, pGroup.second, physGroupName);
24  o_names.push_back(physGroupName);
25  });
26 
27  std::for_each(v_prm.begin(),v_prm.end(),[&existRegions,&o_names](auto p)
28  {
29  if (p.regName != "__default__")
30  {
31  if (!std::any_of(o_names.begin(),o_names.end(),
32  [&p] (std::string &elem) { return p.regName == elem; } ) )
33  {
34  std::cout << "Fatal Error: region " << p.regName << " not found.\n";
35  existRegions = false;
36  }
37  }
38  } );
39  return existRegions;
40  }
41