|
| v0.14.0
|
Go to the source code of this file.
|
int | main (int argc, char *argv[]) |
|
◆ main()
int main |
( |
int |
argc, |
|
|
char * |
argv[] |
|
) |
| |
Definition at line 22 of file hcurl_continuity_check.cpp.
31 MPI_Comm_rank(PETSC_COMM_WORLD, &rank);
33 PetscBool flg = PETSC_TRUE;
35 #if PETSC_VERSION_GE(3, 6, 4)
44 if (flg != PETSC_TRUE) {
45 SETERRQ(PETSC_COMM_SELF, 1,
"*** ERROR -my_file (MESH FILE NEEDED)");
52 enum bases { AINSWORTH, DEMKOWICZ, LASBASETOP };
54 const char *list_bases[] = {
"ainsworth",
"demkowicz"};
56 PetscInt choice_base_value = AINSWORTH;
58 LASBASETOP, &choice_base_value, &flg);
60 if (flg != PETSC_TRUE) {
65 if (choice_base_value == AINSWORTH) {
67 }
else if (choice_base_value == DEMKOWICZ) {
79 CHKERR moab.create_meshset(MESHSET_SET, meshset_level0);
101 "MESH_NODE_POSITIONS");
107 "MESH_NODE_POSITIONS");
113 "MESH_NODE_POSITIONS");
119 "MESH_NODE_POSITIONS");
148 CHKERR skin.find_skin(0, tets,
false, skin_faces);
157 faces = subtract(faces, skin_faces);
161 CHKERR moab.get_adjacencies(faces, 1,
false, edges, moab::Interface::UNION);
166 CHKERR moab.get_adjacencies(skin_faces, 1,
false, skin_edges,
167 moab::Interface::UNION);
215 CHKERR VecSetRandom(
v, PETSC_NULL);
218 "TEST_PROBLEM",
ROW,
v, INSERT_VALUES, SCATTER_REVERSE);
222 typedef tee_device<std::ostream, std::ofstream>
TeeDevice;
224 std::ofstream ofs(
"forces_and_sources_hdiv_continuity_check.txt");
237 mField(m_field), tH(
th) {}
248 boost::shared_ptr<const NumeredEntFiniteElement> mofem_fe =
252 .find(boost::make_tuple(
type, side))
255 int sense = side_table.get<1>()
256 .find(boost::make_tuple(
type, side))
263 int nb_dofs = data.
getN().size2() / 3;
264 for (
int dd = 0;
dd < nb_dofs;
dd++) {
265 for (
int ddd = 0; ddd < 3; ddd++) {
273 (
const void **)&t_ptr);
275 for (
int dd = 0;
dd < 3;
dd++) {
276 t_ptr[
dd] += sense *
t[
dd];
280 if (
type == MBEDGE) {
282 boost::shared_ptr<const NumeredEntFiniteElement> mofem_fe =
286 .find(boost::make_tuple(
type, side))
290 CHKERR mField.
get_moab().get_adjacencies(&edge, 1, 3,
false, adj_tets,
291 moab::Interface::UNION);
292 const int nb_adj_tets = adj_tets.size();
295 int nb_dofs = data.
getN().size2() / 3;
296 for (
int dd = 0;
dd < nb_dofs;
dd++) {
297 for (
int ddd = 0; ddd < 3; ddd++) {
305 (
const void **)&t_ptr);
307 for (
int dd = 0;
dd < 3;
dd++) {
308 t_ptr[
dd] +=
t[
dd] / nb_adj_tets;
332 gaussPts.resize(4, 4 + 6);
334 for (; ff < 4; ff++) {
336 for (;
dd < 3;
dd++) {
344 for (; ee < 6; ee++) {
346 for (;
dd < 3;
dd++) {
355 }
catch (std::exception &ex) {
356 std::ostringstream ss;
357 ss <<
"throw in method: " << ex.what() <<
" at line " << __LINE__
358 <<
" in file " << __FILE__;
366 struct OpFacesSkinFluxes
377 mField(m_field), tH1(th1), tH2(th2), mySplit(my_split) {}
390 (
const void **)&t_ptr);
394 (
const void **)&tn_ptr);
403 int nb_dofs = data.
getN().size2() / 3;
405 for (;
dd < nb_dofs;
dd++) {
417 const double eps = 1e-8;
418 if (fabs(*tn_ptr) >
eps) {
420 "HCurl continuity failed %6.4e", *tn_ptr);
423 mySplit.precision(5);
424 mySplit << face <<
" " << fabs(*tn_ptr) << std::endl;
441 mField(m_field), tH1(_th1), tH2(_th2), mySplit(my_split) {}
454 (
const void **)&t_ptr);
458 (
const void **)&tn_ptr);
467 const double eps = 1e-8;
468 if (fabs(*tn_ptr) >
eps) {
470 "HCurl continuity failed %6.4e", *tn_ptr);
473 mySplit.precision(5);
475 mySplit << face <<
" " << fabs(*tn_ptr) << std::endl;
490 gaussPts.resize(3, 1);
510 mField(m_field), tH1(_th1), tH2(_th2), mySplit(my_split) {}
523 (
const void **)&t_ptr);
527 (
const void **)&tn_ptr);
534 unsigned int nb_dofs = data.
getN().size2() / 3;
537 "Number of dofs on edge and number of base functions not "
542 for (
unsigned int dd = 0;
dd != nb_dofs; ++
dd) {
559 const double eps = 1e-8;
560 if (fabs(*tn_ptr) >
eps) {
562 "HCurl continuity failed %6.4e", *tn_ptr);
565 mySplit.precision(5);
567 mySplit << edge <<
" " << fabs(*tn_ptr) << std::endl;
582 gaussPts.resize(2, 1);
590 MyTetFE tet_fe(m_field);
591 MyTriFE tri_fe(m_field);
592 MyTriFE skin_fe(m_field);
593 MyEdgeFE edge_fe(m_field);
596 double def_val[] = {0, 0, 0};
597 CHKERR moab.tag_get_handle(
"T", 3, MB_TYPE_DOUBLE, th1,
598 MB_TAG_CREAT | MB_TAG_SPARSE, &def_val);
600 auto material_grad_mat = boost::make_shared<MatrixDouble>();
601 auto material_det_vec = boost::make_shared<VectorDouble>();
602 auto material_inv_grad_mat = boost::make_shared<MatrixDouble>();
605 "MESH_NODE_POSITIONS", material_grad_mat));
607 material_grad_mat, material_det_vec, material_inv_grad_mat));
608 tet_fe.getOpPtrVector().push_back(
new OpSetHOWeights(material_det_vec));
609 tet_fe.getOpPtrVector().push_back(
611 tet_fe.getOpPtrVector().push_back(
613 tet_fe.getOpPtrVector().push_back(
new OpTetFluxes(m_field, th1));
616 CHKERR moab.tag_get_handle(
"TN", 1, MB_TYPE_DOUBLE, th2,
617 MB_TAG_CREAT | MB_TAG_SPARSE, &def_val);
619 tri_fe.getOpPtrVector().push_back(
621 tri_fe.getOpPtrVector().push_back(
624 tri_fe.getOpPtrVector().push_back(
626 tri_fe.getOpPtrVector().push_back(
629 skin_fe.getOpPtrVector().push_back(
631 skin_fe.getOpPtrVector().push_back(
633 skin_fe.getOpPtrVector().push_back(
634 new OpFacesSkinFluxes(m_field, th1, th2, my_split));
636 edge_fe.getOpPtrVector().push_back(
638 edge_fe.getOpPtrVector().push_back(
640 edge_fe.getOpPtrVector().push_back(
641 new OpEdgesFluxes(m_field, th1, th2, my_split));
643 for (Range::iterator fit = faces.begin(); fit != faces.end(); fit++) {
644 CHKERR moab.tag_set_data(th1, &*fit, 1, &def_val);
645 CHKERR moab.tag_set_data(th2, &*fit, 1, &def_val);
649 my_split <<
"internal\n";
651 my_split <<
"skin\n";
653 my_split <<
"edges\n";
657 CHKERR moab.create_meshset(MESHSET_SET, meshset);
660 CHKERR moab.write_file(
"out.vtk",
"VTK",
"", &meshset, 1);
◆ edge_coords
const double edge_coords[6][6] |
|
static |
Initial value:= {
{0, 0, 0, 1, 0, 0}, {1, 0, 0, 0, 1, 0}, {0, 1, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 1}, {1, 0, 0, 0, 0, 1}, {0, 1, 0, 0, 0, 1}}
Definition at line 18 of file hcurl_continuity_check.cpp.
◆ face_coords
const double face_coords[4][9] |
|
static |
Initial value:= {{0, 0, 0, 1, 0, 0, 0, 0, 1},
{1, 0, 0, 0, 1, 0, 0, 0, 1},
{0, 0, 0, 0, 1, 0, 0, 0, 1},
{0, 0, 0, 1, 0, 0, 0, 1, 0}}
Definition at line 13 of file hcurl_continuity_check.cpp.
◆ help
#define MoFEMFunctionReturnHot(a)
Last executable line of each PETSc function used for error handling. Replaces return()
MoFEMErrorCode getInterface(IFACE *&iface) const
Get interface reference to pointer of interface.
Data on single entity (This is passed as argument to DataOperator::doWork)
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.
Calculate tangent vector on edge form HO geometry approximation.
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.
MoFEMErrorCode buildProblem(const std::string name, const bool square_matrix, int verb=VERBOSE)
build problem data structures
@ MOFEM_STD_EXCEPTION_THROW
Problem manager is used to build and partition problems.
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
PetscErrorCode MoFEMErrorCode
MoFEM/PETSc error code.
UBlasMatrix< double > MatrixDouble
virtual MoFEMErrorCode setGaussPts(int order_row, int order_col, int order_data)
set user specific integration rule
const VectorDouble & getFieldData() const
get dofs values
Projection of edge entities with one mid-node on hierarchical basis.
static MoFEMErrorCode Finalize()
Checks for options to be called at the conclusion of the program.
virtual MoFEMErrorCode doWork(int row_side, int col_side, EntityType row_type, EntityType col_type, EntitiesFieldData::EntData &row_data, EntitiesFieldData::EntData &col_data)
Operator for bi-linear form, usually to calculate values on left hand side.
Calculate HO coordinates at gauss points.
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.
Deprecated interface functions.
DeprecatedCoreInterface Interface
MatrixDouble & getTangentAtGaussPts()
get tangent vector to edge curve at integration points
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
#define CHKERR
Inline error check.
MatrixDouble & getTangent2AtGaussPts()
if higher order geometry return tangent vector to triangle at Gauss pts.
MatrixDouble & getTangent1AtGaussPts()
if higher order geometry return tangent vector to triangle at Gauss pts.
virtual MoFEMErrorCode add_finite_element(const std::string &fe_name, enum MoFEMTypes bh=MF_EXCL, int verb=DEFAULT_VERBOSITY)=0
add finite element
virtual moab::Interface & get_moab()=0
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 build_finite_elements(int verb=DEFAULT_VERBOSITY)=0
Build finite elements.
default operator for TRI element
multi_index_container< boost::shared_ptr< SideNumber >, indexed_by< ordered_unique< member< SideNumber, EntityHandle, &SideNumber::ent > >, ordered_non_unique< composite_key< SideNumber, const_mem_fun< SideNumber, EntityType, &SideNumber::getEntType >, member< SideNumber, signed char, &SideNumber::side_number > > > > > SideNumber_multiIndex
SideNumber_multiIndex for SideNumber.
boost::shared_ptr< const NumeredEntFiniteElement > getNumeredEntFiniteElementPtr() const
Return raw pointer to NumeredEntFiniteElement.
virtual int getRule(int order_row, int order_col, int order_data)
another variant of getRule
Calculate normals at Gauss points of triangle element.
constexpr double t
plate stiffness
virtual MoFEMErrorCode modify_finite_element_add_field_data(const std::string &fe_name, const std::string name_field)=0
set finite element field data
Volume finite element base.
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 modify_problem_ref_level_add_bit(const std::string &name_problem, const BitRefLevel &bit)=0
add ref level to problem
Vector manager is used to create vectors \mofem_vectors.
default operator for EDGE element
Get field gradients at integration pts for scalar filed rank 0, i.e. vector field.
const MatrixAdaptor getVectorN(const FieldApproximationBase base, const int gg)
get Hdiv of base functions at Gauss pts
const double v
phase velocity of light in medium (cm/ns)
static MoFEMErrorCode Initialize(int *argc, char ***args, const char file[], const char help[])
Initializes the MoFEM database PETSc, MOAB and MPI.
const Tensor2_symmetric_Expr< const ddTensor0< T, Dim, i, j >, typename promote< T, double >::V, Dim, i, j > dd(const Tensor0< T * > &a, const Index< i, Dim > index1, const Index< j, Dim > index2, const Tensor1< int, Dim > &d_ijk, const Tensor1< double, Dim > &d_xyz)
static const double face_coords[4][9]
#define CATCH_ERRORS
Catch errors.
MatrixDouble & getN(const FieldApproximationBase base)
get base functions this return matrix (nb. of rows is equal to nb. of Gauss pts, nb....
MoFEMErrorCode partitionSimpleProblem(const std::string name, int verb=VERBOSE)
partition problem dofs
MoFEMErrorCode doWork(int side, EntityType type, EntitiesFieldData::EntData &data)
Operator for linear form, usually to calculate values on right hand side.
Set inverse jacobian to base functions.
@ AINSWORTH_LEGENDRE_BASE
Ainsworth Cole (Legendre) approx. base .
@ HCURL
field with continuous tangents
const FTensor::Tensor2< T, Dim, Dim > Vec
@ MOFEM_DATA_INCONSISTENCY
MatrixDouble gaussPts
Matrix of integration points.
PetscErrorCode PetscOptionsGetString(PetscOptions *, const char pre[], const char name[], char str[], size_t size, PetscBool *set)
PetscErrorCode PetscOptionsGetEList(PetscOptions *, const char pre[], const char name[], const char *const *list, PetscInt next, PetscInt *value, PetscBool *set)
virtual MoFEMErrorCode build_fields(int verb=DEFAULT_VERBOSITY)=0
OpFacesFluxes(double &div)
FieldApproximationBase
approximation base
UBlasVector< double > VectorDouble
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.
transform local reference derivatives of shape function to global derivatives if higher order geometr...
@ MOFEM_ATOM_TEST_INVALID
virtual MoFEMErrorCode build_adjacencies(const Range &ents, int verb=DEFAULT_VERBOSITY)=0
build adjacencies
#define MoFEMFunctionBeginHot
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
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.
MoFEMErrorCode partitionGhostDofs(const std::string name, int verb=VERBOSE)
determine ghost nodes
virtual MoFEMErrorCode add_problem(const std::string &name, enum MoFEMTypes bh=MF_EXCL, int verb=DEFAULT_VERBOSITY)=0
Add problem.
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
static const double edge_coords[6][6]
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.
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
@ OPROW
operator doWork function is executed on FE rows