CONFIG: update compiler versions

TUT: add missing restore0Dir (finiteArea)

STYLE: doc spelling
This commit is contained in:
Mark Olesen
2021-06-14 14:43:01 +02:00
parent 82fdeaf679
commit b6e8768034
7 changed files with 17 additions and 1 deletions

View File

@ -69,6 +69,9 @@ case ThirdParty:
case Gcc: case Gcc:
set gcc_version="$default_gcc_version" set gcc_version="$default_gcc_version"
breaksw breaksw
case Gcc111*:
set gcc_version=gcc-11.1.1
breaksw
case Gcc103*: case Gcc103*:
set gcc_version=gcc-10.3.0 set gcc_version=gcc-10.3.0
breaksw breaksw
@ -156,6 +159,9 @@ case ThirdParty:
case Clang: case Clang:
set clang_version="$default_clang_version" set clang_version="$default_clang_version"
breaksw breaksw
case Clang120*:
set clang_version=llvm-12.0.0
breaksw
case Clang111*: case Clang111*:
set clang_version=llvm-11.1.0 set clang_version=llvm-11.1.0
breaksw breaksw

View File

@ -70,6 +70,7 @@ ThirdParty)
case "$WM_COMPILER" in case "$WM_COMPILER" in
Gcc) gcc_version="$default_gcc_version" ;; Gcc) gcc_version="$default_gcc_version" ;;
Gcc111*) gcc_version=gcc-11.1.1 ;;
Gcc103*) gcc_version=gcc-10.3.0 ;; Gcc103*) gcc_version=gcc-10.3.0 ;;
Gcc102*) gcc_version=gcc-10.2.0 ;; Gcc102*) gcc_version=gcc-10.2.0 ;;
Gcc101*) gcc_version=gcc-10.1.0 ;; Gcc101*) gcc_version=gcc-10.1.0 ;;
@ -100,6 +101,7 @@ ThirdParty)
Gcc48*) gcc_version=gcc-4.8.5 ;; Gcc48*) gcc_version=gcc-4.8.5 ;;
Clang) clang_version="$default_clang_version" ;; Clang) clang_version="$default_clang_version" ;;
Clang120*) clang_version=llvm-12.0.0 ;;
Clang111*) clang_version=llvm-11.1.0 ;; Clang111*) clang_version=llvm-11.1.0 ;;
Clang110*) clang_version=llvm-11.0.1 ;; Clang110*) clang_version=llvm-11.0.1 ;;
Clang100*) clang_version=llvm-10.0.1 ;; Clang100*) clang_version=llvm-10.0.1 ;;

View File

@ -93,7 +93,7 @@ Usage
Checks the resulting faces against the original search surface Checks the resulting faces against the original search surface
and rejects faces with a distance greater than \c absProximity. and rejects faces with a distance greater than \c absProximity.
- \c proxityRegions (post-filter): - \c proximityRegions (post-filter):
Checks the distance of the resulting faces against the original Checks the distance of the resulting faces against the original
search surface. Filters based on the area-weighted distance search surface. Filters based on the area-weighted distance
of each topologically connected region. of each topologically connected region.

View File

@ -3,6 +3,8 @@ cd "${0%/*}" || exit # Run from this directory
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions . ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
restore0Dir
runApplication blockMesh runApplication blockMesh
runApplication decomposePar runApplication decomposePar

View File

@ -5,6 +5,8 @@ cd "${0%/*}" || exit # Run from this directory
restore0Dir restore0Dir
#NO blockMesh (pre-meshed geometry and pre-calculated U field)
runApplication makeFaMesh runApplication makeFaMesh
runApplication $(getApplication) runApplication $(getApplication)

View File

@ -5,6 +5,8 @@ cd "${0%/*}" || exit # Run from this directory
restore0Dir restore0Dir
#NO blockMesh (pre-meshed geometry and pre-calculated U field)
runApplication makeFaMesh runApplication makeFaMesh
runApplication decomposePar runApplication decomposePar

View File

@ -7,6 +7,8 @@ decompDict="-decomposeParDict system/decomposeParDict-procBoundary8"
fileHandler="-fileHandler collated" fileHandler="-fileHandler collated"
# reconstruct=true # reconstruct=true
restore0Dir
runApplication blockMesh runApplication blockMesh
runApplication $decompDict decomposePar $fileHandler runApplication $decompDict decomposePar $fileHandler