This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/validationAndVerificationSuite/validation/incompressible/pisoFoam/NACA-4412/validationData/gnuplot
Vuko Vukcevic 1e8dd2ecb1 Validation suite update:
Distinguishing between validation and verification cases: small changes in the
directory structure
2017-04-27 15:00:44 +02:00

11 lines
297 B
Bash
Executable file

#!/bin/bash
gnuplot -persist << 'EOF'
set term pngcairo dashed size 1024,768 font "Arial,12"
set output "Cp.png"
set yrange [* : *] reverse;
plot './validationData/cp.dat' using 1:2 title'C_p Experimetal data', \
'./validationData/p_solidWall.raw' using 1:($4/368.018) title 'C_p CFD' ;
EOF