v0.15.0
Loading...
Searching...
No Matches
MoFEM::CubitMeshSets_change_bc_data_structure Struct Reference

#include "src/multi_indices/BCMultiIndices.hpp"

Collaboration diagram for MoFEM::CubitMeshSets_change_bc_data_structure:
[legend]

Public Member Functions

 CubitMeshSets_change_bc_data_structure (Interface &moab, const GenericCubitBcData &bc_data)
 
void operator() (CubitMeshSets &e)
 

Public Attributes

InterfacemOab
 
const GenericCubitBcDatabcData
 

Detailed Description

change meshset attributes for material data structure

Definition at line 437 of file BCMultiIndices.hpp.

Constructor & Destructor Documentation

◆ CubitMeshSets_change_bc_data_structure()

MoFEM::CubitMeshSets_change_bc_data_structure::CubitMeshSets_change_bc_data_structure ( Interface & moab,
const GenericCubitBcData & bc_data )
inline

Definition at line 440 of file BCMultiIndices.hpp.

Member Function Documentation

◆ operator()()

void MoFEM::CubitMeshSets_change_bc_data_structure::operator() ( CubitMeshSets & e)

Definition at line 434 of file BCMultiIndices.cpp.

434 {
435
436 // Need to run this to set tag size, don;t know nothing about structure
437 int tag_size[] = {(int)bcData.getSizeOfData()};
438 void const *tag_data[] = {bcData.getDataPtr()};
439 if ((e.cubitBcType & CubitBCType(NODESET)).any()) {
440 CHKERR mOab.tag_set_by_ptr(e.nsTag_data, &e.meshset, 1, tag_data, tag_size);
441 CHKERR mOab.tag_get_by_ptr(e.nsTag_data, &e.meshset, 1,
442 (const void **)&e.tagBcData, &e.tagBcSize);
443 } else if ((e.cubitBcType & CubitBCType(SIDESET)).any()) {
444 CHKERR mOab.tag_set_by_ptr(e.ssTag_data, &e.meshset, 1, tag_data, tag_size);
445 CHKERR mOab.tag_get_by_ptr(e.ssTag_data, &e.meshset, 1,
446 (const void **)&e.tagBcData, &e.tagBcSize);
447 } else {
448 THROW_MESSAGE("You have to have NODESET or SIDESET to apply BC data on it");
449 }
450 // Here I know about structure
451 CHKERR e.setBcDataStructure(bcData);
452 // Get Type form BC data
453 CHKERR e.getTypeFromBcData(e.cubitBcType);
454}
@ NODESET
@ SIDESET
#define CHKERR
Inline error check.
#define THROW_MESSAGE(msg)
Throw MoFEM exception.
std::bitset< 32 > CubitBCType
Definition Types.hpp:52
virtual const void * getDataPtr() const =0
get pointer to data structure
virtual std::size_t getSizeOfData() const =0
get data structure size

Member Data Documentation

◆ bcData

const GenericCubitBcData& MoFEM::CubitMeshSets_change_bc_data_structure::bcData

Definition at line 439 of file BCMultiIndices.hpp.

◆ mOab

Interface& MoFEM::CubitMeshSets_change_bc_data_structure::mOab

Definition at line 438 of file BCMultiIndices.hpp.


The documentation for this struct was generated from the following files: