mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
thermoTools is a relocation of various existing tools: - src/TurbulenceModels/compressible/turbulentFluidThermoModels/derivedFvPatchFields/ - src/semiPermeableBaffle/derivedFvPatchFields/ - src/thermophysicalModels/thermophysicalPropertiesFvPatchFields/liquidProperties/ ENH: Allwmake: reordering various compilation steps Co-authored-by: Kutalmis Bercin <kutalmis.bercin@esi-group.com>
13 lines
503 B
Bash
Executable File
13 lines
503 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
. ${WM_PROJECT_DIR:?}/wmake/scripts/AllwmakeParseArguments
|
|
#------------------------------------------------------------------------------
|
|
|
|
reactingEuler/Allwmake $targetType $*
|
|
multiphaseInter/Allwmake $targetType $*
|
|
multiphaseEuler/Allwmake $targetType $*
|
|
twoPhaseEuler/Allwmake $targetType $*
|
|
twoPhaseInter/Allwmake $targetType $*
|
|
|
|
#------------------------------------------------------------------------------
|