12 {
13
15
16 try {
17
18 moab::Core mb_instance;
19 moab::Interface &moab = mb_instance;
20 int rank;
21 MPI_Comm_rank(PETSC_COMM_WORLD, &rank);
22
23 PetscBool flg = PETSC_TRUE;
27 if (flg != PETSC_TRUE) {
28 SETERRQ(PETSC_COMM_SELF, 1, "*** ERROR -my_file (MESH FILE NEEDED)");
29 }
30
31 const char *option;
32 option = "";
34
35
38
39
41 bit_level0.set(0);
43 CHKERR moab.create_meshset(MESHSET_SET, meshset_level0);
45 0, 3, bit_level0);
46
47
50 3);
51
52
54
56
57
59
62 "MESH_NODE_POSITIONS");
63
65 it)) {
66
67 std::ostringstream fe_name;
68 fe_name << "FORCE_FE_" << it->getMeshsetId();
71 "DISPLACEMENT");
73 "DISPLACEMENT");
75 "DISPLACEMENT");
77 fe_name.str());
78
80 CHKERR moab.get_entities_by_type(it->meshset, MBTRI, tris,
true);
82 fe_name.str());
83 }
84
87
88 std::ostringstream fe_name;
89 fe_name << "PRESSURE_FE_" << it->getMeshsetId();
92 "DISPLACEMENT");
94 "DISPLACEMENT");
96 "DISPLACEMENT");
98 fe_name.str(), "MESH_NODE_POSITIONS");
100 fe_name.str());
101
103 CHKERR moab.get_entities_by_type(it->meshset, MBTRI, tris,
true);
105 fe_name.str());
106 }
107
108
109
110
120 1);
121
122
123
124
126
129
130
132
134
138
139
140
141
144
146
150
151 typedef tee_device<std::ostream, std::ofstream>
TeeDevice;
153 std::ostringstream txt_name;
155 std::ofstream ofs(txt_name.str().c_str());
158
160 boost::ptr_map<std::string, NeumannForcesSurface> neumann_forces;
162 it)) {
163 std::ostringstream fe_name;
164 fe_name << "FORCE_FE_" << it->getMeshsetId();
165 string fe_name_str = fe_name.str();
168 "MESH_NODE_POSITIONS", neumann_forces.at(fe_name_str).getLoopFe(),
169 false, false);
170 neumann_forces.at(fe_name_str)
171 .addForce(
"DISPLACEMENT",
F, it->getMeshsetId());
173 CHKERR it->getBcDataStructure(data);
174 my_split << *it << std::endl;
175 my_split << data << std::endl;
176 }
179 std::ostringstream fe_name;
180 fe_name << "PRESSURE_FE_" << it->getMeshsetId();
181 string fe_name_str = fe_name.str();
184 "MESH_NODE_POSITIONS", neumann_forces.at(fe_name_str).getLoopFe(),
185 false, false);
186 neumann_forces.at(fe_name_str)
187 .addPressure(
"DISPLACEMENT",
F, it->getMeshsetId());
189 CHKERR it->getBcDataStructure(data);
190 my_split << *it << std::endl;
191 my_split << data << std::endl;
192 }
193 boost::ptr_map<std::string, NeumannForcesSurface>::iterator mit =
194 neumann_forces.begin();
195 for (; mit != neumann_forces.end(); mit++) {
197 mit->second->getLoopFe());
198 }
201
203 "TEST_PROBLEM",
ROW,
F, INSERT_VALUES, SCATTER_REVERSE);
204
205 const double eps = 1e-4;
206
210
211 my_split.precision(3);
212 my_split.setf(std::ios::fixed);
213 double val = fabs(dit->get()->getFieldData()) <
eps
214 ? 0.0
215 : dit->get()->getFieldData();
216 my_split << dit->get()->getPetscGlobalDofIdx() << " " << val << std::endl;
217 }
218
219 double sum = 0;
221 sum = fabs(sum) <
eps ? 0.0 : sum;
222 my_split << std::endl
223 << "Sum : " << std::setprecision(3) << sum << std::endl;
224
226 }
228
230
231 return 0;
232}
#define CATCH_ERRORS
Catch errors.
@ AINSWORTH_LEGENDRE_BASE
Ainsworth Cole (Legendre) approx. base nme:nme847.
#define CHKERR
Inline error check.
virtual const Problem * get_problem(const std::string problem_name) const =0
Get the problem object.
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_row(const std::string &fe_name, const std::string name_row)=0
set field row which finite element use
virtual MoFEMErrorCode modify_finite_element_add_field_data(const std::string &fe_name, const std::string name_field)=0
set finite element field data
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.
virtual MoFEMErrorCode loop_dofs(const Problem *problem_ptr, const std::string &field_name, RowColData rc, DofMethod &method, int lower_rank, int upper_rank, int verb=DEFAULT_VERBOSITY)=0
Make a loop over dofs.
virtual MoFEMErrorCode loop_finite_elements(const std::string problem_name, const std::string &fe_name, FEMethod &method, boost::shared_ptr< NumeredEntFiniteElement_multiIndex > fe_ptr=nullptr, MoFEMTypes bh=MF_EXIST, CacheTupleWeakPtr cache_ptr=CacheTupleSharedPtr(), int verb=DEFAULT_VERBOSITY)=0
Make a loop over finite elements.
#define _IT_CUBITMESHSETS_BY_BCDATA_TYPE_FOR_LOOP_(MESHSET_MANAGER, CUBITBCTYPE, IT)
Iterator that loops over a specific Cubit MeshSet in a moFEM field.
MoFEMErrorCode partitionGhostDofs(const std::string name, int verb=VERBOSE)
determine ghost nodes
MoFEMErrorCode partitionSimpleProblem(const std::string name, int verb=VERBOSE)
partition problem dofs
MoFEMErrorCode buildProblem(const std::string name, const bool square_matrix, int verb=VERBOSE)
build problem data structures
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
#define _IT_NUMEREDDOF_ROW_FOR_LOOP_(PROBLEMPTR, IT)
use with loops to iterate row DOFs
std::bitset< BITREFLEVEL_SIZE > BitRefLevel
Bit structure attached to each entity identifying to what mesh entity is attached.
MoFEMErrorCode addHOOpsFace3D(const std::string field, E &e, bool hcurl, bool hdiv)
PetscErrorCode PetscOptionsGetString(PetscOptions *, const char pre[], const char name[], char str[], size_t size, PetscBool *set)
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.
Definition of the force bc data structure.
Definition of the pressure bc data structure.
keeps basic data about problem
Problem manager is used to build and partition problems.
Projection of edge entities with one mid-node on hierarchical basis.
MoFEMErrorCode getInterface(IFACE *&iface) const
Get interface reference to pointer of interface.
Vector manager is used to create vectors \mofem_vectors.
Finite element and operators to apply force/pressures applied to surfaces.