You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.4 KiB
Gnuplot
85 lines
2.4 KiB
Gnuplot
set ylabel co2_label
|
|
set key center bottom font ',10' box 3
|
|
set size ratio ch4_ratio
|
|
#- - - - - - - - - - - - - - - - - -
|
|
# * * * * * * * * R1 * * * * * * * *
|
|
#- - - - - - - - - - - - - - - - - -
|
|
#input/output
|
|
file="gnuplot/data/R1.csv"
|
|
set datafile separator ","
|
|
set terminal cairolatex pdf size x_size cm,y_long_size cm
|
|
set output 'gnuplot/output/R1-CO2.tex'
|
|
# x, y ranges
|
|
set xrange [0:R1_time]
|
|
set yrange [0:R_ymaxCO2]
|
|
#ploting
|
|
plot file using 1:($2*10) with points ls 1 title CO2_title1, \
|
|
"" using 1:($3*10) with points ls 2 title CO2_title2
|
|
set output
|
|
|
|
set size ratio med_ratio
|
|
|
|
#- - - - - - - - - - - - - - - - - -
|
|
# * * * * * * * * R2 * * * * * * * *
|
|
#- - - - - - - - - - - - - - - - - -
|
|
#input/output
|
|
file="gnuplot/data/R2.csv"
|
|
set datafile separator ","
|
|
set terminal cairolatex pdf size x_size cm,y_size cm
|
|
set output 'gnuplot/output/R2-CO2.tex'
|
|
#x, y ranges
|
|
set xrange [0:R2_time]
|
|
set yrange [0:R_ymaxCO2]
|
|
#ploting
|
|
plot file using 1:($2*10) with points ls 1 title CO2_title1, \
|
|
"" using 1:($3*10) with points ls 2 title CO2_title2
|
|
set output
|
|
|
|
#- - - - - - - - - - - - - - - - - -
|
|
# * * * * * * * * R3 * * * * * * * *
|
|
#- - - - - - - - - - - - - - - - - -
|
|
#input/output
|
|
file="gnuplot/data/R3.csv"
|
|
set datafile separator ","
|
|
set terminal cairolatex pdf size x_size cm,y_size cm
|
|
set output 'gnuplot/output/R3-CO2.tex'
|
|
#x, y ranges
|
|
set xrange [0:R3_time]
|
|
set yrange [0:R_ymaxCO2]
|
|
#ploting
|
|
plot file using 1:($2*10) with points ls 1 title CO2_title1, \
|
|
"" using 1:($3*10) with points ls 2 title CO2_title2
|
|
set output
|
|
|
|
#- - - - - - - - - - - - - - - - - -
|
|
# * * * * * * * * R4 * * * * * * * *
|
|
#- - - - - - - - - - - - - - - - - -
|
|
#input/output
|
|
file="gnuplot/data/R4.csv"
|
|
set datafile separator ","
|
|
set terminal cairolatex pdf size x_size cm,y_size cm
|
|
set output 'gnuplot/output/R4-CO2.tex'
|
|
#x, y ranges
|
|
set xrange [0:R4_time]
|
|
set yrange [0:R_ymaxCO2]
|
|
#ploting
|
|
plot file using 1:($2*10) with points ls 1 title CO2_title1, \
|
|
"" using 1:($3*10) with points ls 2 title CO2_title2
|
|
set output
|
|
|
|
#- - - - - - - - - - - - - - - - - -
|
|
# * * * * * * * * R5 * * * * * * * *
|
|
#- - - - - - - - - - - - - - - - - -
|
|
#input/output
|
|
file="gnuplot/data/R5.csv"
|
|
set datafile separator ","
|
|
set terminal cairolatex pdf size x_size cm,y_size cm
|
|
set output 'gnuplot/output/R5-CO2.tex'
|
|
#x, y ranges
|
|
set xrange [0:R5_time]
|
|
set yrange [0:R_ymaxCO2]
|
|
#ploting
|
|
plot file using 1:($2*10) with points ls 1 title CO2_title1, \
|
|
"" using 1:($3*10) with points ls 2 title CO2_title2
|
|
set output
|