13 using namespace MoFEM;
34 GAUSS>::OpGradSymTensorGrad<1, SPACE_DIM, SPACE_DIM, 0>;
38 double rho = 7829e-12;
84 auto set_matrial_stiffens = [&]() {
91 auto t_D = getFTensor4DdgFromMat<SPACE_DIM, SPACE_DIM, 0>(*matDPtr);
104 matDPtr = boost::make_shared<MatrixDouble>();
109 CHKERR set_matrial_stiffens();
120 CHKERR createCommonData();
121 CHKERR boundaryCondition();
163 for (
int n = 1;
n != 6; ++
n)
167 auto problem_ptr = mField.get_problem(
simple->getProblemName());
168 auto dofs = problem_ptr->getNumeredRowDofsPtr();
174 auto hi = dofs->upper_bound(lo_uid);
175 std::array<double, 3> coords;
177 for (
auto lo = dofs->lower_bound(lo_uid); lo != hi; ++lo) {
179 if ((*lo)->getPart() == mField.get_comm_rank()) {
181 auto ent = (*lo)->getEnt();
182 CHKERR mField.get_moab().get_coords(&ent, 1, coords.data());
184 if ((*lo)->getDofCoeffIdx() == 0) {
185 CHKERR VecSetValue(rigidBodyMotion[0], (*lo)->getPetscGlobalDofIdx(), 1,
187 CHKERR VecSetValue(rigidBodyMotion[3], (*lo)->getPetscGlobalDofIdx(),
188 -coords[1], INSERT_VALUES);
190 CHKERR VecSetValue(rigidBodyMotion[4], (*lo)->getPetscGlobalDofIdx(),
191 -coords[2], INSERT_VALUES);
193 }
else if ((*lo)->getDofCoeffIdx() == 1) {
194 CHKERR VecSetValue(rigidBodyMotion[1], (*lo)->getPetscGlobalDofIdx(), 1,
196 CHKERR VecSetValue(rigidBodyMotion[3], (*lo)->getPetscGlobalDofIdx(),
197 coords[0], INSERT_VALUES);
199 CHKERR VecSetValue(rigidBodyMotion[5], (*lo)->getPetscGlobalDofIdx(),
200 -coords[2], INSERT_VALUES);
202 }
else if ((*lo)->getDofCoeffIdx() == 2) {
204 CHKERR VecSetValue(rigidBodyMotion[2], (*lo)->getPetscGlobalDofIdx(),
206 CHKERR VecSetValue(rigidBodyMotion[4], (*lo)->getPetscGlobalDofIdx(),
207 coords[0], INSERT_VALUES);
208 CHKERR VecSetValue(rigidBodyMotion[5], (*lo)->getPetscGlobalDofIdx(),
209 coords[1], INSERT_VALUES);
215 for (
int n = 0;
n != rigidBodyMotion.size(); ++
n) {
216 CHKERR VecAssemblyBegin(rigidBodyMotion[
n]);
217 CHKERR VecAssemblyEnd(rigidBodyMotion[
n]);
218 CHKERR VecGhostUpdateBegin(rigidBodyMotion[
n], INSERT_VALUES,
220 CHKERR VecGhostUpdateEnd(rigidBodyMotion[
n], INSERT_VALUES,
234 auto dm =
simple->getDM();
238 auto calculate_stiffness_matrix = [&]() {
240 pipeline_mng->getDomainLhsFE().reset();
242 auto det_ptr = boost::make_shared<VectorDouble>();
243 auto jac_ptr = boost::make_shared<MatrixDouble>();
244 auto inv_jac_ptr = boost::make_shared<MatrixDouble>();
245 pipeline_mng->getOpDomainLhsPipeline().push_back(
247 pipeline_mng->getOpDomainLhsPipeline().push_back(
249 pipeline_mng->getOpDomainLhsPipeline().push_back(
251 pipeline_mng->getOpDomainLhsPipeline().push_back(
254 pipeline_mng->getOpDomainLhsPipeline().push_back(
255 new OpK(
"U",
"U", matDPtr));
261 pipeline_mng->getDomainLhsFE()->B =
K;
263 CHKERR pipeline_mng->loopFiniteElements();
264 CHKERR MatAssemblyBegin(
K, MAT_FINAL_ASSEMBLY);
265 CHKERR MatAssemblyEnd(
K, MAT_FINAL_ASSEMBLY);
269 auto calculate_mass_matrix = [&]() {
271 pipeline_mng->getDomainLhsFE().reset();
273 auto det_ptr = boost::make_shared<VectorDouble>();
274 auto jac_ptr = boost::make_shared<MatrixDouble>();
275 auto inv_jac_ptr = boost::make_shared<MatrixDouble>();
276 pipeline_mng->getOpDomainLhsPipeline().push_back(
278 pipeline_mng->getOpDomainLhsPipeline().push_back(
280 pipeline_mng->getOpDomainLhsPipeline().push_back(
284 pipeline_mng->getOpDomainLhsPipeline().push_back(
285 new OpMass(
"U",
"U", get_rho));
291 pipeline_mng->getDomainLhsFE()->B =
M;
292 CHKERR pipeline_mng->loopFiniteElements();
293 CHKERR MatAssemblyBegin(
M, MAT_FINAL_ASSEMBLY);
294 CHKERR MatAssemblyEnd(
M, MAT_FINAL_ASSEMBLY);
298 CHKERR calculate_stiffness_matrix();
299 CHKERR calculate_mass_matrix();
309 auto create_eps = [](MPI_Comm comm) {
315 auto deflate_vectors = [&]() {
318 std::array<Vec, 6> deflate_vectors;
319 for (
int n = 0;
n != 6; ++
n) {
320 deflate_vectors[
n] = rigidBodyMotion[
n];
322 CHKERR EPSSetDeflationSpace(ePS, 6, &deflate_vectors[0]);
326 auto print_info = [&]() {
331 PetscInt nev, maxit, its;
333 CHKERR EPSGetIterationNumber(ePS, &its);
335 " Number of iterations of the method: %d", its);
336 CHKERR EPSGetST(ePS, &st);
339 CHKERR EPSGetDimensions(ePS, &nev, NULL, NULL);
340 MOFEM_LOG_C(
"EXAMPLE", Sev::inform,
" Number of requested eigenvalues: %d",
342 CHKERR EPSGetTolerances(ePS, &
tol, &maxit);
344 " Stopping condition: tol=%.4g, maxit=%d", (
double)
tol, maxit);
346 PetscScalar eigr, eigi;
347 for (
int nn = 0; nn < nev; nn++) {
348 CHKERR EPSGetEigenpair(ePS, nn, &eigr, &eigi, PETSC_NULL, PETSC_NULL);
350 " ncov = %d eigr = %.4g eigi = %.4g (inv eigr = %.4g)", nn,
351 eigr, eigi, 1. / eigr);
357 auto setup_eps = [&]() {
359 CHKERR EPSSetProblemType(ePS, EPS_GHEP);
360 CHKERR EPSSetWhichEigenpairs(ePS, EPS_SMALLEST_MAGNITUDE);
361 CHKERR EPSSetFromOptions(ePS);
366 ePS = create_eps(mField.get_comm());
391 pipeline_mng->getDomainLhsFE().reset();
392 auto post_proc_fe = boost::make_shared<PostProcEle>(mField);
394 auto det_ptr = boost::make_shared<VectorDouble>();
395 auto jac_ptr = boost::make_shared<MatrixDouble>();
396 auto inv_jac_ptr = boost::make_shared<MatrixDouble>();
397 post_proc_fe->getOpPtrVector().push_back(
399 post_proc_fe->getOpPtrVector().push_back(
401 post_proc_fe->getOpPtrVector().push_back(
404 auto u_ptr = boost::make_shared<MatrixDouble>();
405 auto grad_ptr = boost::make_shared<MatrixDouble>();
406 auto strain_ptr = boost::make_shared<MatrixDouble>();
407 auto stress_ptr = boost::make_shared<MatrixDouble>();
409 post_proc_fe->getOpPtrVector().push_back(
411 post_proc_fe->getOpPtrVector().push_back(
413 post_proc_fe->getOpPtrVector().push_back(
415 post_proc_fe->getOpPtrVector().push_back(
417 strain_ptr, stress_ptr, matDPtr));
421 post_proc_fe->getOpPtrVector().push_back(
424 post_proc_fe->getPostProcMesh(), post_proc_fe->getMapGaussPts(),
438 pipeline_mng->getDomainRhsFE() = post_proc_fe;
440 auto dm =
simple->getDM();
444 CHKERR EPSGetDimensions(ePS, &nev, NULL, NULL);
445 PetscScalar eigr, eigi, nrm2r;
446 for (
int nn = 0; nn < nev; nn++) {
447 CHKERR EPSGetEigenpair(ePS, nn, &eigr, &eigi,
D, PETSC_NULL);
448 CHKERR VecGhostUpdateBegin(
D, INSERT_VALUES, SCATTER_FORWARD);
449 CHKERR VecGhostUpdateEnd(
D, INSERT_VALUES, SCATTER_FORWARD);
450 CHKERR VecNorm(
D, NORM_2, &nrm2r);
452 " ncov = %d omega2 = %.8g omega = %.8g frequency = %.8g", nn,
453 eigr, std::sqrt(std::abs(eigr)),
454 std::sqrt(std::abs(eigr)) / (2 * M_PI));
456 CHKERR pipeline_mng->loopFiniteElements();
457 post_proc_fe->writeFile(
"out_eig_" + boost::lexical_cast<std::string>(nn) +
468 PetscBool test_flg = PETSC_FALSE;
471 PetscScalar eigr, eigi;
472 CHKERR EPSGetEigenpair(
ePS, 0, &eigr, &eigi, PETSC_NULL, PETSC_NULL);
473 constexpr
double regression_value = 12579658;
474 if (fabs(eigr - regression_value) > 1)
476 "Regression test faileed; wrong eigen value.");
482 static char help[] =
"...\n\n";
484 int main(
int argc,
char *argv[]) {
487 const char param_file[] =
"param_file.petsc";
488 SlepcInitialize(&argc, &argv, param_file,
help);
492 auto core_log = logging::core::get();
494 LogManager::createSink(LogManager::getStrmWorld(),
"EXAMPLE"));
495 LogManager::setLog(
"EXAMPLE");
501 DMType dm_name =
"DMMOFEM";