1. NAME
feelpp_toolbox_hdg_elasticity - hybridized discontinuous Galerkin elasticity toolbox application
2. SYNOPSIS
feelpp_toolbox_hdg_elasticity [--hdg_elasticity.filename <path to .json specification file>] [--config-file <path to .cfg file] [--case <directory to model case>] [--case.dim 3] [--case.discretization ] [--hdg_elasticity.ksp-monitor=<0,1>] [--hdg_elasticity.ksp-view=<0,1>] [--hdg_elasticity.ksp-type=<see below>] [--hdg_elasticity.pc-view=<0,1>] [--hdg_elasticity.pc-type=<see below>] [--hdg_elasticity.snes-monitor=<0,1>] [--hdg_elasticity.ksp-type=<see below>]
3. DESCRIPTION
feelpp_toolbox_hdg_elasticity is an application which can run hybridized discontinuous Galerkin elasticity model defined by a set of files : a geometry or mesh, a config file(.cfg
) and a model file(.json
)
The execution steps are as follows:
-
load the model
-
load the mesh
-
setup model (materials, initial and boundary condition)
-
execute the steady or unsteady simulation
-
post-process the results, viewable in paraview or ensight
3.1. Options
feelpp_toolbox_hdg_elasticity requires some options.
Name | Description | Default value | Possible Values |
---|---|---|---|
case.dim |
dimension of problem |
3 |
2,3 |
case.discretization |
discretization of problem |
||
hdg_elasticity.filename |
path to the .json specification case file |
no default value |
required from user |
hdg_elasticity.ksp-monitor |
monitor the Krylov Subspace iterations |
0 |
0,1 |
hdg_elasticity.ksp-view |
view the Krylov Subspace structure |
0 |
0,1 |
hdg_elasticity.ksp-type |
change the Krylov Subspace method |
|
|
hdg_elasticity.pc-view |
view the Krylov Subspace structure |
0 |
0,1 |
hdg_elasticity.pc-type |
change the Krylov Subspace strategy |
|
|
hdg_elasticity.snes-monitor |
if applicable, monitor the non-linear solver iterations |
0 |
0,1 |
hdg_elasticity.snes-type |
if applicable, change the non-linear solver iterations |
|
- NOTE
-
0 as option value means that the option is not enabled, 1 means it is enabled.
4. EXAMPLES
We are now using the feelpp/feelpp-toolboxes:latest
docker images as described in docs.feelpp.org/user/0.110.0-rc.5/install/containers/#_docker to demonstrate feelpp_toolbox_hdg_elasticity usage.
feelpp/feelpp-toolboxes:latest
docker run --rm -ti -v $HOME/feel:/feel ghcr.io/feelpp/feelpp-toolboxes:v0.110.0-rc.5
docker run (1)
--rm (2)
-ti (3)
-v $HOME/feel:/feel (4)
feelpp/feelpp-toolboxes (5)
1 | run docker executable |
2 | remove container from docker once execution is done |
3 | run in interactive mode and enter the docker container |
4 | mount $HOME/feel on host to /feel/ in docker: the results will be exported there |
5 | the docker container to execute, by default it uses the latest tag |
mpirun --bind-to core -np 10 feelpp_toolbox_hdg_elasticity --case "github:{path:toolboxes/hdg/cases/elasticity/quarterturn}"
mpirun --bind-to core (1) -np 10 (2) (3) --case "github:{path:toolboxes/hdg/cases/elasticity/quarterturn}" (4)
1 | execute in parallel using MPI with processes bound to cores |
2 | execute in parallel usisng 10 processes |
3 | the name of the toolbox application |
4 | case directory containing the model files (geometry, config and json). This case file is available remotely on github. |
Other test cases can be found
-
locally in /usr/share/feelpp/data/testcases/toolboxes/hdg_elasticity.
5. RESOURCES
- Feel++ Docs
- Feel++ Cases for feelpp_toolbox_hdg_elasticity
- Feel++ Toolbox Docs for feelpp_toolbox_hdg_elasticity
6. SEE ALSO
- Feel++ Mesh Partitioner
-
Mesh partitioner for Feel++ Toolboxes docs.feelpp.org/user/latest/using/mesh_partitioner/
- Feel++ Remote Tool
-
Access remote data(model cases, meshes) on Github and Girder in Feel++ applications. docs.feelpp.org/user/latest/using/remotedata/