mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
ENH: oscillatingLinearMotion: change types of input entries to Function1 TUT: sloshingCylinder: exemplify new entries of oscillatingLinearMotion
21 lines
563 B
Bash
Executable File
21 lines
563 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
|
|
#------------------------------------------------------------------------------
|
|
|
|
mkdir -p constant/triSurface
|
|
|
|
cp -f \
|
|
"$FOAM_TUTORIALS"/resources/geometry/sloshingCylinder.obj.gz \
|
|
constant/triSurface/
|
|
|
|
restore0Dir
|
|
|
|
runApplication blockMesh
|
|
|
|
runApplication snappyHexMesh -overwrite
|
|
|
|
runApplication setFields
|
|
|
|
#------------------------------------------------------------------------------
|