Closed rubengerritsen closed 3 years ago
@votca-bot format
@votca-bot copyright
@votca-bot changelog: implement fchk writer
Merging #649 (9900a92) into master (e549fe0) will increase coverage by
0.2%
. The diff coverage is87.8%
.
@@ Coverage Diff @@
## master #649 +/- ##
========================================
+ Coverage 53.1% 53.3% +0.2%
========================================
Files 292 296 +4
Lines 27867 28064 +197
========================================
+ Hits 14798 14978 +180
- Misses 13069 13086 +17
Impacted Files | Coverage Δ | |
---|---|---|
src/libxtp/tools/mol2orb.h | 0.0% <ø> (ø) |
|
src/libxtp/tools/orb2fchk.cc | 0.0% <0.0%> (ø) |
|
src/libxtp/tools/orb2fchk.h | 0.0% <0.0%> (ø) |
|
src/libxtp/tools/orb2mol.h | 0.0% <ø> (ø) |
|
src/tools/xtp_tools.cc | 26.5% <0.0%> (ø) |
|
src/libxtp/gaussianwriter.cc | 98.2% <98.2%> (ø) |
|
include/votca/xtp/aobasis.h | 91.6% <100.0%> (+5.9%) |
:arrow_up: |
include/votca/xtp/gaussianwriter.h | 100.0% <100.0%> (ø) |
|
src/libxtp/factories/toolfactory.cc | 100.0% <100.0%> (ø) |
|
... and 4 more |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update e549fe0...9900a92. Read the comment docs.
@votca-bot format
@votca-bot format
A new tool that converts a .orb file to a .fchk (formatted gaussian checkpoint) file, fix #617.
The file specification for the .fchk file on the Gaussian website is very limited, the email from the gaussian people helped a bit, but also didn't contain everything I needed. What I did to get the order, multipliers etc. right is run a dft calculation with psi4, run exactly the same calculation with xtp and compare the votca generated .fchk file with the .fchk output file of psi4. Hence if the psi4 implementation is correct, this one is as well. I couldn't think of any other way to verify the correctness of the implementation. If someone has a good idea please let me know.
Also I still need to add a unit test.