mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-13 01:23:57 +01:00
39 lines
812 B
Bash
Executable File
39 lines
812 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# get_basis.sh <temp_file> <basis_name> <atom_list>...
|
|
#
|
|
# Uses the EMSL_api.py to get the basis set:
|
|
# https://github.com/TApplencourt/EMSL_Basis_Set_Exchange_Local
|
|
#
|
|
# Prints in stdout the name of a temporary file containing the basis set.
|
|
#
|
|
|
|
export EMSL_API_ROOT="${QPACKAGE_ROOT}"/EMSL_Basis/
|
|
export PYTHONPATH="${EMSL_API_ROOT}":${PYTHONPATH}
|
|
|
|
tmpfile="$1"
|
|
shift
|
|
basis="$1"
|
|
shift
|
|
atoms=""
|
|
|
|
for atom in $@
|
|
do
|
|
atoms+="--atom ${atom} "
|
|
done
|
|
|
|
if [[ $? -ne 0 ]]
|
|
then
|
|
echo "==================================================" 1>& 2
|
|
echo "Unable to create temporary file $tmpfile" 1>& 2
|
|
echo "==================================================" 1>& 2
|
|
echo "ERROR"
|
|
exit 1
|
|
fi
|
|
${EMSL_API_ROOT}/EMSL_api.py get_basis_data --treat_l --save --path="${tmpfile}" --basis="${basis}" $atoms
|
|
|
|
|
|
|
|
|
|
|