TUT: sprayFoam: add examples for the new cloud function objects

- ReynoldsNumber (thermo)
- NusseltNumber
- HeatTransferCoeff
This commit is contained in:
Kutalmis Bercin
2021-06-05 14:39:47 +01:00
committed by Andrew Heather
parent d3d82c6a26
commit 7788a1a01a
13 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,8 @@
#!/bin/sh
cd "${0%/*}" || exit # Run from this directory
. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions
#------------------------------------------------------------------------------
cleanCase0
#------------------------------------------------------------------------------

View File

@ -0,0 +1,12 @@
#!/bin/sh
cd "${0%/*}" || exit # Run from this directory
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
#------------------------------------------------------------------------------
restore0Dir
runApplication blockMesh
runApplication $(getApplication)
#------------------------------------------------------------------------------

View File

@ -232,6 +232,21 @@ cloudFunctions
{
type WeberNumber;
}
ReynoldsNumber1
{
type ReynoldsNumber;
}
NusseltNumber1
{
type NusseltNumber;
}
HeatTransferCoeff1
{
type HeatTransferCoeff;
}
}