solvers::solidDisplacement: New solver module for solid stress analysis

executed with foamRun for single region simulations of foamMultiRun for
multi-region simulations.  Replaces solidDisplacementFoam and
solidEquilibriumDisplacementFoam and all the corresponding tutorials have been
updated and moved to tutorials/modules/solidDisplacement.

Class
    Foam::solvers::solidDisplacement

Description
    Solver module for steady or transient segregated finite-volume solution of
    linear-elastic, small-strain deformation of a solid body, with optional
    thermal diffusion and thermal stresses.

    Solves for the displacement vector field D, also generating the stress
    tensor field sigma, including the thermal stress contribution if selected.

SourceFiles
    solidDisplacement.C
This commit is contained in:
Henry Weller
2023-01-03 18:12:04 +00:00
parent 20c7c7c21a
commit 55be8068d4
45 changed files with 1584 additions and 384 deletions

View File

@ -0,0 +1,14 @@
#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
# Source tutorial run functions
. $WM_PROJECT_DIR/bin/tools/RunFunctions
application=$(getApplication)
runApplication blockMesh
runApplication $application
runApplication -s sigma foamPostProcess -func "components(sigma)"
runApplication -s graphUniform foamPostProcess -func graphUniform
#------------------------------------------------------------------------------