53 const char param_file[] =
"param_file.petsc";
57 auto core_log = logging::core::get();
58 core_log->add_sink(LogManager::createSink(LogManager::getStrmWorld(),
"EP"));
59 LogManager::setLog(
"EP");
65 MOFEM_LOG(
"EP", Sev::inform) <<
"Python initialised";
67 MOFEM_LOG(
"EP", Sev::inform) <<
"Python NOT initialised";
71 LogManager::createSink(LogManager::getStrmSync(),
"EPSYNC"));
72 LogManager::setLog(
"EPSYNC");
78 PetscBool flg = PETSC_TRUE;
84 char restart_file[255];
85 PetscBool restart_flg = PETSC_TRUE;
92 DMType dm_name =
"DMMOFEM";
94 DMType dm_name_mg =
"DMMOFEM_MG";
101 ParallelComm *pcomm = ParallelComm::get_pcomm(&moab,
MYPCOMM_INDEX);
103 pcomm =
new ParallelComm(&moab, PETSC_COMM_WORLD);
105 PetscBool fully_distributed = PETSC_FALSE;
107 &fully_distributed, PETSC_NULL);
108 if (fully_distributed) {
110 if (pcomm->proc_config().proc_size() == 1)
113 option =
"PARALLEL=READ_PART;"
114 "PARALLEL_RESOLVE_SHARED_ENTS;"
115 "PARTITION=PARALLEL_PARTITION";
118 CHKERR CommInterface::loadFileRootProcAllRestDistributed(
138 *meshset_ptr, CommInterface::getPartEntities(moab, pcomm->rank()));
139 auto get_adj = [&](
Range ents,
int dim) {
141 CHKERR moab.get_adjacencies(ents, dim,
false, adj,
142 moab::Interface::UNION);
147 get_adj(CommInterface::getPartEntities(moab, pcomm->rank())
152 get_adj(CommInterface::getPartEntities(moab, pcomm->rank())
157 get_adj(CommInterface::getPartEntities(moab, pcomm->rank())
162 CHKERR ep.createCrackSurfaceMeshset();
164 CHKERR ep.getSpatialDispBc();
165 CHKERR ep.getSpatialRotationBc();
166 CHKERR ep.getSpatialTractionBc();
167 CHKERR ep.getSpatialTractionFreeBc();
168 CHKERR ep.setBlockTagsOnSkin();
170 CHKERR ep.createExchangeVectors(Sev::inform);
172 CHKERR ep.addFields(*meshset_ptr);
173 CHKERR ep.projectGeometry(*meshset_ptr);
174 CHKERR ep.addVolumeFiniteElement(*meshset_ptr);
175 CHKERR ep.addBoundaryFiniteElement(*meshset_ptr);
185 const char *list_materials[LastMaterial] = {
186 "stvenant_kirchhoff",
"mooney_rivlin",
"hencky",
"neo_hookean"};
187 PetscInt choice_material = MooneyRivlin;
189 LastMaterial, &choice_material, PETSC_NULL);
191 switch (choice_material) {
192 case StVenantKirchhoff:
193 MOFEM_LOG(
"EP", Sev::inform) <<
"StVenantKirchhoff material model";
198 MOFEM_LOG(
"EP", Sev::inform) <<
"MooneyRivlin material model";
199 MOFEM_LOG(
"EP", Sev::inform) <<
"MU(1, 0)/2 = " <<
MU(1, 0) / 2;
205 MOFEM_LOG(
"EP", Sev::inform) <<
"Hencky material model";
206 CHKERR ep.addMaterial_Hencky(5., 0.25);
209 MOFEM_LOG(
"EP", Sev::inform) <<
"Neo-Hookean material model";
218 CHKERR ep.setElasticElementToTs(ep.dmElastic);
223 CHKERR VecSetOption(f_elastic, VEC_IGNORE_NEGATIVE_INDICES, PETSC_TRUE);
227 CHKERR PetscViewerBinaryOpen(PETSC_COMM_WORLD, restart_file,
228 FILE_MODE_READ, &viewer);
229 CHKERR VecLoad(x_elastic, viewer);
230 CHKERR PetscViewerDestroy(&viewer);
235 auto ts_elastic =
createTS(PETSC_COMM_WORLD);
236 CHKERR TSSetType(ts_elastic, TSBEULER);
239 CHKERR TSGetAdapt(ts_elastic, &adapt);
240 CHKERR TSAdaptSetType(adapt, TSADAPTNONE);
241 CHKERR TSSetTime(ts_elastic, time);
243 if(ep.dynamicRelaxation) {
244 CHKERR ep.solveDynamicRelaxation(ts_elastic, x_elastic);
246 CHKERR ep.solveElastic(ts_elastic, x_elastic);
256 if (Py_FinalizeEx() < 0) {