ENH: Added new chemFoam solver and test cases for stiff chemistry problems

This commit is contained in:
andy
2010-11-24 11:28:58 +00:00
parent 892e638724
commit 3d039770f0
89 changed files with 33595 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#!/bin/sh
gnuplot<<EOF
set terminal postscript eps color enhanced
set output "OF_vs_CHEMKINII.eps"
set xlabel "Time / [s]"
set ylabel "Temperature / [K]"
set grid
set key left top
set xrange [0:0.001]
set yrange [1000:2400]
plot \
"../chemFoam.out" u 1:2 t "OpenFOAM" with points lt 1 pt 6,\
"chemkinII" with lines title "Chemkin II" lt -1
EOF
# ----------------------------------------------------------------- end-of-file