|
| v0.14.0
|
Checking approximation functions on prism
static char help[] =
"...\n\n";
static inline double fun(
double x,
double y,
double z) {
for (
int i = 0;
i <= o; ++
i) {
for (
int j = 0;
j <= (o -
i); ++
j) {
r += pow(x,
i) * pow(y,
j) * pow(z,
k);
}
}
}
}
}
for (
int i = 0;
i <= o; ++
i) {
for (
int j = 0;
j <= (o -
i); ++
j) {
r[0] +=
i > 0 ?
i * pow(x,
i - 1) * pow(y,
j) * pow(z,
k) : 0;
r[1] +=
j > 0 ?
j * pow(x,
i) * pow(y,
j - 1) * pow(z,
k) : 0;
r[2] +=
k > 0 ?
k * pow(x,
i) * pow(y,
j) * pow(z,
k - 1) : 0;
}
}
}
}
}
};
boost::shared_ptr<MatrixDouble> &diff_field_vals);
private:
boost::shared_ptr<VectorDouble> fieldVals;
boost::shared_ptr<MatrixDouble> diffFieldVals;
};
private:
};
MoFEMErrorCode doWork(
int row_side,
int col_side, EntityType row_type,
EntityType col_type,
private:
};
int getRuleTrianglesOnly(
int order);
int getRuleThroughThickness(
int order);
};
int main(
int argc,
char *argv[]) {
try {
ParallelComm *pcomm = ParallelComm::get_pcomm(&moab,
MYPCOMM_INDEX);
auto moab_comm_wrap =
boost::make_shared<WrapMPIComm>(PETSC_COMM_WORLD, false);
if (pcomm == NULL)
pcomm = new ParallelComm(&moab, moab_comm_wrap->get_comm());
std::array<double, 18> one_prism_coords = {0, 0, 0, 1, 0, 0, 0, 1, 0,
0, 0, 1, 1, 0, 1, 0, 1, 1};
std::array<EntityHandle, 6> one_prism_nodes;
for (
int n = 0;
n != 6; ++
n)
CHKERR moab.create_vertex(&one_prism_coords[3 *
n], one_prism_nodes[
n]);
CHKERR moab.create_element(MBPRISM, one_prism_nodes.data(), 6, one_prism);
one_prism_range.insert(one_prism);
Range one_prism_adj_ents;
for (
int d = 1;
d != 3; ++
d)
CHKERR moab.get_adjacencies(one_prism_range,
d,
true, one_prism_adj_ents,
moab::Interface::UNION);
bit_level0.set(0);
one_prism_range, bit_level0);
bit_level0);
->createMPIAIJWithArrays<PetscGlobalIdx_mi_tag>(
"TEST_PROBLEM",
A);
auto assemble_matrices_and_vectors = [&]() {
fe.getOpPtrVector().push_back(
fe.getOpPtrVector().push_back(
fe.getOpPtrVector().push_back(
CHKERR MatAssemblyBegin(
A, MAT_FINAL_ASSEMBLY);
CHKERR MatAssemblyEnd(
A, MAT_FINAL_ASSEMBLY);
};
auto solve_problem = [&] {
CHKERR KSPSetFromOptions(solver);
CHKERR VecGhostUpdateBegin(
D, INSERT_VALUES, SCATTER_FORWARD);
CHKERR VecGhostUpdateEnd(
D, INSERT_VALUES, SCATTER_FORWARD);
"TEST_PROBLEM",
COL,
D, INSERT_VALUES, SCATTER_REVERSE);
};
auto check_solution = [&] {
boost::shared_ptr<VectorDouble> field_vals_ptr(
new VectorDouble());
boost::shared_ptr<MatrixDouble> diff_field_vals_ptr(
new MatrixDouble());
fe.getOpPtrVector().push_back(
fe.getOpPtrVector().push_back(
fe.getOpPtrVector().push_back(
fe.getOpPtrVector().push_back(
fe.getOpPtrVector().push_back(
};
CHKERR assemble_matrices_and_vectors();
}
return 0;
}
boost::shared_ptr<MatrixDouble> &diff_field_vals)
fieldVals(field_vals), diffFieldVals(diff_field_vals) {}
const int nb_gauss_pts = data.
getN().size2();
for (int gg = 0; gg != nb_gauss_pts; ++gg) {
std::cout <<
f - (*fieldVals)[gg] <<
" : ";
std::cout << std::endl;
constexpr
double eps = 1e-6;
"Wrong value %6.4e != %6.4e (%6.4e)",
f, (*
fieldVals)[gg],
"Wrong diff value %6.4e != %6.4e (%6.4e)", diff_f[
d],
++t_coords;
}
}
}
const int nb_dofs = data.
getN().size2();
if (nb_dofs) {
const int nb_gauss_pts = data.
getN().size1();
nf.clear();
for (int gg = 0; gg != nb_gauss_pts; ++gg) {
double v = t_w * vol *
f;
double *val = &*nf.begin();
for (int bb = 0; bb != nb_dofs; ++bb) {
++t_base;
++val;
}
++t_coords;
++t_w;
}
}
}
sYmm = false;
}
EntityType row_type, EntityType col_type,
const int row_nb_dofs = row_data.
getN().size2();
const int col_nb_dofs = col_data.
getN().size2();
if (row_nb_dofs && col_nb_dofs) {
const int nb_gauss_pts = row_data.
getN().size1();
double *row_base_ptr = &*row_data.
getN().data().begin();
double *col_base_ptr = &*col_data.
getN().data().begin();
for (int gg = 0; gg != nb_gauss_pts; ++gg) {
cblas_dger(CblasRowMajor, row_nb_dofs, col_nb_dofs,
v, row_base_ptr, 1,
col_base_ptr, 1, &*
m.data().begin(), col_nb_dofs);
row_base_ptr += row_nb_dofs;
col_base_ptr += col_nb_dofs;
++t_w;
}
}
}
MoFEMErrorCode getInterface(IFACE *&iface) const
Get interface reference to pointer of interface.
MoFEMErrorCode doWork(int side, EntityType type, EntitiesFieldData::EntData &data)
Operator for linear form, usually to calculate values on right hand side.
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.
Data on single entity (This is passed as argument to DataOperator::doWork)
boost::shared_ptr< MatrixDouble > diffFieldVals
PrismOpRhs(SmartPetscObj< Vec > &f)
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.
merge node from two bit levels
#define MYPCOMM_INDEX
default communicator number PCOMM
MoFEMErrorCode buildProblem(const std::string name, const bool square_matrix, int verb=VERBOSE)
build problem data structures
MoFEMErrorCode MatSetValues(Mat M, const EntitiesFieldData::EntData &row_data, const EntitiesFieldData::EntData &col_data, const double *ptr, InsertMode iora)
Assemble PETSc matrix.
default operator for Flat Prism element
VectorBoundedArray< double, 3 > VectorDouble3
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
int getRuleTrianglesOnly(int order)
PetscErrorCode MoFEMErrorCode
MoFEM/PETSc error code.
UBlasMatrix< double > MatrixDouble
PrismOpCheck(boost::shared_ptr< VectorDouble > &field_vals, boost::shared_ptr< MatrixDouble > &diff_field_vals)
static MoFEMErrorCode Finalize()
Checks for options to be called at the conclusion of the program.
double getVolume() const
element volume (linear geometry)
auto createKSP(MPI_Comm comm)
MoFEMErrorCode VecSetValues(Vec V, const EntitiesFieldData::EntData &data, const double *ptr, InsertMode iora)
Assemble PETSc vector.
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.
Calculate inverse of jacobian for face element.
auto getFTensor0IntegrationWeight()
Get integration weights.
Deprecated interface functions.
Get field gradients at integration pts for scalar filed rank 0, i.e. vector field.
DeprecatedCoreInterface Interface
FTensor::Tensor0< FTensor::PackPtr< double *, 1 > > getFTensor0N(const FieldApproximationBase base)
Get base function as Tensor0.
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
FatPrismElementForcesAndSourcesCore(Interface &m_field)
#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
int getRuleThroughThickness(int order)
implementation of Data Operators for Forces and Sources
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
Transform local reference derivatives of shape functions to global derivatives.
PrismOpLhs(SmartPetscObj< Mat > &a)
virtual MoFEMErrorCode build_finite_elements(int verb=DEFAULT_VERBOSITY)=0
Build finite elements.
MoFEMErrorCode seedPrismsEntities(Range &prisms, const BitRefLevel &bit, int verb=-1)
Seed prism entities by bit level.
Get value at integration points for scalar field.
static VectorDouble3 diff_fun(double x, double y, double z)
virtual MoFEMErrorCode modify_finite_element_add_field_data(const std::string &fe_name, const std::string name_field)=0
set finite element field data
FTensor::Index< 'i', SPACE_DIM > i
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
boost::shared_ptr< VectorDouble > fieldVals
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.
MoFEMErrorCode doWork(int side, EntityType type, EntitiesFieldData::EntData &data)
Operator for linear form, usually to calculate values on right hand side.
Matrix manager is used to build and partition problems.
Operator for fat prism element updating integration weights in the volume.
auto diff_fun
Function derivative.
structure to get information form mofem into EntitiesFieldData
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.
static double fun(double x, double y, double z)
#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
FTensor::Index< 'j', 3 > j
@ AINSWORTH_LEGENDRE_BASE
Ainsworth Cole (Legendre) approx. base .
virtual MoFEMErrorCode build_fields(int verb=DEFAULT_VERBOSITY)=0
int main(int argc, char *argv[])
UBlasVector< double > VectorDouble
const double D
diffusivity
FTensor::Index< 'm', 3 > m
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.
@ MOFEM_ATOM_TEST_INVALID
virtual MoFEMErrorCode build_adjacencies(const Range &ents, int verb=DEFAULT_VERBOSITY)=0
build adjacencies
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
auto fun
Function to approximate.
FTensor::Index< 'k', 3 > k
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()
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 ...
auto getFTensor1CoordsAtGaussPts()
Get coordinates at integration points assuming linear geometry.