mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
86 lines
2.1 KiB
Bash
Executable File
86 lines
2.1 KiB
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
|
|
. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions
|
|
#------------------------------------------------------------------------------
|
|
|
|
runApplication blockMesh
|
|
|
|
# Turbulence closure models
|
|
models="
|
|
kOmegaSST
|
|
SpalartAllmaras
|
|
kEpsilonPhitF
|
|
"
|
|
|
|
# Extract a value (Eg, from boundaryField/bump/value)
|
|
#
|
|
# $1 = dictEntry
|
|
# $2 = inputFile
|
|
# $3 = outputFile
|
|
#
|
|
# only retain values between, but not including the ( ) delimiters.
|
|
# For example,
|
|
# ----
|
|
# value nonuniform List<scalar>
|
|
# 110
|
|
# (
|
|
# 0.0041520092
|
|
# 0.012577691
|
|
# 0.021250264
|
|
# 0.030176962
|
|
# )
|
|
# ;
|
|
# ----
|
|
extractVal()
|
|
{
|
|
if [ -f "$2" ]
|
|
then
|
|
foamDictionary -entry "$1" -value "$2" | \
|
|
sed -n '/(/,/)/{ s/[()]//g; /^ *$/d; p}' \
|
|
> "$3"
|
|
else
|
|
# Or some other tag?
|
|
echo "Not such file: $2" 1>&2
|
|
echo "0" > "$3"
|
|
fi
|
|
}
|
|
|
|
|
|
# Possibly disable for test: if notTest "$@"
|
|
|
|
if :
|
|
then
|
|
for model in $models
|
|
do
|
|
echo "Processing model: $model"
|
|
|
|
sed -e "s/RAS_MODEL/$model/g" \
|
|
constant/turbulenceProperties.template \
|
|
> constant/turbulenceProperties
|
|
|
|
runApplication $(getApplication)
|
|
|
|
timeDir=$(foamListTimes -latestTime)
|
|
|
|
# Create datasets for benchmark comparisons
|
|
extractVal boundaryField.bump.value "$timeDir/Cx" "Cx.$$"
|
|
extractVal boundaryField.bump.value "$timeDir/wallShearStress" "tau.$$"
|
|
extractVal boundaryField.bump.value "$timeDir/Cp" "cp.$$"
|
|
|
|
echo "# ccx tau_xx tau_yy tau_zz cp" > profiles.dat
|
|
paste -d ' ' Cx.$$ tau.$$ cp.$$ >> profiles.dat
|
|
rm -f Cx.$$ tau.$$ cp.$$
|
|
|
|
# Store results in directory of the same name as the model
|
|
modelDir="$model"
|
|
rm -rf "$modelDir"
|
|
mkdir "$modelDir"
|
|
mv -f log* profiles.dat "$timeDir" postProcessing "$modelDir"
|
|
|
|
cleanTimeDirectories
|
|
done
|
|
fi
|
|
|
|
#------------------------------------------------------------------------------
|