13 #include <MGIS/Behaviour/Behaviour.hxx>
14 #include <MGIS/Behaviour/BehaviourData.hxx>
15 #include "MGIS/LibrariesManager.hxx"
16 #include "MGIS/Behaviour/Integrate.hxx"
19using namespace mgis::behaviour;
23 constexpr double inv_sqr2 = boost::math::constants::half_root_two<double>();
25 #define VOIGT_VEC_SYMM_3D(VEC) \
26 VEC[0], inv_sqr2 *VEC[3], inv_sqr2 *VEC[4], VEC[1], inv_sqr2 *VEC[5], VEC[2]
28 #define VOIGT_VEC_SYMM_2D(VEC) VEC[0], inv_sqr2 *VEC[3], VEC[1]
30 #define VOIGT_VEC_SYMM_2D_FULL(VEC) \
31 VEC[0], inv_sqr2 *VEC[3], 0., VEC[1], 0., VEC[2]
33 #define VOIGT_VEC_3D(VEC) \
34 VEC[0], VEC[3], VEC[5], VEC[4], VEC[1], VEC[7], VEC[6], VEC[8], VEC[2]
36 #define VOIGT_VEC_2D(VEC) VEC[0], VEC[3], VEC[4], VEC[1]
38 #define VOIGT_VEC_2D_FULL(VEC) \
39 VEC[0], VEC[3], 0., VEC[4], VEC[1], 0., 0., 0., VEC[2]
41template <ModelHypothesis MH>
struct MFrontEleType;
45 MFrontEleType() =
delete;
46 ~MFrontEleType() =
delete;
57 MFrontEleType() =
delete;
58 ~MFrontEleType() =
delete;
69 MFrontEleType() =
delete;
70 ~MFrontEleType() =
delete;
80template <ModelHypothesis MH, AssemblyType AT = AssemblyType::PETSC>
81struct MFrontInterfaceImpl :
public MFrontInterface {
85 using DomainEle =
typename MFrontEleType<MH>::DomainEle;
86 using DomainEleOp =
typename MFrontEleType<MH>::DomainEleOp;
87 using PostProcDomainEle =
typename MFrontEleType<MH>::PostProcDomainEle;
89 static constexpr int DIM = MFrontEleType<MH>::SPACE_DIM;
91 using OpInternalForce =
92 typename FormsIntegrators<DomainEleOp>::template Assembly<AT>::
94 using OpAssembleLhsFiniteStrains =
95 typename FormsIntegrators<DomainEleOp>::template Assembly<
98 using OpAssembleLhsSmallStrains =
99 typename FormsIntegrators<DomainEleOp>::template Assembly<AT>::
106 boost::ptr_deque<ForcesAndSourcesCore::UserDataOperator> &pip,
110 boost::ptr_deque<ForcesAndSourcesCore::UserDataOperator> &pip,
114 setUpdateInternalVariablesOperators(ForcesAndSourcesCore::RuleHookFun rule,
117 MoFEMErrorCode setPostProcessOperators(ForcesAndSourcesCore::RuleHookFun rule,
123 std::string fe_name)
override;
126 string fe_name)
override;
129 setMonitor(boost::shared_ptr<MoFEM::FEMethod> monitor_ptr)
override {
131 monitorPtr = monitor_ptr;
138 string optionsPrefix;
140 SmartPetscObj<DM> dM;
143 PetscBool saveDomain;
145 PetscBool testJacobian;
146 PetscReal randomFieldScale;
148 bool isFiniteKinematics;
152 boost::shared_ptr<PostProcDomainEle> postProcFe;
153 boost::shared_ptr<DomainEle> updateIntVariablesElePtr;
155 boost::shared_ptr<moab::Interface> moabGaussIntPtr;
157 boost::shared_ptr<MoFEM::FEMethod> monitorPtr;
159 boost::shared_ptr<CommonData> commonDataPtr;
162template <ModelHypothesis MH>
163boost::shared_ptr<MFrontInterface>
168 return boost::make_shared<MFrontInterfaceImpl<MH, PETSC>>(m_field);
170 return boost::make_shared<MFrontInterfaceImpl<MH, SCHUR>>(m_field);
172 return boost::make_shared<MFrontInterfaceImpl<MH, BLOCK_MAT>>(m_field);
174 return boost::make_shared<MFrontInterfaceImpl<MH, BLOCK_SCHUR>>(m_field);
179 return boost::shared_ptr<MFrontInterface>();
182boost::shared_ptr<MFrontInterface>
188 return createMFrontInterfaceImpl<TRIDIMENSIONAL>(m_field, at);
190 return createMFrontInterfaceImpl<PLANESTRAIN>(m_field, at);
192 return createMFrontInterfaceImpl<AXISYMMETRICAL>(m_field, at);
196 return boost::shared_ptr<MFrontInterface>();
199struct MFrontInterface::CommonData {
204 const int nb_gauss_pts,
const int var_size,
205 const int grad_size,
const int stress_size,
213 boost::shared_ptr<MatrixDouble> mGradPtr;
214 boost::shared_ptr<MatrixDouble> mStressPtr;
215 boost::shared_ptr<MatrixDouble> mFullStrainPtr;
216 boost::shared_ptr<MatrixDouble> mFullStressPtr;
218 boost::shared_ptr<MatrixDouble> mPrevGradPtr;
219 boost::shared_ptr<MatrixDouble> mPrevStressPtr;
221 boost::shared_ptr<MatrixDouble> mDispPtr;
222 boost::shared_ptr<MatrixDouble> materialTangentPtr;
223 boost::shared_ptr<MatrixDouble> mFullTangentPtr;
224 boost::shared_ptr<MatrixDouble> internalVariablePtr;
228 std::map<int, BlockData> setOfBlocksData;
229 std::map<EntityHandle, int> blocksIDmap;
235 Tag internalVariableTag;
240enum DataTags { RHS = 0, LHS };
242struct MFrontInterface::CommonData::BlockData {
245 : isFiniteStrain(false), behaviourPath(DEFAULT_MFRONT_BEHAVIOUR_PATH),
246 behaviourName(
"LinearElasticity") {
249 externalVariable = 0;
255 behDataPtr->K[0] = 0;
257 behDataPtr->K[0] = 5;
262 MoFEMErrorCode setBlockBehaviourData(
bool set_params_from_blocks);
267 string behaviourPath;
268 string behaviourName;
270 boost::shared_ptr<mgis::behaviour::Behaviour> mGisBehaviour;
271 mgis::behaviour::BehaviourDataView bView;
272 boost::shared_ptr<mgis::behaviour::BehaviourData> behDataPtr;
279 vector<double> params;
283 double externalVariable;
288MoFEMErrorCode MFrontInterface::CommonData::BlockData::setBlockBehaviourData(
289 bool set_params_from_blocks) {
293 auto &mgis_bv = *mGisBehaviour;
295 sizeIntVar = getArraySize(mgis_bv.isvs, mgis_bv.hypothesis);
296 sizeExtVar = getArraySize(mgis_bv.esvs, mgis_bv.hypothesis);
297 sizeGradVar = getArraySize(mgis_bv.gradients, mgis_bv.hypothesis);
299 getArraySize(mgis_bv.thermodynamic_forces, mgis_bv.hypothesis);
301 behDataPtr = boost::make_shared<BehaviourData>(BehaviourData{mgis_bv});
302 bView = make_view(*behDataPtr);
303 const int total_number_of_params = mgis_bv.mps.size();
305 if (set_params_from_blocks) {
307 if (params.size() < total_number_of_params)
309 "Not enough parameters supplied for this block. We have %zu "
310 "provided where %d are necessary for this block",
311 params.size(), total_number_of_params);
313 for (
int dd = 0;
dd < total_number_of_params; ++
dd) {
314 setMaterialProperty(behDataPtr->s0, dd, params[dd]);
315 setMaterialProperty(behDataPtr->s1, dd, params[dd]);
319 if (isFiniteStrain) {
320 behDataPtr->K[0] = 0;
321 behDataPtr->K[1] = 2;
322 behDataPtr->K[2] = 2;
324 behDataPtr->K[0] = 0;
325 behDataPtr->K[1] = 0;
328 for (
auto &mb : {&behDataPtr->s0, &behDataPtr->s1}) {
329 mb->dissipated_energy = dIssipation;
330 mb->stored_energy = storedEnergy;
331 setExternalStateVariable(*mb, 0, externalVariable);
340 string block_name =
"MAT_MFRONT";
342 if (it->getName().compare(0, block_name.size(), block_name) == 0) {
343 std::vector<double> block_data;
345 CHKERR it->getAttributes(block_data);
346 const int id = it->getMeshsetId();
347 EntityHandle meshset = it->getMeshset();
348 CHKERR mField.get_moab().get_entities_by_dimension(
349 meshset, dim, setOfBlocksData[
id].eNts,
true);
350 for (
auto ent : setOfBlocksData[id].eNts)
351 blocksIDmap[ent] = id;
353 setOfBlocksData[id].iD = id;
354 setOfBlocksData[id].params.resize(block_data.size());
356 for (
int n = 0;
n != block_data.size();
n++)
357 setOfBlocksData[
id].params[
n] = block_data[
n];
365 const EntityHandle fe_ent,
const int nb_gauss_pts,
const int var_size,
369 auto mget_tag_data = [&](
Tag &m_tag, boost::shared_ptr<MatrixDouble> &m_mat,
370 const int &m_size,
bool is_def_grad =
false) {
375 rval = mField.get_moab().tag_get_by_ptr(
376 m_tag, &fe_ent, 1, (
const void **)&tag_data, &tag_size);
378 if (
rval != MB_SUCCESS || tag_size != m_size * nb_gauss_pts) {
379 m_mat->resize(nb_gauss_pts, m_size,
false);
383 for (
int gg = 0; gg != nb_gauss_pts; ++gg) {
388 void const *tag_data2[] = {&*m_mat->data().begin()};
389 const int tag_size2 = m_mat->data().size();
390 CHKERR mField.get_moab().tag_set_by_ptr(m_tag, &fe_ent, 1, tag_data2,
394 nb_gauss_pts, m_size,
395 ublas::shallow_array_adaptor<double>(tag_size, tag_data));
403 CHKERR mget_tag_data(internalVariableTag, internalVariablePtr, var_size);
404 CHKERR mget_tag_data(stressTag, mPrevStressPtr, stress_size);
405 CHKERR mget_tag_data(gradientTag, mPrevGradPtr, grad_size,
true);
411MFrontInterface::CommonData::setInternalVar(
const EntityHandle fe_ent) {
414 auto mset_tag_data = [&](
Tag &m_tag, boost::shared_ptr<MatrixDouble> &m_mat) {
416 void const *tag_data[] = {&*m_mat->data().begin()};
417 const int tag_size = m_mat->data().size();
418 CHKERR mField.get_moab().tag_set_by_ptr(m_tag, &fe_ent, 1, tag_data,
423 CHKERR mset_tag_data(internalVariableTag, internalVariablePtr);
424 CHKERR mset_tag_data(stressTag, mPrevStressPtr);
425 CHKERR mset_tag_data(gradientTag, mPrevGradPtr);
432 const int default_length = 0;
433 CHKERR mField.get_moab().tag_get_handle(
434 "_INTERNAL_VAR", default_length, MB_TYPE_DOUBLE, internalVariableTag,
435 MB_TAG_CREAT | MB_TAG_VARLEN | MB_TAG_SPARSE, PETSC_NULLPTR);
436 CHKERR mField.get_moab().tag_get_handle(
437 "_STRESS_TAG", default_length, MB_TYPE_DOUBLE, stressTag,
438 MB_TAG_CREAT | MB_TAG_VARLEN | MB_TAG_SPARSE, PETSC_NULLPTR);
439 CHKERR mField.get_moab().tag_get_handle(
440 "_GRAD_TAG", default_length, MB_TYPE_DOUBLE, gradientTag,
441 MB_TAG_CREAT | MB_TAG_VARLEN | MB_TAG_SPARSE, PETSC_NULLPTR);
449 for (
auto &[
id, data] : setOfBlocksData) {
450 CHKERR mField.get_moab().tag_clear_data(internalVariableTag, data.eNts,
452 CHKERR mField.get_moab().tag_clear_data(stressTag, data.eNts, &zero);
453 CHKERR mField.get_moab().tag_clear_data(gradientTag, data.eNts, &zero);
458template <ModelHypothesis MH, AssemblyType AT>
462 isFiniteKinematics =
false;
463 saveGauss = PETSC_FALSE;
464 saveDomain = PETSC_TRUE;
465 testJacobian = PETSC_FALSE;
466 randomFieldScale = 1.0;
467 optionsPrefix =
"mf_";
468 monitorPtr =
nullptr;
471 if (!LogManager::checkIfChannelExist(
"MFrontInterfaceWorld")) {
472 auto core_log = logging::core::get();
474 core_log->add_sink(LogManager::createSink(LogManager::getStrmWorld(),
475 "MFrontInterfaceWorld"));
476 core_log->add_sink(LogManager::createSink(LogManager::getStrmSync(),
477 "MFrontInterfaceSync"));
478 core_log->add_sink(LogManager::createSink(LogManager::getStrmSelf(),
479 "MFrontInterfaceSelf"));
481 LogManager::setLog(
"MFrontInterfaceWorld");
482 LogManager::setLog(
"MFrontInterfaceSync");
483 LogManager::setLog(
"MFrontInterfaceSelf");
490 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::noisy) <<
"MFront Interface created";
493template <ModelHypothesis MH, AssemblyType AT>
494MoFEMErrorCode MFrontInterfaceImpl<MH, AT>::getCommandLineParameters() {
497 PetscOptionsBegin(PETSC_COMM_WORLD, optionsPrefix.c_str(),
"",
"none");
499 CHKERR PetscOptionsBool(
"-save_gauss",
"save gauss pts (internal variables)",
500 "", saveGauss, &saveGauss, PETSC_NULLPTR);
501 CHKERR PetscOptionsBool(
"-save_domain",
"save results on a domain mesh",
"",
502 saveDomain, &saveDomain, PETSC_NULLPTR);
504 CHKERR PetscOptionsBool(
"-test_jacobian",
"test Jacobian (LHS matrix)",
"",
505 testJacobian, &testJacobian, PETSC_NULLPTR);
506 CHKERR PetscOptionsReal(
"-random_field_scale",
507 "scale for the finite difference jacobian",
"",
508 randomFieldScale, &randomFieldScale, PETSC_NULLPTR);
511 moabGaussIntPtr = boost::shared_ptr<moab::Interface>(
new moab::Core());
513 commonDataPtr = boost::make_shared<MFrontInterface::CommonData>(mField);
515 commonDataPtr->setBlocks(DIM);
516 commonDataPtr->createTags();
518 commonDataPtr->mGradPtr = boost::make_shared<MatrixDouble>();
519 commonDataPtr->mStressPtr = boost::make_shared<MatrixDouble>();
520 commonDataPtr->mFullStrainPtr = boost::make_shared<MatrixDouble>();
521 commonDataPtr->mFullStressPtr = boost::make_shared<MatrixDouble>();
522 commonDataPtr->mDispPtr = boost::make_shared<MatrixDouble>();
523 commonDataPtr->mPrevGradPtr = boost::make_shared<MatrixDouble>();
524 commonDataPtr->mPrevStressPtr = boost::make_shared<MatrixDouble>();
525 commonDataPtr->materialTangentPtr = boost::make_shared<MatrixDouble>();
526 commonDataPtr->mFullTangentPtr = boost::make_shared<MatrixDouble>();
527 commonDataPtr->internalVariablePtr = boost::make_shared<MatrixDouble>();
529 if (commonDataPtr->setOfBlocksData.empty() ||
530 commonDataPtr->blocksIDmap.empty()) {
532 "No blocksets on the mesh have been provided for MFront (e.g. "
536 auto check_lib_finite_strain = [&](
const std::string &lib,
537 const std::string &beh_name,
bool &flag) {
540 ifstream
f(lib.c_str());
542 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::error)
543 <<
"Problem with the behaviour path: " << lib;
545 auto &lm = mgis::LibrariesManager::get();
546 flag =
bool(lm.getBehaviourType(lib, beh_name) == 2) &&
547 (lm.getBehaviourKinematic(lib, beh_name) == 3);
551 auto op = FiniteStrainBehaviourOptions{};
552 op.stress_measure = FiniteStrainBehaviourOptions::PK1;
553 op.tangent_operator = FiniteStrainBehaviourOptions::DPK1_DF;
555 for (
auto &block : commonDataPtr->setOfBlocksData) {
556 const int &
id = block.first;
557 auto &lib_path = block.second.behaviourPath;
558 auto &name = block.second.behaviourName;
559 const string param_name =
"-block_" + to_string(
id);
560 const string param_path =
"-lib_path_" + to_string(
id);
561 const string param_from_blocks =
"-params_" + to_string(
id);
562 PetscBool set_from_blocks = PETSC_FALSE;
566 CHKERR PetscOptionsBool(param_from_blocks.c_str(),
567 "set parameters from blocks",
"", set_from_blocks,
568 &set_from_blocks, PETSC_NULLPTR);
570 CHKERR PetscOptionsString(param_name.c_str(),
"name of the behaviour",
"",
571 "LinearElasticity", char_name, 255, &is_param);
573 name = string(char_name);
574 string default_lib_path = DEFAULT_MFRONT_BEHAVIOUR_PATH;
575 CHKERR PetscOptionsString(
576 param_path.c_str(),
"path to the behaviour library",
"",
577 default_lib_path.c_str(), char_name, 255, &is_param);
579 lib_path = string(char_name);
580 auto &mgis_bv_ptr = block.second.mGisBehaviour;
581 bool is_finite_strain =
false;
583 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform)
584 <<
"Loading behaviour from " << lib_path;
586 CHKERR check_lib_finite_strain(lib_path, name, is_finite_strain);
588 mgis::behaviour::Hypothesis
h;
591 h = mgis::behaviour::Hypothesis::TRIDIMENSIONAL;
592 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform)
593 <<
"Model hypothesis: TRIDIMENSIONAL";
596 h = mgis::behaviour::Hypothesis::PLANESTRAIN;
597 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform)
598 <<
"Model hypothesis: PLANESTRAIN";
601 h = mgis::behaviour::Hypothesis::AXISYMMETRICAL;
602 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform)
603 <<
"Model hypothesis: AXISYMMETRICAL";
609 if (is_finite_strain) {
610 mgis_bv_ptr = boost::make_shared<Behaviour>(load(op, lib_path, name,
h));
611 block.second.isFiniteStrain =
true;
613 mgis_bv_ptr = boost::make_shared<Behaviour>(load(lib_path, name,
h));
615 CHKERR block.second.setBlockBehaviourData(set_from_blocks);
616 for (
size_t dd = 0;
dd < mgis_bv_ptr->mps.size(); ++
dd) {
618 PetscBool is_set = PETSC_FALSE;
619 string param_cmd =
"-param_" + to_string(
id) +
"_" + to_string(dd);
620 CHKERR PetscOptionsScalar(param_cmd.c_str(),
"parameter from cmd",
"",
621 my_param, &my_param, &is_set);
624 setMaterialProperty(block.second.behDataPtr->s0, dd, my_param);
625 setMaterialProperty(block.second.behDataPtr->s1, dd, my_param);
628 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform)
629 << mgis_bv_ptr->behaviour <<
" behaviour loaded on block "
632 if (is_finite_strain)
633 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform)
634 <<
"Finite Strain Kinematics";
636 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform)
637 <<
"Small Strain Kinematics";
639 if (mgis_bv_ptr->isvs.size()) {
640 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform) <<
"Internal variables:";
641 for (
const auto &is : mgis_bv_ptr->isvs) {
642 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform) <<
": " << is.name;
646 if (mgis_bv_ptr->esvs.size()) {
647 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform) <<
"External variables:";
648 for (
const auto &es : mgis_bv_ptr->esvs) {
649 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform) <<
": " << es.name;
653 auto it = block.second.behDataPtr->s0.material_properties.begin();
656 if (mgis_bv_ptr->mps.size()) {
657 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform) <<
"Material properties:";
658 for (
const auto &mp : mgis_bv_ptr->mps) {
659 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform)
660 << nb++ <<
" : " << mp.name <<
" = " << *it++;
664 if (mgis_bv_ptr->params.size()) {
665 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform) <<
"Real parameters:";
666 for (
const auto &p : mgis_bv_ptr->params) {
667 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform) << nb++ <<
" : " << p;
671 if (mgis_bv_ptr->iparams.size()) {
672 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform) <<
"Integer parameters:";
673 for (
const auto &p : mgis_bv_ptr->iparams) {
674 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform) << nb++ <<
" : " << p;
678 if (mgis_bv_ptr->usparams.size()) {
679 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform)
680 <<
"Unsigned short parameters:";
681 for (
const auto &p : mgis_bv_ptr->usparams) {
682 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::inform) << nb++ <<
" : " << p;
689 auto check_behaviours_kinematics = [&](
bool &is_finite_kin) {
692 commonDataPtr->setOfBlocksData.begin()->second.isFiniteStrain;
693 for (
auto &block : commonDataPtr->setOfBlocksData) {
694 if (block.second.isFiniteStrain != is_finite_kin)
696 "All used MFront behaviours have to be of same kinematics "
703 CHKERR check_behaviours_kinematics(isFiniteKinematics);
705 auto get_base = [&]() {
707 CHKERR mField.get_moab().get_entities_by_dimension(0, DIM, domain_ents,
709 if (domain_ents.empty())
727 fieldBase = get_base();
728 MOFEM_LOG(
"MFrontInterfaceWorld", Sev::verbose)
729 <<
"MFront post process projection base: "
752 ((DIM * (DIM + 1)) / 2) * ((DIM * (DIM + 1)) / 2)>,
755template <
typename T>
inline size_t get_paraview_size(T &vsize) {
756 return vsize > 1 ? (vsize > 3 ? 9 : 3) : 1;
760template <
typename T1,
typename T2>
769 if (std::is_same<T2, Tensor4Pack<3>>::value) {
770 D(N0, N0, N0, N0) =
K[0];
771 D(N0, N0, N1, N1) =
K[1];
772 D(N0, N0, N2, N2) =
K[2];
773 D(N0, N0, N0, N1) =
K[3];
774 D(N0, N0, N1, N0) =
K[4];
775 D(N0, N0, N0, N2) =
K[5];
776 D(N0, N0, N2, N0) =
K[6];
777 D(N0, N0, N1, N2) =
K[7];
778 D(N0, N0, N2, N1) =
K[8];
779 D(N1, N1, N0, N0) =
K[9];
780 D(N1, N1, N1, N1) =
K[10];
781 D(N1, N1, N2, N2) =
K[11];
782 D(N1, N1, N0, N1) =
K[12];
783 D(N1, N1, N1, N0) =
K[13];
784 D(N1, N1, N0, N2) =
K[14];
785 D(N1, N1, N2, N0) =
K[15];
786 D(N1, N1, N1, N2) =
K[16];
787 D(N1, N1, N2, N1) =
K[17];
788 D(N2, N2, N0, N0) =
K[18];
789 D(N2, N2, N1, N1) =
K[19];
790 D(N2, N2, N2, N2) =
K[20];
791 D(N2, N2, N0, N1) =
K[21];
792 D(N2, N2, N1, N0) =
K[22];
793 D(N2, N2, N0, N2) =
K[23];
794 D(N2, N2, N2, N0) =
K[24];
795 D(N2, N2, N1, N2) =
K[25];
796 D(N2, N2, N2, N1) =
K[26];
797 D(N0, N1, N0, N0) =
K[27];
798 D(N0, N1, N1, N1) =
K[28];
799 D(N0, N1, N2, N2) =
K[29];
800 D(N0, N1, N0, N1) =
K[30];
801 D(N0, N1, N1, N0) =
K[31];
802 D(N0, N1, N0, N2) =
K[32];
803 D(N0, N1, N2, N0) =
K[33];
804 D(N0, N1, N1, N2) =
K[34];
805 D(N0, N1, N2, N1) =
K[35];
806 D(N1, N0, N0, N0) =
K[36];
807 D(N1, N0, N1, N1) =
K[37];
808 D(N1, N0, N2, N2) =
K[38];
809 D(N1, N0, N0, N1) =
K[39];
810 D(N1, N0, N1, N0) =
K[40];
811 D(N1, N0, N0, N2) =
K[41];
812 D(N1, N0, N2, N0) =
K[42];
813 D(N1, N0, N1, N2) =
K[43];
814 D(N1, N0, N2, N1) =
K[44];
815 D(N0, N2, N0, N0) =
K[45];
816 D(N0, N2, N1, N1) =
K[46];
817 D(N0, N2, N2, N2) =
K[47];
818 D(N0, N2, N0, N1) =
K[48];
819 D(N0, N2, N1, N0) =
K[49];
820 D(N0, N2, N0, N2) =
K[50];
821 D(N0, N2, N2, N0) =
K[51];
822 D(N0, N2, N1, N2) =
K[52];
823 D(N0, N2, N2, N1) =
K[53];
824 D(N2, N0, N0, N0) =
K[54];
825 D(N2, N0, N1, N1) =
K[55];
826 D(N2, N0, N2, N2) =
K[56];
827 D(N2, N0, N0, N1) =
K[57];
828 D(N2, N0, N1, N0) =
K[58];
829 D(N2, N0, N0, N2) =
K[59];
830 D(N2, N0, N2, N0) =
K[60];
831 D(N2, N0, N1, N2) =
K[61];
832 D(N2, N0, N2, N1) =
K[62];
833 D(N1, N2, N0, N0) =
K[63];
834 D(N1, N2, N1, N1) =
K[64];
835 D(N1, N2, N2, N2) =
K[65];
836 D(N1, N2, N0, N1) =
K[66];
837 D(N1, N2, N1, N0) =
K[67];
838 D(N1, N2, N0, N2) =
K[68];
839 D(N1, N2, N2, N0) =
K[69];
840 D(N1, N2, N1, N2) =
K[70];
841 D(N1, N2, N2, N1) =
K[71];
842 D(N2, N1, N0, N0) =
K[72];
843 D(N2, N1, N1, N1) =
K[73];
844 D(N2, N1, N2, N2) =
K[74];
845 D(N2, N1, N0, N1) =
K[75];
846 D(N2, N1, N1, N0) =
K[76];
847 D(N2, N1, N0, N2) =
K[77];
848 D(N2, N1, N2, N0) =
K[78];
849 D(N2, N1, N1, N2) =
K[79];
850 D(N2, N1, N2, N1) =
K[80];
854 if (std::is_same<T2, Tensor4Pack<2>>::value) {
855 D(N0, N0, N0, N0) =
K[0];
856 D(N0, N0, N1, N1) =
K[1];
858 D(N0, N0, N0, N1) =
K[3];
859 D(N0, N0, N1, N0) =
K[4];
860 D(N1, N1, N0, N0) =
K[5];
861 D(N1, N1, N1, N1) =
K[6];
863 D(N1, N1, N0, N1) =
K[8];
864 D(N1, N1, N1, N0) =
K[9];
866 D(N0, N1, N0, N0) =
K[15];
867 D(N0, N1, N1, N1) =
K[16];
869 D(N0, N1, N0, N1) =
K[18];
870 D(N0, N1, N1, N0) =
K[19];
871 D(N1, N0, N0, N0) =
K[20];
872 D(N1, N0, N1, N1) =
K[21];
874 D(N1, N0, N0, N1) =
K[23];
875 D(N1, N0, N1, N0) =
K[24];
879 if (std::is_same<T2, DdgPack<3>>::value) {
880 D(N0, N0, N0, N0) =
K[0];
881 D(N0, N0, N1, N1) =
K[1];
882 D(N0, N0, N2, N2) =
K[2];
884 D(N0, N0, N0, N1) = inv_sqr2 *
K[3];
885 D(N0, N0, N0, N2) = inv_sqr2 *
K[4];
886 D(N0, N0, N1, N2) = inv_sqr2 *
K[5];
888 D(N1, N1, N0, N0) =
K[6];
889 D(N1, N1, N1, N1) =
K[7];
890 D(N1, N1, N2, N2) =
K[8];
892 D(N1, N1, N0, N1) = inv_sqr2 *
K[9];
893 D(N1, N1, N0, N2) = inv_sqr2 *
K[10];
894 D(N1, N1, N1, N2) = inv_sqr2 *
K[11];
896 D(N2, N2, N0, N0) =
K[12];
897 D(N2, N2, N1, N1) =
K[13];
898 D(N2, N2, N2, N2) =
K[14];
900 D(N2, N2, N0, N1) = inv_sqr2 *
K[15];
901 D(N2, N2, N0, N2) = inv_sqr2 *
K[16];
902 D(N2, N2, N1, N2) = inv_sqr2 *
K[17];
904 D(N0, N1, N0, N0) = inv_sqr2 *
K[18];
905 D(N0, N1, N1, N1) = inv_sqr2 *
K[19];
906 D(N0, N1, N2, N2) = inv_sqr2 *
K[20];
908 D(N0, N1, N0, N1) = 0.5 *
K[21];
909 D(N0, N1, N0, N2) = 0.5 *
K[22];
910 D(N0, N1, N1, N2) = 0.5 *
K[23];
912 D(N0, N2, N0, N0) = inv_sqr2 *
K[24];
913 D(N0, N2, N1, N1) = inv_sqr2 *
K[25];
914 D(N0, N2, N2, N2) = inv_sqr2 *
K[26];
916 D(N0, N2, N0, N1) = 0.5 *
K[27];
917 D(N0, N2, N0, N2) = 0.5 *
K[28];
918 D(N0, N2, N1, N2) = 0.5 *
K[29];
920 D(N1, N2, N0, N0) = inv_sqr2 *
K[30];
921 D(N1, N2, N1, N1) = inv_sqr2 *
K[31];
922 D(N1, N2, N2, N2) = inv_sqr2 *
K[32];
924 D(N1, N2, N0, N1) = 0.5 *
K[33];
925 D(N1, N2, N0, N2) = 0.5 *
K[34];
926 D(N1, N2, N1, N2) = 0.5 *
K[35];
930 if (std::is_same<T2, DdgPack<2>>::value) {
932 D(N0, N0, N0, N0) =
K[0];
933 D(N0, N0, N1, N1) =
K[1];
936 D(N0, N0, N0, N1) = inv_sqr2 *
K[3];
938 D(N1, N1, N0, N0) =
K[4];
939 D(N1, N1, N1, N1) =
K[5];
942 D(N1, N1, N0, N1) = inv_sqr2 *
K[7];
946 D(N0, N1, N0, N0) = inv_sqr2 *
K[12];
947 D(N0, N1, N1, N1) = inv_sqr2 *
K[13];
951 D(N0, N1, N0, N1) = 0.5 *
K[15];
957template <
bool IS_LARGE_STRAIN,
typename T1,
typename T2>
966 if constexpr (IS_LARGE_STRAIN) {
967 D(N0, N0, N0, N0) =
K[0];
968 D(N0, N0, N1, N1) =
K[1];
969 D(N0, N0, N2, N2) =
K[2];
970 D(N0, N0, N0, N1) =
K[3];
971 D(N0, N0, N1, N0) =
K[4];
972 D(N1, N1, N0, N0) =
K[5];
973 D(N1, N1, N1, N1) =
K[6];
974 D(N1, N1, N2, N2) =
K[7];
975 D(N1, N1, N0, N1) =
K[8];
976 D(N1, N1, N1, N0) =
K[9];
977 D(N2, N2, N0, N0) =
K[10];
978 D(N2, N2, N1, N1) =
K[11];
979 D(N2, N2, N2, N2) =
K[12];
980 D(N2, N2, N0, N1) =
K[13];
981 D(N2, N2, N1, N0) =
K[14];
982 D(N0, N1, N0, N0) =
K[15];
983 D(N0, N1, N1, N1) =
K[16];
984 D(N0, N1, N2, N2) =
K[17];
985 D(N0, N1, N0, N1) =
K[18];
986 D(N0, N1, N1, N0) =
K[19];
987 D(N1, N0, N0, N0) =
K[20];
988 D(N1, N0, N1, N1) =
K[21];
989 D(N1, N0, N2, N2) =
K[22];
990 D(N1, N0, N0, N1) =
K[23];
991 D(N1, N0, N1, N0) =
K[24];
994 D(N0, N0, N0, N0) =
K[0];
995 D(N0, N0, N1, N1) =
K[1];
996 D(N0, N0, N2, N2) =
K[2];
998 D(N0, N0, N0, N1) = inv_sqr2 *
K[3];
1000 D(N1, N1, N0, N0) =
K[4];
1001 D(N1, N1, N1, N1) =
K[5];
1002 D(N1, N1, N2, N2) =
K[6];
1004 D(N1, N1, N0, N1) = inv_sqr2 *
K[7];
1006 D(N2, N2, N0, N0) =
K[8];
1007 D(N2, N2, N1, N1) =
K[9];
1008 D(N2, N2, N2, N2) =
K[10];
1010 D(N2, N2, N0, N1) = inv_sqr2 *
K[11];
1011 D(N2, N2, N1, N0) =
D(N2, N2, N0, N1);
1013 D(N0, N1, N0, N0) = inv_sqr2 *
K[12];
1014 D(N0, N1, N1, N1) = inv_sqr2 *
K[13];
1016 D(N0, N1, N2, N2) = inv_sqr2 *
K[14];
1017 D(N1, N0, N2, N2) =
D(N0, N1, N2, N2);
1019 D(N0, N1, N0, N1) = 0.5 *
K[15];
1025template <
typename T> T get_tangent_tensor(MatrixDouble &mat);
1028Tensor4Pack<3> get_tangent_tensor<Tensor4Pack<3>>(
MatrixDouble &mat) {
1029 return getFTensor4FromMat<3, 3, 3, 3>(mat);
1033Tensor4Pack<2> get_tangent_tensor<Tensor4Pack<2>>(
MatrixDouble &mat) {
1034 return getFTensor4FromMat<2, 2, 2, 2>(mat);
1037template <> DdgPack<3> get_tangent_tensor<DdgPack<3>>(
MatrixDouble &mat) {
1038 return getFTensor4DdgFromMat<3, 3>(mat);
1041template <> DdgPack<2> get_tangent_tensor<DdgPack<2>>(
MatrixDouble &mat) {
1042 return getFTensor4DdgFromMat<2, 2>(mat);
1045template <
bool IS_LARGE_STRAIN, ModelHypothesis MH>
1047mgis_integration(
size_t gg, Tensor2Pack<MFrontEleType<MH>::SPACE_DIM> &t_grad,
1048 Tensor1Pack<MFrontEleType<MH>::SPACE_DIM> &t_disp,
1049 Tensor1PackCoords &t_coords,
1050 MFrontInterface::CommonData &common_data,
1051 MFrontInterface::CommonData::BlockData &block_data) {
1054 static constexpr int DIM = MFrontEleType<MH>::SPACE_DIM;
1056 int check_integration;
1057 MatrixDouble &mat_int = *common_data.internalVariablePtr;
1059 MatrixDouble &mat_stress0 = *common_data.mPrevStressPtr;
1061 int &size_of_vars = block_data.sizeIntVar;
1062 int &size_of_grad = block_data.sizeGradVar;
1063 int &size_of_stress = block_data.sizeStressVar;
1065 auto &mgis_bv = *block_data.mGisBehaviour;
1070 if constexpr (IS_LARGE_STRAIN) {
1074 setGradient(block_data.behDataPtr->s1, 0, size_of_grad,
1077 setGradient(block_data.behDataPtr->s1, 0, size_of_grad,
1078 &*getVoigtVec<DIM>(t_strain).data());
1082 t_strain(
i,
j) = (t_grad(
i,
j) || t_grad(
j,
i)) / 2;
1085 block_data.behDataPtr->s1, 0, size_of_grad,
1088 setGradient(block_data.behDataPtr->s1, 0, size_of_grad,
1089 &*getVoigtVecSymm<DIM>(t_strain).data());
1095 setGradient(block_data.behDataPtr->s0, 0, size_of_grad, &*grad0_vec.begin());
1097 auto stress0_vec =
getVectorAdaptor(&mat_stress0.data()[gg * size_of_stress],
1099 setThermodynamicForce(block_data.behDataPtr->s0, 0, size_of_stress,
1100 &*stress0_vec.begin());
1105 setInternalStateVariable(block_data.behDataPtr->s0, 0, size_of_vars,
1106 &*internal_var.begin());
1109 check_integration = mgis::behaviour::integrate(block_data.bView, mgis_bv);
1110 switch (check_integration) {
1112 MOFEM_LOG(
"WORLD", Sev::error) <<
"Mfront integration failed";
1116 <<
"Mfront integration succeeded but results are unreliable";
1126template <
bool UPDATE,
bool IS_LARGE_STRAIN, ModelHypothesis MH>
1128 static constexpr int DIM = MFrontEleType<MH>::SPACE_DIM;
1129 using DomainEleOp =
typename MFrontEleType<MH>::DomainEleOp;
1132 boost::shared_ptr<MFrontInterface::CommonData> common_data_ptr,
1133 boost::shared_ptr<FEMethod> monitor_ptr)
1135 commonDataPtr(common_data_ptr), monitorPtr(monitor_ptr) {
1136 std::fill(&DomainEleOp::doEntities[MBEDGE],
1137 &DomainEleOp::doEntities[MBMAXTYPE],
false);
1142 boost::shared_ptr<MFrontInterface::CommonData> commonDataPtr;
1143 boost::shared_ptr<FEMethod> monitorPtr;
1146template <ModelHypothesis MH>
1147using OpUpdateVariablesFiniteStrains = OpStressTmp<true, true, MH>;
1149template <ModelHypothesis MH>
1150using OpUpdateVariablesSmallStrains = OpStressTmp<true, false, MH>;
1152template <ModelHypothesis MH>
1153using OpStressFiniteStrains = OpStressTmp<false, true, MH>;
1155template <ModelHypothesis MH>
1156using OpStressSmallStrains = OpStressTmp<false, false, MH>;
1158template <
bool UPDATE,
bool IS_LARGE_STRAIN, ModelHypothesis MH>
1159MoFEMErrorCode OpStressTmp<UPDATE, IS_LARGE_STRAIN, MH>::doWork(
int side,
1170 const size_t nb_gauss_pts = DomainEleOp::getGaussPts().size2();
1171 auto fe_ent = DomainEleOp::getNumeredEntFiniteElementPtr()->getEnt();
1172 auto id = commonDataPtr->blocksIDmap.at(fe_ent);
1173 auto &dAta = commonDataPtr->setOfBlocksData.at(
id);
1175 if (monitorPtr ==
nullptr)
1177 "Time Monitor (FEMethod) has not been set for MFrontInterfaceImpl. "
1178 "Make sure to call setMonitor before calling "
1179 "opFactoryDomainRhs and opFactoryDomainLhs");
1181 dAta.setTag(DataTags::RHS);
1182 dAta.behDataPtr->dt = monitorPtr->ts_dt;
1183 dAta.bView.dt = monitorPtr->ts_dt;
1185 CHKERR commonDataPtr->getInternalVar(fe_ent, nb_gauss_pts, dAta.sizeIntVar,
1186 dAta.sizeGradVar, dAta.sizeStressVar,
1189 MatrixDouble &mat_int = *commonDataPtr->internalVariablePtr;
1190 MatrixDouble &mat_grad0 = *commonDataPtr->mPrevGradPtr;
1191 MatrixDouble &mat_stress0 = *commonDataPtr->mPrevStressPtr;
1193 auto t_grad = getFTensor2FromMat<DIM, DIM>(*(commonDataPtr->mGradPtr));
1194 auto t_disp = getFTensor1FromMat<DIM>(*(commonDataPtr->mDispPtr));
1195 auto t_coords = DomainEleOp::getFTensor1CoordsAtGaussPts();
1197 commonDataPtr->mStressPtr->resize(nb_gauss_pts, DIM * DIM);
1198 commonDataPtr->mStressPtr->clear();
1199 auto t_stress = getFTensor2FromMat<DIM, DIM>(*(commonDataPtr->mStressPtr));
1201 commonDataPtr->mFullStressPtr->resize(nb_gauss_pts, 3 * 3);
1202 commonDataPtr->mFullStressPtr->clear();
1203 auto t_full_stress =
1204 getFTensor2FromMat<3, 3>(*(commonDataPtr->mFullStressPtr));
1206 for (
size_t gg = 0; gg != nb_gauss_pts; ++gg) {
1208 CHKERR mgis_integration<IS_LARGE_STRAIN, MH>(gg, t_grad, t_disp, t_coords,
1209 *commonDataPtr, dAta);
1211 if constexpr (DIM == 3) {
1213 if constexpr (IS_LARGE_STRAIN) {
1215 VOIGT_VEC_3D(getThermodynamicForce(dAta.behDataPtr->s1, 0)));
1218 VOIGT_VEC_SYMM_3D(getThermodynamicForce(dAta.behDataPtr->s1, 0))));
1220 t_stress(
i,
j) = t_force(
i,
j);
1221 }
else if constexpr (DIM == 2) {
1224 if constexpr (IS_LARGE_STRAIN) {
1226 VOIGT_VEC_2D(getThermodynamicForce(dAta.behDataPtr->s1, 0)));
1228 VOIGT_VEC_2D_FULL(getThermodynamicForce(dAta.behDataPtr->s1, 0)));
1231 VOIGT_VEC_SYMM_2D(getThermodynamicForce(dAta.behDataPtr->s1, 0))));
1234 getThermodynamicForce(dAta.behDataPtr->s1, 0))));
1236 t_stress(
I,
J) = t_force(
I,
J);
1237 t_full_stress(
i,
j) = t_full_force(
i,
j);
1240 if constexpr (UPDATE) {
1241 for (
int dd = 0;
dd != dAta.sizeIntVar; ++
dd) {
1242 mat_int(gg, dd) = *getInternalStateVariable(dAta.behDataPtr->s1, dd);
1244 for (
int dd = 0;
dd != dAta.sizeGradVar; ++
dd) {
1245 mat_grad0(gg, dd) = *getGradient(dAta.behDataPtr->s1, dd);
1247 for (
int dd = 0;
dd != dAta.sizeStressVar; ++
dd) {
1248 mat_stress0(gg, dd) = *getThermodynamicForce(dAta.behDataPtr->s1, dd);
1259 if constexpr (UPDATE) {
1260 CHKERR commonDataPtr->setInternalVar(fe_ent);
1266template <
typename T, ModelHypothesis MH>
1268 static constexpr int DIM = MFrontEleType<MH>::SPACE_DIM;
1269 using DomainEleOp =
typename MFrontEleType<MH>::DomainEleOp;
1272 boost::shared_ptr<MFrontInterface::CommonData> common_data_ptr,
1273 boost::shared_ptr<FEMethod> monitor_ptr)
1275 commonDataPtr(common_data_ptr), monitorPtr(monitor_ptr) {
1276 std::fill(&DomainEleOp::doEntities[MBEDGE],
1277 &DomainEleOp::doEntities[MBMAXTYPE],
false);
1282 boost::shared_ptr<MFrontInterface::CommonData> commonDataPtr;
1283 boost::shared_ptr<FEMethod> monitorPtr;
1286template <ModelHypothesis MH>
1287using OpTangentFiniteStrains =
1288 struct OpTangent<Tensor4Pack<MFrontEleType<MH>::
SPACE_DIM>, MH>;
1290template <ModelHypothesis MH>
1291using OpTangentSmallStrains =
1292 struct OpTangent<DdgPack<MFrontEleType<MH>::SPACE_DIM>, MH>;
1294template <typename T, ModelHypothesis MH>
1295MoFEMErrorCode OpTangent<T, MH>::doWork(int side, EntityType type,
1299 const size_t nb_gauss_pts = DomainEleOp::getGaussPts().size2();
1300 auto fe_ent = DomainEleOp::getNumeredEntFiniteElementPtr()->getEnt();
1301 auto id = commonDataPtr->blocksIDmap.at(fe_ent);
1302 auto &dAta = commonDataPtr->setOfBlocksData.at(
id);
1304 if (monitorPtr ==
nullptr)
1306 "Time Monitor (FEMethod) has not been set for MFrontInterfaceImpl. "
1307 "Make sure to call setMonitor(monitor_ptr) before calling "
1310 dAta.setTag(DataTags::LHS);
1311 dAta.behDataPtr->dt = monitorPtr->ts_dt;
1312 dAta.bView.dt = monitorPtr->ts_dt;
1314 constexpr bool IS_LARGE_STRAIN = std::is_same<T, Tensor4Pack<3>>::value ||
1315 std::is_same<T, Tensor4Pack<2>>::value;
1317 CHKERR commonDataPtr->getInternalVar(fe_ent, nb_gauss_pts, dAta.sizeIntVar,
1318 dAta.sizeGradVar, dAta.sizeStressVar,
1321 MatrixDouble &S_E = *(commonDataPtr->materialTangentPtr);
1324 size_t tens_size = 36;
1326 if constexpr (DIM == 2) {
1328 if constexpr (IS_LARGE_STRAIN)
1333 if constexpr (IS_LARGE_STRAIN)
1337 S_E.resize(nb_gauss_pts, tens_size,
false);
1338 auto D1 = get_tangent_tensor<T>(S_E);
1340 size_t full_tens_size = 81;
1341 F_E.resize(nb_gauss_pts, full_tens_size,
false);
1344 auto D2 = get_tangent_tensor<Tensor4Pack<3>>(F_E);
1346 auto t_grad = getFTensor2FromMat<DIM, DIM>(*(commonDataPtr->mGradPtr));
1347 auto t_disp = getFTensor1FromMat<DIM>(*(commonDataPtr->mDispPtr));
1348 auto t_coords = DomainEleOp::getFTensor1CoordsAtGaussPts();
1350 for (
size_t gg = 0; gg != nb_gauss_pts; ++gg) {
1352 CHKERR mgis_integration<IS_LARGE_STRAIN, MH>(gg, t_grad, t_disp, t_coords,
1353 *commonDataPtr, dAta);
1355 CHKERR get_tensor4_from_voigt(&*dAta.behDataPtr->K.begin(), D1);
1356 CHKERR get_full_tensor4_from_voigt<IS_LARGE_STRAIN>(
1357 &*dAta.behDataPtr->K.begin(), D2);
1369template <AssemblyType AT>
1370struct OpAxisymmetricRhs
1371 :
public FormsIntegrators<
1372 MFrontEleType<AXISYMMETRICAL>::DomainEleOp>::Assembly<AT>
::OpBase {
1373 using DomainEleOp =
typename MFrontEleType<AXISYMMETRICAL>::DomainEleOp;
1374 using OpBase =
typename FormsIntegrators<DomainEleOp>::Assembly<
AT>
::OpBase;
1378 boost::shared_ptr<MFrontInterface::CommonData> common_data_ptr)
1380 commonDataPtr(common_data_ptr) {};
1383 boost::shared_ptr<MFrontInterface::CommonData> commonDataPtr;
1388template <AssemblyType AT>
1393 const double vol = OpBase::getMeasure();
1395 auto t_w = OpBase::getFTensor0IntegrationWeight();
1398 auto t_full_stress =
1399 getFTensor2FromMat<3, 3>(*(commonDataPtr->mFullStressPtr));
1404 auto t_nf = OpBase::template getNf<2>();
1409 const double alpha = t_w * vol * 2. * M_PI;
1413 t_nf(0) += alpha * t_full_stress(2, 2) * t_base;
1426template <AssemblyType AT>
1427struct OpAxisymmetricLhs
1428 :
public FormsIntegrators<
1429 MFrontEleType<AXISYMMETRICAL>::DomainEleOp>::Assembly<AT>
::OpBase {
1430 using DomainEleOp =
typename MFrontEleType<AXISYMMETRICAL>::DomainEleOp;
1431 using OpBase =
typename FormsIntegrators<DomainEleOp>::Assembly<
AT>
::OpBase;
1435 boost::shared_ptr<MFrontInterface::CommonData> common_data_ptr)
1437 commonDataPtr(common_data_ptr) {};
1440 boost::shared_ptr<MFrontInterface::CommonData> commonDataPtr;
1445template <AssemblyType AT>
1451 const double vol = OpBase::getMeasure();
1453 auto t_w = OpBase::getFTensor0IntegrationWeight();
1459 auto t_coords = OpBase::getFTensor1CoordsAtGaussPts();
1465 auto t_D = getFTensor4FromMat<3, 3, 3, 3>(*(commonDataPtr->mFullTangentPtr));
1471 const double r_cylinder = t_coords(0);
1474 const double alpha = t_w * vol * 2. * M_PI;
1481 auto t_m = OpBase::template getLocMat<2>(2 * rr);
1492 alpha * t_D(N0, N0, N2, N2) * t_col_base * t_row_diff_base(0);
1495 alpha * t_D(N1, N1, N2, N2) * t_col_base * t_row_diff_base(1);
1498 alpha * t_D(N2, N2, N0, N0) * t_col_diff_base(0) * t_row_base;
1501 alpha * t_D(N2, N2, N1, N1) * t_col_diff_base(1) * t_row_base;
1503 t_m(0, 0) += alpha * (t_D(N2, N2, N2, N2) / r_cylinder) * t_col_base *
1507 alpha * t_D(N2, N2, N0, N1) * t_col_diff_base(1) * t_row_base;
1510 alpha * t_D(N2, N2, N1, N0) * t_col_diff_base(0) * t_row_base;
1513 alpha * t_D(N0, N1, N2, N2) * t_col_base * t_row_diff_base(1);
1516 alpha * t_D(N1, N0, N2, N2) * t_col_base * t_row_diff_base(0);
1540template <ModelHypothesis MH, AssemblyType AT>
1542 boost::ptr_deque<ForcesAndSourcesCore::UserDataOperator> &pip,
1546 auto jacobian = [&](
const double r,
const double,
const double) {
1547 if (MH == AXISYMMETRICAL)
1548 return 2. * M_PI *
r;
1553 auto add_domain_ops_rhs = [&](
auto &pipeline) {
1554 if (isFiniteKinematics)
1556 new OpStressFiniteStrains<MH>(
field_name, commonDataPtr, monitorPtr));
1559 new OpStressSmallStrains<MH>(
field_name, commonDataPtr, monitorPtr));
1562 new OpInternalForce(
field_name, commonDataPtr->mStressPtr, jacobian));
1564 if (MH == AXISYMMETRICAL)
1565 pipeline.push_back(
new OpAxisymmetricRhs<AT>(
field_name, commonDataPtr));
1568 auto add_domain_base_ops = [&](
auto &pipeline) {
1569 pipeline.push_back(
new OpCalculateVectorFieldValues<DIM>(
1571 pipeline.push_back(
new OpCalculateVectorFieldGradient<DIM, DIM>(
1575 add_domain_base_ops(pip);
1576 add_domain_ops_rhs(pip);
1581template <ModelHypothesis MH, AssemblyType AT>
1583 boost::ptr_deque<ForcesAndSourcesCore::UserDataOperator> &pip,
1587 auto jacobian = [&](
const double r,
const double,
const double) {
1588 if (MH == AXISYMMETRICAL)
1589 return 2. * M_PI *
r;
1594 auto add_domain_ops_lhs = [&](
auto &pipeline) {
1595 if (isFiniteKinematics) {
1596 pipeline.push_back(
new OpTangentFiniteStrains<MH>(
1598 pipeline.push_back(
new OpAssembleLhsFiniteStrains(
1602 new OpTangentSmallStrains<MH>(
field_name, commonDataPtr, monitorPtr));
1603 pipeline.push_back(
new OpAssembleLhsSmallStrains(
1607 if (MH == AXISYMMETRICAL)
1608 pipeline.push_back(
new OpAxisymmetricLhs<AT>(
field_name, commonDataPtr));
1611 auto add_domain_base_ops = [&](
auto &pipeline) {
1612 pipeline.push_back(
new OpCalculateVectorFieldValues<DIM>(
1614 pipeline.push_back(
new OpCalculateVectorFieldGradient<DIM, DIM>(
1618 add_domain_base_ops(pip);
1619 add_domain_ops_lhs(pip);
1624template <ModelHypothesis MH>
1625struct OpSaveGaussPts :
public MFrontEleType<MH>
::DomainEleOp {
1626 static constexpr int DIM = MFrontEleType<MH>::SPACE_DIM;
1627 using DomainEleOp =
typename MFrontEleType<MH>::DomainEleOp;
1629 OpSaveGaussPts(
const std::string
field_name, moab::Interface &moab_mesh,
1630 boost::shared_ptr<MFrontInterface::CommonData> common_data_ptr)
1632 commonDataPtr(common_data_ptr), fieldName(
field_name) {
1633 std::fill(&DomainEleOp::doEntities[MBEDGE],
1634 &DomainEleOp::doEntities[MBMAXTYPE],
false);
1640 auto fe_ent = DomainEleOp::getNumeredEntFiniteElementPtr()->getEnt();
1641 auto id = commonDataPtr->blocksIDmap.at(fe_ent);
1642 auto &dAta = commonDataPtr->setOfBlocksData.at(
id);
1643 auto &mgis_bv = *dAta.mGisBehaviour;
1645 int &size_of_vars = dAta.sizeIntVar;
1646 int &size_of_grad = dAta.sizeGradVar;
1647 int &size_of_stress = dAta.sizeStressVar;
1649 auto get_tag = [&](std::string name,
size_t size) {
1650 std::array<double, 9> def;
1651 std::fill(def.begin(), def.end(), 0);
1653 CHKERR internalVarMesh.tag_get_handle(name.c_str(), size, MB_TYPE_DOUBLE,
1654 th, MB_TAG_CREAT | MB_TAG_SPARSE,
1659 auto t_stress = getFTensor2FromMat<3, 3>(*(commonDataPtr->mStressPtr));
1663 auto th_disp = get_tag(fieldName, 3);
1664 auto th_stress = get_tag(mgis_bv.thermodynamic_forces[0].name, 9);
1665 auto th_grad = get_tag(mgis_bv.gradients[0].name, 9);
1667 size_t nb_gauss_pts = DomainEleOp::getGaussPts().size2();
1668 auto t_grad = getFTensor2FromMat<3, 3>(*(commonDataPtr->mGradPtr));
1669 auto t_disp = getFTensor1FromMat<3>(*(commonDataPtr->mDispPtr));
1670 CHKERR commonDataPtr->getInternalVar(fe_ent, nb_gauss_pts, size_of_vars,
1671 size_of_grad, size_of_stress);
1673 MatrixDouble &mat_int = *commonDataPtr->internalVariablePtr;
1674 vector<Tag> tags_vec;
1677 for (
auto c : mgis_bv.isvs) {
1678 auto vsize = getVariableSize(
c, mgis_bv.hypothesis);
1679 const size_t parav_siz = get_paraview_size(vsize);
1680 tags_vec.emplace_back(get_tag(
c.name, parav_siz));
1683 if (!(side == 0 &&
type == MBVERTEX))
1686 for (
size_t gg = 0; gg != nb_gauss_pts; ++gg) {
1688 double coords[] = {0, 0, 0};
1689 EntityHandle vertex;
1690 for (
int dd = 0;
dd != 3;
dd++)
1691 coords[dd] = DomainEleOp::getCoordsAtGaussPts()(gg,
dd);
1693 CHKERR internalVarMesh.create_vertex(coords, vertex);
1696 auto it = tags_vec.begin();
1697 for (
auto c : mgis_bv.isvs) {
1698 auto vsize = getVariableSize(
c, mgis_bv.hypothesis);
1699 const size_t parav_siz = get_paraview_size(vsize);
1701 getVariableOffset(mgis_bv.isvs,
c.name, mgis_bv.hypothesis);
1705 tag_vec.resize(parav_siz);
1707 CHKERR internalVarMesh.tag_set_data(*it, &vertex, 1, &*tag_vec.begin());
1713 array<double, 9> my_stress_vec{
1714 t_stress(0, 0), t_stress(1, 1), t_stress(2, 2),
1715 t_stress(0, 1), t_stress(1, 0), t_stress(0, 2),
1716 t_stress(2, 0), t_stress(1, 2), t_stress(2, 1)};
1721 array<double, 9> grad1_vec;
1725 grad1_vec = getVoigtVec<3>(t_strain);
1728 t_strain(
i,
j) = (t_grad(
i,
j) || t_grad(
j,
i)) / 2;
1729 grad1_vec = getVoigtVecSymm<3>(t_strain);
1732 CHKERR internalVarMesh.tag_set_data(th_stress, &vertex, 1,
1733 my_stress_vec.data());
1734 CHKERR internalVarMesh.tag_set_data(th_grad, &vertex, 1,
1736 CHKERR internalVarMesh.tag_set_data(th_disp, &vertex, 1, &*disps.begin());
1747 boost::shared_ptr<MFrontInterface::CommonData> commonDataPtr;
1748 moab::Interface &internalVarMesh;
1749 std::string fieldName;
1752template <ModelHypothesis MH, AssemblyType AT>
1753MoFEMErrorCode MFrontInterfaceImpl<MH, AT>::setUpdateInternalVariablesOperators(
1754 ForcesAndSourcesCore::RuleHookFun rule, std::string
field_name) {
1757 updateIntVariablesElePtr = boost::make_shared<DomainEle>(mField);
1759 updateIntVariablesElePtr->getRuleHook = rule;
1762 updateIntVariablesElePtr->getOpPtrVector(), {H1});
1764 updateIntVariablesElePtr->getOpPtrVector().push_back(
1765 new OpCalculateVectorFieldGradient<DIM, DIM>(
field_name,
1766 commonDataPtr->mGradPtr));
1767 updateIntVariablesElePtr->getOpPtrVector().push_back(
1768 new OpCalculateVectorFieldValues<DIM>(
field_name,
1769 commonDataPtr->mDispPtr));
1770 if (isFiniteKinematics)
1771 updateIntVariablesElePtr->getOpPtrVector().push_back(
1772 new OpUpdateVariablesFiniteStrains<MH>(
field_name, commonDataPtr,
1775 updateIntVariablesElePtr->getOpPtrVector().push_back(
1776 new OpUpdateVariablesSmallStrains<MH>(
field_name, commonDataPtr,
1778 if (saveGauss && (MH == TRIDIMENSIONAL)) {
1779 auto &moab_gauss = *moabGaussIntPtr;
1780 updateIntVariablesElePtr->getOpPtrVector().push_back(
1781 new OpSaveGaussPts<MH>(
field_name, moab_gauss, commonDataPtr));
1787template <
bool IS_LARGE_STRAIN, ModelHypothesis MH>
1788struct OpSaveStress :
public MFrontEleType<MH>
::DomainEleOp {
1789 static constexpr int DIM = MFrontEleType<MH>::SPACE_DIM;
1790 using DomainEleOp =
typename MFrontEleType<MH>::DomainEleOp;
1793 boost::shared_ptr<MFrontInterface::CommonData> common_data_ptr)
1795 commonDataPtr(common_data_ptr) {
1796 std::fill(&DomainEleOp::doEntities[MBEDGE],
1797 &DomainEleOp::doEntities[MBMAXTYPE],
false);
1802 const size_t nb_gauss_pts = DomainEleOp::getGaussPts().size2();
1803 auto fe_ent = DomainEleOp::getNumeredEntFiniteElementPtr()->getEnt();
1804 auto id = commonDataPtr->blocksIDmap.at(fe_ent);
1805 auto &dAta = commonDataPtr->setOfBlocksData.at(
id);
1807 int &size_of_stress = dAta.sizeStressVar;
1808 int &size_of_grad = dAta.sizeGradVar;
1810 CHKERR commonDataPtr->getInternalVar(fe_ent, nb_gauss_pts, dAta.sizeIntVar,
1811 dAta.sizeGradVar, dAta.sizeStressVar,
1814 MatrixDouble &mat_stress = *commonDataPtr->mPrevStressPtr;
1817 commonDataPtr->mFullStressPtr->resize(nb_gauss_pts, 3 * 3);
1818 commonDataPtr->mFullStressPtr->clear();
1819 auto t_full_stress =
1820 getFTensor2FromMat<3, 3>(*(commonDataPtr->mFullStressPtr));
1822 commonDataPtr->mFullStrainPtr->resize(nb_gauss_pts, 3 * 3);
1823 commonDataPtr->mFullStrainPtr->clear();
1824 auto t_full_strain =
1825 getFTensor2FromMat<3, 3>(*(commonDataPtr->mFullStrainPtr));
1830 for (
size_t gg = 0; gg != nb_gauss_pts; ++gg) {
1833 &mat_stress.data()[gg * size_of_stress], size_of_stress);
1840 if constexpr (IS_LARGE_STRAIN) {
1841 if constexpr (DIM == 3) {
1844 }
else if constexpr (DIM == 2) {
1849 if constexpr (DIM == 3) {
1854 }
else if constexpr (DIM == 2) {
1862 t_full_stress(
i,
j) = t_stress(
i,
j);
1863 t_full_strain(
i,
j) = t_grad(
i,
j);
1873 boost::shared_ptr<MFrontInterface::CommonData> commonDataPtr;
1876template <ModelHypothesis MH, AssemblyType AT>
1877MoFEMErrorCode MFrontInterfaceImpl<MH, AT>::setPostProcessOperators(
1878 ForcesAndSourcesCore::RuleHookFun rule, std::string fe_name,
1882 postProcFe = boost::make_shared<PostProcDomainEle>(mField);
1884 auto &pip = postProcFe->getOpPtrVector();
1886 pip.push_back(
new OpCalculateVectorFieldValues<DIM>(
field_name,
1887 commonDataPtr->mDispPtr));
1889 auto entity_data_l2 = boost::make_shared<EntitiesFieldData>(MBENTITYSET);
1890 auto mass_ptr = boost::make_shared<MatrixDouble>();
1891 auto strain_coeffs_ptr = boost::make_shared<MatrixDouble>();
1892 auto stress_coeffs_ptr = boost::make_shared<MatrixDouble>();
1894 auto op_this =
new OpLoopThis<DomainEle>(mField, fe_name, Sev::noisy);
1895 pip.push_back(op_this);
1896 pip.push_back(
new OpDGProjectionEvaluation(
1897 commonDataPtr->mFullStrainPtr, strain_coeffs_ptr, entity_data_l2,
1898 fieldBase,
L2, Sev::noisy,
1899 OpDGProjectionEvaluation::OutputLayout::GaussByCoeffs));
1900 pip.push_back(
new OpDGProjectionEvaluation(
1901 commonDataPtr->mFullStressPtr, stress_coeffs_ptr, entity_data_l2,
1902 fieldBase,
L2, Sev::noisy,
1903 OpDGProjectionEvaluation::OutputLayout::GaussByCoeffs));
1905 auto fe_physics_ptr = op_this->getThisFEPtr();
1906 fe_physics_ptr->getRuleHook = rule;
1908 fe_physics_ptr->getOpPtrVector().push_back(
new OpDGProjectionMassMatrix(
1909 order, mass_ptr, entity_data_l2, fieldBase,
L2));
1910 if (isFiniteKinematics) {
1911 fe_physics_ptr->getOpPtrVector().push_back(
1912 new OpSaveStress<true, MH>(
field_name, commonDataPtr));
1914 fe_physics_ptr->getOpPtrVector().push_back(
1915 new OpSaveStress<false, MH>(
field_name, commonDataPtr));
1917 fe_physics_ptr->getOpPtrVector().push_back(
new OpDGProjectionCoefficients(
1918 commonDataPtr->mFullStrainPtr, strain_coeffs_ptr, mass_ptr,
1919 entity_data_l2, fieldBase,
L2, Sev::noisy, DataLayout::GaussByCoeffs));
1920 fe_physics_ptr->getOpPtrVector().push_back(
new OpDGProjectionCoefficients(
1921 commonDataPtr->mFullStressPtr, stress_coeffs_ptr, mass_ptr,
1922 entity_data_l2, fieldBase,
L2, Sev::noisy, DataLayout::GaussByCoeffs));
1924 using OpPPMapVec = OpPostProcMapInMoab<DIM, DIM>;
1925 using OpPPMapTen = OpPostProcMapInMoab<3, 3>;
1927 pip.push_back(
new OpPPMapVec(
1929 postProcFe->getPostProcMesh(), postProcFe->getMapGaussPts(),
1933 {{field_name, commonDataPtr->mDispPtr}},
1941 pip.push_back(
new OpPPMapTen(
1943 postProcFe->getPostProcMesh(), postProcFe->getMapGaussPts(),
1949 {{
"STRAIN", commonDataPtr->mFullStrainPtr},
1950 {
"STRESS", commonDataPtr->mFullStressPtr}},
1959template <ModelHypothesis MH, AssemblyType AT>
1961 SmartPetscObj<DM> dm,
1965 auto make_vtks = [&]() {
1970 CHKERR postProcFe->writeFile(
"out_" + optionsPrefix +
1971 boost::lexical_cast<std::string>(step) +
1976 string file_name =
"out_" + optionsPrefix +
"gauss_" +
1977 boost::lexical_cast<std::string>(step) +
".h5m";
1979 CHKERR moabGaussIntPtr->write_file(file_name.c_str(),
"MOAB",
1980 "PARALLEL=WRITE_PART");
1981 CHKERR moabGaussIntPtr->delete_mesh();
1992template <ModelHypothesis MH, AssemblyType AT>
1994MFrontInterfaceImpl<MH, AT>::updateInternalVariables(SmartPetscObj<DM> dm,
1995 std::string fe_name) {
2001template struct MFrontInterfaceImpl<TRIDIMENSIONAL, AssemblyType::PETSC>;
2002template struct MFrontInterfaceImpl<AXISYMMETRICAL, AssemblyType::PETSC>;
2003template struct MFrontInterfaceImpl<PLANESTRAIN, AssemblyType::PETSC>;
2005template struct MFrontInterfaceImpl<TRIDIMENSIONAL, AssemblyType::BLOCK_SCHUR>;
2006template struct MFrontInterfaceImpl<AXISYMMETRICAL, AssemblyType::BLOCK_SCHUR>;
2007template struct MFrontInterfaceImpl<PLANESTRAIN, AssemblyType::BLOCK_SCHUR>;
2019boost::shared_ptr<MFrontInterface>
2024 "MoFEM built without MFront support. MFrontInterface is not available.");
static MoFEMErrorCode setBlocks(MoFEM::Interface &m_field, boost::shared_ptr< map< int, BlockData > > &block_sets_ptr)
DomainEle::UserDataOperator DomainEleOp
Finire element operator type.
ElementsAndOps< SPACE_DIM >::DomainEle DomainEle
FieldApproximationBase
approximation base
@ AINSWORTH_LEGENDRE_BASE
Ainsworth Cole (Legendre) approx. base .
#define CHK_THROW_MESSAGE(err, msg)
Check and throw MoFEM exception.
#define MoFEMFunctionReturnHot(a)
Last executable line of each PETSc function used for error handling. Replaces return()
@ L2
field with C-1 continuity
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
@ MOFEM_DATA_INCONSISTENCY
static const char *const ApproximationBaseNames[]
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
#define CHKERR
Inline error check.
#define MoFEMFunctionBeginHot
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
PetscErrorCode DMoFEMLoopFiniteElements(DM dm, const char fe_name[], MoFEM::FEMethod *method, CacheTupleWeakPtr cache_ptr=CacheTupleSharedPtr())
Executes FEMethod for finite elements in DM.
#define MOFEM_LOG(channel, severity)
Log.
#define MOFEM_LOG_TAG(channel, tag)
Tag channel.
#define _IT_CUBITMESHSETS_BY_SET_TYPE_FOR_LOOP_(MESHSET_MANAGER, CUBITBCTYPE, IT)
Iterator that loops over a specific Cubit MeshSet having a particular BC meshset in a moFEM field.
FTensor::Index< 'i', SPACE_DIM > i
const double c
speed of light (cm/ns)
const double n
refractive index of diffusive medium
FTensor::Index< 'J', DIM1 > J
FTensor::Index< 'j', 3 > j
Tensors class implemented by Walter Landry.
Tensor2_Expr< Kronecker_Delta< T >, T, Dim0, Dim1, i, j > kronecker_delta(const Index< i, Dim0 > &, const Index< j, Dim1 > &)
Rank 2.
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 MoFEMErrorCodeGeneric< moab::ErrorCode > rval
PetscErrorCode MoFEMErrorCode
MoFEM/PETSc error code.
MatrixShallowArrayAdaptor< double > MatrixAdaptor
Matrix adaptor.
UBlasMatrix< double > MatrixDouble
UBlasVector< double > VectorDouble
MatrixBoundedArray< double, 9 > MatrixDouble3by3
implementation of Data Operators for Forces and Sources
auto getVectorAdaptor(T1 ptr, const size_t n)
Get Vector adaptor.
auto type_from_handle(const EntityHandle h)
get type from entity handle
auto getVoigtVecAxisymm(T &t_mat, const double hoop_term)
auto to_non_symm(const FTensor::Tensor2_symmetric< T, DIM > &symm)
boost::shared_ptr< MFrontInterface > createMFrontInterface(MoFEM::Interface &m_field, ModelHypothesis mh, AssemblyType at)
create mfront interface
ModelHypothesis
Enumeration of model hypotheses supported by MFront interface.
@ AXISYMMETRICAL
Axisymmetrical model hypothesis.
@ PLANESTRAIN
Plane strain model hypothesis.
@ TRIDIMENSIONAL
3D model hypothesis.
auto getVoigtVecSymmAxisymm(T &t_mat, const double hoop_term)
MoFEMErrorCode opFactoryDomainRhs(MoFEM::Interface &m_field, std::string block_name, Pip &pip, std::string u, std::string ep, std::string tau)
MoFEMErrorCode opFactoryDomainLhs(MoFEM::Interface &m_field, std::string block_name, Pip &pip, std::string u, std::string ep, std::string tau)
FormsIntegrators< DomainEleOp >::Assembly< A >::LinearForm< I >::OpGradTimesTensor< 1, FIELD_DIM, SPACE_DIM > OpGradTimesTensor
constexpr IntegrationType I
constexpr auto field_name
OpBaseImpl< PETSC, EdgeEleOp > OpBase
Deprecated interface functions.
Data on single entity (This is passed as argument to DataOperator::doWork)
FTensor::Tensor0< FTensor::PackPtr< double *, 1 > > getFTensor0N(const FieldApproximationBase base)
Get base function as Tensor0.
auto getFTensor1DiffN(const FieldApproximationBase base)
Get derivatives of base functions.
MatrixDouble & getN(const FieldApproximationBase base)
get base functions this return matrix (nb. of rows is equal to nb. of Gauss pts, nb....
CommonData(MoFEM::Interface &m_field)
int nbRows
number of dofs on rows
int nbIntegrationPts
number of integration points
virtual MoFEMErrorCode iNtegrate(EntData &, EntData &)
Integrate grad-grad operator.
int nbCols
number if dof on column
int nbRowBaseFunctions
number or row base functions
Volume finite element base.
constexpr AssemblyType AT