which are now read directly from the thermophysicalProperties dictionary for consistency with non-reacting mixture thermodynamics. The species thermo and reactions lists can still be in separate files if convenient and included into the thermophysicalProperties file using the standard dictionary #include.
19 lines
499 B
Bash
Executable File
19 lines
499 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Source tutorial run functions
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
|
|
# Set application name
|
|
application=$(getApplication)
|
|
|
|
runApplication chemkinToFoam \
|
|
chemkin/chem.inp chemkin/therm.dat chemkin/transportProperties \
|
|
constant/reactions constant/speciesThermo
|
|
|
|
runApplication $application
|
|
|
|
(cd validation && ./Allrun $*)
|
|
|
|
#------------------------------------------------------------------------------
|