Description
Base-class for thermophysical properties of solids, liquids and gases
providing an interface compatible with the templated thermodynamics
packages.
liquidProperties, solidProperties and thermophysicalFunction libraries have been
combined with the new thermophysicalProperties class into a single
thermophysicalProperties library to simplify compilation and linkage of models,
libraries and applications dependent on these classes.
25 lines
641 B
Bash
Executable File
25 lines
641 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 specie
|
|
wmake $targetType solidSpecie
|
|
wmake $targetType thermophysicalProperties
|
|
|
|
wmake $targetType basic
|
|
wmake $targetType reactionThermo
|
|
wmake $targetType laminarFlameSpeed
|
|
wmake $targetType chemistryModel
|
|
wmake $targetType barotropicCompressibilityModel
|
|
wmake $targetType SLGThermo
|
|
|
|
|
|
wmake $targetType solidThermo
|
|
wmake $targetType solidChemistryModel
|
|
|
|
wmake $targetType radiation
|
|
|
|
#------------------------------------------------------------------------------
|