v0.14.0
Functions | Variables
remove_mofem_meshsets.cpp File Reference
#include <MoFEM.hpp>

Go to the source code of this file.

Functions

int main (int argc, char *argv[])
 

Variables

static char help [] = "...\n\n"
 

Function Documentation

◆ main()

int main ( int  argc,
char *  argv[] 
)

Definition at line 15 of file remove_mofem_meshsets.cpp.

15  {
16  MoFEM::Core::Initialize(&argc, &argv, (char *)0, help);
17 
18  try {
19 
20  // global variables
21  char mesh_file_name[255];
22  PetscBool flg_file = PETSC_FALSE;
23  char mesh_out_file[255] = "out.h5m";
24 
25  CHKERR PetscOptionsBegin(PETSC_COMM_WORLD, "", "Field to vertices options",
26  "none");
27  CHKERR PetscOptionsString("-file_name", "mesh file name", "", "mesh.h5m",
28  mesh_file_name, 255, &flg_file);
29  CHKERR PetscOptionsString("-output_file", "output mesh file name", "",
30  "out.h5m", mesh_out_file, 255, PETSC_NULL);
31 
32  ierr = PetscOptionsEnd(); CHKERRG(ierr);
33 
34  moab::Core mb_instance;
35  moab::Interface &moab = mb_instance;
36  ParallelComm *pcomm = ParallelComm::get_pcomm(&moab, MYPCOMM_INDEX);
37  if (pcomm == NULL)
38  pcomm = new ParallelComm(&moab, PETSC_COMM_WORLD);
39  const char *option;
40  option = "";
41  CHKERR moab.load_file(mesh_file_name, 0, option);
42 
43  // Create MoFEM database
44  MoFEM::Core core(moab);
45  MoFEM::Interface &m_field = core;
46 
47  // Add logging channel for example
48  auto core_log = logging::core::get();
49  core_log->add_sink(
50  LogManager::createSink(LogManager::getStrmWorld(), "REMOVER"));
51  LogManager::setLog("REMOVER");
52  MOFEM_LOG_TAG("REMOVER", "remover");
53 
54  auto prb_ptr = m_field.get_problems();
55  std::vector<std::string> prb_list;
56  for(auto &it : *prb_ptr)
57  prb_list.push_back(it.getName());
58 
59  for (auto &it : prb_list) {
60  MOFEM_LOG("REMOVER", Sev::inform) << "Delete problem " << it;
61  CHKERR m_field.delete_problem(it);
62  }
63 
64  auto fe_ptr = m_field.get_finite_elements();
65  std::vector<std::string> fe_list;
66  for (auto &it : *fe_ptr)
67  fe_list.push_back(it->getName());
68 
69  for (auto &it : fe_list) {
70  MOFEM_LOG("REMOVER", Sev::inform)
71  << "Delete finite element " << it;
72  CHKERR m_field.delete_finite_element(it);
73  }
74 
75  auto field_ptr = m_field.get_fields();
76  std::vector<std::string> field_list;
77  for (auto &it : *field_ptr)
78  field_list.push_back(it->getName());
79 
80  for (auto &it : field_list) {
81  MOFEM_LOG("REMOVER", Sev::inform) << "Delete field " << it;
82  CHKERR m_field.delete_field(it);
83  }
84 
85  CHKERR moab.write_file(mesh_out_file);
86 
87  }
89 
91 
92  return 0;
93 }

Variable Documentation

◆ help

char help[] = "...\n\n"
static

Definition at line 13 of file remove_mofem_meshsets.cpp.

MYPCOMM_INDEX
#define MYPCOMM_INDEX
default communicator number PCOMM
Definition: definitions.h:228
MoFEM::CoreTmp< 0 >
Core (interface) class.
Definition: Core.hpp:82
MoFEM::CoreInterface::get_finite_elements
virtual const FiniteElement_multiIndex * get_finite_elements() const =0
Get the finite elements object.
MoFEM::CoreTmp< 0 >::Finalize
static MoFEMErrorCode Finalize()
Checks for options to be called at the conclusion of the program.
Definition: Core.cpp:112
MoFEM::DeprecatedCoreInterface
Deprecated interface functions.
Definition: DeprecatedCoreInterface.hpp:16
MoFEM::Interface
DeprecatedCoreInterface Interface
Definition: Interface.hpp:2010
CHKERR
#define CHKERR
Inline error check.
Definition: definitions.h:548
help
static char help[]
Definition: remove_mofem_meshsets.cpp:13
MoFEM::CoreInterface::delete_field
virtual MoFEMErrorCode delete_field(const std::string name, int verb=DEFAULT_VERBOSITY)=0
Delete field.
MoFEM::CoreInterface::delete_finite_element
virtual MoFEMErrorCode delete_finite_element(const std::string name, int verb=DEFAULT_VERBOSITY)=0
delete finite element from mofem database
MOFEM_LOG_TAG
#define MOFEM_LOG_TAG(channel, tag)
Tag channel.
Definition: LogManager.hpp:339
MoFEM::CoreInterface::get_problems
virtual const Problem_multiIndex * get_problems() const =0
Get the problems object.
mesh_file_name
char mesh_file_name[255]
Definition: mesh_smoothing.cpp:22
MoFEM::CoreInterface::get_fields
virtual const Field_multiIndex * get_fields() const =0
Get the fields object.
MoFEM::CoreTmp< 0 >::Initialize
static MoFEMErrorCode Initialize(int *argc, char ***args, const char file[], const char help[])
Initializes the MoFEM database PETSc, MOAB and MPI.
Definition: Core.cpp:72
MOFEM_LOG
#define MOFEM_LOG(channel, severity)
Log.
Definition: LogManager.hpp:308
CATCH_ERRORS
#define CATCH_ERRORS
Catch errors.
Definition: definitions.h:385
MoFEM::Core
CoreTmp< 0 > Core
Definition: Core.hpp:1148
MoFEM::Exceptions::ierr
static MoFEMErrorCodeGeneric< PetscErrorCode > ierr
Definition: Exceptions.hpp:76
MoFEM::CoreInterface::delete_problem
virtual MoFEMErrorCode delete_problem(const std::string name)=0
Delete problem.
CHKERRG
#define CHKERRG(n)
Check error code of MoFEM/MOAB/PETSc function.
Definition: definitions.h:496