2022-01-28 22:56:12 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-02-06 20:22:32 +01:00
|
|
|
norbitals=26
|
|
|
|
nelectrons=10
|
|
|
|
xcut=4.0
|
|
|
|
|
|
|
|
if [ -f "input" ]; then
|
|
|
|
rm "input"
|
|
|
|
fi
|
|
|
|
echo "$nelectrons $norbitals" > input
|
|
|
|
../determinants/determinants.x < input
|
|
|
|
rm "input"
|
|
|
|
|
|
|
|
for i in {1..6}
|
|
|
|
do
|
|
|
|
./compute_NPE.pl $i $xcut
|
|
|
|
done
|
2022-01-28 22:56:12 +01:00
|
|
|
|
|
|
|
gnuplot plot_stat.gnu
|
|
|
|
epspdf plot_stat.eps
|
|
|
|
okular plot_stat.pdf
|