mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
ENH: Added new chemFoam solver and test cases for stiff chemistry problems
This commit is contained in:
18
tutorials/combustion/chemFoam/h2/validation/createGraph
Executable file
18
tutorials/combustion/chemFoam/h2/validation/createGraph
Executable 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
|
||||
|
||||
Reference in New Issue
Block a user