mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-04 21:24:02 +01:00
b91c9ebad1
* Converter for Pyscf * Scripts to read integrals and metadata and generates fake ezfio * update README * Trying to fix jbuilder bug in OCaml installation * Do AO->MO transformation from pyscf in QP * Optimization of reader due to format creux * Optimization of reader due to format creux 2
18 lines
378 B
Bash
Executable File
18 lines
378 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ezfio=$1
|
|
# Create the integral
|
|
echo 'Create Integral'
|
|
|
|
echo 'Create EZFIO'
|
|
read nel nmo natom <<< $(cat param)
|
|
read e_nucl <<< $(cat e_nuc)
|
|
./create_ezfio.py $ezfio $nel $natom $nmo $e_nucl
|
|
#Handle the orbital consitensy check
|
|
qp_edit -c $ezfio &> /dev/null
|
|
cp $ezfio/{ao,mo}_basis/ao_md5
|
|
|
|
#Read the integral
|
|
echo 'Read Integral'
|
|
qp_run read_integrals_mo $ezfio
|