2019-10-01 19:13:31 +02:00
|
|
|
|
|
|
|
WF=FCI
|
|
|
|
BASIS=avdz
|
|
|
|
METHOD=DFT
|
|
|
|
|
|
|
|
TYPE=relat
|
|
|
|
FILE=data_${METHOD}_${BASIS}E_${TYPE}
|
|
|
|
OUT=${METHOD}_${BASIS}E_${TYPE}
|
|
|
|
#lt -1
|
|
|
|
cat << EOF > pouet.gp
|
|
|
|
set xrange [:7]
|
2019-10-11 18:15:50 +02:00
|
|
|
set yrange [-0.4:0]
|
2019-10-17 18:30:43 +02:00
|
|
|
set key bottom
|
2019-11-23 16:38:36 +01:00
|
|
|
|
2020-01-20 18:37:01 +01:00
|
|
|
set xlabel "Inter nuclear distance (a.u.) "
|
2019-11-23 16:38:36 +01:00
|
|
|
set ylabel "Energy (Hartree)"
|
|
|
|
set key font ",15"
|
|
|
|
set key spacing "1,8"
|
|
|
|
|
2019-11-23 16:44:02 +01:00
|
|
|
plot '${FILE}' using 1:2 smooth cspline notitle lt 2 , "" using 1:2 w p lt 2 ps 1 title "${WF}/$BASIS"
|
2020-01-20 18:37:01 +01:00
|
|
|
replot '${FILE}' using 1:5 smooth cspline notitle lt 8 , "" using 1:5 w p lt 8 ps 1 title "${WF}+SU-PBE-OT/$BASIS"
|
2019-11-23 16:44:02 +01:00
|
|
|
replot '${FILE}' using 1:6 smooth cspline notitle lt 7 , "" using 1:6 w p lt 7 ps 1 title "Exact"
|
2019-11-23 16:38:36 +01:00
|
|
|
set terminal eps enhanced linewidth 6
|
2019-10-01 19:13:31 +02:00
|
|
|
set output "${OUT}.eps"
|
|
|
|
replot
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
2019-10-02 18:43:27 +02:00
|
|
|
gnuplot pouet.gp
|
|
|
|
|
2019-10-01 19:13:31 +02:00
|
|
|
if [[ $METHOD == "DFT" ]]; then
|
|
|
|
|
|
|
|
OUT=${METHOD}_${BASIS}E_${TYPE}_zoom
|
|
|
|
cat << EOF > pouet.gp
|
2019-10-11 18:15:50 +02:00
|
|
|
set xrange [1.75:2.5]
|
|
|
|
set yrange [-0.38:-0.2]
|
2019-10-31 16:37:05 +01:00
|
|
|
set key right
|
2019-11-23 16:38:36 +01:00
|
|
|
|
2020-01-20 18:37:01 +01:00
|
|
|
set xlabel "Inter nuclear distance (a.u.) "
|
2019-11-23 16:38:36 +01:00
|
|
|
set ylabel "Energy (Hartree)"
|
|
|
|
set key font ",15"
|
|
|
|
set key spacing "1,8"
|
|
|
|
|
2019-11-23 16:44:02 +01:00
|
|
|
plot '${FILE}' using 1:2 smooth cspline notitle lt 2 , "" using 1:2 w p lt 2 ps 1 title "${WF}/$BASIS"
|
2020-01-20 18:37:01 +01:00
|
|
|
replot '${FILE}' using 1:3 smooth cspline notitle lt 9 , "" using 1:3 w p lt 9 ps 1 title "${WF}+PBE-UEG/$BASIS"
|
|
|
|
replot '${FILE}' using 1:4 smooth cspline notitle lt 4 , "" using 1:4 w p lt 4 ps 1 title "${WF}+PBE-OT/$BASIS"
|
|
|
|
replot '${FILE}' using 1:5 smooth cspline notitle lt 8 , "" using 1:5 w p lt 8 ps 1 title "${WF}+SU-PBE-OT/$BASIS"
|
2019-11-23 16:44:02 +01:00
|
|
|
replot '${FILE}' using 1:6 smooth cspline notitle lt 7 , "" using 1:6 w p lt 7 ps 1 title "Exact"
|
2019-11-23 16:38:36 +01:00
|
|
|
set terminal eps enhanced linewidth 6
|
2019-10-01 19:13:31 +02:00
|
|
|
set output "${OUT}.eps"
|
|
|
|
replot
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
gnuplot pouet.gp
|
|
|
|
|
|
|
|
TYPE=error
|
|
|
|
FILE=data_${METHOD}_${BASIS}E_${TYPE}
|
|
|
|
OUT=${METHOD}_${BASIS}E_${TYPE}
|
|
|
|
#lt -1
|
|
|
|
cat << EOF > pouet.gp
|
|
|
|
set xrange [:7]
|
2019-11-23 16:44:02 +01:00
|
|
|
plot '${FILE}' using 1:2 smooth cspline notitle lt 2 , "" using 1:2 w p lt 2 ps 1 title "${WF}/$BASIS"
|
|
|
|
replot '${FILE}' using 1:5 smooth cspline notitle lt 8 , "" using 1:5 w p lt 8 ps 1 title "${WF}+PBEot{/Symbol z}/$BASIS"
|
|
|
|
replot '${FILE}' using 1:4 smooth cspline notitle lt 4 , "" using 1:4 w p lt 4 ps 1 title "${WF}+PBEot/$BASIS"
|
|
|
|
replot '${FILE}' using 1:3 smooth cspline notitle lt 9 , "" using 1:3 w p lt 9 ps 1 title "${WF}+PBE/$BASIS"
|
2019-11-23 16:38:36 +01:00
|
|
|
set terminal eps enhanced linewidth 6
|
2019-10-01 19:13:31 +02:00
|
|
|
set output "${OUT}.eps"
|
|
|
|
replot
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
gnuplot pouet.gp
|
|
|
|
|