Given that the number of solid solver modules is currently 1 and unlikely to exceed 3 it is not very useful to maintain solid and fluid sub-directories and easier to see the correspondence between the solver modules and tutorial cases without.
18 lines
615 B
Bash
Executable File
18 lines
615 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Parse arguments for library compilation
|
|
. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments
|
|
|
|
wmake $targetType phaseSystems
|
|
wmake $targetType interfacialModels
|
|
wmake $targetType interfacialCompositionModels
|
|
wmake $targetType multiphaseCompressibleMomentumTransportModels
|
|
wmake $targetType multiphaseThermophysicalTransportModels
|
|
wmake $targetType multiphaseReactions
|
|
multiphaseEuler/Allwmake $targetType $*
|
|
wmake $targetType fvModels
|
|
wmake $targetType functionObjects
|
|
|
|
#------------------------------------------------------------------------------
|