Loading [MathJax]/extensions/AMSmath.js
 |
| v0.14.0
|
Implementation of mix-element for Large strains
- Todo:
- Implementation of plasticity
#define SINGULARITY
using namespace boost::multi_index;
using namespace boost::multiprecision;
using namespace boost::numeric;
#include <cmath>
#ifdef PYTHON_SDF
#include <boost/python.hpp>
#include <boost/python/def.hpp>
#include <boost/python/numpy.hpp>
namespace bp = boost::python;
namespace np = boost::python::numpy;
#endif
static char help[] =
"...\n\n";
int main(
int argc,
char *argv[]) {
const char param_file[] = "param_file.petsc";
auto core_log = logging::core::get();
#ifdef PYTHON_SDF
Py_Initialize();
np::initialize();
MOFEM_LOG(
"EP", Sev::inform) <<
"Python initialised";
#else
MOFEM_LOG(
"EP", Sev::inform) <<
"Python NOT initialised";
#endif
core_log->add_sink(
try {
PetscBool flg = PETSC_TRUE;
255, &flg);
255, &flg);
char restart_file[255];
PetscBool restart_flg = PETSC_TRUE;
&restart_flg);
double time = 0;
DMType dm_name = "DMMOFEM";
DMType dm_name_mg = "DMMOFEM_MG";
ParallelComm *pcomm = ParallelComm::get_pcomm(&moab,
MYPCOMM_INDEX);
if (pcomm == NULL)
pcomm = new ParallelComm(&moab, PETSC_COMM_WORLD);
PetscBool fully_distributed = PETSC_FALSE;
&fully_distributed, PETSC_NULL);
if (fully_distributed) {
const char *option;
if (pcomm->proc_config().proc_size() == 1)
option = "";
else
option = "PARALLEL=READ_PART;"
"PARALLEL_RESOLVE_SHARED_ENTS;"
"PARTITION=PARALLEL_PARTITION";
} else {
}
0, 3, bit_level0);
auto get_adj = [&](
Range ents,
int dim) {
CHKERR moab.get_adjacencies(ents, dim,
false, adj,
moab::Interface::UNION);
return adj;
};
*meshset_ptr,
2));
*meshset_ptr,
1));
*meshset_ptr,
0));
enum MaterialModel {
StVenantKirchhoff,
MooneyRivlin,
Hencky,
Neohookean,
LastMaterial
};
const char *list_materials[LastMaterial] = {
"stvenant_kirchhoff", "mooney_rivlin", "hencky", "neo_hookean"};
PetscInt choice_material = MooneyRivlin;
LastMaterial, &choice_material, PETSC_NULL);
switch (choice_material) {
case StVenantKirchhoff:
MOFEM_LOG(
"EP", Sev::inform) <<
"StVenantKirchhoff material model";
break;
case MooneyRivlin:
MOFEM_LOG(
"EP", Sev::inform) <<
"MooneyRivlin material model";
MOFEM_LOG(
"EP", Sev::inform) <<
"MU(1, 0)/2 = " <<
MU(1, 0) / 2;
break;
case Hencky:
MOFEM_LOG(
"EP", Sev::inform) <<
"Hencky material model";
break;
case Neohookean:
MOFEM_LOG(
"EP", Sev::inform) <<
"Neo-Hookean material model";
break;
default:
break;
}
CHKERR VecSetOption(f_elastic, VEC_IGNORE_NEGATIVE_INDICES, PETSC_TRUE);
if (restart_flg) {
PetscViewer viewer;
CHKERR PetscViewerBinaryOpen(PETSC_COMM_WORLD, restart_file,
FILE_MODE_READ, &viewer);
CHKERR VecLoad(x_elastic, viewer);
CHKERR PetscViewerDestroy(&viewer);
SCATTER_REVERSE);
}
auto ts_elastic =
createTS(PETSC_COMM_WORLD);
CHKERR TSSetType(ts_elastic, TSBEULER);
TSAdapt adapt;
CHKERR TSGetAdapt(ts_elastic, &adapt);
CHKERR TSAdaptSetType(adapt, TSADAPTNONE);
CHKERR TSSetTime(ts_elastic, time);
} else {
}
}
#ifdef PYTHON_SDF
if (Py_FinalizeEx() < 0) {
exit(120);
}
#endif
}
MoFEMErrorCode getInterface(IFACE *&iface) const
Get interface reference to pointer of interface.
MoFEMErrorCode addMaterial_HMHMooneyRivlin(const int tape, const double alpha, const double beta, const double lambda, const double sigma_y)
#define MYPCOMM_INDEX
default communicator number PCOMM
auto createTS(MPI_Comm comm)
virtual MPI_Comm & get_comm() const =0
MoFEMErrorCode addBoundaryFiniteElement(const EntityHandle meshset=0)
MoFEMErrorCode addFields(const EntityHandle meshset=0)
PetscErrorCode DMoFEMMeshToLocalVector(DM dm, Vec l, InsertMode mode, ScatterMode scatter_mode)
set local (or ghosted) vector values on mesh for partition only
static MoFEMErrorCode Finalize()
Checks for options to be called at the conclusion of the program.
static boost::shared_ptr< SinkType > createSink(boost::shared_ptr< std::ostream > stream_ptr, std::string comm_filter)
Create a sink object.
MoFEMErrorCode solveElastic(TS ts, Vec x)
Deprecated interface functions.
DeprecatedCoreInterface Interface
PetscErrorCode DMCreateGlobalVector_MoFEM(DM dm, Vec *g)
DMShellSetCreateGlobalVector.
MoFEMErrorCode addMaterial_HMHNeohookean(const int tape, const double c10, const double K)
SmartPetscObj< DM > dmElastic
Elastic problem.
MoFEMErrorCode getSpatialDispBc()
[Getting norms]
#define CHKERR
Inline error check.
implementation of Data Operators for Forces and Sources
MoFEMErrorCode solveDynamicRelaxation(TS ts, Vec x)
auto get_temp_meshset_ptr(moab::Interface &moab)
Create smart pointer to temporary meshset.
MoFEMErrorCode DMRegister_MGViaApproxOrders(const char sname[])
Register DM for Multi-Grid via approximation orders.
static boost::shared_ptr< std::ostream > getStrmSync()
Get the strm sync object.
static boost::shared_ptr< std::ostream > getStrmWorld()
Get the strm world object.
MoFEMErrorCode setBlockTagsOnSkin()
PetscErrorCode DMRegister_MoFEM(const char sname[])
Register MoFEM problem.
MoFEMErrorCode getSpatialRotationBc()
Eshelbian plasticity interface.
MoFEMErrorCode getSpatialTractionFreeBc(const EntityHandle meshset=0)
static MoFEMErrorCode loadFileRootProcAllRestDistributed(moab::Interface &moab, const char *file_name, int dim, LoadFileFun proc_skin_fun=defaultProcSkinFun, const char *options="PARALLEL=BCAST;PARTITION=")
Root proc has whole mesh, other procs only part of it.
MoFEMErrorCode setElasticElementOps(const int tag)
#define MOFEM_LOG_TAG(channel, tag)
Tag channel.
MoFEMErrorCode setElasticElementToTs(DM dm)
static MoFEMErrorCode Initialize(int *argc, char ***args, const char file[], const char help[])
Initializes the MoFEM database PETSc, MOAB and MPI.
#define MOFEM_LOG(channel, severity)
Log.
SmartPetscObj< Vec > vectorDuplicate(Vec vec)
Create duplicate vector of smart vector.
#define CATCH_ERRORS
Catch errors.
static PetscBool dynamicRelaxation
static Range getPartEntities(moab::Interface &moab, int part)
MoFEMErrorCode createExchangeVectors(Sev sev)
MoFEMErrorCode addVolumeFiniteElement(const EntityHandle meshset=0)
MoFEMErrorCode getSpatialTractionBc()
@ MOFEM_DATA_INCONSISTENCY
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)
MoFEMErrorCode addMaterial_Hencky(double E, double nu)
int main(int argc, char *argv[])
MoFEMErrorCode projectGeometry(const EntityHandle meshset=0)
std::bitset< BITREFLEVEL_SIZE > BitRefLevel
Bit structure attached to each entity identifying to what mesh entity is attached.
PetscErrorCode PetscOptionsGetScalar(PetscOptions *, const char pre[], const char name[], PetscScalar *dval, PetscBool *set)
static LoggerType & setLog(const std::string channel)
Set ans resset chanel logger.
MoFEMErrorCode addDMs(const BitRefLevel bit=BitRefLevel().set(0), const EntityHandle meshset=0)
MoFEMErrorCode createCrackSurfaceMeshset()
PetscErrorCode PetscOptionsGetBool(PetscOptions *, const char pre[], const char name[], PetscBool *bval, PetscBool *set)
MoFEMErrorCode addMaterial_HMHHStVenantKirchhoff(const int tape, const double lambda, const double mu, const double sigma_y)
PetscErrorCode TSAdaptCreateMoFEM(TSAdapt adapt)
Craete MOFEM adapt.