4
1
mirror of https://github.com/pfloos/quack synced 2024-06-19 11:42:20 +02:00
quack/GoSph

18 lines
449 B
Plaintext
Raw Normal View History

2019-02-07 22:49:12 +01:00
#! /bin/bash
2019-04-02 22:58:24 +02:00
if [ $# -ne 2 ]
2019-02-07 22:49:12 +01:00
then
2019-04-02 22:58:24 +02:00
echo "You need two arguments [Number of electrons] [BasisSetSize] !!"
2019-02-07 22:49:12 +01:00
fi
2019-04-02 22:58:24 +02:00
if [ $# = 2 ]
2019-02-07 22:49:12 +01:00
then
2019-04-02 22:58:24 +02:00
cp examples/molecule.Sph_"$1" input/molecule
cp examples/basis.Sph.Ylm"$2" input/basis
2019-04-18 23:22:23 +02:00
cp ~/Integrals/QuAcK_Sph/Sph_ERI_"$2".dat int/ERI.dat
cp ~/Integrals/QuAcK_Sph/Sph_Kin_"$2".dat int/Kin.dat
cp ~/Integrals/QuAcK_Sph/Sph_Nuc_"$2".dat int/Nuc.dat
cp ~/Integrals/QuAcK_Sph/Sph_Ov_"$2".dat int/Ov.dat
2019-03-19 10:13:18 +01:00
./bin/QuAcK
2019-02-07 22:49:12 +01:00
fi