13static char help[] =
"teting interface inserting algorithm\n\n";
17int main(
int argc,
char *argv[]) {
23 PetscBool flg = PETSC_TRUE;
25#if PETSC_VERSION_GE(3, 6, 4)
32 if (flg != PETSC_TRUE) {
34 "*** ERROR -my_file (MESH FILE NEEDED)");
37 moab::Core mb_instance;
38 moab::Interface &moab = mb_instance;
51 std::vector<BitRefLevel> bit_levels;
56 CHKERR PetscPrintf(PETSC_COMM_WORLD,
"Insert Interface %d\n",
62 CHKERR moab.create_meshset(MESHSET_SET, ref_level_meshset);
64 ->getEntitiesByTypeAndRefLevel(bit_levels.back(),
68 ->getEntitiesByTypeAndRefLevel(bit_levels.back(),
72 CHKERR moab.get_entities_by_handle(ref_level_meshset, ref_level_tets,
75 CHKERR interface->
getSides(cubit_meshset, bit_levels.back(),
true, 0);
80 cubit_meshset,
true,
true, 0);
82 CHKERR moab.delete_entities(&ref_level_meshset, 1);
88 ->updateMeshsetByEntitiesChildren(cubit_meshset, bit_levels.back(),
89 cubit_meshset, MBMAXTYPE,
true);
129 for (
int lll = ll - 2; lll < ll; lll++) {
130 std::stringstream problem_name;
131 problem_name <<
"PROBLEM_SCALAR_" << lll;
141 for (
int lll = ll - 2; lll < ll; lll++) {
142 std::stringstream problem_name;
143 problem_name <<
"PROBLEM_SCALAR_" << lll;
144 std::stringstream message;
145 message <<
"set problem problem < " << problem_name.str()
146 <<
" > bit level " << bit_levels[lll] << std::endl;
147 CHKERR PetscPrintf(PETSC_COMM_WORLD, message.str().c_str());
162 Range tets_back_bit_level;
164 bit_levels.back(),
BitRefLevel().set(), tets_back_bit_level);
171 CHKERR cit->getAttributeDataStructure(mydata);
172 std::cout << mydata << std::endl;
175 CHKERR moab.get_entities_by_type(cubit_meshset, MBTET, tets,
true);
176 tets = intersect(tets_back_bit_level, tets);
178 CHKERR moab.get_connectivity(tets, nodes,
true);
180 for (Range::iterator nit = nodes.begin(); nit != nodes.end(); nit++) {
182 CHKERR moab.get_coords(&*nit, 1, coords);
183 coords[0] += mydata.
data.User1;
184 coords[1] += mydata.
data.User2;
185 coords[2] += mydata.
data.User3;
186 CHKERR moab.set_coords(&*nit, 1, coords);
194 for (
int lll = ll - 2; lll < ll; lll++) {
196 std::stringstream problem_name;
197 problem_name <<
"PROBLEM_SCALAR_" << lll;
204 std::ofstream myfile;
208 CHKERR moab.create_meshset(MESHSET_SET, out_meshset_tet);
211 bit_levels.back(),
BitRefLevel().set(), MBTET, out_meshset_tet);
213 CHKERR moab.get_entities_by_handle(out_meshset_tet, tets,
true);
214 for (Range::iterator tit = tets.begin(); tit != tets.end(); tit++) {
217 CHKERR moab.get_connectivity(*tit, conn, num_nodes,
true);
219 for (
int nn = 0; nn < num_nodes; nn++) {
220 std::cout << conn[nn] <<
" ";
221 myfile << conn[nn] <<
" ";
223 std::cout << std::endl;
227 CHKERR moab.create_meshset(MESHSET_SET, out_meshset_prism);
229 bit_levels.back(),
BitRefLevel().set(), MBPRISM, out_meshset_prism);
231 CHKERR moab.get_entities_by_handle(out_meshset_prism, prisms);
232 for (Range::iterator pit = prisms.begin(); pit != prisms.end(); pit++) {
235 CHKERR moab.get_connectivity(*pit, conn, num_nodes,
true);
237 for (
int nn = 0; nn < num_nodes; nn++) {
238 std::cout << conn[nn] <<
" ";
239 myfile << conn[nn] <<
" ";
241 std::cout << std::endl;
247 CHKERR moab.write_file(
"out_tet.vtk",
"VTK",
"", &out_meshset_tet, 1);
248 CHKERR moab.write_file(
"out_prism.vtk",
"VTK",
"", &out_meshset_prism, 1);
251 CHKERR moab.create_meshset(MESHSET_SET, out_meshset_tets_and_prism);
252 CHKERR moab.add_entities(out_meshset_tets_and_prism, tets);
253 CHKERR moab.add_entities(out_meshset_tets_and_prism, prisms);
254 CHKERR moab.write_file(
"out_tets_and_prisms.vtk",
"VTK",
"",
255 &out_meshset_tets_and_prism, 1);
258 CHKERR moab.create_meshset(MESHSET_SET, out_meshset_tris);
260 CHKERR moab.get_adjacencies(prisms, 2,
false, tris,
261 moab::Interface::UNION);
262 std::cerr << tris.size() <<
" : " << prisms.size() << std::endl;
263 CHKERR moab.add_entities(out_meshset_tris, tris);
264 CHKERR moab.write_file(
"out_tris.vtk",
"VTK",
"", &out_meshset_tris, 1);
#define CATCH_ERRORS
Catch errors.
@ AINSWORTH_LEGENDRE_BASE
Ainsworth Cole (Legendre) approx. base .
#define CHKERR
Inline error check.
virtual MoFEMErrorCode add_finite_element(const std::string &fe_name, enum MoFEMTypes bh=MF_EXCL, int verb=DEFAULT_VERBOSITY)=0
add finite element
virtual MoFEMErrorCode build_finite_elements(int verb=DEFAULT_VERBOSITY)=0
Build finite elements.
virtual MoFEMErrorCode modify_finite_element_add_field_col(const std::string &fe_name, const std::string name_row)=0
set field col which finite element use
virtual MoFEMErrorCode add_ents_to_finite_element_by_type(const EntityHandle entities, const EntityType type, const std::string &name, const bool recursive=true)=0
add entities to finite element
virtual MoFEMErrorCode modify_finite_element_add_field_data(const std::string &fe_name, const std::string name_filed)=0
set finite element field data
virtual MoFEMErrorCode modify_finite_element_add_field_row(const std::string &fe_name, const std::string name_row)=0
set field row which finite element use
virtual MoFEMErrorCode build_fields(int verb=DEFAULT_VERBOSITY)=0
virtual MoFEMErrorCode set_field_order(const EntityHandle meshset, const EntityType type, const std::string &name, const ApproximationOrder order, int verb=DEFAULT_VERBOSITY)=0
Set order approximation of the entities in the field.
virtual MoFEMErrorCode add_ents_to_field_by_type(const Range &ents, const EntityType type, const std::string &name, int verb=DEFAULT_VERBOSITY)=0
Add entities to field meshset.
#define _IT_CUBITMESHSETS_FOR_LOOP_(MESHSET_MANAGER, IT)
Iterator that loops over all the Cubit MeshSets in a moFEM field.
#define _IT_CUBITMESHSETS_BY_SET_TYPE_FOR_LOOP_(MESHSET_MANAGER, CUBITBCTYPE, IT)
Iterator that loops over a specific Cubit MeshSet having a particular BC meshset in a moFEM field.
MoFEMErrorCode partitionGhostDofs(const std::string name, int verb=VERBOSE)
determine ghost nodes
MoFEMErrorCode buildProblem(const std::string name, const bool square_matrix, int verb=VERBOSE)
build problem data structures
MoFEMErrorCode partitionProblem(const std::string name, int verb=VERBOSE)
partition problem dofs (collective)
MoFEMErrorCode partitionFiniteElements(const std::string name, bool part_from_moab=false, int low_proc=-1, int hi_proc=-1, int verb=VERBOSE)
partition finite elements
virtual MoFEMErrorCode add_problem(const std::string &name, enum MoFEMTypes bh=MF_EXCL, int verb=DEFAULT_VERBOSITY)=0
Add problem.
virtual MoFEMErrorCode modify_problem_ref_level_add_bit(const std::string &name_problem, const BitRefLevel &bit)=0
add ref level to problem
virtual MoFEMErrorCode modify_problem_add_finite_element(const std::string name_problem, const std::string &fe_name)=0
add finite element to problem, this add entities assigned to finite element to a particular problem
std::bitset< BITREFLEVEL_SIZE > BitRefLevel
Bit structure attached to each entity identifying to what mesh entity is attached.
implementation of Data Operators for Forces and Sources
PetscErrorCode PetscOptionsGetString(PetscOptions *, const char pre[], const char name[], char str[], size_t size, PetscBool *set)
Arbitrary block attributes data structure.
virtual MoFEMErrorCode build_adjacencies(const Range &ents, int verb=DEFAULT_VERBOSITY)=0
build adjacencies
virtual MoFEMErrorCode add_field(const std::string &name, const FieldSpace space, const FieldApproximationBase base, const FieldCoefficientsNumber nb_of_coefficients, const TagType tag_type=MB_TAG_SPARSE, const enum MoFEMTypes bh=MF_EXCL, int verb=DEFAULT_VERBOSITY)=0
Add field.
static MoFEMErrorCode Initialize(int *argc, char ***args, const char file[], const char help[])
Initializes the MoFEM database PETSc, MOAB and MPI.
static MoFEMErrorCode Finalize()
Checks for options to be called at the conclusion of the program.
Deprecated interface functions.
Create interface from given surface and insert flat prisms in-between.
MoFEMErrorCode getSides(const int msId, const CubitBCType cubit_bc_type, const BitRefLevel mesh_bit_level, const bool recursive, int verb=QUIET)
Store tetrahedra from each side of the interface separately in two child meshsets of the parent meshs...
MoFEMErrorCode splitSides(const EntityHandle meshset, const BitRefLevel &bit, const int msId, const CubitBCType cubit_bc_type, const bool add_interface_entities, const bool recursive=false, int verb=QUIET)
Split nodes and other entities of tetrahedra on both sides of the interface and insert flat prisms in...
Problem manager is used to build and partition problems.
MoFEMErrorCode getInterface(IFACE *&iface) const
Get interface refernce to pointer of interface.