mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
41 lines
1.1 KiB
Bash
Executable File
41 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Source tutorial run functions
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
|
|
# Make 3D mesh in slab of cells.
|
|
(
|
|
cd wingMotion_snappyHexMesh || exit 1
|
|
|
|
runApplication blockMesh
|
|
runApplication snappyHexMesh -overwrite
|
|
)
|
|
|
|
# Make a 2D mesh by extruding a patch and solve to steady state.
|
|
(
|
|
cd wingMotion2D_simpleFoam || exit 1
|
|
|
|
runApplication extrudeMesh
|
|
runApplication createPatch -overwrite
|
|
restore0Dir
|
|
runApplication simpleFoam
|
|
)
|
|
|
|
# Copy mesh from the steady state case, map the results to a mesh motion case,
|
|
# then solve transient.
|
|
(
|
|
cd wingMotion2D_pimpleDyMFoam || exit 1
|
|
|
|
\rm -rf constant/polyMesh
|
|
\cp -r ../wingMotion2D_simpleFoam/constant/polyMesh constant
|
|
restore0Dir
|
|
runApplication mapFields ../wingMotion2D_simpleFoam -sourceTime latestTime -consistent
|
|
\mv 0/pointDisplacement.unmapped 0/pointDisplacement
|
|
runApplication decomposePar
|
|
runParallel $(getApplication)
|
|
runApplication reconstructPar
|
|
)
|
|
|
|
#------------------------------------------------------------------------------
|