Compare commits

..

1 commit

Author SHA1 Message Date
Ole Schütt
757bb76a80 Cut release version 2026.1 2026-01-06 10:31:20 +01:00
2443 changed files with 78162 additions and 270327 deletions

View file

@ -10,6 +10,3 @@ docs/CP2K_INPUT
.git*
*~
\#*\#
/install
/spack
/spack_cache

5
.gitattributes vendored
View file

@ -1,4 +1,5 @@
CODEOWNERS export-ignore
.gitattributes export-ignore
.git-blame-ignore-revs export-ignore
.gitignore export-ignore
.gitmodules export-ignore
.pre-commit-config.yaml export-ignore
.github/** export-ignore

11
.gitignore vendored
View file

@ -1,16 +1,18 @@
# base directory structure
/bin/
/build*/
/doxygen/
/exe/
/install*/
/lib/
/obj/
/bin/
/doxygen/
/regtesting/
/install/
# ignore former git submodules
/tools/prettify/fprettify
# ignore local arch files not meant to be shared
/arch/local*
# ensure people are not accidentally committing an old .svnignore when copying their stuff
.svnignore
@ -98,7 +100,6 @@ build*/
# Spack
build-*
.spack_patched
/spack*/
### CMake Patch ###
# External projects

File diff suppressed because it is too large Load diff

View file

@ -1,73 +0,0 @@
# Top-level files
/* @cp2k/cp2k-admins
# Data
/data/ @mkrack @juerghutter
# CMake
/cmake/ @mkrack @mtaillefumier @RMeli
/CMakeLists.txt @mkrack @mtaillefumier @RMeli
# Spack
/tools/spack/ @mkrack @mtaillefumier @RMeli
/make_cp2k.sh @mkrack @mtaillefumier @RMeli
# Toolchain
/tools/toolchain/ @mkrack @oschuett
# Testing + Conventions
/tools/conventions/ @mkrack @oschuett
/tools/precommit/ @mkrack @oschuett
/tools/dashboard/ @mkrack @oschuett
/tools/docker/ @mkrack @oschuett
# Load bearing APIs and files
/src/fm/ @fstein93 @oschuett
/src/pw/ @fstein93 @oschuett
/src/pw_env/ @fstein93 @oschuett
/src/mpiwrap/ @fstein93 @oschuett
/src/dbm/ @fstein93 @oschuett
/src/dbt/ @fstein93 @oschuett
/src/dbx/ @fstein93 @oschuett
/src/base/ @fstein93 @oschuett
/src/start/ @fstein93 @oschuett
/src/f77_interface.F @fstein93 @oschuett
/tests/do_regtest.py @fstein93 @oschuett
/tests/matcher_classes.py @fstein93 @oschuett
# Offload + Grid
/src/offload/ @mtaillefumier @oschuett
/src/grid/ @mtaillefumier @oschuett
# SIRIUS
/src/sirius_interface.F @mtaillefumier @RMeli
/src/*pwdft* @mtaillefumier @RMeli
# DLA-Future
/src/fm/*dlaf* @RMeli @mtaillefumier
# PAO
/src/pao_* @oschuett
/tools/pao-ml/ @oschuett
# Path integrals and NNP
/src/motion/pint_* @hforbert
/src/motion/helium_* @hforbert
/src/nnp_* @hforbert
# Dispersion + tblite
/src/qs_dispersion_* @jpoto
/src/tblite_* @jpoto
# NEGF
/src/negf_* @dryndyk
# Post Hartree-Fock
/src/mp2_* @JWilhelm @fstein93
/src/rpa_* @JWilhelm @fstein93
/src/gw_* @JWilhelm @fstein93
# Post SCF
/src/qs_scf_post_* @marci73 @juerghutter
#EOF

View file

@ -1 +0,0 @@
./docs/development/onboarding.md

View file

@ -10,33 +10,12 @@ For more details on downloading CP2K, see <https://www.cp2k.org/download>.
## 2. Install prerequisites
### Method 1: make_cp2k.sh
The easiest way to build CP2K with all its dependencies is as a
[Docker container](./tools/docker/README.md).
The easiest way to build CP2K with its dependencies is via the `make_cp2k.sh` script, which builds
CP2K using Spack and CMake locally within the CP2K_ROOT folder.
The script can either be sourced with:
```shell
source ./make_cp2k.sh
```
or run in a subshell with:
```shell
./make_cp2k.sh
```
You can run the following command to get information about how to use this script:
```shell
./make_cp2k.sh --help
```
Note: it is recommended to install podman to take advantage of a spack cache. This will accelerate
the build of the CP2K dependencies with Spack significantly.
### Method 2: Toolchain
CP2K supports GPU acceleration via CUDA (for NVIDIA GPUs), HIP/ROCm (for AMD GPUs), and OpenCL (for
a range of devices). If you wish to build with GPU support, please ensure to review sections 2i
(CUDA), 2w (ROCm/HIP), and 2x (OpenCL) in this document for detailed instructions.
Alternatively, the [toolchain script](./tools/toolchain/install_cp2k_toolchain.sh) can also be run
directly.
@ -52,35 +31,18 @@ cd tools/toolchain/
./install_cp2k_toolchain.sh --help
```
CP2K supports GPU acceleration via CUDA (for NVIDIA GPUs), HIP/ROCm (for AMD GPUs), and OpenCL (for
a range of devices). If you wish to build with GPU support, please see the
[manual](https://manual.cp2k.org/trunk/technologies/accelerators/index.html).
- Launch toolchain script (example option choice for NVIDIA/CUDA):
```shell
./install_cp2k_toolchain.sh --with-libxsmm=install --with-openblas=system \
--with-fftw=system --enable-cuda
--with-fftw=system --with-reflapack=no --enable-cuda
```
- For AMD/ROCm/HIP support, use:
```shell
./install_cp2k_toolchain.sh --with-libxsmm=install --with-openblas=system \
--with-fftw=system --enable-hip
```
- Build and install CP2K with prepared toolchain environment:
```shell
./build_cp2k.sh
```
It is also available to make installed program and dependencies outside the source tree:
```shell
./install_cp2k_toolchain.sh --install-dir=/opt/cp2k/toolchain
./build_cp2k.sh --prefix /opt/cp2k
--with-fftw=system --with-reflapack=no --enable-hip
```
## 3. Compile

View file

@ -37,14 +37,11 @@ help on git, see [Git Tips & Tricks](https://github.com/cp2k/cp2k/wiki/Git-Tips-
## Install CP2K
CP2K manual provides installation instructions for below available methods:
- [Build from Source](https://manual.cp2k.org/trunk/getting-started/build-from-source.html)
- [Build with Spack](https://manual.cp2k.org/trunk/getting-started/build-with-spack.html)
- [Install from Distribution](https://manual.cp2k.org/trunk/getting-started/distributions.html)
The easiest way to build CP2K with all of its dependencies is as a
[Docker container](./tools/docker/README.md).
For building CP2K from scratch, including GPU acceleration for NVIDIA (CUDA), AMD (HIP/ROCm), or
OpenCL devices, also see the [installation instructions](./INSTALL.md).
OpenCL devices, see the [installation instructions](./INSTALL.md).
## Links

1
REVISION Normal file
View file

@ -0,0 +1 @@
git:5e54ba2

View file

@ -1,457 +0,0 @@
&GLOBAL
PREFERRED_DIAG_LIBRARY ELPA
PRINT_LEVEL low
PROJECT H2O-128_md
RUN_TYPE MD
&END GLOBAL
&MOTION
&MD
ENSEMBLE NVE
STEPS 4
TEMPERATURE 300.0
TIMESTEP 0.5
&END MD
&END MOTION
&FORCE_EVAL
METHOD Quickstep
&DFT
BASIS_SET_FILE_NAME GTH_BASIS_SETS
POTENTIAL_FILE_NAME POTENTIAL
&MGRID
CUTOFF 480
REL_CUTOFF 60
&END MGRID
&PRINT
&HIRSHFELD off
&END HIRSHFELD
&MULLIKEN off
&END MULLIKEN
&END PRINT
&QS
EPS_DEFAULT 1.0E-14
&END QS
&SCF
EPS_SCF 1.0E-7
MAX_SCF 20
SCF_GUESS atomic
&OT on
MINIMIZER CG
PRECONDITIONER FULL_SINGLE_INVERSE
&END OT
&OUTER_SCF on
EPS_SCF 1.0E-7
MAX_SCF 3
&END OUTER_SCF
&PRINT
&RESTART off
&END RESTART
&END PRINT
&END SCF
&XC
&XC_FUNCTIONAL PBE
&END XC_FUNCTIONAL
&END XC
&END DFT
&SUBSYS
&CELL
ABC 15.6404 15.6404 15.6404
&END CELL
# 128 H2O (TIP5P,1bar,300K) a = 15.6404
&COORD
O 4.963362 8.433745 6.522726
O 8.071195 10.247451 13.276063
O 13.850862 12.652854 15.313528
O 10.628770 14.045936 13.059901
O 6.325463 12.328145 3.498946
O 3.583600 12.446390 8.539707
O 14.871126 15.358423 8.766155
O 13.901523 10.863702 1.750201
O 14.067166 0.862917 3.662820
O 10.133858 15.114355 5.659292
O 12.335899 11.027651 13.245276
O 11.020881 3.916524 5.030404
O 9.394684 6.531654 5.826834
O 11.080390 7.885268 7.198950
O 8.896688 8.249600 3.615318
O 7.353156 1.137779 5.346406
O 14.726780 7.918215 10.773641
O 1.861458 11.989979 2.208095
O 5.043121 6.543380 9.229162
O 8.759694 11.116925 3.548469
O 6.997656 8.373444 9.806165
O 6.063005 12.809828 7.806901
O 10.366591 5.779853 2.712706
O 1.542969 4.767262 12.213947
O 10.685570 14.507915 8.519941
O 12.849421 13.198702 9.038657
O 0.963120 14.402597 12.834647
O 7.797670 4.829150 12.447033
O 3.835427 3.788119 12.965881
O 3.376860 4.479186 1.446663
O 2.947460 1.489874 9.046559
O 3.108796 14.723769 5.201095
O 15.204514 8.599951 0.959433
O 15.219684 4.238425 15.684030
O 4.100649 1.057601 2.040112
O 11.001052 2.229682 10.064311
O 0.478278 0.949105 2.102755
O 13.497545 5.548164 10.181923
O 7.506276 1.277199 9.722916
O 7.428299 4.380540 1.411980
O 7.928952 14.363028 9.316256
O 0.355839 11.996260 13.602596
O 10.664734 7.760921 14.011072
O 2.130951 6.397562 4.547882
O 6.997688 7.117398 14.170903
O 9.843852 1.807540 1.906473
O 4.765738 9.146359 2.409067
O 4.102297 1.274905 6.068037
O 15.014340 11.743955 4.053518
O 12.695114 13.021970 5.787211
O 13.858302 3.507332 4.146316
O 7.022070 10.109293 7.424303
O 5.539291 5.159365 2.927469
O 9.768643 11.517745 11.838411
O 10.503632 1.060928 12.343495
O 5.637836 14.137294 5.298814
O 13.230577 15.494257 12.417538
O 10.087712 12.367132 5.676113
O 3.823444 11.248314 3.611973
O 2.764628 9.932668 12.219621
O 6.337327 1.214539 14.384465
O 9.932541 13.322345 2.141626
O 8.026468 1.856250 12.446566
O 12.678267 4.212245 7.543967
O 13.171058 4.494997 1.771265
O 1.270597 13.402991 7.043142
O 2.561666 15.503539 15.004783
O 9.418846 5.882450 0.091388
O 13.279532 8.467153 13.191095
O 14.784685 10.103797 9.128104
O 5.420783 3.626432 15.485019
O 5.484596 2.586023 3.716333
O 13.407464 7.649770 5.701169
O 14.491627 2.828827 13.502603
O 6.975558 5.474364 6.932584
O 3.311237 6.301528 6.829047
O 0.998842 3.600800 9.862514
O 9.866483 10.306933 7.180898
O 2.074137 10.679976 15.509320
O 11.018416 9.906723 0.630304
O 1.183950 1.843702 7.098684
O 14.873704 5.527544 6.848733
O 2.173299 7.943131 2.110457
O 4.449383 11.930616 11.079086
O 1.710425 14.756574 10.096897
O 6.694784 0.922595 1.239003
O 4.564438 11.918442 15.363533
O 5.477639 4.707670 11.065326
O 11.342444 0.223097 3.577043
O 7.426077 12.972512 11.521810
O 11.491853 1.563182 7.107076
O 4.794353 4.113581 6.561312
O 11.305735 3.619278 0.282229
O 1.481140 5.957409 8.624482
O 0.119546 10.931817 6.783795
O 2.484663 6.791214 15.186771
O 13.950657 12.916459 11.346835
O 6.051702 14.320089 13.213208
O 2.417817 14.602343 2.749723
O 3.040699 10.496700 6.149311
O 8.648120 3.218837 3.744312
O 5.305757 2.668899 9.163911
O 6.031135 7.542813 4.011356
O 15.264572 0.530244 15.103544
O 1.202379 11.443873 10.338401
O 14.305770 2.092612 10.350492
O 7.239758 12.387106 14.813865
O 7.341353 9.684340 0.723854
O 5.857541 9.676357 11.912006
O 15.332365 7.094962 14.318822
O 10.447327 8.207812 9.585339
O 9.866363 4.445989 10.955351
O 13.658983 0.219428 6.214705
O 7.322356 13.965677 1.578063
O 0.644540 4.039583 5.338294
O 11.742745 10.899134 8.906616
O 0.863237 3.520934 2.306355
O 12.841333 10.018102 4.330247
O 8.609050 2.288503 7.430427
O 11.067694 12.559978 15.366360
O 11.923672 3.212040 13.107757
O 11.306237 6.632227 11.461951
O 12.437417 7.860470 2.936097
O 1.645609 7.437039 11.743266
O 10.045665 4.639989 7.951130
O 3.297915 13.397525 13.230354
O 2.464454 1.557718 12.716823
O 4.302185 8.124888 13.787389
H 4.581468 7.718593 7.031593
H 5.435252 7.997984 5.813033
H 8.381737 9.538324 13.839031
H 7.875012 10.964336 13.879239
H 14.014609 12.142905 16.106856
H 14.391871 12.234836 14.643601
H 10.739569 13.533892 13.861004
H 10.132364 13.472919 12.475551
H 5.425531 12.003488 3.468104
H 6.310811 13.012792 4.167733
H 2.831114 13.037692 8.558619
H 3.397989 11.844750 7.818728
H 14.215688 14.710076 8.508709
H 14.915685 15.962115 8.024669
H 14.442896 10.979475 2.531061
H 13.131333 10.387571 2.060586
H 13.235552 0.480036 3.383444
H 14.167503 0.581424 4.572175
H 9.268459 15.423495 5.391430
H 10.724909 15.435978 4.978521
H 12.682383 11.900242 13.058822
H 11.530377 10.974348 12.730956
H 10.862047 3.493530 5.874252
H 11.866334 3.570906 4.744068
H 10.010906 6.860110 6.481524
H 9.772826 5.701645 5.536446
H 10.713257 8.747058 7.002065
H 10.930529 7.769221 8.137196
H 9.008071 7.846692 4.476416
H 9.404635 7.694874 3.023287
H 7.885169 1.417698 6.091281
H 6.462912 1.407047 5.572662
H 14.465524 8.122806 11.671483
H 14.387942 7.036249 10.620165
H 1.079976 11.549099 2.541476
H 1.854266 11.812527 1.267515
H 5.627954 7.254025 9.492195
H 5.358566 6.280575 8.364489
H 8.728012 10.160756 3.517346
H 7.843327 11.389131 3.499416
H 7.064983 9.034969 9.117627
H 6.681536 8.854422 10.570991
H 6.096247 13.255760 6.960573
H 5.135401 12.812072 8.043075
H 10.251809 4.879805 3.017615
H 11.247569 6.019998 2.999828
H 2.425379 4.423632 12.353605
H 1.622138 5.706596 12.380127
H 10.435334 14.464737 7.597038
H 9.863861 14.392213 8.997057
H 12.151749 13.846631 8.940295
H 12.401656 12.354243 8.987406
H 1.041376 14.716046 11.933616
H 0.431193 15.065997 13.274178
H 7.657165 5.609226 12.983662
H 7.113550 4.871097 11.778862
H 4.492907 4.226503 12.425723
H 4.197120 3.813194 13.851760
H 3.028991 5.174958 0.888880
H 2.608925 4.123752 1.894070
H 2.354380 1.561214 8.298628
H 2.601814 2.111564 9.687076
H 2.496453 14.284442 5.791230
H 2.669671 14.716265 4.350599
H 14.931000 9.483201 0.711861
H 14.543448 8.311558 1.588759
H 14.806603 3.662787 15.040418
H 15.806913 4.791820 15.169104
H 3.487941 1.365078 1.372072
H 3.735668 0.223182 2.334673
H 10.930358 1.492019 10.670189
H 11.783438 2.701109 10.350422
H 0.373431 0.943162 1.151333
H -0.331325 0.562024 2.435836
H 13.328483 5.602953 9.241365
H 13.904987 4.690509 10.302961
H 7.979807 1.447145 10.537237
H 7.699278 0.361971 9.519594
H 7.879980 3.677583 1.878957
H 6.921010 4.830270 2.087726
H 7.276262 13.850239 8.839522
H 7.900170 14.017994 10.208643
H 0.566590 12.917379 13.449771
H 0.097504 11.663383 12.743127
H 10.275806 6.980124 14.405182
H 10.496386 7.665796 13.073607
H 2.563595 6.556361 3.708934
H 1.500251 7.112689 4.631806
H 7.206023 7.863029 13.607998
H 6.088301 7.261122 14.432801
H 9.059286 1.416705 1.521847
H 9.511490 2.498088 2.479979
H 5.181015 8.567468 3.048333
H 3.954045 8.698238 2.171213
H 3.323672 1.528105 6.563885
H 3.866094 0.442374 5.658975
H 14.146610 12.079728 4.278314
H 15.272574 11.219653 4.811577
H 12.716562 12.455880 6.558777
H 11.770411 13.059590 5.542791
H 14.153945 2.652228 3.833869
H 13.419264 3.899892 3.391747
H 6.656515 10.977596 7.255036
H 6.361994 9.501768 7.090470
H 4.712486 5.080316 2.451678
H 5.521694 4.441294 3.560158
H 9.189146 10.923676 12.315377
H 9.179345 12.154039 11.433330
H 10.671879 0.186135 12.693725
H 9.549978 1.142946 12.350583
H 4.689829 14.268322 5.317390
H 5.985844 14.953053 4.938731
H 12.546401 14.844149 12.257863
H 12.876821 16.308055 12.058620
H 9.756019 13.254250 5.814793
H 9.607961 12.048315 4.911635
H 3.064895 11.422889 3.054873
H 4.291140 10.542078 3.166190
H 2.001271 10.248909 12.702851
H 2.907174 10.590416 11.538974
H 5.648267 1.877288 14.431286
H 6.585421 1.061461 15.296193
H 9.740490 12.519628 2.626387
H 10.584255 13.059982 1.491498
H 7.455032 1.571433 13.159709
H 7.941730 2.809647 12.437319
H 13.106722 3.411333 7.241976
H 13.240150 4.919265 7.226727
H 12.368225 4.300614 1.287626
H 13.862495 4.466405 1.109956
H 0.601526 14.024395 7.330255
H 0.816229 12.561332 7.005843
H 2.606189 15.728879 14.075552
H 1.751050 15.909700 15.311648
H 8.495514 5.631109 0.068638
H 9.589849 6.084955 1.011160
H 13.316729 9.402787 13.389684
H 12.379524 8.213880 13.396205
H 13.918259 10.505485 9.192801
H 14.676156 9.235384 9.515806
H 6.242915 3.976825 15.827883
H 4.811725 3.679161 16.221565
H 5.094286 2.686336 4.584564
H 4.898319 1.984198 3.257728
H 13.959261 6.906132 5.943560
H 12.760208 7.707487 6.403991
H 14.969381 3.387665 12.889672
H 13.602198 2.792224 13.150740
H 7.679644 4.993292 7.367401
H 7.415258 5.972883 6.243836
H 3.810284 5.488758 6.747876
H 2.838344 6.376576 6.000209
H 1.201385 4.317435 9.261147
H 1.095921 3.984260 10.734160
H 8.983144 9.978931 7.349300
H 9.731317 11.166458 6.781926
H 2.882211 11.167225 15.348581
H 1.472398 10.982022 14.828945
H 10.205799 9.598641 1.031516
H 11.290942 9.189004 0.058604
H 0.558492 1.215423 6.737713
H 1.132569 2.597863 6.511459
H 15.392637 5.068030 6.188591
H 15.494223 5.717274 7.552430
H 1.359386 8.375518 1.851964
H 2.491619 7.530928 1.307342
H 3.930723 12.466553 11.679082
H 4.127627 12.165120 10.208619
H 1.031873 14.870889 9.431517
H 2.312758 15.486507 9.953288
H 6.898133 0.021480 1.489743
H 5.806915 1.068076 1.565740
H 4.879440 12.531428 16.027803
H 5.343283 11.696347 14.853331
H 5.304646 5.468144 10.510363
H 5.487486 3.966167 10.460093
H 10.682669 0.812386 3.211437
H 11.375385 -0.510655 2.963240
H 6.968873 13.462683 12.205132
H 6.748898 12.423743 11.126193
H 11.398639 1.428458 8.050152
H 10.636236 1.331547 6.745834
H 5.559402 4.680155 6.660940
H 4.741233 3.634449 7.388260
H 10.965383 2.838195 0.718466
H 10.526206 4.126248 0.055186
H 2.151544 6.183022 7.979588
H 1.693196 6.493418 9.388654
H -0.065205 10.491692 7.613487
H 0.934641 10.534254 6.477533
H 1.612127 6.933760 14.819901
H 3.084290 7.085600 14.501194
H 14.370852 13.670525 11.760422
H 13.655238 13.242663 10.496806
H 5.117003 14.119782 13.262678
H 6.094269 15.275850 13.243879
H 1.684983 15.055245 2.332511
H 2.318871 13.688619 2.482233
H 3.301587 10.821578 5.287555
H 3.569324 9.709332 6.279080
H 9.402765 3.485324 4.269409
H 8.068278 2.776805 4.364491
H 5.849660 1.904585 9.354240
H 4.458877 2.303173 8.908431
H 5.856290 6.650150 3.713341
H 6.956707 7.685055 3.813075
H 14.578215 -0.136917 15.110099
H 15.036706 1.101780 14.370293
H 0.862260 12.331047 10.222329
H 0.576388 10.884751 9.878239
H 15.013369 2.687846 10.597944
H 14.749248 1.349716 9.941024
H 7.635604 12.750784 15.605874
H 7.063281 13.149121 14.262122
H 6.630981 10.323694 0.777061
H 6.910682 8.837082 0.837471
H 6.518696 10.163169 12.404063
H 5.158628 10.311483 11.755901
H 14.513415 7.228639 13.841660
H 15.188680 7.517995 15.165361
H 10.884896 7.694003 10.264136
H 9.537008 8.263555 9.875929
H 10.169920 3.541428 11.031858
H 9.058984 4.472429 11.468839
H 12.939998 0.748518 6.560183
H 13.359162 -0.684568 6.310259
H 6.806079 13.363518 2.113876
H 8.230720 13.707514 1.734455
H 1.376337 4.428271 4.859101
H 0.026246 3.773603 4.657706
H 11.202848 10.713245 9.674853
H 11.207901 10.618858 8.163906
H 0.837038 2.574495 2.447059
H 0.139223 3.694244 1.704691
H 13.344499 9.479144 4.940640
H 12.047898 10.250105 4.812811
H 8.179005 2.196707 8.280643
H 8.921781 3.193061 7.416086
H 11.996578 12.747212 15.501818
H 11.029996 11.611989 15.239368
H 11.753251 3.258077 14.048538
H 11.376661 2.489403 12.799853
H 10.727878 5.872638 11.392980
H 12.187517 6.272930 11.359562
H 12.694899 7.220715 3.599910
H 12.399226 8.692890 3.407107
H 1.995254 8.322850 11.839802
H 0.706423 7.563149 11.608147
H 10.003095 4.632780 8.907355
H 10.980630 4.590207 7.752146
H 3.257893 13.092363 14.136724
H 2.487394 13.891684 13.107495
H 2.594800 2.360087 13.222239
H 3.067392 1.638961 11.977840
H 4.204283 7.807066 12.889816
H 4.120864 9.063058 13.730900
&END COORD
&KIND H
BASIS_SET TZV2P-GTH
POTENTIAL GTH-PBE-q1
&END KIND
&KIND O
BASIS_SET TZV2P-GTH
POTENTIAL GTH-PBE-q6
&END KIND
&END SUBSYS
&END FORCE_EVAL

View file

@ -1,169 +0,0 @@
&GLOBAL
PREFERRED_DIAG_LIBRARY ELPA
PRINT_LEVEL low
PROJECT H2O-32_md
RUN_TYPE MD
&END GLOBAL
&MOTION
&MD
ENSEMBLE NVE
STEPS 4
TEMPERATURE 300.0
TIMESTEP 0.5
&END MD
&END MOTION
&FORCE_EVAL
METHOD Quickstep
&DFT
BASIS_SET_FILE_NAME GTH_BASIS_SETS
POTENTIAL_FILE_NAME POTENTIAL
&MGRID
CUTOFF 480
REL_CUTOFF 60
&END MGRID
&PRINT
&HIRSHFELD off
&END HIRSHFELD
&MULLIKEN off
&END MULLIKEN
&END PRINT
&QS
EPS_DEFAULT 1.0E-14
&END QS
&SCF
EPS_SCF 1.0E-7
MAX_SCF 20
SCF_GUESS atomic
&OT on
MINIMIZER CG
PRECONDITIONER FULL_SINGLE_INVERSE
&END OT
&OUTER_SCF on
EPS_SCF 1.0E-7
MAX_SCF 3
&END OUTER_SCF
&PRINT
&RESTART off
&END RESTART
&END PRINT
&END SCF
&XC
&XC_FUNCTIONAL PBE
&END XC_FUNCTIONAL
&END XC
&END DFT
&SUBSYS
&CELL
ABC 9.8528 9.8528 9.8528
&END CELL
# 32 H2O (TIP5P,1bar,300K) a = 9.8528
&COORD
O 2.280398 9.146539 5.088696
O 1.251703 2.406261 7.769908
O 1.596302 6.920128 0.656695
O 2.957518 3.771868 1.877387
O 0.228972 5.884026 6.532308
O 9.023431 6.119654 0.092451
O 7.256289 8.493641 5.772041
O 5.090422 9.467016 0.743177
O 6.330888 7.363471 3.747750
O 7.763819 8.349367 9.279457
O 8.280798 3.837153 5.799282
O 8.878250 2.025797 1.664102
O 9.160372 0.285100 6.871004
O 4.962043 4.134437 0.173376
O 2.802896 8.690383 2.435952
O 9.123223 3.549232 8.876721
O 1.453702 1.402538 2.358278
O 6.536550 1.146790 7.609732
O 2.766709 0.881503 9.544263
O 0.856426 2.075964 5.010625
O 6.386036 1.918950 0.242690
O 2.733023 4.452756 5.850203
O 4.600039 9.254314 6.575944
O 3.665373 6.210561 3.158420
O 3.371648 6.925594 7.476036
O 5.287920 3.270653 6.155080
O 5.225237 6.959594 9.582991
O 0.846293 5.595877 3.820630
O 9.785620 8.164617 3.657879
O 8.509982 4.430362 2.679946
O 1.337625 8.580920 8.272484
O 8.054437 9.221335 1.991376
H 1.762019 9.820429 5.528454
H 3.095987 9.107088 5.588186
H 0.554129 2.982634 8.082024
H 1.771257 2.954779 7.182181
H 2.112148 6.126321 0.798136
H 1.776389 7.463264 1.424030
H 3.754249 3.824017 1.349436
H 3.010580 4.524142 2.466878
H 0.939475 5.243834 6.571945
H 0.515723 6.520548 5.877445
H 9.852960 6.490366 0.393593
H 8.556008 6.860063 -0.294256
H 7.886607 7.941321 6.234506
H 7.793855 9.141028 5.315813
H 4.467366 9.971162 0.219851
H 5.758685 10.102795 0.998994
H 6.652693 7.917443 3.036562
H 6.711966 7.743594 4.539279
H 7.751955 8.745180 10.150905
H 7.829208 9.092212 8.679343
H 8.312540 3.218330 6.528858
H 8.508855 4.680699 6.189990
H 9.742249 1.704975 1.922581
H 8.799060 2.876412 2.095861
H 9.505360 1.161677 6.701213
H 9.920117 -0.219794 7.161006
H 4.749903 4.186003 -0.758595
H 5.248010 5.018415 0.403676
H 3.576065 9.078451 2.026264
H 2.720238 9.146974 3.273164
H 9.085561 4.493058 9.031660
H 9.215391 3.166305 9.749133
H 1.999705 2.060411 1.927796
H 1.824184 0.564565 2.081195
H 7.430334 0.849764 7.438978
H 6.576029 1.537017 8.482885
H 2.415851 1.576460 8.987338
H 2.276957 0.099537 9.289499
H 1.160987 1.818023 4.140602
H 0.350256 2.874437 4.860741
H 5.768804 2.638450 0.375264
H 7.221823 2.257514 0.563730
H 3.260797 5.243390 5.962382
H 3.347848 3.732214 5.988196
H 5.328688 9.073059 5.982269
H 5.007063 9.672150 7.334875
H 4.566850 6.413356 3.408312
H 3.273115 7.061666 2.963521
H 3.878372 7.435003 6.843607
H 3.884673 6.966316 8.283117
H 5.918240 3.116802 5.451335
H 5.355924 2.495093 6.711958
H 5.071858 7.687254 10.185667
H 6.106394 7.112302 9.241707
H 1.637363 5.184910 4.169264
H 0.427645 4.908936 3.301903
H 9.971698 7.227076 3.709104
H 10.647901 8.579244 3.629806
H 8.046808 5.126383 2.213838
H 7.995317 4.290074 3.474723
H 1.872601 7.864672 7.930401
H 0.837635 8.186808 8.987268
H 8.314696 10.115534 2.212519
H 8.687134 8.667252 2.448452
&END COORD
&KIND H
BASIS_SET TZV2P-GTH
POTENTIAL GTH-PBE-q1
&END KIND
&KIND O
BASIS_SET TZV2P-GTH
POTENTIAL GTH-PBE-q6
&END KIND
&END SUBSYS
&END FORCE_EVAL

File diff suppressed because it is too large Load diff

View file

@ -1,265 +0,0 @@
&GLOBAL
PREFERRED_DIAG_LIBRARY ScaLAPACK
PRINT_LEVEL low
PROJECT H2O-64_md
RUN_TYPE MD
&END GLOBAL
&MOTION
&MD
ENSEMBLE NVE
STEPS 4
TEMPERATURE 300.0
TIMESTEP 0.5
&END MD
&END MOTION
&FORCE_EVAL
METHOD Quickstep
&DFT
BASIS_SET_FILE_NAME GTH_BASIS_SETS
POTENTIAL_FILE_NAME POTENTIAL
&MGRID
CUTOFF 480
REL_CUTOFF 60
&END MGRID
&PRINT
&HIRSHFELD off
&END HIRSHFELD
&MULLIKEN off
&END MULLIKEN
&END PRINT
&QS
EPS_DEFAULT 1.0E-14
&END QS
&SCF
EPS_SCF 1.0E-7
MAX_SCF 20
SCF_GUESS atomic
&OT on
MINIMIZER CG
PRECONDITIONER FULL_SINGLE_INVERSE
&END OT
&OUTER_SCF on
EPS_SCF 1.0E-7
MAX_SCF 3
&END OUTER_SCF
&PRINT
&RESTART off
&END RESTART
&END PRINT
&END SCF
&XC
&XC_FUNCTIONAL PBE
&END XC_FUNCTIONAL
&END XC
&END DFT
&SUBSYS
&CELL
ABC 12.4138 12.4138 12.4138
&END CELL
# 64 H2O (TIP5P,1bar,300K) a = 12.4138
&COORD
O 12.235322 1.376642 10.869880
O 6.445390 3.706940 8.650794
O 0.085977 2.181322 8.276663
O 12.052554 2.671366 2.147199
O 12.250036 4.190930 12.092014
O 7.187422 0.959062 4.733469
O 8.346457 7.210040 4.667644
O 12.361546 11.527875 8.106887
O 3.299984 4.440816 9.193275
O 2.855829 3.759909 6.552815
O 1.392494 6.362753 0.586172
O 1.858645 8.694013 2.068738
O 3.770231 12.094519 8.652183
O 6.432508 3.669828 2.772418
O 1.998724 1.820217 4.876440
O 8.248581 2.404730 6.931303
O 5.753814 3.360029 12.461534
O 11.322212 5.649239 2.236798
O 4.277318 2.113956 10.590808
O 5.405015 3.349247 5.484702
O 6.493278 11.869958 0.684912
O 3.275250 2.346576 2.425241
O 7.981003 6.352512 7.507970
O 5.985990 6.512854 12.194648
O 10.636714 11.856872 12.209540
O 9.312283 3.670384 3.508594
O 1.106885 5.830301 6.638695
O 8.008007 3.326363 10.869818
O 12.403000 9.687405 11.761901
O 4.219782 7.085315 8.153470
O 3.781557 8.203821 11.563272
O 11.088898 4.532081 7.809475
O 10.387548 8.408890 1.017882
O 1.979016 6.418091 10.374159
O 4.660547 0.549666 5.617403
O 8.745880 12.256257 8.089383
O 2.662041 10.489890 0.092980
O 7.241661 10.471815 4.226946
O 2.276827 0.276647 10.810417
O 8.887733 0.946877 1.333885
O 1.943554 8.088552 7.567650
O 9.667942 8.056759 9.868847
O 10.905491 8.339638 6.484782
O 3.507733 4.862402 1.557439
O 8.010457 8.642846 12.055969
O 8.374446 10.035932 6.690309
O 5.635247 6.076875 5.563993
O 11.728434 1.601906 5.079475
O 9.771134 9.814114 3.548703
O 3.944355 10.563450 4.687536
O 0.890357 6.382287 4.065806
O 6.862447 6.425182 2.488202
O 3.813963 6.595122 3.762649
O 6.562448 8.295463 8.807182
O 9.809455 0.143325 3.886553
O 4.117074 11.661225 2.221679
O 5.295317 8.735561 2.763183
O 9.971999 5.379339 5.340378
O 12.254708 8.643874 3.957116
O 2.344274 10.761274 6.829162
O 7.013416 0.643488 10.518797
O 5.152349 10.233624 10.359388
O 11.184278 5.884064 10.298279
O 12.252335 8.974142 9.070831
H 12.415139 2.233125 11.257611
H 11.922476 1.573799 9.986994
H 5.608192 3.371543 8.971482
H 6.731226 3.060851 8.004962
H -0.169205 1.565594 7.589645
H -0.455440 2.954771 8.118939
H 12.125168 2.826463 1.205443
H 12.888828 2.969761 2.504745
H 11.553255 4.386613 11.465566
H 12.818281 4.960808 12.067151
H 7.049495 1.772344 4.247898
H 6.353019 0.798145 5.174047
H 7.781850 7.384852 5.420566
H 9.103203 6.754017 5.035898
H 12.771232 11.788645 8.931744
H 12.018035 10.650652 8.276334
H 3.557245 3.792529 9.848846
H 2.543844 4.884102 9.577958
H 2.320235 4.521250 6.329813
H 2.872128 3.749963 7.509824
H 1.209685 7.121391 1.140501
H 2.238885 6.038801 0.894245
H 2.763109 8.856353 2.336735
H 1.329379 9.047369 2.783755
H 4.315639 11.533388 9.203449
H 3.098742 12.433043 9.244412
H 5.987369 3.448974 3.590530
H 5.813096 3.419344 2.086985
H 1.057126 1.675344 4.969379
H 2.248496 2.292119 5.670892
H 8.508264 1.653337 7.464411
H 8.066015 2.034597 6.067646
H 5.197835 2.915542 11.821572
H 6.630900 3.329981 12.079371
H 10.788986 6.436672 2.127933
H 11.657923 5.463602 1.359832
H 3.544476 1.634958 10.977765
H 4.755770 1.455054 10.087655
H 4.465371 3.375459 5.665294
H 5.682663 4.264430 5.524498
H 6.174815 11.778676 1.582954
H 5.713640 12.089924 0.174999
H 3.476076 1.498708 2.028983
H 2.730229 2.134295 3.182949
H 7.119624 5.936450 7.474030
H 8.536492 5.799405 6.958665
H 5.909499 5.717477 11.667621
H 6.125402 6.196758 13.087330
H 11.203499 12.513536 11.804844
H 10.260930 12.300153 12.970145
H 9.985036 3.927685 2.878172
H 8.545584 3.468329 2.972331
H 1.399882 6.620092 7.093246
H 0.963561 6.112523 5.735345
H 8.067363 3.674002 9.979955
H 8.000737 2.375959 10.756190
H 11.821629 10.402510 12.020482
H 12.206854 8.983242 12.379892
H 3.461473 7.606485 7.889688
H 3.844478 6.304711 8.560946
H 3.179884 7.585614 11.148494
H 4.401957 7.652030 12.039573
H 11.573777 5.053211 7.169515
H 10.342076 4.186083 7.320831
H 10.065640 8.919194 1.760981
H 9.629585 8.322499 0.439729
H 1.396302 6.546079 9.625630
H 1.405516 6.479759 11.138049
H 4.024008 1.232518 5.405828
H 4.736858 0.579881 6.571077
H 9.452293 12.313381 8.732772
H 8.976559 11.502788 7.545965
H 1.834701 10.012311 0.153462
H 3.295197 9.836403 -0.204175
H 7.056724 11.401702 4.095264
H 6.499038 10.020287 3.825865
H 1.365541 0.487338 11.013887
H 2.501591 -0.428131 11.417871
H 8.644279 1.812362 1.005409
H 8.142674 0.388030 1.112955
H 1.272659 8.365063 8.191888
H 2.142485 8.877768 7.063867
H 8.961493 7.826192 9.265523
H 9.227102 8.487654 10.601118
H 10.150144 7.758934 6.392768
H 10.596082 9.187988 6.167290
H 3.463106 4.096188 2.129414
H 3.919461 4.539801 0.755791
H 7.418998 9.394959 12.028876
H 7.430413 7.883095 12.106546
H 7.972905 10.220334 5.841196
H 7.675111 9.631498 7.203725
H 5.332446 6.381336 6.419473
H 5.000025 6.434186 4.943466
H 11.575078 2.271167 4.412540
H 11.219802 0.847030 4.783357
H 8.865342 9.721516 3.843998
H 10.000732 10.719285 3.758898
H 3.186196 10.476397 5.265333
H 4.407331 11.335128 5.013723
H 0.558187 7.255936 3.859331
H 0.341672 5.789383 3.552346
H 7.459933 6.526049 3.229193
H 6.696228 5.483739 2.440372
H 3.864872 6.313007 2.849385
H 2.876419 6.621201 3.953862
H 5.631529 8.079145 8.753997
H 7.003296 7.568245 8.367822
H 9.615413 0.527902 3.031755
H 8.962985 0.109366 4.332162
H 3.825854 11.139182 1.474087
H 4.063988 11.063232 2.967211
H 5.784391 7.914558 2.708486
H 4.780461 8.655167 3.566110
H 10.880659 5.444664 5.046607
H 9.593331 4.687991 4.797350
H 11.562317 8.960134 3.376765
H 11.926084 8.816948 4.839320
H 2.856874 11.297981 7.433660
H 1.492332 11.195517 6.786033
H 7.145820 0.090200 9.749009
H 7.227275 0.077690 11.260665
H 4.662021 9.538430 10.798155
H 5.994537 9.833472 10.142985
H 10.544299 6.595857 10.301445
H 11.281750 5.653082 9.374494
H 12.103020 8.841164 10.006916
H 11.491592 8.576221 8.647557
&END COORD
&KIND H
BASIS_SET TZV2P-GTH
POTENTIAL GTH-PBE-q1
&END KIND
&KIND O
BASIS_SET TZV2P-GTH
POTENTIAL GTH-PBE-q6
&END KIND
&END SUBSYS
&END FORCE_EVAL

View file

@ -1,265 +0,0 @@
&GLOBAL
PREFERRED_DIAG_LIBRARY ELPA
PRINT_LEVEL low
PROJECT H2O-64_md
RUN_TYPE MD
&END GLOBAL
&MOTION
&MD
ENSEMBLE NVE
STEPS 4
TEMPERATURE 300.0
TIMESTEP 0.5
&END MD
&END MOTION
&FORCE_EVAL
METHOD Quickstep
&DFT
BASIS_SET_FILE_NAME GTH_BASIS_SETS
POTENTIAL_FILE_NAME POTENTIAL
&MGRID
CUTOFF 480
REL_CUTOFF 60
&END MGRID
&PRINT
&HIRSHFELD off
&END HIRSHFELD
&MULLIKEN off
&END MULLIKEN
&END PRINT
&QS
EPS_DEFAULT 1.0E-14
&END QS
&SCF
EPS_SCF 1.0E-7
MAX_SCF 20
SCF_GUESS atomic
&OT on
MINIMIZER CG
PRECONDITIONER FULL_SINGLE_INVERSE
&END OT
&OUTER_SCF on
EPS_SCF 1.0E-7
MAX_SCF 3
&END OUTER_SCF
&PRINT
&RESTART off
&END RESTART
&END PRINT
&END SCF
&XC
&XC_FUNCTIONAL PBE
&END XC_FUNCTIONAL
&END XC
&END DFT
&SUBSYS
&CELL
ABC 12.4138 12.4138 12.4138
&END CELL
# 64 H2O (TIP5P,1bar,300K) a = 12.4138
&COORD
O 12.235322 1.376642 10.869880
O 6.445390 3.706940 8.650794
O 0.085977 2.181322 8.276663
O 12.052554 2.671366 2.147199
O 12.250036 4.190930 12.092014
O 7.187422 0.959062 4.733469
O 8.346457 7.210040 4.667644
O 12.361546 11.527875 8.106887
O 3.299984 4.440816 9.193275
O 2.855829 3.759909 6.552815
O 1.392494 6.362753 0.586172
O 1.858645 8.694013 2.068738
O 3.770231 12.094519 8.652183
O 6.432508 3.669828 2.772418
O 1.998724 1.820217 4.876440
O 8.248581 2.404730 6.931303
O 5.753814 3.360029 12.461534
O 11.322212 5.649239 2.236798
O 4.277318 2.113956 10.590808
O 5.405015 3.349247 5.484702
O 6.493278 11.869958 0.684912
O 3.275250 2.346576 2.425241
O 7.981003 6.352512 7.507970
O 5.985990 6.512854 12.194648
O 10.636714 11.856872 12.209540
O 9.312283 3.670384 3.508594
O 1.106885 5.830301 6.638695
O 8.008007 3.326363 10.869818
O 12.403000 9.687405 11.761901
O 4.219782 7.085315 8.153470
O 3.781557 8.203821 11.563272
O 11.088898 4.532081 7.809475
O 10.387548 8.408890 1.017882
O 1.979016 6.418091 10.374159
O 4.660547 0.549666 5.617403
O 8.745880 12.256257 8.089383
O 2.662041 10.489890 0.092980
O 7.241661 10.471815 4.226946
O 2.276827 0.276647 10.810417
O 8.887733 0.946877 1.333885
O 1.943554 8.088552 7.567650
O 9.667942 8.056759 9.868847
O 10.905491 8.339638 6.484782
O 3.507733 4.862402 1.557439
O 8.010457 8.642846 12.055969
O 8.374446 10.035932 6.690309
O 5.635247 6.076875 5.563993
O 11.728434 1.601906 5.079475
O 9.771134 9.814114 3.548703
O 3.944355 10.563450 4.687536
O 0.890357 6.382287 4.065806
O 6.862447 6.425182 2.488202
O 3.813963 6.595122 3.762649
O 6.562448 8.295463 8.807182
O 9.809455 0.143325 3.886553
O 4.117074 11.661225 2.221679
O 5.295317 8.735561 2.763183
O 9.971999 5.379339 5.340378
O 12.254708 8.643874 3.957116
O 2.344274 10.761274 6.829162
O 7.013416 0.643488 10.518797
O 5.152349 10.233624 10.359388
O 11.184278 5.884064 10.298279
O 12.252335 8.974142 9.070831
H 12.415139 2.233125 11.257611
H 11.922476 1.573799 9.986994
H 5.608192 3.371543 8.971482
H 6.731226 3.060851 8.004962
H -0.169205 1.565594 7.589645
H -0.455440 2.954771 8.118939
H 12.125168 2.826463 1.205443
H 12.888828 2.969761 2.504745
H 11.553255 4.386613 11.465566
H 12.818281 4.960808 12.067151
H 7.049495 1.772344 4.247898
H 6.353019 0.798145 5.174047
H 7.781850 7.384852 5.420566
H 9.103203 6.754017 5.035898
H 12.771232 11.788645 8.931744
H 12.018035 10.650652 8.276334
H 3.557245 3.792529 9.848846
H 2.543844 4.884102 9.577958
H 2.320235 4.521250 6.329813
H 2.872128 3.749963 7.509824
H 1.209685 7.121391 1.140501
H 2.238885 6.038801 0.894245
H 2.763109 8.856353 2.336735
H 1.329379 9.047369 2.783755
H 4.315639 11.533388 9.203449
H 3.098742 12.433043 9.244412
H 5.987369 3.448974 3.590530
H 5.813096 3.419344 2.086985
H 1.057126 1.675344 4.969379
H 2.248496 2.292119 5.670892
H 8.508264 1.653337 7.464411
H 8.066015 2.034597 6.067646
H 5.197835 2.915542 11.821572
H 6.630900 3.329981 12.079371
H 10.788986 6.436672 2.127933
H 11.657923 5.463602 1.359832
H 3.544476 1.634958 10.977765
H 4.755770 1.455054 10.087655
H 4.465371 3.375459 5.665294
H 5.682663 4.264430 5.524498
H 6.174815 11.778676 1.582954
H 5.713640 12.089924 0.174999
H 3.476076 1.498708 2.028983
H 2.730229 2.134295 3.182949
H 7.119624 5.936450 7.474030
H 8.536492 5.799405 6.958665
H 5.909499 5.717477 11.667621
H 6.125402 6.196758 13.087330
H 11.203499 12.513536 11.804844
H 10.260930 12.300153 12.970145
H 9.985036 3.927685 2.878172
H 8.545584 3.468329 2.972331
H 1.399882 6.620092 7.093246
H 0.963561 6.112523 5.735345
H 8.067363 3.674002 9.979955
H 8.000737 2.375959 10.756190
H 11.821629 10.402510 12.020482
H 12.206854 8.983242 12.379892
H 3.461473 7.606485 7.889688
H 3.844478 6.304711 8.560946
H 3.179884 7.585614 11.148494
H 4.401957 7.652030 12.039573
H 11.573777 5.053211 7.169515
H 10.342076 4.186083 7.320831
H 10.065640 8.919194 1.760981
H 9.629585 8.322499 0.439729
H 1.396302 6.546079 9.625630
H 1.405516 6.479759 11.138049
H 4.024008 1.232518 5.405828
H 4.736858 0.579881 6.571077
H 9.452293 12.313381 8.732772
H 8.976559 11.502788 7.545965
H 1.834701 10.012311 0.153462
H 3.295197 9.836403 -0.204175
H 7.056724 11.401702 4.095264
H 6.499038 10.020287 3.825865
H 1.365541 0.487338 11.013887
H 2.501591 -0.428131 11.417871
H 8.644279 1.812362 1.005409
H 8.142674 0.388030 1.112955
H 1.272659 8.365063 8.191888
H 2.142485 8.877768 7.063867
H 8.961493 7.826192 9.265523
H 9.227102 8.487654 10.601118
H 10.150144 7.758934 6.392768
H 10.596082 9.187988 6.167290
H 3.463106 4.096188 2.129414
H 3.919461 4.539801 0.755791
H 7.418998 9.394959 12.028876
H 7.430413 7.883095 12.106546
H 7.972905 10.220334 5.841196
H 7.675111 9.631498 7.203725
H 5.332446 6.381336 6.419473
H 5.000025 6.434186 4.943466
H 11.575078 2.271167 4.412540
H 11.219802 0.847030 4.783357
H 8.865342 9.721516 3.843998
H 10.000732 10.719285 3.758898
H 3.186196 10.476397 5.265333
H 4.407331 11.335128 5.013723
H 0.558187 7.255936 3.859331
H 0.341672 5.789383 3.552346
H 7.459933 6.526049 3.229193
H 6.696228 5.483739 2.440372
H 3.864872 6.313007 2.849385
H 2.876419 6.621201 3.953862
H 5.631529 8.079145 8.753997
H 7.003296 7.568245 8.367822
H 9.615413 0.527902 3.031755
H 8.962985 0.109366 4.332162
H 3.825854 11.139182 1.474087
H 4.063988 11.063232 2.967211
H 5.784391 7.914558 2.708486
H 4.780461 8.655167 3.566110
H 10.880659 5.444664 5.046607
H 9.593331 4.687991 4.797350
H 11.562317 8.960134 3.376765
H 11.926084 8.816948 4.839320
H 2.856874 11.297981 7.433660
H 1.492332 11.195517 6.786033
H 7.145820 0.090200 9.749009
H 7.227275 0.077690 11.260665
H 4.662021 9.538430 10.798155
H 5.994537 9.833472 10.142985
H 10.544299 6.595857 10.301445
H 11.281750 5.653082 9.374494
H 12.103020 8.841164 10.006916
H 11.491592 8.576221 8.647557
&END COORD
&KIND H
BASIS_SET TZV2P-GTH
POTENTIAL GTH-PBE-q1
&END KIND
&KIND O
BASIS_SET TZV2P-GTH
POTENTIAL GTH-PBE-q6
&END KIND
&END SUBSYS
&END FORCE_EVAL

View file

@ -92,9 +92,11 @@ def run_benchmark(cp2k_exe_dir, input_file, mpi_wrapper="mpiexec -np {mpi_ranks}
allok = True
print("""
print(
"""
CP2K | # Threads | # Ranks | Energy
-----+-----------+---------+------------------------""")
-----+-----------+---------+------------------------"""
)
for (omp_num_threads, mpi_ranks), energy in zip(TEST_COMBINATIONS, energies):
version = cp2k_version(omp_num_threads, mpi_ranks)
@ -107,9 +109,11 @@ CP2K | # Threads | # Ranks | Energy
f"{version} | {omp_num_threads:9d} | {mpi_ranks:7d} | {energy:20.14f} {mark}"
)
print(f"""\
print(
f"""\
----------------------------------------------------
mean: {mean:20.14f} +/- {var:16.12e}""")
mean: {mean:20.14f} +/- {var:16.12e}"""
)
return allok

View file

@ -119,12 +119,12 @@ with later ones.
Running on ORNL's Cray XT5 (Jaguar) the following runtime has been obtained in a setup using 8 OMP
threads per node (8 cores per node / 16 Gb per node).
| Cores | Full CP2K[s] | HFX[s] | local HFX[s] | Mem/node[Mb] |
| ----: | -----------: | ------: | -----------: | -----------: |
| 1024 | 6569.07 | 6488.24 | 6406.99 | 14845.00 |
| 2048 | 1369.92 | 1314.86 | 1259.82 | 13468.00 |
| 4096 | 722.24 | 670.18 | 631.11 | 7293.00 |
| 8192 | 402.18 | 352.21 | 317.59 | 4306.00 |
| 16384 | 274.41 | 213.88 | 172.88 | 2801.00 |
| 32768 | 201.71 | 135.47 | 85.29 | 2046.00 |
| 65536 | 255.97 | 117.33 | 41.43 | 1673.00 |
| Cores | Full CP2K\[s\] | HFX\[s\] | local HFX\[s\] | Mem/node\[Mb\] |
| ----: | -------------: | -------: | -------------: | -------------: |
| 1024 | 6569.07 | 6488.24 | 6406.99 | 14845.00 |
| 2048 | 1369.92 | 1314.86 | 1259.82 | 13468.00 |
| 4096 | 722.24 | 670.18 | 631.11 | 7293.00 |
| 8192 | 402.18 | 352.21 | 317.59 | 4306.00 |
| 16384 | 274.41 | 213.88 | 172.88 | 2801.00 |
| 32768 | 201.71 | 135.47 | 85.29 | 2046.00 |
| 65536 | 255.97 | 117.33 | 41.43 | 1673.00 |

View file

@ -18,8 +18,8 @@ To run the benchmark, CP2K needs to be compiled with libint support (`-D__LIBINT
## Results on Piz Dora, CSCS
| Input File | Configuration | Total Number of Cores | Runtime [s] |
| ---------- | ------------------------: | --------------------: | ----------: |
| GW.inp | 16 nodes x 36 MPI x 1 OMP | 576 | 305 |
| Input File | Configuration | Total Number of Cores | Runtime \[s\] |
| ---------- | ------------------------: | --------------------: | ------------: |
| GW.inp | 16 nodes x 36 MPI x 1 OMP | 576 | 305 |
The timings have been obtained on CRAY-XC40 (PizDora@CSCS)

View file

@ -28,9 +28,9 @@ the additional files [`t_c_g.dat`](../../../data/t_c_g.dat) and
### Results on Piz Dora, CSCS
| Input File | Configuration | Total Number of Cores | Runtime [s] |
| ---------- | ------------------------: | --------------------: | ----------: |
| RI-MP2.inp | 16 nodes x 16 MPI x 1 OMP | 256 | 392 |
| RI-RPA.inp | 16 nodes x 16 MPI x 1 OMP | 256 | 221 |
| Input File | Configuration | Total Number of Cores | Runtime \[s\] |
| ---------- | ------------------------: | --------------------: | ------------: |
| RI-MP2.inp | 16 nodes x 16 MPI x 1 OMP | 256 | 392 |
| RI-RPA.inp | 16 nodes x 16 MPI x 1 OMP | 256 | 221 |
\*) The timings have been obtained on CRAY-XC40 (PizDora@CSCS)

View file

@ -13,6 +13,5 @@ PBE/GAPW/AE 30.2 845
SCAN 14.2 249
PBE0/ADMM 16.8 1306
DC-SCAN 20.2 3525
ccGRB-Q/SCAN 33.2 479

View file

@ -1,75 +0,0 @@
&GLOBAL
PRINT_LEVEL LOW
PROJECT H2O-64
RUN_TYPE MD
&TIMINGS
THRESHOLD 0.001
&END TIMINGS
&END GLOBAL
&MOTION
&MD
ENSEMBLE NVE
STEPS 10
TEMPERATURE 300.0
TIMESTEP 0.5
&END MD
&END MOTION
&FORCE_EVAL
METHOD QS
&DFT
BASIS_SET_FILE_NAME BASIS_ccGRB_UZH
POTENTIAL_FILE_NAME POTENTIAL_UZH
&MGRID
CUTOFF 800
REL_CUTOFF 60
&END MGRID
&QS
EPS_DEFAULT 1.0E-12
METHOD GPW
&END QS
&SCF
EPS_SCF 1.E-7
MAX_SCF 10
SCF_GUESS ATOMIC
&OT ON
MINIMIZER DIIS
PRECONDITIONER FULL_SINGLE_INVERSE
&END OT
&OUTER_SCF
EPS_SCF 1.E-7
MAX_SCF 10
&END OUTER_SCF
&PRINT
&RESTART OFF
&END RESTART
&END PRINT
&END SCF
&XC
&XC_FUNCTIONAL
&MGGA_C_R2SCAN
&END MGGA_C_R2SCAN
&MGGA_X_R2SCAN
&END MGGA_X_R2SCAN
&END XC_FUNCTIONAL
&END XC
&END DFT
&SUBSYS
&CELL
ABC 12.4138 12.4138 12.4138
&END CELL
&KIND H
BASIS_SET ORB ccGRB-Q-q1
POTENTIAL GTH-MGGA-q1
&END KIND
&KIND O
BASIS_SET ORB ccGRB-Q-q6
POTENTIAL GTH-MGGA-q6
&END KIND
&TOPOLOGY
COORD_FILE_FORMAT xyz
COORD_FILE_NAME geom.xyz
&END TOPOLOGY
&END SUBSYS
&END FORCE_EVAL

View file

@ -1,189 +0,0 @@
CP2K| version string: CP2K version 2026.1 (Development Version)
CP2K| source code revision number: 39a6033793
CP2K| cp2kflags: omp libint fftw3 libxc elpa parallel scalapack mpi_f08 cosma a
CP2K| ce deepmd xsmm plumed2 spglib libdftd4 mctc-lib tblite sirius
CP2K| libvori libbqb libtorch mimic libvdwxc hdf5 trexio libsmeagol
CP2K| l greenx
GLOBAL| Total number of message passing processes 48
GLOBAL| Number of threads for this process 2
GLOBAL| CPU model name AMD EPYC 7401 24-Core Processor
MD| ***************************************************************************
MD| Step number 10
MD| Time [fs] 5.000000
MD| Conserved quantity [hartree] -0.110131201702E+04
MD| ---------------------------------------------------------------------------
MD| Instantaneous Averages
MD| CPU time per MD step [s] 35.218158 47.869443
MD| Energy drift per atom [K] -0.131390165988E+01 -0.698963310316E+00
MD| Potential energy [hartree] -0.110158135777E+04 -0.110156769201E+04
MD| Kinetic energy [hartree] 0.269340752994E+00 0.256042491407E+00
MD| Temperature [K] 296.862064 282.204983
MD| ***************************************************************************
MD| Estimated peak process memory after this step [MiB] 692
-------------------------------------------------------------------------------
- -
- T I M I N G -
- -
-------------------------------------------------------------------------------
SUBROUTINE CALLS ASD SELF TIME TOTAL TIME
MAXIMUM AVERAGE MAXIMUM AVERAGE MAXIMUM
CP2K 1 1.0 0.019 0.023 479.099 479.111
qs_mol_dyn_low 1 2.0 0.020 0.020 478.890 478.902
qs_forces 11 3.9 0.002 0.002 478.816 478.828
qs_energies 11 4.9 0.002 0.003 442.333 442.396
scf_env_do_scf 11 5.9 0.001 0.002 413.851 413.872
velocity_verlet 10 3.0 0.002 0.002 372.446 372.457
scf_env_do_scf_inner_loop 99 6.8 0.005 0.014 359.191 359.203
rebuild_ks_matrix 110 8.5 0.001 0.001 227.840 228.878
qs_ks_build_kohn_sham_matrix 110 9.5 0.030 0.039 227.839 228.877
qs_ks_update_qs_env 112 7.8 0.002 0.002 197.044 197.946
sum_up_and_integrate 110 10.5 0.008 0.011 169.438 169.692
integrate_v_rspace 220 11.5 0.015 0.018 169.282 169.526
qs_rho_update_rho_low 110 7.9 0.002 0.002 156.297 156.689
calculate_rho_elec 220 8.9 0.210 0.232 156.295 156.687
grid_integrate_task_list 220 12.5 140.219 147.201 140.219 147.201
grid_collocate_task_list 220 9.9 123.134 131.477 123.134 131.477
dbcsr_multiply_generic 1975 12.5 0.135 0.160 71.642 73.450
multiply_cannon 1975 13.5 0.258 0.349 55.160 58.975
multiply_cannon_loop 1975 14.5 0.279 0.348 52.039 57.039
init_scf_loop 13 6.8 0.001 0.001 54.630 54.638
multiply_cannon_multrec 23700 15.5 30.767 51.243 30.787 51.262
mp_waitall_1 182288 16.5 20.746 51.062 20.746 51.062
qs_scf_new_mos 99 7.8 0.001 0.003 47.097 48.519
qs_scf_loop_do_ot 99 8.8 0.001 0.002 47.096 48.517
multiply_cannon_metrocomm3 23700 15.5 0.074 0.081 15.797 46.330
ot_scf_mini 99 9.8 0.003 0.003 42.776 44.032
fft_wrap_pw1pw2 2871 12.6 0.122 0.152 41.986 43.782
fft_wrap_pw1pw2_400 1551 13.9 1.712 1.887 36.891 38.622
qs_vxc_create 110 10.5 0.004 0.005 37.743 37.950
xc_vxc_pw_create 110 11.5 0.199 0.252 37.740 37.947
density_rs2pw 220 9.9 0.017 0.019 28.646 35.958
fft3d_ps 2871 14.6 14.807 15.986 31.881 33.324
qs_ks_update_qs_env_forces 11 4.9 0.000 0.000 31.335 31.467
ot_mini 99 10.8 0.001 0.001 25.690 27.038
prepare_preconditioner 13 7.8 0.000 0.000 26.319 26.529
make_preconditioner 13 8.8 0.000 0.001 26.319 26.529
xc_rho_set_and_dset_create 110 12.5 0.263 0.323 24.080 25.772
init_scf_run 11 5.9 0.000 0.000 23.815 23.825
scf_env_initial_rho_setup 11 6.9 0.000 0.001 23.815 23.824
transfer_rs2pw 891 10.8 0.024 0.033 16.101 23.518
mp_waitany 19844 14.1 15.159 23.172 15.159 23.172
wfi_extrapolate 11 7.9 0.002 0.002 21.786 21.787
xc_pw_derive 660 13.5 0.018 0.021 19.453 21.364
potential_pw2rs 220 12.5 0.028 0.031 19.402 19.753
transfer_rs2pw_400 231 11.8 1.350 1.798 11.391 18.677
make_full_inverse_cholesky 13 9.8 0.000 0.001 17.807 17.993
mp_alltoall_d11v 2283 13.5 11.289 16.957 11.289 16.957
apply_preconditioner_dbcsr 112 12.8 0.000 0.000 15.272 16.451
apply_single 112 13.8 0.001 0.001 15.272 16.451
xc_functional_eval 220 13.5 0.004 0.005 14.164 15.815
libxc_lda_eval 220 14.5 14.148 15.801 14.160 15.812
ot_diis_step 99 11.8 0.005 0.006 15.161 15.161
rs_gather_matrices 220 12.5 1.066 1.291 9.280 15.066
mp_alltoall_z22v 2871 16.6 12.407 14.961 12.407 14.961
xc_pw_divergence 110 12.5 0.009 0.011 13.089 14.726
multiply_cannon_metrocomm4 21725 15.5 0.092 0.117 4.602 12.389
mp_irecv_dv 62105 16.0 4.643 12.385 4.643 12.385
transfer_pw2rs 891 13.4 0.028 0.038 11.855 11.896
qs_ot_get_derivative 99 11.8 0.001 0.002 10.443 11.717
cp_fm_cholesky_invert 13 10.8 11.168 11.211 11.168 11.211
yz_to_x 1221 15.3 1.975 2.374 8.688 10.837
make_m2s 3950 13.5 0.072 0.081 9.953 10.273
mp_sum_l 9279 13.6 5.067 9.274 5.067 9.274
make_images 3950 14.5 0.734 1.143 8.571 8.930
make_full_single_inverse 13 9.8 0.002 0.003 7.885 8.086
x_to_yz 1210 16.0 1.789 2.030 7.361 7.672
transfer_pw2rs_400 231 14.3 3.143 3.414 6.507 6.754
cp_dbcsr_sm_fm_multiply 45 9.4 0.002 0.002 6.539 6.554
qs_ot_get_derivative_taylor 81 12.9 0.003 0.004 5.114 6.150
cp_dbcsr_sm_fm_multiply_core 45 10.4 0.000 0.000 5.638 6.015
mp_sum_d 3837 11.5 3.298 5.774 3.298 5.774
qs_ot_get_p 112 10.5 0.001 0.002 3.745 5.453
cp_fm_cholesky_decompose 26 10.6 5.275 5.362 5.275 5.362
calculate_dm_sparse 110 9.7 0.001 0.002 4.805 5.290
build_core_hamiltonian_matrix_ 11 4.9 0.001 0.002 4.564 4.829
rs_scatter_matrices 242 9.9 1.481 1.780 4.123 4.647
dbcsr_dot 1040 12.2 0.447 0.495 2.215 4.289
make_images_data 3950 15.5 0.057 0.070 3.529 4.119
pw_gather_p 1441 14.1 3.490 3.731 3.490 3.731
hybrid_alltoall_any 4089 16.4 0.289 1.555 3.073 3.593
transfer_pw2rs_140 220 14.5 1.238 1.324 3.288 3.395
pw_scatter_p 1430 15.1 2.982 3.382 2.982 3.382
qs_energies_init_hamiltonians 11 5.9 0.000 0.001 3.361 3.361
transfer_rs2pw_140 220 11.9 1.136 1.370 3.147 3.298
make_images_sizes 3950 15.5 0.005 0.006 2.536 3.183
mp_alltoall_i44 3950 16.5 2.531 3.179 2.531 3.179
pw_derive 990 13.8 2.904 3.176 2.904 3.176
arnoldi_generalized_ev 13 10.8 0.001 0.001 3.044 3.087
mp_alltoall_i22 607 13.6 1.709 2.928 1.709 2.928
dbcsr_sym_matrix_vector_mult 1266 12.5 0.029 0.041 2.855 2.888
fft_wrap_pw1pw2_140 440 13.2 0.084 0.111 2.543 2.785
build_core_ppl_forces 11 5.9 2.474 2.781 2.474 2.781
pw_poisson_solve 110 10.5 0.005 0.008 2.707 2.765
gev_build_subspace 23 11.4 0.012 0.026 2.613 2.623
copy_dbcsr_to_fm 139 10.8 0.004 0.005 1.657 2.436
dbcsr_complete_redistribute 314 11.8 0.461 0.527 1.884 2.349
pw_copy 2090 13.1 2.122 2.316 2.122 2.316
make_basis_sm 13 9.4 0.001 0.001 2.302 2.310
make_images_pack 3950 15.5 1.533 2.280 1.555 2.299
build_core_hamiltonian_matrix 11 6.9 0.002 0.002 2.091 2.225
ot_scf_init 13 7.8 0.002 0.002 2.116 2.131
buffer_matrices_ensure_size 3950 14.5 1.359 1.995 1.359 1.995
dbcsr_sym_matrix_vector_mult_l 1266 13.5 1.598 1.837 1.605 1.843
reorthogonalize_vectors 10 9.0 0.000 0.000 1.809 1.816
pw_poisson_set 111 11.4 0.009 0.012 1.702 1.760
parallel_gemm_fm_cosma 95 8.9 1.694 1.752 1.694 1.752
transfer_pw2rs_50 220 14.5 0.385 0.442 1.576 1.751
copy_fm_to_dbcsr 175 10.8 0.001 0.002 1.303 1.723
mp_allgather_i34 1975 14.5 1.319 1.670 1.319 1.670
dbcsr_desymmetrize_deep 139 11.8 0.083 0.112 0.881 1.625
fft_wrap_pw1pw2_50 440 13.2 0.016 0.018 1.451 1.553
dbcsr_make_dense_low 8068 15.8 0.045 0.048 1.262 1.524
rs_grid_zero 462 15.2 1.445 1.515 1.445 1.515
qs_ot_get_orbitals 99 10.8 0.001 0.001 1.444 1.500
make_dense_data 8068 16.8 1.139 1.368 1.193 1.453
dbcsr_make_images_dense 3286 14.9 0.037 0.040 1.244 1.449
build_core_ppl 11 7.9 1.313 1.443 1.313 1.443
pw_axpy 1540 11.6 1.365 1.430 1.365 1.430
qs_ot_get_derivative_diag 18 12.0 0.001 0.001 1.091 1.394
mp_sendrecv_dv 20680 12.9 1.209 1.343 1.209 1.343
qs_env_update_s_mstruct 11 6.9 0.000 0.000 1.186 1.319
cp_dbcsr_plus_fm_fm_t 22 8.9 0.001 0.001 1.211 1.306
transfer_rs2pw_50 220 11.9 0.243 0.261 1.170 1.283
compute_matrix_w 11 5.9 0.000 0.000 1.178 1.246
calculate_w_matrix_ot 11 6.9 0.001 0.002 1.178 1.246
build_core_ppnl_forces 11 5.9 1.143 1.240 1.143 1.240
pw_copy_to_array 1441 14.1 1.048 1.231 1.048 1.231
mp_sum_dv 7212 14.3 0.931 1.130 0.931 1.130
fft_wrap_pw1pw2_20 440 13.2 0.005 0.006 0.979 1.049
mp_irecv_dm3 5412 14.1 0.461 0.959 0.461 0.959
transfer_fm_to_dbcsr 13 9.8 0.000 0.000 0.627 0.915
transfer_dbcsr_to_fm 13 10.8 0.001 0.002 0.806 0.868
pw_copy_from_array 1430 15.1 0.647 0.835 0.647 0.835
mp_alltoall_z11v 440 16.2 0.771 0.816 0.771 0.816
calculate_rho_core 11 7.9 0.051 0.058 0.671 0.812
dbcsr_rep_row_to_rep_col_vec 1266 13.5 0.036 0.070 0.635 0.810
cp_fm_uplo_to_full 46 13.0 0.578 0.800 0.578 0.800
multiply_cannon_metrocomm1 23700 15.5 0.037 0.046 0.342 0.750
build_kinetic_matrix_low 22 6.9 0.668 0.711 0.689 0.734
calculate_ecore_overlap 22 5.9 0.000 0.001 0.437 0.728
build_overlap_matrix_low 22 6.9 0.645 0.687 0.675 0.716
external_control 109 7.3 0.001 0.002 0.180 0.702
mp_bcast_b_src 129 8.9 0.179 0.702 0.179 0.702
dbcsr_finalize 4461 13.7 0.031 0.059 0.531 0.685
dbcsr_copy 4672 12.8 0.486 0.546 0.562 0.672
dbcsr_merge_all 3948 15.0 0.077 0.143 0.477 0.618
dbcsr_col_vec_to_rep_row 1800 14.0 0.023 0.032 0.411 0.602
mp_isendrecv_dv 20680 15.5 0.199 0.596 0.199 0.596
calculate_first_density_matrix 1 7.0 0.000 0.000 0.585 0.592
qs_ot_p2m_diag 20 11.0 0.002 0.004 0.550 0.553
evaluate_core_matrix_traces 110 8.5 0.001 0.001 0.537 0.539
calculate_ptrace_kp 220 9.5 0.001 0.001 0.536 0.538
qs_create_task_list 11 7.9 0.000 0.000 0.493 0.517
generate_qs_task_list 11 8.9 0.221 0.255 0.493 0.517
transfer_pw2rs_20 220 14.5 0.083 0.097 0.456 0.510
dbcsr_add_wm_from_matrix 418 13.0 0.036 0.108 0.388 0.485
-------------------------------------------------------------------------------

View file

@ -1,5 +1,5 @@
# Quickstep Single Node Regression Tests
The purpose of these tests is to give a quick idea of the performance of a system, when only a
single node is available. The tests should run in < 5 minutes on a modern node, and require less
single node is available. The tests should run in \< 5 minutes on a modern node, and require less
than 16Gb of memory.

View file

@ -2,6 +2,8 @@
PROJECT diag_cu72_broy
! Do not compute forces to avoid performance cliff of grid_integrate_task_list on GPU.
RUN_TYPE ENERGY
&PRINT_ELPA ON
&END PRINT_ELPA
&END GLOBAL
&FORCE_EVAL

View file

@ -2,6 +2,8 @@
PROJECT diag_cu72_broy
! Do not compute forces to avoid performance cliff of grid_integrate_task_list on GPU.
RUN_TYPE ENERGY
&PRINT_ELPA ON
&END PRINT_ELPA
&END GLOBAL
&FORCE_EVAL

View file

@ -9,7 +9,7 @@ postfix=""
# used ranks, can be any value, by default the number of physical cores on the node
ranks=$(lscpu | awk '/^Core\(s\) per socket:/ {cores=$NF}; /^Socket\(s\):/ {sockets=$NF}; END{print cores*sockets}')
# adjust command for testing as needed
command="mpirun -np $ranks ../../../install/bin/cp2k.popt"
command="mpirun -np $ranks ../../../exe/local/cp2k.popt"
# iterations used for testing (best value retained for benchmark result)
maxiter=3

View file

@ -12,16 +12,16 @@ variables:
BUILDER: spack
VERSION: psmp
TAG: "${BUILDER}_${VERSION}"
UBUNTU_IMAGE_NAME: "ubuntu:26.04"
UBUNTU_IMAGE_NAME: "ubuntu:24.04"
CSCS_IMAGE_NAME: "${CSCS_REGISTRY_PATH}/${REPOSITORY}:${TAG}_${CI_COMMIT_SHORT_SHA}"
DOCKERHUB_IMAGE_NAME: "docker.io/${DOCKERHUB_USERNAME}/${REPOSITORY}:${TAG}"
build deps daint:
extends: .container-builder-cscs-gh200
stage: deps
timeout: 6h
timeout: 1h
before_script:
- DEPS_IMAGE_TAG=$(cat make_cp2k.sh ci/cscs_daint_${TAG}.yaml ci/docker/build_deps_spack.Dockerfile $(find tools/spack -type f | sort) | sha256sum | head -c 16)
- DEPS_IMAGE_TAG=`cat ci/cscs_daint_${TAG}.yaml ci/docker/build_${CI_JOB_STAGE}_${BUILDER}.Dockerfile $(find tools/spack -type f) $(find cmake -type f) | sha256sum - | head -c 16`
- export PERSIST_IMAGE_NAME=${CSCS_REGISTRY_PATH}/base/${REPOSITORY}:${TAG}_${DEPS_IMAGE_TAG}
- echo "DEPS_IMAGE_NAME=${PERSIST_IMAGE_NAME}" | tee build.env
artifacts:
@ -31,24 +31,18 @@ build deps daint:
DOCKER_BUILD_ARGS: '[
"BASE_IMAGE",
"CP2K_VERSION",
"FEATURE_FLAGS",
"NUM_PROCS"
"LOG_LINES"
]'
DOCKERFILE: ci/docker/build_${CI_JOB_STAGE}_${BUILDER}.Dockerfile
BASE_IMAGE: ${UBUNTU_IMAGE_NAME}
CP2K_VERSION: ${VERSION}
FEATURE_FLAGS: "-ef openpmd -np 4"
NUM_PROCS: 64
KUBERNETES_CPU_REQUEST: 64
KUBERNETES_CPU_LIMIT: 64
KUBERNETES_MEMORY_REQUEST: 128Gi
KUBERNETES_MEMORY_LIMIT: 128Gi
LOG_LINES: 200
build cp2k daint:
extends: .container-builder-cscs-gh200
stage: cp2k
needs: ["build deps daint"]
timeout: 6h
timeout: 1h
before_script:
- echo ${DOCKERHUB_TOKEN} | podman login docker.io --username ${DOCKERHUB_USERNAME} --password-stdin
after_script:
@ -57,27 +51,20 @@ build cp2k daint:
variables:
DOCKER_BUILD_ARGS: '[
"BASE_IMAGE",
"DEPS_IMAGE",
"FEATURE_FLAGS",
"NUM_PROCS"
"DEPS_IMAGE"
]'
DOCKERFILE: ci/docker/build_${CI_JOB_STAGE}_${BUILDER}.Dockerfile
BASE_IMAGE: ${UBUNTU_IMAGE_NAME}
DEPS_IMAGE: ${DEPS_IMAGE_NAME}
FEATURE_FLAGS: "-ef openpmd"
NUM_PROCS: 32
KUBERNETES_CPU_REQUEST: 32
KUBERNETES_CPU_LIMIT: 32
PERSIST_IMAGE_NAME: ${CSCS_IMAGE_NAME}
test cp2k daint:
extends: .baremetal-runner-daint-gh200
stage: test
needs: ["build cp2k daint"]
timeout: 6h
timeout: 1h
script:
- podman run --shm-size=1g -v ${PWD}:/mnt ${DOCKERHUB_IMAGE_NAME} mpiexec -bind-to socket -genv OMP_NUM_THREADS=${SLURM_CPUS_PER_TASK} -n ${SLURM_NTASKS} cp2k /opt/cp2k/benchmarks/CI/H2O-32_md.inp
- podman run --shm-size=1g -v ${PWD}:/mnt ${DOCKERHUB_IMAGE_NAME} mpiexec -bind-to socket -genv OMP_NUM_THREADS=${SLURM_CPUS_PER_TASK} -n ${SLURM_NTASKS} cp2k /opt/cp2k/benchmarks/CI/H2O-32_md_elpa.inp
variables:
SLURM_CPUS_PER_TASK: 4
SLURM_DEBUG: 1
@ -85,67 +72,45 @@ test cp2k daint:
SLURM_JOB_NUM_NODES: 1
SLURM_NTASKS: 8
SLURM_NTASKS_PER_NODE: 8
SLURM_TIMELIMIT: 15
SLURM_TIMELIMIT: 10
USE_MPI: YES
regression test cp2k daint:
extends: .baremetal-runner-daint-gh200
stage: test
needs: ["build cp2k daint","test cp2k daint"]
timeout: 6h
timeout: 1h
script:
- git --no-pager log -1 --pretty="%nCommitSHA:%x20%H%nCommitTime:%x20%ci%nCommitAuthor:%x20%an%nCommitSubject:%x20%s%n"
- podman run --shm-size=1g -v ${PWD}:/mnt ${DOCKERHUB_IMAGE_NAME} /opt/cp2k/tests/do_regtest.py --cp2kdatadir /opt/cp2k/install/share/cp2k/data --maxtasks ${SLURM_NTASKS} --mpiexec "mpiexec -bind-to none" --keepalive /opt/cp2k/install/bin ${VERSION} 2>&1 || true
- podman run --shm-size=1g -v ${PWD}:/mnt ${DOCKERHUB_IMAGE_NAME} /opt/cp2k/tests/do_regtest.py --cp2kdatadir /opt/cp2k/share/cp2k/data --maxtasks ${SLURM_NTASKS} --mpiexec "mpiexec -bind-to none" --keepalive /opt/cp2k/bin ${VERSION} 2>&1 || true
variables:
SLURM_DEBUG: 1
SLURM_HINT: nomultithread
SLURM_JOB_NUM_NODES: 1
SLURM_NTASKS: 288
SLURM_TIMELIMIT: 60
SLURM_TIMELIMIT: 20
USE_MPI: YES
benchmark cp2k 1 daint node:
extends: .container-runner-daint-gh200
stage: benchmark
needs: ["build cp2k daint","test cp2k daint"]
timeout: 6h
needs: ["build cp2k daint","test cp2k daint","regression test cp2k daint"]
timeout: 1h
image: ${CSCS_IMAGE_NAME}
before_script:
- export CP2K_DATA_DIR=/opt/cp2k/install/share/cp2k/data
- export OMP_NUM_THREADS=${SLURM_CPUS_PER_TASK}
- export CP2K_DATA_DIR=/opt/cp2k/share/cp2k/data
script:
- cp2k /opt/cp2k/benchmarks/CI/H2O-512_md.inp
variables:
SLURM_CPU_BIND: cores
SLURM_CPUS_PER_TASK: 3
SLURM_CPUS_PER_TASK: 1
SLURM_DEBUG: 1
SLURM_HINT: nomultithread
SLURM_JOB_NUM_NODES: 1
SLURM_MPI_TYPE: pmi2
SLURM_NTASKS: 72
SLURM_NTASKS_PER_NODE: 72
SLURM_NTASKS: 288
SLURM_NTASKS_PER_NODE: 288
SLURM_TIMELIMIT: 30
USE_MPI: YES
benchmark cp2k 1 daint node elpa:
extends: .container-runner-daint-gh200
stage: benchmark
needs: ["build cp2k daint","test cp2k daint","benchmark cp2k 1 daint node"]
timeout: 6h
image: ${CSCS_IMAGE_NAME}
before_script:
- export CP2K_DATA_DIR=/opt/cp2k/install/share/cp2k/data
- export OMP_NUM_THREADS=${SLURM_CPUS_PER_TASK}
script:
- cp2k /opt/cp2k/benchmarks/CI/H2O-512_md_elpa.inp
variables:
SLURM_CPU_BIND: cores
SLURM_CPUS_PER_TASK: 3
SLURM_DEBUG: 1
SLURM_HINT: nomultithread
SLURM_JOB_NUM_NODES: 1
SLURM_MPI_TYPE: pmi2
SLURM_NTASKS: 72
SLURM_NTASKS_PER_NODE: 72
SLURM_TIMELIMIT: 30
USE_MPI: YES
# EOF

View file

@ -1,151 +0,0 @@
include:
- remote: 'https://gitlab.com/cscs-ci/recipes/-/raw/master/templates/v2/.ci-ext.yml'
stages:
- deps
- cp2k
- test
- benchmark
variables:
REPOSITORY: cp2k_daint
BUILDER: spack
VERSION: psmp
TAG: "${BUILDER}_${VERSION}_h100"
UBUNTU_IMAGE_NAME: "docker.io/nvidia/cuda:12.9.2-devel-ubuntu24.04"
CSCS_IMAGE_NAME: "${CSCS_REGISTRY_PATH}/${REPOSITORY}:${TAG}_${CI_COMMIT_SHORT_SHA}"
DOCKERHUB_IMAGE_NAME: "docker.io/${DOCKERHUB_USERNAME}/${REPOSITORY}:${TAG}"
build deps daint:
extends: .container-builder-cscs-gh200
stage: deps
timeout: 6h
before_script:
- DEPS_IMAGE_TAG=$(cat make_cp2k.sh ci/cscs_daint_${TAG}.yaml ci/docker/build_deps_spack.Dockerfile $(find tools/spack -type f | sort) | sha256sum | head -c 16)
- export PERSIST_IMAGE_NAME=${CSCS_REGISTRY_PATH}/base/${REPOSITORY}:${TAG}_${DEPS_IMAGE_TAG}
- echo "DEPS_IMAGE_NAME=${PERSIST_IMAGE_NAME}" | tee build.env
artifacts:
reports:
dotenv: build.env
variables:
DOCKER_BUILD_ARGS: '[
"BASE_IMAGE",
"CP2K_VERSION",
"FEATURE_FLAGS",
"NUM_PROCS"
]'
DOCKERFILE: ci/docker/build_${CI_JOB_STAGE}_${BUILDER}.Dockerfile
BASE_IMAGE: ${UBUNTU_IMAGE_NAME}
CP2K_VERSION: ${VERSION}
FEATURE_FLAGS: "-ef openpmd -gpu GH200 -np 4"
NUM_PROCS: 64
KUBERNETES_CPU_REQUEST: 64
KUBERNETES_CPU_LIMIT: 64
KUBERNETES_MEMORY_REQUEST: 256Gi
KUBERNETES_MEMORY_LIMIT: 256Gi
build cp2k daint:
extends: .container-builder-cscs-gh200
stage: cp2k
needs: ["build deps daint"]
timeout: 6h
before_script:
- echo ${DOCKERHUB_TOKEN} | podman login docker.io --username ${DOCKERHUB_USERNAME} --password-stdin
after_script:
- podman images
- podman push ${PERSIST_IMAGE_NAME} ${DOCKERHUB_IMAGE_NAME}
variables:
DOCKER_BUILD_ARGS: '[
"BASE_IMAGE",
"DEPS_IMAGE",
"FEATURE_FLAGS",
"NUM_PROCS"
]'
DOCKERFILE: ci/docker/build_${CI_JOB_STAGE}_${BUILDER}.Dockerfile
BASE_IMAGE: ${UBUNTU_IMAGE_NAME}
DEPS_IMAGE: ${DEPS_IMAGE_NAME}
FEATURE_FLAGS: "-ef openpmd -gpu GH200"
NUM_PROCS: 32
KUBERNETES_CPU_REQUEST: 32
KUBERNETES_CPU_LIMIT: 32
PERSIST_IMAGE_NAME: ${CSCS_IMAGE_NAME}
test cp2k daint:
extends: .baremetal-runner-daint-gh200
stage: test
needs: ["build cp2k daint"]
timeout: 6h
script:
- podman run --device nvidia.com/gpu=0 --shm-size=1g -v ${PWD}:/mnt ${DOCKERHUB_IMAGE_NAME} mpiexec -bind-to socket -genv OMP_NUM_THREADS=${SLURM_CPUS_PER_TASK} -n ${SLURM_NTASKS} cp2k /opt/cp2k/benchmarks/CI/H2O-32_md.inp
- podman run --device nvidia.com/gpu=0 --shm-size=1g -v ${PWD}:/mnt ${DOCKERHUB_IMAGE_NAME} mpiexec -bind-to socket -genv OMP_NUM_THREADS=${SLURM_CPUS_PER_TASK} -n ${SLURM_NTASKS} cp2k /opt/cp2k/benchmarks/CI/H2O-32_md_elpa.inp
variables:
SLURM_CPUS_PER_TASK: 4
SLURM_DEBUG: 1
SLURM_HINT: nomultithread
SLURM_JOB_NUM_NODES: 1
SLURM_NTASKS: 8
SLURM_NTASKS_PER_NODE: 8
SLURM_TIMELIMIT: 15
USE_MPI: YES
regression test cp2k daint:
extends: .baremetal-runner-daint-gh200
stage: test
needs: ["build cp2k daint"]
timeout: 6h
script:
- git --no-pager log -1 --pretty="%nCommitSHA:%x20%H%nCommitTime:%x20%ci%nCommitAuthor:%x20%an%nCommitSubject:%x20%s%n"
- podman run --device nvidia.com/gpu=all --shm-size=1g -v ${PWD}:/mnt ${DOCKERHUB_IMAGE_NAME} /opt/cp2k/tests/do_regtest.py --cp2kdatadir /opt/cp2k/install/share/cp2k/data --maxtasks ${SLURM_NTASKS} --mpiexec "mpiexec -bind-to none" --keepalive /opt/cp2k/install/bin ${VERSION} 2>&1 || true
variables:
SLURM_DEBUG: 1
SLURM_HINT: nomultithread
SLURM_JOB_NUM_NODES: 1
SLURM_NTASKS: 224
SLURM_TIMELIMIT: 60
USE_MPI: YES
benchmark cp2k 1 daint node:
extends: .container-runner-daint-gh200
stage: benchmark
needs: ["build cp2k daint","test cp2k daint"]
timeout: 6h
image: ${CSCS_IMAGE_NAME}
before_script:
- export CP2K_DATA_DIR=/opt/cp2k/install/share/cp2k/data
- export OMP_NUM_THREADS=${SLURM_CPUS_PER_TASK}
script:
- cp2k /opt/cp2k/benchmarks/CI/H2O-512_md.inp
variables:
SLURM_CPU_BIND: cores
SLURM_CPUS_PER_TASK: 3
SLURM_DEBUG: 1
SLURM_HINT: nomultithread
SLURM_JOB_NUM_NODES: 1
SLURM_MPI_TYPE: pmi2
SLURM_NTASKS: 72
SLURM_NTASKS_PER_NODE: 72
SLURM_TIMELIMIT: 30
USE_MPI: YES
benchmark cp2k 1 daint node elpa:
extends: .container-runner-daint-gh200
stage: benchmark
needs: ["build cp2k daint","test cp2k daint","benchmark cp2k 1 daint node"]
timeout: 6h
image: ${CSCS_IMAGE_NAME}
before_script:
- export CP2K_DATA_DIR=/opt/cp2k/install/share/cp2k/data
- export OMP_NUM_THREADS=${SLURM_CPUS_PER_TASK}
script:
- cp2k /opt/cp2k/benchmarks/CI/H2O-512_md_elpa.inp
variables:
SLURM_CPU_BIND: cores
SLURM_CPUS_PER_TASK: 3
SLURM_DEBUG: 1
SLURM_HINT: nomultithread
SLURM_JOB_NUM_NODES: 1
SLURM_MPI_TYPE: pmi2
SLURM_NTASKS: 72
SLURM_NTASKS_PER_NODE: 72
SLURM_TIMELIMIT: 30
USE_MPI: YES

View file

@ -12,16 +12,16 @@ variables:
BUILDER: spack
VERSION: psmp
TAG: "${BUILDER}_${VERSION}"
UBUNTU_IMAGE_NAME: "ubuntu:26.04"
UBUNTU_IMAGE_NAME: "ubuntu:24.04"
CSCS_IMAGE_NAME: "${CSCS_REGISTRY_PATH}/${REPOSITORY}:${TAG}_${CI_COMMIT_SHORT_SHA}"
DOCKERHUB_IMAGE_NAME: "docker.io/${DOCKERHUB_USERNAME}/${REPOSITORY}:${TAG}"
build deps eiger:
extends: .container-builder-cscs-zen2
stage: deps
timeout: 6h
timeout: 1h
before_script:
- DEPS_IMAGE_TAG=$(cat make_cp2k.sh ci/cscs_eiger_${TAG}.yaml ci/docker/build_deps_spack.Dockerfile $(find tools/spack -type f | sort) | sha256sum | head -c 16)
- DEPS_IMAGE_TAG=`cat ci/cscs_eiger_${TAG}.yaml ci/docker/build_${CI_JOB_STAGE}_${BUILDER}.Dockerfile $(find tools/spack -type f) $(find cmake -type f) | sha256sum - | head -c 16`
- export PERSIST_IMAGE_NAME=${CSCS_REGISTRY_PATH}/base/${REPOSITORY}:${TAG}_${DEPS_IMAGE_TAG}
- echo "DEPS_IMAGE_NAME=${PERSIST_IMAGE_NAME}" | tee build.env
artifacts:
@ -31,24 +31,18 @@ build deps eiger:
DOCKER_BUILD_ARGS: '[
"BASE_IMAGE",
"CP2K_VERSION",
"FEATURE_FLAGS",
"NUM_PROCS"
"LOG_LINES"
]'
DOCKERFILE: ci/docker/build_${CI_JOB_STAGE}_${BUILDER}.Dockerfile
BASE_IMAGE: ${UBUNTU_IMAGE_NAME}
CP2K_VERSION: ${VERSION}
FEATURE_FLAGS: "-ef openpmd -np 4"
NUM_PROCS: 64
KUBERNETES_CPU_REQUEST: 64
KUBERNETES_CPU_LIMIT: 64
KUBERNETES_MEMORY_REQUEST: 128Gi
KUBERNETES_MEMORY_LIMIT: 128Gi
LOG_LINES: 200
build cp2k eiger:
extends: .container-builder-cscs-zen2
stage: cp2k
needs: ["build deps eiger"]
timeout: 6h
timeout: 1h
before_script:
- echo ${DOCKERHUB_TOKEN} | podman login docker.io --username ${DOCKERHUB_USERNAME} --password-stdin
after_script:
@ -57,27 +51,20 @@ build cp2k eiger:
variables:
DOCKER_BUILD_ARGS: '[
"BASE_IMAGE",
"DEPS_IMAGE",
"FEATURE_FLAGS",
"NUM_PROCS"
"DEPS_IMAGE"
]'
DOCKERFILE: ci/docker/build_${CI_JOB_STAGE}_${BUILDER}.Dockerfile
BASE_IMAGE: ${UBUNTU_IMAGE_NAME}
DEPS_IMAGE: ${DEPS_IMAGE_NAME}
FEATURE_FLAGS: "-ef openpmd"
NUM_PROCS: 32
KUBERNETES_CPU_REQUEST: 32
KUBERNETES_CPU_LIMIT: 32
PERSIST_IMAGE_NAME: ${CSCS_IMAGE_NAME}
test cp2k eiger:
extends: .baremetal-runner-eiger-zen2
stage: test
needs: ["build cp2k eiger"]
timeout: 6h
timeout: 1h
script:
- podman run --shm-size=1g -v ${PWD}:/mnt ${DOCKERHUB_IMAGE_NAME} mpiexec -genv OMP_NUM_THREADS=${SLURM_CPUS_PER_TASK} -n ${SLURM_NTASKS} cp2k /opt/cp2k/benchmarks/CI/H2O-32_md.inp
- podman run --shm-size=1g -v ${PWD}:/mnt ${DOCKERHUB_IMAGE_NAME} mpiexec -genv OMP_NUM_THREADS=${SLURM_CPUS_PER_TASK} -n ${SLURM_NTASKS} cp2k /opt/cp2k/benchmarks/CI/H2O-32_md_elpa.inp
variables:
SLURM_CONSTRAINT: mc
SLURM_CPUS_PER_TASK: 4
@ -86,58 +73,36 @@ test cp2k eiger:
SLURM_JOB_NUM_NODES: 1
SLURM_NTASKS: 8
SLURM_NTASKS_PER_NODE: 8
SLURM_TIMELIMIT: 15
SLURM_TIMELIMIT: 10
USE_MPI: YES
regression test cp2k eiger:
extends: .baremetal-runner-eiger-zen2
stage: test
needs: ["build cp2k eiger","test cp2k eiger"]
timeout: 6h
timeout: 1h
script:
- git --no-pager log -1 --pretty="%nCommitSHA:%x20%H%nCommitTime:%x20%ci%nCommitAuthor:%x20%an%nCommitSubject:%x20%s%n"
- podman run --shm-size=1g -v ${PWD}:/mnt ${DOCKERHUB_IMAGE_NAME} /opt/cp2k/tests/do_regtest.py --cp2kdatadir /opt/cp2k/install/share/cp2k/data --maxtasks ${SLURM_NTASKS} --mpiexec "mpiexec -bind-to none" --keepalive /opt/cp2k/install/bin ${VERSION} 2>&1 || true
- podman run --shm-size=1g -v ${PWD}:/mnt ${DOCKERHUB_IMAGE_NAME} /opt/cp2k/tests/do_regtest.py --cp2kdatadir /opt/cp2k/share/cp2k/data --maxtasks ${SLURM_NTASKS} --mpiexec "mpiexec -bind-to none" --keepalive /opt/cp2k/bin ${VERSION} 2>&1 || true
variables:
SLURM_CONSTRAINT: mc
SLURM_DEBUG: 1
SLURM_HINT: nomultithread
SLURM_JOB_NUM_NODES: 1
SLURM_NTASKS: 128
SLURM_TIMELIMIT: 60
SLURM_TIMELIMIT: 30
USE_MPI: YES
benchmark cp2k 1 eiger node:
extends: .container-runner-eiger-zen2
stage: benchmark
needs: ["build cp2k eiger","test cp2k eiger","regression test cp2k eiger"]
timeout: 6h
timeout: 1h
image: ${CSCS_IMAGE_NAME}
before_script:
- export CP2K_DATA_DIR=/opt/cp2k/install/share/cp2k/data
- export CP2K_DATA_DIR=/opt/cp2k/share/cp2k/data
script:
- cp2k.popt /opt/cp2k/benchmarks/CI/H2O-128_md.inp
variables:
SLURM_CONSTRAINT: mc
SLURM_CPUS_PER_TASK: 1
SLURM_DEBUG: 1
SLURM_HINT: nomultithread
SLURM_JOB_NUM_NODES: 1
SLURM_MPI_TYPE: pmi2
SLURM_NTASKS: 128
SLURM_NTASKS_PER_NODE: 128
SLURM_TIMELIMIT: 30
USE_MPI: YES
benchmark cp2k 1 eiger node elpa:
extends: .container-runner-eiger-zen2
stage: benchmark
needs: ["build cp2k eiger","test cp2k eiger","regression test cp2k eiger","benchmark cp2k 1 eiger node"]
timeout: 6h
image: ${CSCS_IMAGE_NAME}
before_script:
- export CP2K_DATA_DIR=/opt/cp2k/install/share/cp2k/data
script:
- cp2k.popt /opt/cp2k/benchmarks/CI/H2O-128_md_elpa.inp
- cp2k /opt/cp2k/benchmarks/CI/H2O-128_md.inp
variables:
SLURM_CONSTRAINT: mc
SLURM_CPUS_PER_TASK: 1
@ -154,11 +119,10 @@ benchmark cp2k 2 eiger nodes:
extends: .container-runner-eiger-zen2
stage: benchmark
needs: ["build cp2k eiger","test cp2k eiger","regression test cp2k eiger"]
timeout: 6h
timeout: 1h
image: ${CSCS_IMAGE_NAME}
before_script:
- export CP2K_DATA_DIR=/opt/cp2k/install/share/cp2k/data
- export OMP_NUM_THREADS=${SLURM_CPUS_PER_TASK}
- export CP2K_DATA_DIR=/opt/cp2k/share/cp2k/data
script:
- cp2k /opt/cp2k/benchmarks/CI/H2O-512_md.inp
variables:
@ -173,25 +137,4 @@ benchmark cp2k 2 eiger nodes:
SLURM_TIMELIMIT: 30
USE_MPI: YES
benchmark cp2k 2 eiger nodes elpa:
extends: .container-runner-eiger-zen2
stage: benchmark
needs: ["build cp2k eiger","test cp2k eiger","regression test cp2k eiger","benchmark cp2k 2 eiger nodes"]
timeout: 6h
image: ${CSCS_IMAGE_NAME}
before_script:
- export CP2K_DATA_DIR=/opt/cp2k/install/share/cp2k/data
- export OMP_NUM_THREADS=${SLURM_CPUS_PER_TASK}
script:
- cp2k /opt/cp2k/benchmarks/CI/H2O-512_md_elpa.inp
variables:
SLURM_CONSTRAINT: mc
SLURM_CPUS_PER_TASK: 1
SLURM_DEBUG: 1
SLURM_HINT: nomultithread
SLURM_JOB_NUM_NODES: 2
SLURM_MPI_TYPE: pmi2
SLURM_NTASKS: 256
SLURM_NTASKS_PER_NODE: 128
SLURM_TIMELIMIT: 30
USE_MPI: YES
# EOF

View file

@ -11,16 +11,16 @@ variables:
BUILDER: spack
VERSION: ssmp
TAG: "${BUILDER}_${VERSION}"
UBUNTU_IMAGE_NAME: "ubuntu:26.04"
UBUNTU_IMAGE_NAME: "ubuntu:24.04"
CSCS_IMAGE_NAME: "${CSCS_REGISTRY_PATH}/${REPOSITORY}:${TAG}_${CI_COMMIT_SHORT_SHA}"
DOCKERHUB_IMAGE_NAME: "docker.io/${DOCKERHUB_USERNAME}/${REPOSITORY}:${TAG}"
build deps eiger:
extends: .container-builder-cscs-zen2
stage: deps
timeout: 6h
timeout: 1h
before_script:
- DEPS_IMAGE_TAG=$(cat make_cp2k.sh ci/cscs_eiger_${TAG}.yaml ci/docker/build_deps_spack.Dockerfile $(find tools/spack -type f | sort) | sha256sum | head -c 16)
- DEPS_IMAGE_TAG=`cat ci/cscs_eiger_${TAG}.yaml ci/docker/build_${CI_JOB_STAGE}_${BUILDER}.Dockerfile $(find tools/spack -type f) $(find cmake -type f) | sha256sum - | head -c 16`
- export PERSIST_IMAGE_NAME=${CSCS_REGISTRY_PATH}/base/${REPOSITORY}:${TAG}_${DEPS_IMAGE_TAG}
- echo "DEPS_IMAGE_NAME=${PERSIST_IMAGE_NAME}" | tee build.env
artifacts:
@ -30,24 +30,18 @@ build deps eiger:
DOCKER_BUILD_ARGS: '[
"BASE_IMAGE",
"CP2K_VERSION",
"FEATURE_FLAGS",
"NUM_PROCS"
"LOG_LINES"
]'
DOCKERFILE: ci/docker/build_${CI_JOB_STAGE}_${BUILDER}.Dockerfile
BASE_IMAGE: ${UBUNTU_IMAGE_NAME}
CP2K_VERSION: ${VERSION}
FEATURE_FLAGS: "-np 4"
NUM_PROCS: 64
KUBERNETES_CPU_REQUEST: 64
KUBERNETES_CPU_LIMIT: 64
KUBERNETES_MEMORY_REQUEST: 64Gi
KUBERNETES_MEMORY_LIMIT: 64Gi
LOG_LINES: 200
build cp2k eiger:
extends: .container-builder-cscs-zen2
stage: cp2k
needs: ["build deps eiger"]
timeout: 6h
timeout: 1h
before_script:
- echo ${DOCKERHUB_TOKEN} | podman login docker.io --username ${DOCKERHUB_USERNAME} --password-stdin
after_script:
@ -56,24 +50,18 @@ build cp2k eiger:
variables:
DOCKER_BUILD_ARGS: '[
"BASE_IMAGE",
"DEPS_IMAGE",
"FEATURE_FLAGS",
"NUM_PROCS"
"DEPS_IMAGE"
]'
DOCKERFILE: ci/docker/build_${CI_JOB_STAGE}_${BUILDER}.Dockerfile
BASE_IMAGE: ${UBUNTU_IMAGE_NAME}
DEPS_IMAGE: ${DEPS_IMAGE_NAME}
FEATURE_FLAGS: ""
NUM_PROCS: 32
KUBERNETES_CPU_REQUEST: 32
KUBERNETES_CPU_LIMIT: 32
PERSIST_IMAGE_NAME: ${CSCS_IMAGE_NAME}
test cp2k eiger:
extends: .baremetal-runner-eiger-zen2
stage: test
needs: ["build cp2k eiger"]
timeout: 6h
timeout: 1h
script:
- podman run --env OMP_NUM_THREADS=${SLURM_CPUS_PER_TASK} --shm-size=1g -v ${PWD}:/mnt ${DOCKERHUB_IMAGE_NAME} cp2k /opt/cp2k/benchmarks/CI/H2O-32_md.inp
variables:
@ -84,20 +72,22 @@ test cp2k eiger:
SLURM_JOB_NUM_NODES: 1
SLURM_NTASKS: 1
SLURM_NTASKS_PER_NODE: 1
SLURM_TIMELIMIT: 15
SLURM_TIMELIMIT: 10
regression test cp2k eiger:
extends: .baremetal-runner-eiger-zen2
stage: test
needs: ["build cp2k eiger","test cp2k eiger"]
timeout: 6h
timeout: 1h
script:
- git --no-pager log -1 --pretty="%nCommitSHA:%x20%H%nCommitTime:%x20%ci%nCommitAuthor:%x20%an%nCommitSubject:%x20%s%n"
- podman run --shm-size=1g -v ${PWD}:/mnt ${DOCKERHUB_IMAGE_NAME} /opt/cp2k/tests/do_regtest.py --cp2kdatadir /opt/cp2k/install/share/cp2k/data --maxtasks ${SLURM_NTASKS} --mpiexec "mpiexec -bind-to none" --keepalive /opt/cp2k/install/bin ${VERSION} 2>&1 || true
- podman run --shm-size=1g -v ${PWD}:/mnt ${DOCKERHUB_IMAGE_NAME} /opt/cp2k/tests/do_regtest.py --cp2kdatadir /opt/cp2k/share/cp2k/data --maxtasks ${SLURM_NTASKS} --mpiexec "mpiexec -bind-to none" --keepalive /opt/cp2k/bin ${VERSION} 2>&1 || true
variables:
SLURM_CONSTRAINT: mc
SLURM_DEBUG: 1
SLURM_HINT: nomultithread
SLURM_JOB_NUM_NODES: 1
SLURM_NTASKS: 128
SLURM_TIMELIMIT: 60
SLURM_TIMELIMIT: 30
# EOF

View file

@ -3,63 +3,118 @@
# A stand-alone build in this folder can be performed with:
# podman build --build-arg DEPS_IMAGE=<image id> --shm-size=1g -f build_cp2k_spack.Dockerfile ../../
#
# Stage 2: Build CP2K
# Author: Matthias Krack
#
# Stage 2a: Build CP2K
ARG BASE_IMAGE=${BASE_IMAGE:-ubuntu:26.04}
ARG DEPS_IMAGE=${DEPS_IMAGE:-}
ARG BASE_IMAGE="ubuntu:24.04"
ARG DEPS_IMAGE=""
FROM "${DEPS_IMAGE}" AS build_cp2k
FROM ${DEPS_IMAGE} AS build_cp2k
# Setup CUDA environment
ENV CUDA_HOME=/usr/local/cuda
ENV LD_LIBRARY_PATH="${CUDA_HOME}/lib64:${LD_LIBRARY_PATH}"
# Store build arguments from base image needed in next stage
RUN echo "${CP2K_VERSION}" >/CP2K_VERSION
# Retrieve the number of available CPU cores
ARG NUM_PROCS
ENV NUM_PROCS=${NUM_PROCS:-32}
ARG FEATURE_FLAGS
ENV FEATURE_FLAGS=${FEATURE_FLAGS:-}
# Build CP2K
# Build CP2K with CMake
WORKDIR /opt/cp2k
COPY ./src ./src
COPY ./data ./data
COPY ./tools/build_utils ./tools/build_utils
COPY ./CMakeLists.txt ./
COPY ./benchmarks/CI ./benchmarks/CI
COPY ./cmake ./cmake
COPY ./CMakeLists.txt .
COPY ./data ./data
COPY ./src ./src
COPY ./tests ./tests
COPY ./tools/build_utils ./tools/build_utils
RUN ./make_cp2k.sh -cray -cv ${CP2K_VERSION} -uc no -j${NUM_PROCS} ${FEATURE_FLAGS}
# Run CMake
RUN /bin/bash -c -o pipefail "source ./cmake/cmake_cp2k.sh spack ${CP2K_VERSION}"
# Stage 3: Install CP2K
# Compile CP2K
ARG LOG_LINES
ENV LOG_LINES=${LOG_LINES:-200}
WORKDIR /opt/cp2k/build
RUN /bin/bash -c -o pipefail " \
echo -e '\nCompiling CP2K ... \c'; \
if ninja --verbose &>ninja.log; then \
echo -e 'done\n'; \
echo -e 'Installing CP2K ... \c'; \
if ninja --verbose install &>install.log; then \
echo -e 'done\n'; \
else \
echo -e 'failed\n'; \
tail -n ${LOG_LINES} install.log; \
fi; \
cat cmake.log ninja.log install.log | gzip >build_cp2k.log.gz; \
else \
echo -e 'failed\n'; \
tail -n ${LOG_LINES} ninja.log; \
cat cmake.log ninja.log | gzip >build_cp2k.log.gz; \
fi"
FROM "${BASE_IMAGE}" AS install_cp2k
# Stage 2b: Install CP2K
FROM ${BASE_IMAGE} AS install_cp2k
# Install required packages
RUN apt-get update -qq && apt-get install -qq --no-install-recommends \
g++ gcc gfortran \
python3 \
&& rm -rf /var/lib/apt/lists/*
g++ \
gcc \
gfortran \
hwloc \
libhwloc-dev \
python3 && rm -rf /var/lib/apt/lists/*
# Import build arguments from base image
COPY --from=build_cp2k /CP2K_VERSION /
# Install CP2K dependencies built with Spack
WORKDIR /opt
COPY --from=build_cp2k /opt/spack ./spack
# Install CP2K binaries
WORKDIR /opt/cp2k
COPY --from=build_cp2k /opt/cp2k/bin ./bin
# Install CP2K dependencies built with spack
COPY --from=build_cp2k /opt/cp2k/spack/spack/opt/spack ./spack/spack/opt/spack
# Install CP2K libraries
COPY --from=build_cp2k /opt/cp2k/lib ./lib
# Install CP2K
COPY --from=build_cp2k /opt/cp2k/install ./install
# Install CP2K database files
COPY --from=build_cp2k /opt/cp2k/share ./share
# Install CP2K regression tests
COPY ./tests ./tests
COPY --from=build_cp2k /opt/cp2k/tests ./tests
COPY --from=build_cp2k /opt/cp2k/src/grid/sample_tasks ./src/grid/sample_tasks
# Install CP2K/Quickstep CI benchmarks
COPY ./benchmarks/CI ./benchmarks/CI
COPY --from=build_cp2k /opt/cp2k/benchmarks/CI ./benchmarks/CI
# Do not rely only on LD_LIBRARY_PATH because it is fragile
COPY --from=build_cp2k /etc/ld.so.conf.d/cp2k.conf /etc/ld.so.conf.d/cp2k.conf
RUN ldconfig
# Import compressed build log file
COPY --from=build_cp2k /opt/cp2k/build/build_cp2k.log.gz /opt/cp2k/build/build_cp2k.log.gz
# Create entrypoint and finalise container build
# Create links to CP2K binaries
WORKDIR /opt/cp2k/bin
RUN CP2K_VERSION=$(cat /CP2K_VERSION) && \
ln -sf cp2k.${CP2K_VERSION} cp2k && \
ln -sf cp2k.${CP2K_VERSION} cp2k.$(echo ${CP2K_VERSION} | sed "s/smp/opt/") && \
ln -sf cp2k.${CP2K_VERSION} cp2k_shell
# Update library search path
RUN echo "/opt/cp2k/lib\n/opt/spack/view/lib\n/opt/spack/view/lib/MiMiC\n$(dirname $(find /opt/spack ! -type l -name libtorch.so 2>/dev/null || true) 2>/dev/null || true)" >/etc/ld.so.conf.d/cp2k.conf && ldconfig
# Create entrypoint script file
RUN printf "#!/bin/bash\n\
ulimit -c 0 -s unlimited\n\
\
export OMP_STACKSIZE=64M\n\
export PATH=/opt/cp2k/bin:/opt/spack/view/bin:\${PATH}\n\
exec \"\$@\"" \
>/opt/cp2k/bin/entrypoint.sh && chmod 755 /opt/cp2k/bin/entrypoint.sh
# Create shortcut for regression test
RUN printf "/opt/cp2k/tests/do_regtest.py \$* /opt/cp2k/bin $(cat /CP2K_VERSION)" \
>/opt/cp2k/bin/run_tests && chmod 755 /opt/cp2k/bin/run_tests
# Define entrypoint
WORKDIR /mnt
ENTRYPOINT ["/opt/cp2k/install/bin/launch"]
CMD ["cp2k", "--help", "--version"]
ENTRYPOINT ["/opt/cp2k/bin/entrypoint.sh"]
CMD ["cp2k", "--help"]
# EOF

View file

@ -3,57 +3,88 @@
# A stand-alone build in this folder can be performed with:
# podman build --shm-size=1g -f build_deps_spack.Dockerfile ../../
#
# Author: Matthias Krack
#
# Stage 1: Create a base image providing the dependencies for building a CP2K binary
ARG BASE_IMAGE=${BASE_IMAGE:-ubuntu:26.04}
ARG BASE_IMAGE="ubuntu:24.04"
FROM "${BASE_IMAGE}" AS build_deps
FROM ${BASE_IMAGE} AS build_deps
# Install packages required to build the CP2K dependencies with Spack
RUN apt-get update -qq && apt-get install -qq --no-install-recommends \
bzip2 \
ca-certificates \
cmake \
g++ gcc gfortran \
g++ \
gcc \
gfortran \
git \
gnupg \
hwloc \
libhwloc-dev \
libssh-dev \
libssl-dev \
libtool \
libtool-bin \
lsb-release \
make \
ninja-build \
patch \
pkgconf \
python3 \
python3-dev \
python3-pip \
python3-venv \
unzip \
wget \
xxd \
xz-utils \
zstd \
&& rm -rf /var/lib/apt/lists/*
# Setup CUDA environment
ENV CUDA_HOME=/usr/local/cuda
ENV LD_LIBRARY_PATH="${CUDA_HOME}/lib64:${LD_LIBRARY_PATH}"
zstd && rm -rf /var/lib/apt/lists/*
# Retrieve the number of available CPU cores
ARG NUM_PROCS
ENV NUM_PROCS=${NUM_PROCS:-32}
# Install Spack and Spack packages
WORKDIR /root/spack
ARG SPACK_VERSION
ENV SPACK_VERSION=${SPACK_VERSION:-1.1.0}
ARG SPACK_PACKAGES_VERSION
ENV SPACK_PACKAGES_VERSION=${SPACK_PACKAGES_VERSION:-2025.11.0}
ARG SPACK_REPO=https://github.com/spack/spack
ENV SPACK_ROOT=/opt/spack-${SPACK_VERSION}
ARG SPACK_PACKAGES_REPO=https://github.com/spack/spack-packages
ENV SPACK_PACKAGES_ROOT=/opt/spack-packages-${SPACK_PACKAGES_VERSION}
RUN mkdir -p ${SPACK_ROOT} \
&& wget -q ${SPACK_REPO}/archive/v${SPACK_VERSION}.tar.gz \
&& tar -xzf v${SPACK_VERSION}.tar.gz -C /opt && rm -f v${SPACK_VERSION}.tar.gz \
&& mkdir -p ${SPACK_PACKAGES_ROOT} \
&& wget -q ${SPACK_PACKAGES_REPO}/archive/v${SPACK_PACKAGES_VERSION}.tar.gz \
&& tar -xzf v${SPACK_PACKAGES_VERSION}.tar.gz -C /opt && rm -f v${SPACK_PACKAGES_VERSION}.tar.gz
ENV PATH="${SPACK_ROOT}/bin:${PATH}"
# Add Spack packages builtin repository
RUN spack repo add --scope site ${SPACK_PACKAGES_ROOT}/repos/spack_repo/builtin
# Find all compilers
RUN spack compiler find
# Find all external packages
RUN spack external find --all --not-buildable
# Copy Spack configuration and build recipes
ARG CP2K_VERSION
ENV CP2K_VERSION=${CP2K_VERSION:-psmp}
COPY ./tools/spack/cp2k_deps_${CP2K_VERSION}.yaml ./
RUN sed -i -e "s/~xpmem/+xpmem/" cp2k_deps_${CP2K_VERSION}.yaml
COPY ./tools/spack/cp2k_dev_repo ${SPACK_PACKAGES_ROOT}/repos/spack_repo/cp2k_dev_repo/
RUN spack repo add --scope site ${SPACK_PACKAGES_ROOT}/repos/spack_repo/cp2k_dev_repo/
RUN spack env create myenv cp2k_deps_${CP2K_VERSION}.yaml && \
spack -e myenv repo list
ARG FEATURE_FLAGS
ENV FEATURE_FLAGS=${FEATURE_FLAGS:-}
# Install CP2K dependencies via Spack
RUN spack -e myenv concretize -f
RUN spack -e myenv env depfile -o spack_makefile
RUN make -j${NUM_PROCS} --file=spack_makefile SPACK_COLOR=never --output-sync=recurse
# Build CP2K dependencies
WORKDIR /opt/cp2k
COPY ./tools/spack ./tools/spack
COPY ./tools/docker ./tools/docker
COPY ./make_cp2k.sh .
RUN ./make_cp2k.sh -bd_only -cray -cv ${CP2K_VERSION} -uc no -ue -j${NUM_PROCS} ${FEATURE_FLAGS}
# EOF

View file

@ -5,9 +5,8 @@
#! SPDX-License-Identifier: GPL-2.0-or-later !
#!-------------------------------------------------------------------------------------------------!
set(CP2K_C_COMPILER_LIST
"GNU;Intel;IntelLLVM;NAG;Cray;PGI;NVHPC;Clang;AppleClang")
set(CP2K_Fortran_COMPILER_LIST "GNU;Intel;IntelLLVM;NAG;Cray;PGI;NVHPC")
set(CP2K_C_COMPILER_LIST "GNU;Intel;IntelLLVM;NAG;Cray;PGI;Clang;AppleClang")
set(CP2K_Fortran_COMPILER_LIST "GNU;Intel;IntelLLVM;NAG;Cray;PGI")
if(NOT CMAKE_C_COMPILER_ID IN_LIST CP2K_C_COMPILER_LIST)
message(
@ -50,28 +49,11 @@ add_compile_options(
"$<$<COMPILE_LANG_AND_ID:C,GNU>:-Wno-deprecated-declarations;-Wno-vla-parameter>"
)
# -- Apple Silicon + GCC: -march=native expands internally to -march=apple-m1
# (invalid). Use -mcpu=native instead.
set(_CP2K_GNU_NATIVE_TUNE "-march=native;-mtune=native")
if(APPLE
AND CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64"
AND (CMAKE_Fortran_COMPILER_ID STREQUAL "GNU"
OR CMAKE_C_COMPILER_ID STREQUAL "GNU"
OR CMAKE_CXX_COMPILER_ID STREQUAL "GNU"))
set(_CP2K_GNU_NATIVE_TUNE "-mcpu=native")
endif()
if(APPLE)
add_definitions(-D__MACOSX)
endif()
if(APPLE OR BSD)
add_definitions(-D__NO_STATM_ACCESS)
endif()
# Release
add_compile_options(
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-O3;${_CP2K_GNU_NATIVE_TUNE};-funroll-loops>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:CXX,GNU>>:-O3;${_CP2K_GNU_NATIVE_TUNE};-funroll-loops>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:C,GNU>>:-O3;${_CP2K_GNU_NATIVE_TUNE};-funroll-loops>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-O3;-march=native;-mtune=native;-funroll-loops>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:CXX,GNU>>:-O3;-march=native;-mtune=native;-funroll-loops>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:C,GNU>>:-O3;-march=native;-mtune=native;-funroll-loops>"
)
# Generic
@ -82,27 +64,19 @@ add_compile_options(
)
# Debug
# TODO: Replace deprecated MASTER constructs with MASKED (only available since
# GCC 12) and remove "-Wno-error=deprecated-openmp" once GCC 11 support is
# dropped.
add_compile_options(
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-O1;${_CP2K_GNU_NATIVE_TUNE}>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:CXX,GNU>>:-O1;${_CP2K_GNU_NATIVE_TUNE}>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:C,GNU>>:-O1;${_CP2K_GNU_NATIVE_TUNE};-Wall;-Wextra;-Werror>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:C,GNU>,$<VERSION_GREATER_EQUAL:$<C_COMPILER_VERSION>,16>>:-Wno-error=deprecated-openmp>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-O1;-march=native;-mtune=native>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:CXX,GNU>>:-O1;-march=native;-mtune=native>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:C,GNU>>:-O1;-march=native;-mtune=native;-Wall;-Wextra;-Werror>"
)
# FIXME: GCC 16 diagnoses legacy character-length mismatches that were not
# reported by earlier GCC versions. Restore "-Werror=character-truncation" after
# auditing and resolving them.
add_compile_options(
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-fsanitize=leak;-Werror=realloc-lhs>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-fcheck=all,no-array-temps;-finline-matmul-limit=0>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-ffpe-trap=invalid,zero,overflow>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-finit-derived;-finit-real=snan;-finit-integer=-42>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-Werror=aliasing;-Werror=ampersand;-Werror=c-binding-type>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-Werror=intrinsics-std;-Werror=intrinsic-shadow>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-Werror=line-truncation;-Werror=tabs;-Werror=target-lifetime>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-Werror=character-truncation;-Werror=intrinsic-shadow>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-Werror=intrinsics-std;-Werror=line-truncation;-Werror=tabs;-Werror=target-lifetime>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-Werror=underflow;-Werror=unused-but-set-variable;-Werror=unused-variable>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-Werror=unused-dummy-argument;-Werror=unused-parameter>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-Werror=unused-label;-Werror=conversion;-Werror=zerotrip>"
@ -115,7 +89,7 @@ add_link_options(
# Conventions
add_compile_options(
"$<$<CONFIG:CONVENTIONS>:-O1;${_CP2K_GNU_NATIVE_TUNE}>"
"$<$<CONFIG:CONVENTIONS>:-O1;-march=native;-mtune=native>"
"$<$<AND:$<CONFIG:CONVENTIONS>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-Wno-pedantic;-Wall;-Wextra;-Wsurprising>"
"$<$<AND:$<CONFIG:CONVENTIONS>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-Warray-temporaries;-Wconversion-extra;-Wimplicit-interface>"
"$<$<AND:$<CONFIG:CONVENTIONS>,$<COMPILE_LANG_AND_ID:Fortran,GNU>>:-Wimplicit-procedure;-Wreal-q-constant;-Walign-commons>"
@ -127,46 +101,23 @@ add_compile_options(
# Coverage
add_compile_options(
"$<$<CONFIG:COVERAGE>:-coverage;-fkeep-static-functions;-O1;${_CP2K_GNU_NATIVE_TUNE}>"
"$<$<CONFIG:COVERAGE>:-coverage;-fkeep-static-functions;-O1;-march=native;-mtune=native>"
)
add_compile_definitions("$<$<CONFIG:COVERAGE>:__NO_ABORT>")
# Address Sanitizer
add_compile_options(
"$<$<CONFIG:ASAN>:-fsanitize=address;-no-pie;-O3;${_CP2K_GNU_NATIVE_TUNE};-funroll-loops>"
"$<$<CONFIG:ASAN>:-fsanitize=address;-no-pie;-O3;-march=native;-mtune=native;-funroll-loops>"
)
add_link_options("$<$<CONFIG:ASAN>:-fsanitize=address>")
# =========================== Intel oneAPI Compilers ===========================
# Baseline
add_compile_options(
"$<$<COMPILE_LANG_AND_ID:Fortran,Intel,IntelLLVM>:-g;-traceback>"
"$<$<COMPILE_LANG_AND_ID:Fortran,Intel>:-free;-stand;f08;-fpp;-qopenmp;-heap-arrays;-D__MAX_CONTR=4>"
"$<$<COMPILE_LANG_AND_ID:Fortran,Intel>:-fp-model;consistent;-fpscomp;logicals>"
"$<$<COMPILE_LANG_AND_ID:Fortran,IntelLLVM>:-free;-stand;f08;-fpp;-qopenmp;-D__MAX_CONTR=4>"
"$<$<COMPILE_LANG_AND_ID:Fortran,IntelLLVM>:-fp-model;consistent;-fpscomp;logicals>"
)
# Release
add_compile_options(
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:Fortran,IntelLLVM>>:-O3;-xHOST;-D__HAS_IEEE_EXCEPTIONS>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:Fortran,Intel>>:-O2;-xHOST;-D__HAS_IEEE_EXCEPTIONS>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:CXX,IntelLLVM>>:-O3;-xHOST>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:C,IntelLLVM>>:-O3;-xHOST>")
# Debug
add_compile_options(
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,IntelLLVM>>:-O0;-debug>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,Intel>>:-O0;-debug>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:CXX,IntelLLVM>>:-O0;-g>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:C,IntelLLVM>>:-O0;-g>")
# =============================== Other Compilers ==============================
# Baseline
add_compile_options(
"$<$<COMPILE_LANG_AND_ID:Fortran,PGI,NVHPC>:-Mfreeform;-Mextend;-Mallocatable=03>"
"$<$<COMPILE_LANG_AND_ID:Fortran,Intel>:-free;-stand f18;-fpp;-qopenmp;-heap-arrays;-D__MAX_CONTR=4>"
"$<$<COMPILE_LANG_AND_ID:Fortran,IntelLLVM>:-free;-fpp;-qopenmp;-D__MAX_CONTR=4>"
"$<$<COMPILE_LANG_AND_ID:Fortran,PGI>:-Mfreeform;-Mextend;-Mallocatable=03>"
"$<$<COMPILE_LANG_AND_ID:Fortran,NAG>:-f2008;-free;-Warn=reallocation;-Warn=subnormal>"
"$<$<COMPILE_LANG_AND_ID:Fortran,Cray>:-f;free;-M3105;-ME7212;-hnoacc;-M1234>"
)
@ -175,12 +126,15 @@ add_compile_options(
# Release
add_compile_options(
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:Fortran,PGI,NVHPC>>:-fast>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:Fortran,PGI>>:-fast>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:Fortran,Intel>>:-O3;-g;-D__HAS_IEEE_EXCEPTIONS>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:Fortran,IntelLLVM>>:-O3;-g;-D__HAS_IEEE_EXCEPTIONS>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:Fortran,Cray>>:-O2;-G2>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:Fortran,NAG>>:-gline>")
add_compile_options(
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:C,PGI,NVHPC>>:-fast>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:C,PGI>>:-fast>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:C,Intel>>:-O3;-g>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:C,IntelLLVM>>:-O3;-g>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:C,Cray>>:-O3>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:C,NAG>>:-gline>"
"$<$<AND:$<CONFIG:RELEASE>,$<COMPILE_LANG_AND_ID:C,Clang>>:-O3;-funroll-loops>"
@ -190,11 +144,14 @@ add_compile_options(
# Debug
add_compile_options(
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,PGI,NVHPC>>:-g>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,PGI>>:-g>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,Intel>>:-O2;-debug>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,IntelLLVM>>:-O2;-debug>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:Fortran,Cray>>:-G2>")
add_compile_options(
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:C,PGI,NVHPC>>:-fast>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:C,PGI>>:-fast>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:C,Intel>>:-O2;-g>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:C,IntelLLVM>>:-O2;-g>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:C,Cray>>:-G2>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:C,NAG>>:-g;-C>"
"$<$<AND:$<CONFIG:DEBUG>,$<COMPILE_LANG_AND_ID:C,Clang>>:-O1;-g;-fno-omit-frame-pointer>"
@ -203,13 +160,11 @@ add_compile_options(
# =================================== Tweaks ===================================
# Workaround https://gitlab.kitware.com/cmake/cmake/-/issues/27231
if(TARGET MPI::MPI_Fortran)
get_target_property(opts MPI::MPI_Fortran INTERFACE_COMPILE_OPTIONS)
set_target_properties(
MPI::MPI_Fortran PROPERTIES INTERFACE_COMPILE_OPTIONS
"$<$<COMPILE_LANGUAGE:Fortran>:${opts}>")
unset(opts)
endif()
get_target_property(opts MPI::MPI_Fortran INTERFACE_COMPILE_OPTIONS)
set_target_properties(
MPI::MPI_Fortran PROPERTIES INTERFACE_COMPILE_OPTIONS
"$<$<COMPILE_LANGUAGE:Fortran>:${opts}>")
unset(opts)
if(CMAKE_C_COMPILER_ID STREQUAL "AppleClang")
set(CMAKE_Fortran_MODOUT_FLAG "-ef") # override to get lower-case module file
@ -232,10 +187,3 @@ if(CMAKE_C_COMPILER_ID STREQUAL "Cray" AND CMAKE_C_COMPILER_VERSION
list(FILTER CMAKE_C_IMPLICIT_LINK_LIBRARIES EXCLUDE REGEX "tcmalloc")
list(FILTER CMAKE_Fortran_IMPLICIT_LINK_LIBRARIES EXCLUDE REGEX "tcmalloc")
endif()
# Suppress GFortran runtime warnings when LIBXS provides the wrapper
if(CMAKE_Fortran_COMPILER_ID STREQUAL "GNU"
AND CP2K_USE_LIBXS
AND NOT APPLE)
add_link_options("-Wl,--wrap=_gfortran_runtime_warning_at")
endif()

View file

@ -1,44 +0,0 @@
#!-------------------------------------------------------------------------------------------------!
#! CP2K: A general program to perform molecular dynamics simulations !
#! Copyright 2000-2026 CP2K developers group <https://cp2k.org> !
#! !
#! SPDX-License-Identifier: GPL-2.0-or-later !
#!-------------------------------------------------------------------------------------------------!
if(NOT DEFINED OUTPUT_FILE)
message(FATAL_ERROR "OUTPUT_FILE is not defined")
endif()
if(NOT DEFINED SOURCE_DIR)
set(SOURCE_DIR "${CMAKE_CURRENT_LIST_DIR}/..")
endif()
string(TIMESTAMP CP2K_BUILD_TIMESTAMP "%Y-%m-%d %H:%M:%S")
# Get the latest abbreviated commit hash of the working branch. As a fall back,
# e.g. in a container without a .git directory, try reading a file named
# "REVISION". Running this here (rather than once at configure time) means a new
# commit is picked up on the next build, without having to re-run cmake.
execute_process(
COMMAND bash -c "git log -1 --format=%h || cat REVISION"
WORKING_DIRECTORY "${SOURCE_DIR}"
ERROR_QUIET
OUTPUT_VARIABLE CP2K_GIT_HASH
OUTPUT_STRIP_TRAILING_WHITESPACE)
if(NOT CP2K_GIT_HASH)
set(CP2K_GIT_HASH "unknown")
endif()
set(CP2K_BUILD_INFO_CONTENT
"#define __COMPILE_DATE \"${CP2K_BUILD_TIMESTAMP}\"\n#define __COMPILE_REVISION \"${CP2K_GIT_HASH}\"\n"
)
if(EXISTS "${OUTPUT_FILE}")
file(READ "${OUTPUT_FILE}" CP2K_OLD_BUILD_INFO_CONTENT)
else()
set(CP2K_OLD_BUILD_INFO_CONTENT "")
endif()
if(NOT CP2K_BUILD_INFO_CONTENT STREQUAL CP2K_OLD_BUILD_INFO_CONTENT)
file(WRITE "${OUTPUT_FILE}" "${CP2K_BUILD_INFO_CONTENT}")
endif()

View file

@ -22,7 +22,12 @@ VERSION=$2
# Using Ninja because of https://gitlab.kitware.com/cmake/cmake/issues/18188
if [[ "${PROFILE}" =~ ^toolchain ]]; then
if [[ "${PROFILE}" =~ ^spack ]]; then
eval "$(spack env activate myenv --sh)"
# PyTorch's TorchConfig.cmake is buried in the Python site-packages directory
Torch_DIR="$(dirname "$(find /opt/spack ! -type l -name TorchConfig.cmake | tail -n 1)")"
export Torch_DIR
elif [[ "${PROFILE}" =~ ^toolchain ]]; then
# shellcheck disable=SC1091
source "${TOOLCHAIN_DIR}/install/setup"
elif [[ "${PROFILE}" =~ ^ubuntu ]] || [[ "${PROFILE}" =~ ^minimal ]]; then
@ -38,7 +43,31 @@ cd build || return 1
# TODO: Reconcile PROFILE/VERSION with CP2K_BUILD_OPTIONS in CMakeLists.txt
#
if [[ "${PROFILE}" == "toolchain" ]] && [[ "${VERSION}" == "pdbg" ]]; then
if [[ "${PROFILE}" == "spack" ]] && [[ "${VERSION}" == "psmp" ]]; then
cmake \
-GNinja \
-DCMAKE_INSTALL_PREFIX="${INSTALL_PREFIX}" \
-DCP2K_USE_EVERYTHING=ON \
-DCP2K_USE_DLAF=OFF \
-DCP2K_USE_LIBXSMM=OFF \
-DCP2K_USE_TBLITE=OFF \
-Werror=dev \
.. |& tee ./cmake.log
CMAKE_EXIT_CODE=$?
elif [[ "${PROFILE}" == "spack" ]] && [[ "${VERSION}" == "ssmp" ]]; then
cmake \
-GNinja \
-DCMAKE_INSTALL_PREFIX="${INSTALL_PREFIX}" \
-DCP2K_USE_EVERYTHING=ON \
-DCP2K_USE_MPI=OFF \
-DCP2K_USE_LIBXSMM=OFF \
-DCP2K_USE_TBLITE=OFF \
-Werror=dev \
.. |& tee ./cmake.log
CMAKE_EXIT_CODE=$?
elif [[ "${PROFILE}" == "toolchain" ]] && [[ "${VERSION}" == "pdbg" ]]; then
cmake \
-GNinja \
-DCMAKE_BUILD_TYPE="Debug" \
@ -46,7 +75,6 @@ if [[ "${PROFILE}" == "toolchain" ]] && [[ "${VERSION}" == "pdbg" ]]; then
-DCP2K_USE_EVERYTHING=ON \
-DCP2K_USE_DLAF=OFF \
-DCP2K_USE_PEXSI=OFF \
-DCP2K_USE_OPENPMD=OFF \
-Werror=dev \
.. |& tee ./cmake.log
CMAKE_EXIT_CODE=$?
@ -58,19 +86,20 @@ elif [[ "${PROFILE}" == "toolchain" ]] && [[ "${VERSION}" == "sdbg" ]]; then
-DCMAKE_INSTALL_PREFIX="${INSTALL_PREFIX}" \
-DCP2K_USE_EVERYTHING=ON \
-DCP2K_USE_MPI=OFF \
-DCP2K_USE_OPENPMD=OFF \
-Werror=dev \
.. |& tee ./cmake.log
CMAKE_EXIT_CODE=$?
elif [[ "${PROFILE}" == "toolchain" ]] && [[ "${VERSION}" == "psmp" ]]; then
# TODO Re-enable SIRIUS once performance regression of COSMA is fixed:
# https://github.com/cp2k/cp2k/issues/4663
cmake \
-GNinja \
-DCMAKE_INSTALL_PREFIX="${INSTALL_PREFIX}" \
-DCP2K_USE_EVERYTHING=ON \
-DCP2K_USE_DLAF=OFF \
-DCP2K_USE_PEXSI=OFF \
-DCP2K_USE_OPENPMD=OFF \
-DCP2K_USE_SIRIUS=OFF \
-Werror=dev \
.. |& tee ./cmake.log
CMAKE_EXIT_CODE=$?
@ -81,7 +110,6 @@ elif [[ "${PROFILE}" == "toolchain" ]] && [[ "${VERSION}" == "ssmp" ]]; then
-DCMAKE_INSTALL_PREFIX="${INSTALL_PREFIX}" \
-DCP2K_USE_EVERYTHING=ON \
-DCP2K_USE_MPI=OFF \
-DCP2K_USE_OPENPMD=OFF \
-Werror=dev \
.. |& tee ./cmake.log
CMAKE_EXIT_CODE=$?
@ -90,14 +118,8 @@ elif [[ "${PROFILE}" == "toolchain_intel" ]] && [[ "${VERSION}" == "psmp" ]]; th
cmake \
-GNinja \
-DCMAKE_INSTALL_PREFIX="${INSTALL_PREFIX}" \
-DCP2K_USE_EVERYTHING=ON \
-DCP2K_USE_LIBTORCH=OFF \
-DCP2K_USE_OPENPMD=OFF \
-DCP2K_USE_DEEPMD=OFF \
-DCP2K_USE_GAUXC=OFF \
-DCP2K_USE_MIMIC=OFF \
-DCP2K_USE_PEXSI=OFF \
-DCP2K_USE_DLAF=OFF \
-DCP2K_USE_EVERYTHING=OFF \
-DCP2K_USE_MPI=ON \
-Werror=dev \
.. |& tee ./cmake.log
CMAKE_EXIT_CODE=$?
@ -106,14 +128,8 @@ elif [[ "${PROFILE}" == "toolchain_intel" ]] && [[ "${VERSION}" == "ssmp" ]]; th
cmake \
-GNinja \
-DCMAKE_INSTALL_PREFIX="${INSTALL_PREFIX}" \
-DCP2K_USE_EVERYTHING=ON \
-DCP2K_USE_EVERYTHING=OFF \
-DCP2K_USE_MPI=OFF \
-DCP2K_USE_LIBTORCH=OFF \
-DCP2K_USE_DEEPMD=OFF \
-DCP2K_USE_GAUXC=OFF \
-DCP2K_USE_MIMIC=OFF \
-DCP2K_USE_PEXSI=OFF \
-DCP2K_USE_DLAF=OFF \
-Werror=dev \
.. |& tee ./cmake.log
CMAKE_EXIT_CODE=$?
@ -128,8 +144,6 @@ elif [[ "${PROFILE}" == "toolchain_arm64" ]] && [[ "${VERSION}" == "psmp" ]]; th
-DCP2K_USE_ACE=OFF \
-DCP2K_USE_DEEPMD=OFF \
-DCP2K_USE_LIBTORCH=OFF \
-DCP2K_USE_GAUXC=OFF \
-DCP2K_USE_OPENPMD=OFF \
-Werror=dev \
.. |& tee ./cmake.log
CMAKE_EXIT_CODE=$?
@ -139,6 +153,7 @@ elif [[ "${PROFILE}" == "toolchain_cuda_"* ]] && [[ "${VERSION}" == "psmp" ]]; t
cmake \
-GNinja \
-DCMAKE_INSTALL_PREFIX="${INSTALL_PREFIX}" \
-DDBCSR_DIR="${DBCSR_CUDA_ROOT}/lib/cmake/dbcsr" \
-DSPLA_ROOT="${SPLA_ROOT}-cuda" \
-DCP2K_WITH_GPU="${PROFILE:15}" \
-DCP2K_USE_ACCEL=CUDA \
@ -151,14 +166,13 @@ elif [[ "${PROFILE}" == "toolchain_cuda_"* ]] && [[ "${VERSION}" == "psmp" ]]; t
-DCP2K_USE_PLUMED=OFF \
-DCP2K_USE_LIBSMEAGOL=OFF \
-DCP2K_USE_LIBTORCH=OFF \
-DCP2K_USE_DFTD4=OFF \
-DCP2K_USE_TBLITE=OFF \
-DCP2K_USE_GREENX=OFF \
-DCP2K_USE_SPGLIB=OFF \
-DCP2K_USE_VORI=OFF \
-DCP2K_USE_TREXIO=OFF \
-DCP2K_USE_MIMIC=OFF \
-DCP2K_USE_LIBFCI=OFF \
-DCP2K_USE_GAUXC=OFF \
-DCP2K_USE_OPENPMD=OFF \
-Werror=dev \
.. |& tee ./cmake.log
CMAKE_EXIT_CODE=$?
@ -167,6 +181,7 @@ elif [[ "${PROFILE}" == "toolchain_hip_"* ]] && [[ "${VERSION}" == "psmp" ]]; th
cmake \
-GNinja \
-DCMAKE_INSTALL_PREFIX="${INSTALL_PREFIX}" \
-DDBCSR_DIR="${DBCSR_HIP_ROOT}/lib/cmake/dbcsr" \
-DCP2K_WITH_GPU="${PROFILE:14}" \
-DCP2K_USE_ACCEL=HIP \
-DCP2K_USE_MPI=ON \
@ -184,9 +199,6 @@ elif [[ "${PROFILE}" == "toolchain_generic" ]] && [[ "${VERSION}" == "psmp" ]];
-DCP2K_USE_DLAF=OFF \
-DCP2K_USE_PEXSI=OFF \
-DCP2K_USE_DEEPMD=OFF \
-DCP2K_USE_LIBTORCH=OFF \
-DCP2K_USE_OPENPMD=OFF \
-DCP2K_USE_GAUXC=OFF \
-Werror=dev \
.. |& tee ./cmake.log
CMAKE_EXIT_CODE=$?
@ -200,7 +212,6 @@ elif [[ "${PROFILE}" == "toolchain_conventions" ]] && [[ "${VERSION}" == "psmp"
-DCP2K_USE_EVERYTHING=ON \
-DCP2K_USE_DLAF=OFF \
-DCP2K_USE_PEXSI=OFF \
-DCP2K_USE_OPENPMD=OFF \
-Werror=dev \
.. |& tee ./cmake.log
CMAKE_EXIT_CODE=$?
@ -213,7 +224,6 @@ elif [[ "${PROFILE}" == "toolchain_coverage" ]] && [[ "${VERSION}" == "psmp" ]];
-DCP2K_USE_EVERYTHING=ON \
-DCP2K_USE_DLAF=OFF \
-DCP2K_USE_PEXSI=OFF \
-DCP2K_USE_OPENPMD=OFF \
-Werror=dev \
.. |& tee ./cmake.log
CMAKE_EXIT_CODE=$?
@ -229,7 +239,6 @@ elif [[ "${PROFILE}" == "toolchain_asan" ]] && [[ "${VERSION}" == "psmp" ]]; the
-DCP2K_USE_DLAF=OFF \
-DCP2K_USE_PEXSI=OFF \
-DCP2K_USE_GREENX=OFF \
-DCP2K_USE_OPENPMD=OFF \
-Werror=dev \
.. |& tee ./cmake.log
CMAKE_EXIT_CODE=$?
@ -255,17 +264,14 @@ elif [[ "${PROFILE}" == "ubuntu" ]] && [[ "${VERSION}" == "ssmp" ]]; then
-DCP2K_USE_SPGLIB=OFF \
-DCP2K_USE_VORI=OFF \
-DCP2K_USE_TREXIO=OFF \
-DCP2K_USE_LIBFCI=OFF \
-DCP2K_USE_GAUXC=OFF \
-DCP2K_USE_OPENPMD=OFF \
-DCP2K_USE_LIBXSMM=OFF \
-Werror=dev \
.. |& tee ./cmake.log
CMAKE_EXIT_CODE=$?
elif [[ "${PROFILE}" == "minimal" ]] && [[ "${VERSION}" == "sdbg" ]]; then
elif [[ "${PROFILE}" == "minimal" ]] && [[ "${VERSION}" == "ssmp" ]]; then
cmake \
-GNinja \
-DCMAKE_BUILD_TYPE="Debug" \
-DCMAKE_INSTALL_PREFIX="${INSTALL_PREFIX}" \
-Werror=dev \
.. |& tee ./cmake.log

View file

@ -5,10 +5,7 @@
#! SPDX-License-Identifier: GPL-2.0-or-later !
#!-------------------------------------------------------------------------------------------------!
if(CMAKE_VERSION VERSION_LESS "3.24")
message(FATAL_ERROR "CP2K requires CMake 3.24 or newer.")
endif()
cmake_minimum_required(VERSION 3.22)
include(CMakeFindDependencyMacro)
if(NOT TARGET cp2k::cp2k)
@ -17,11 +14,10 @@ if(NOT TARGET cp2k::cp2k)
# Store CXX compiler id used in MKL package
set(CP2K_CXX_COMPILER_ID @CMAKE_CXX_COMPILER_ID@)
if(NOT CMAKE_CXX_COMPILER_ID)
if(NOT ${CMAKE_CXX_COMPILER_ID})
set(CMAKE_CXX_COMPILER_ID ${CP2K_CXX_COMPILER_ID})
endif()
# Define LAPACK and BLAS TARGETS
set(CP2K_BLAS_VENDOR @CP2K_BLAS_VENDOR@)
set(CP2K_SCALAPACK_VENDOR @CP2K_SCALAPACK_VENDOR@)
set(CP2K_BLAS_LINK_LIBRARIES @CP2K_BLAS_LINK_LIBRARIES@)
@ -30,9 +26,9 @@ if(NOT TARGET cp2k::cp2k)
set(CP2K_CONFIG_PACKAGE ON)
find_dependency(Lapack REQUIRED)
set(CP2K_USE_MPI @CP2K_USE_MPI@)
if(CP2K_USE_MPI)
find_dependency(MPI REQUIRED)
# Define LAPACK and BLAS TARGETS
if(@CP2K_USE_MPI@)
find_dependency(SCALAPACK REQUIRED)
endif()
unset(CP2K_CONFIG_PACKAGE)
@ -41,172 +37,97 @@ if(NOT TARGET cp2k::cp2k)
find_dependency(DBCSR 2.8 REQUIRED)
set(CP2K_USE_LIBXS @CP2K_USE_LIBXS@)
set(CP2K_USE_LIBXSMM @CP2K_USE_LIBXSMM@)
if(CP2K_USE_LIBXS)
find_dependency(libxs REQUIRED)
if(CP2K_USE_LIBXSMM)
find_dependency(libxsmm REQUIRED)
endif()
if(@CP2K_USE_LIBXSMM@)
find_dependency(LibXSMM REQUIRED)
endif()
set(CP2K_USE_OPENCL @CP2K_USE_OPENCL@)
if(CP2K_USE_OPENCL)
find_dependency(OpenCL REQUIRED)
find_dependency(libxstream REQUIRED)
endif()
set(CP2K_USE_HIP @CP2K_USE_HIP@)
if(CP2K_USE_HIP)
if(@CP2K_USE_HIP@)
# Find HIP
find_dependency(hipfft REQUIRED IMPORTED CONFIG)
find_dependency(hipblas REQUIRED IMPORTED CONFIG)
endif()
set(CP2K_USE_CUDA @CP2K_USE_CUDA@)
if(CP2K_USE_CUDA)
if(@CP2K_USE_CUDA@)
find_dependency(CUDAToolkit REQUIRED)
endif()
set(CP2K_USE_ELPA @CP2K_USE_ELPA@)
if(CP2K_USE_ELPA)
if(@CP2K_USE_ELPA@)
find_dependency(Elpa REQUIRED)
endif()
set(CP2K_USE_DLAF @CP2K_USE_DLAF@)
if(CP2K_USE_DLAF)
find_dependency(DLAFFortran 0.4.0 REQUIRED)
if(@CP2K_USE_DLAF@)
find_dependency(DLAF REQUIRED)
endif()
set(CP2K_USE_LIBXC @CP2K_USE_LIBXC@)
if(CP2K_USE_LIBXC)
find_dependency(Libxc 7 REQUIRED CONFIG)
if(@CP2K_USE_LIBXC@)
find_dependency(LibXC 7 REQUIRED CONFIG)
endif()
set(CP2K_USE_GAUXC @CP2K_USE_GAUXC@)
if(CP2K_USE_GAUXC)
find_dependency(gauxc REQUIRED CONFIG)
endif()
set(CP2K_USE_COSMA @CP2K_USE_COSMA@)
if(CP2K_USE_COSMA)
if(@CP2K_USE_COSMA@)
find_dependency(cosma REQUIRED)
if(NOT TARGET cp2k::cosma)
add_library(cp2k::cosma INTERFACE IMPORTED)
target_link_libraries(cp2k::cosma INTERFACE cosma::cosma_prefixed_pxgemm
cosma::cosma)
endif()
endif()
set(CP2K_USE_FFTW3 @CP2K_USE_FFTW3@)
if(CP2K_USE_FFTW3)
if(@CP2K_USE_MPI@)
find_dependency(MPI REQUIRED)
endif()
if(@CP2K_USE_FFTW3@)
find_dependency(Fftw REQUIRED)
endif()
set(CP2K_USE_LIBINT2 @CP2K_USE_LIBINT2@)
if(CP2K_USE_LIBINT2)
if(@CP2K_USE_LIBINT2@)
find_dependency(Libint2 REQUIRED)
endif()
set(CP2K_USE_LIBFCI @CP2K_USE_LIBFCI@)
if(CP2K_USE_LIBFCI)
find_dependency(libfci REQUIRED)
if(@CP2K_USE_SPGLIB@)
find_dependency(LibSPG REQUIRED)
endif()
set(CP2K_USE_SPGLIB @CP2K_USE_SPGLIB@)
if(CP2K_USE_SPGLIB)
find_dependency(Spglib REQUIRED CONFIG)
if(@CP2K_USE_SPLA@)
find_dependency(SPLA REQUIRED)
endif()
set(CP2K_USE_SPLA @CP2K_USE_SPLA@)
if(CP2K_USE_SPLA)
find_dependency(SPLA REQUIRED CONFIG)
if(@CP2K_USE_SIRIUS@)
find_dependency(sirius REQUIRED)
endif()
set(CP2K_USE_SIRIUS @CP2K_USE_SIRIUS@)
if(CP2K_USE_SIRIUS)
find_dependency(sirius 7.7.0 REQUIRED)
endif()
set(CP2K_USE_PLUMED @CP2K_USE_PLUMED@)
if(CP2K_USE_PLUMED)
if(@CP2K_USE_PLUMED@)
find_dependency(Plumed REQUIRED)
endif()
set(CP2K_USE_LIBTORCH @CP2K_USE_LIBTORCH@)
if(CP2K_USE_LIBTORCH)
if(@CP2K_USE_LIBTORCH@)
find_dependency(Torch REQUIRED)
endif()
set(CP2K_USE_HDF5 @CP2K_USE_HDF5@)
if(CP2K_USE_HDF5)
if(@CP2K_USE_HDF5@)
find_dependency(HDF5 REQUIRED COMPONENTS C Fortran)
endif()
set(CP2K_USE_DFTD4 @CP2K_USE_DFTD4@)
if(CP2K_USE_DFTD4)
if(@CP2K_USE_DFTD4@)
find_dependency(dftd4 REQUIRED)
endif()
set(CP2K_USE_DEEPMD @CP2K_USE_DEEPMD@)
if(CP2K_USE_DEEPMD)
find_dependency(DeePMD REQUIRED CONFIG)
if(@CP2K_USE_DEEPMD@)
find_dependency(DeepMD REQUIRED)
endif()
set(CP2K_USE_PEXSI @CP2K_USE_PEXSI@)
if(CP2K_USE_PEXSI)
find_dependency(PEXSI REQUIRED CONFIG)
if(@CP2K_USE_PEXSI@)
find_dependency(PEXSI REQUIRED)
endif()
set(CP2K_USE_ACE @CP2K_USE_ACE@)
if(CP2K_USE_ACE)
find_dependency(pace REQUIRED)
if(@CP2K_USE_ACE@)
find_dependency(ACE REQUIRED)
endif()
set(CP2K_USE_LIBSMEAGOL @CP2K_USE_LIBSMEAGOL@)
if(CP2K_USE_LIBSMEAGOL)
if(@CP2K_USE_LIBSMEAGOL@)
find_dependency(libsmeagol REQUIRED)
endif()
set(CP2K_USE_MIMIC @CP2K_USE_MIMIC@)
if(CP2K_USE_MIMIC)
find_dependency(MiMiC REQUIRED)
endif()
set(CP2K_USE_OPENPMD @CP2K_USE_OPENPMD@)
if(CP2K_USE_OPENPMD)
find_dependency(openPMD 0.16.1 REQUIRED)
endif()
set(CP2K_USE_VORI @CP2K_USE_VORI@)
if(CP2K_USE_VORI)
if(@CP2K_USE_VORI@)
find_dependency(LibVORI REQUIRED)
endif()
set(CP2K_USE_GREENX @CP2K_USE_GREENX@)
if(CP2K_USE_GREENX)
find_dependency(greenX REQUIRED CONFIG)
if(NOT TARGET cp2k::greenx)
add_library(cp2k::greenx INTERFACE IMPORTED)
target_link_libraries(cp2k::greenx INTERFACE greenX::GXCommon
greenX::LibGXAC
greenX::LibGXMiniMax)
endif()
endif()
set(CP2K_USE_TBLITE @CP2K_USE_TBLITE@)
if(CP2K_USE_TBLITE)
find_dependency(tblite REQUIRED)
if(NOT TARGET cp2k::tblite)
add_library(cp2k::tblite INTERFACE IMPORTED)
target_link_libraries(
cp2k::tblite INTERFACE tblite::tblite mctc-lib::mctc-lib dftd4::dftd4
toml-f::toml-f s-dftd3::s-dftd3)
endif()
endif()
set(CP2K_USE_TREXIO @CP2K_USE_TREXIO@)
if(CP2K_USE_TREXIO)
find_dependency(TrexIO REQUIRED)
if(@CP2K_USE_GREENX@)
find_dependency(greenX REQUIRED)
endif()
include("${CMAKE_CURRENT_LIST_DIR}/cp2kTargets.cmake")

View file

@ -20,10 +20,25 @@ else()
message(STATUS "FYPP preprocessor found.")
endif()
# https://gitlab.kitware.com/cmake/cmake/issues/18188
if((CMAKE_Fortran_COMPILER_ID STREQUAL "GNU") AND (CMAKE_VERSION
VERSION_GREATER_EQUAL 3.16))
if((CMAKE_Fortran_COMPILER_ID STREQUAL "GNU")
AND (CMAKE_GENERATOR STREQUAL "Ninja")
AND (CMAKE_VERSION VERSION_GREATER_EQUAL 3.16))
set(fypp_flags --line-numbering --line-marker-format=gfortran5)
elseif(CMAKE_BUILD_TYPE MATCHES COVERAGE)
message(
WARNING
"Coverage build requested but your environment does not support Line Control directives in Fypp"
)
message(
WARNING
"You need CMake 3.16+, Ninja (CMake-patched) and gfortran 5+ for this to work!"
)
# otherwise the referenced lines in the Coverage report point to either the
# original (unexpanded files) or to the Fypped sources which may then not be
# picked up by the postprocessing tools. CMake 3.16+ and Ninja are needed
# since older CMake (or CMake with make) are unable to parse Line Control
# directives within line-continued USE stmts, see
# https://gitlab.kitware.com/cmake/cmake/issues/18188
endif()
function(ADD_FYPP_SOURCES OUTVAR)

View file

@ -0,0 +1,37 @@
#!-------------------------------------------------------------------------------------------------!
#! CP2K: A general program to perform molecular dynamics simulations !
#! Copyright 2000-2026 CP2K developers group <https://cp2k.org> !
#! !
#! SPDX-License-Identifier: GPL-2.0-or-later !
#!-------------------------------------------------------------------------------------------------!
include(FindPackageHandleStandardArgs)
include(cp2k_utils)
cp2k_set_default_paths(ACE "ace")
cp2k_include_dirs(
ACE "ace/ace_couplings.h;ace-evaluator/ace_types.h;yaml-cpp/yaml.h")
cp2k_find_libraries(ACE "pace")
cp2k_find_libraries(ACE_YAML "yaml-cpp-pace")
cp2k_find_libraries(ACE_CNPY "cnpy")
find_package_handle_standard_args(
ACE DEFAULT_MSG CP2K_ACE_LINK_LIBRARIES CP2K_ACE_CNPY_LINK_LIBRARIES
CP2K_ACE_INCLUDE_DIRS CP2K_ACE_YAML_LINK_LIBRARIES)
if(CP2K_ACE_FOUND)
if(NOT TARGET cp2k::ACE)
add_library(cp2k::ACE INTERFACE IMPORTED)
endif()
set_target_properties(
cp2k::ACE
PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${CP2K_ACE_INCLUDE_DIRS}"
INTERFACE_LINK_LIBRARIES
"${CP2K_ACE_LINK_LIBRARIES};${CP2K_ACE_YAML_LINK_LIBRARIES};${CP2K_ACE_CNPY_LINK_LIBRARIES}"
)
endif()
mark_as_advanced(CP2K_ACE_FOUND CP2K_ACE_INCLUDE_DIRS CP2K_ACE_LINK_LIBRARIES
CP2K_ACE_YAML_LINK_LIBRARIES CP2K_ACE_CNPY_LINK_LIBRARIES)

View file

@ -53,7 +53,7 @@ find_package_handle_standard_args(
CP2K_ARMPL_ILP64_MP_LINK_LIBRARIES)
# add target to link against
if(NOT TARGET cp2k::BLAS::Armpl::armpl)
if(NOT TARGET Armpl::armpl)
add_library(cp2k::BLAS::Armpl::armpl INTERFACE IMPORTED)
# now define an alias to the target library
add_library(cp2k::BLAS::Armpl::blas ALIAS cp2k::BLAS::Armpl::armpl)

View file

@ -15,13 +15,13 @@ include(cp2k_utils)
cp2k_set_default_paths(ATLAS "Atlas")
cp2k_find_libraries(ATLAS "atlas")
cp2k_include_dirs(ATLAS "cblas.h atlas/cblas.h")
cp2k_include_dirs(FFTW3 "cblas.h atlas/cblas.h")
# check if found
find_package_handle_standard_args(Atlas REQUIRED_VARS CP2K_ATLAS_INCLUDE_DIRS
CP2K_ATLAS_LINK_LIBRARIES)
# add target to link against
if(CP2K_ATLAS_FOUND)
if(CP2K_ATLAS_FOUND AND NOT TARGET CP2K_ATLAS::atlas)
if(NOT TARGET cp2k::BLAS::ATLAS::atlas)
add_library(cp2k::BLAS::ATLAS::atlas INTERFACE IMPORTED)
endif()

View file

@ -37,16 +37,8 @@ if(NOT CP2K_CONFIG_PACKAGE)
# cmake-format: sortable
"sequential" "thread" "gnu-thread" "intel-thread" "tbb-thread" "openmp")
if(CMAKE_Fortran_COMPILER_ID STREQUAL "GNU" OR CMAKE_C_COMPILER_ID STREQUAL
"GNU")
set(_cp2k_blas_threading_default "gnu-thread")
elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel|IntelLLVM")
set(_cp2k_blas_threading_default "intel-thread")
else()
set(_cp2k_blas_threading_default "openmp")
endif()
set(CP2K_BLAS_THREADING
"${_cp2k_blas_threading_default}"
"sequential"
CACHE STRING "threaded blas library")
set_property(CACHE CP2K_BLAS_THREADING PROPERTY STRINGS
${CP2K_BLAS_THREAD_LIST})
@ -132,8 +124,7 @@ list(FILTER CP2K_BLAS_LINK_LIBRARIES EXCLUDE REGEX "^$")
# might require this information though
find_package_handle_standard_args(
${CMAKE_FIND_PACKAGE_NAME} REQUIRED_VARS CP2K_BLAS_LINK_LIBRARIES
CP2K_BLAS_VENDOR CP2K_BLAS_FOUND)
Blas REQUIRED_VARS CP2K_BLAS_LINK_LIBRARIES CP2K_BLAS_VENDOR CP2K_BLAS_FOUND)
if(NOT TARGET cp2k::BLAS::blas)
add_library(cp2k::BLAS::blas INTERFACE IMPORTED)
@ -142,17 +133,6 @@ endif()
set_target_properties(cp2k::BLAS::blas PROPERTIES INTERFACE_LINK_LIBRARIES
"${CP2K_BLAS_LINK_LIBRARIES}")
# Compatibility: many external packages expect BLAS::BLAS
if(NOT TARGET BLAS::BLAS)
add_library(BLAS::BLAS INTERFACE IMPORTED)
set_property(TARGET BLAS::BLAS PROPERTY INTERFACE_LINK_LIBRARIES
"${CP2K_BLAS_LINK_LIBRARIES}")
if(CP2K_BLAS_INCLUDE_DIRS)
set_property(TARGET BLAS::BLAS PROPERTY INTERFACE_INCLUDE_DIRECTORIES
"${CP2K_BLAS_INCLUDE_DIRS}")
endif()
endif()
if(CP2K_BLAS_INCLUDE_DIRS)
set_target_properties(
cp2k::BLAS::blas PROPERTIES INTERFACE_INCLUDE_DIRECTORIES

View file

@ -16,7 +16,7 @@ include(cp2k_utils)
cp2k_set_default_paths(BLIS "BLIS")
if(DEFINED AOCL_ROOT)
list(APPEND CP2K_BLIS_ROOT "${AOCL_ROOT}" "$ENV{AOCL_ROOT}")
list(CP2K_BLIS_ROOT "${AOCL_ROOT}" "$ENV{AOCL_ROOT}")
endif()
# one day blis will have a pkg-config file
@ -46,7 +46,7 @@ endif()
if(CP2K_BLIS_FOUND)
if(NOT TARGET cp2k::BLAS::Blis::blis)
add_library(cp2k::BLAS::Blis::blis INTERFACE IMPORTED)
add_library(cp2k::BLAS::Blis::blas ALIAS cp2k::BLAS::Blis::blis)
add_library(cp2k::BLAS::Blis::blas alias cp2k::BLAS::Blis::blis)
endif()
set_property(TARGET cp2k::BLAS::Blis::blis

View file

@ -20,16 +20,14 @@ cp2k_include_dirs(CAL "cal.h")
find_package_handle_standard_args(Cal DEFAULT_MSG CP2K_CAL_LINK_LIBRARIES
CP2K_CAL_INCLUDE_DIRS)
if(NOT CP2K_CAL_FOUND)
message(FATAL_ERROR "Cal required by CuSolverMP")
endif()
if(NOT TARGET cp2k::CAL::cal)
if(CP2K_CAL_FOUND AND NOT TARGET cp2k::CAL::cal)
add_library(cp2k::CAL::cal INTERFACE IMPORTED)
set_target_properties(cp2k::CAL::cal PROPERTIES INTERFACE_LINK_LIBRARIES
"${CP2K_CAL_LINK_LIBRARIES}")
set_target_properties(cp2k::CAL::cal PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
"${CP2K_CAL_INCLUDE_DIRS}")
else()
message(FATAL_ERROR "Cal required by CuSolverMP")
endif()
mark_as_advanced(CP2K_CAL_LINK_LIBRARIES)

View file

@ -13,67 +13,29 @@ include(FindPackageHandleStandardArgs)
include(cp2k_utils)
find_package(ucc REQUIRED)
find_package(Cal REQUIRED)
# First, find CuSolverMP library and headers
cp2k_set_default_paths(CUSOLVER_MP "CUSOLVER_MP")
cp2k_find_libraries(CUSOLVER_MP "cusolverMp")
cp2k_include_dirs(CUSOLVER_MP "cusolverMp.h")
# CuSolverMP 0.7+ uses NCCL for communication, older versions use Cal. We need
# to detect the version to require the correct communication library.
if(CP2K_CUSOLVER_MP_INCLUDE_DIRS)
file(STRINGS "${CP2K_CUSOLVER_MP_INCLUDE_DIRS}/cusolverMp.h" _ver_major_line
REGEX "^#define CUSOLVERMP_VER_MAJOR")
file(STRINGS "${CP2K_CUSOLVER_MP_INCLUDE_DIRS}/cusolverMp.h" _ver_minor_line
REGEX "^#define CUSOLVERMP_VER_MINOR")
string(REGEX MATCH "[0-9]+" _ver_major "${_ver_major_line}")
string(REGEX MATCH "[0-9]+" _ver_minor "${_ver_minor_line}")
if(_ver_major STREQUAL "" OR _ver_minor STREQUAL "")
message(FATAL_ERROR "Could not determine CuSolverMP version from header")
endif()
message(STATUS "Found CuSolverMP version: ${_ver_major}.${_ver_minor}")
# CuSolverMP 0.7+ uses NCCL, older versions use Cal
if(_ver_major GREATER 0 OR _ver_minor GREATER_EQUAL 7)
find_package(Nccl REQUIRED)
set(CP2K_CUSOLVERMP_USE_NCCL
ON
CACHE BOOL "CuSolverMP uses NCCL for communication")
else()
find_package(Cal REQUIRED)
set(CP2K_CUSOLVERMP_USE_NCCL
OFF
CACHE BOOL "CuSolverMP uses Cal for communication")
endif()
endif()
find_package_handle_standard_args(
CuSolverMP DEFAULT_MSG CP2K_CUSOLVER_MP_LINK_LIBRARIES
CP2K_CUSOLVER_MP_INCLUDE_DIRS)
if(NOT CP2K_CUSOLVER_MP_FOUND)
message(FATAL_ERROR "CuSolverMP requested, but not found")
endif()
if(NOT TARGET cp2k::CUSOLVER_MP::cusolver_mp)
if(CP2K_CUSOLVER_MP_FOUND AND NOT TARGET cp2k::CUSOLVER_MP::cusolver_mp)
add_library(cp2k::CUSOLVER_MP::cusolver_mp INTERFACE IMPORTED)
if(CP2K_CUSOLVERMP_USE_NCCL)
set(_comm_lib "cp2k::NCCL::nccl")
else()
set(_comm_lib "cp2k::CAL::cal")
endif()
set_target_properties(
cp2k::CUSOLVER_MP::cusolver_mp
PROPERTIES INTERFACE_LINK_LIBRARIES
"${CP2K_CUSOLVER_MP_LINK_LIBRARIES};${_comm_lib};cp2k::UCC::ucc")
PROPERTIES
INTERFACE_LINK_LIBRARIES
"${CP2K_CUSOLVER_MP_LINK_LIBRARIES};cp2k::CAL::cal;cp2k::UCC::ucc")
set_target_properties(
cp2k::CUSOLVER_MP::cusolver_mp
PROPERTIES INTERFACE_INCLUDE_DIRECTORIES "${CP2K_CUSOLVER_MP_INCLUDE_DIRS}")
else()
message(FATAL_ERROR "CuSolverMP requested, but not found")
endif()
mark_as_advanced(CP2K_CUSOLVER_MP_LINK_LIBRARIES)

View file

@ -91,7 +91,7 @@ foreach(lib_name "fftw3" "fftw3l" "fftw3q" "fftw3f")
endif()
endforeach()
set(CP2K_FFTW3_FOUND ${Fftw_FOUND})
set(CP2K_FFTW3_FOUND ON)
mark_as_advanced(
CP2K_FFTW3_FOUND
CP2K_FFTW3_ROOT

View file

@ -35,6 +35,10 @@ find_package_handle_standard_args(
FlexiBLAS DEFAULT_MSG CP2K_FLEXIBLAS_INCLUDE_DIRS
CP2K_FLEXIBLAS_LINK_LIBRARIES)
if(NOT CP2K_FLEXIBLAS_FOUND)
set(CP2K_BLAS_VENDOR "FlexiBLAS")
endif()
if(CP2K_FLEXIBLAS_FOUND)
if(NOT TARGET cp2k::BLAS::FlexiBLAS::flexiblas)
add_library(cp2k::BLAS::FlexiBLAS::flexiblas INTERFACE IMPORTED)

View file

@ -42,25 +42,20 @@ if(NOT CP2K_CONFIG_PACKAGE)
CP2K_LAPACK_LINK_LIBRARIES
NAMES "lapack" "lapack64"
PATH_SUFFIXES "openblas" "openblas64" "openblas-pthread"
"openblas-openmp" "lib" "lib64")
"openblas-openmp" "lib" "lib64"
NO_DEFAULT_PATH)
endif()
endif()
endif()
endif()
# check if found
find_package_handle_standard_args(${CMAKE_FIND_PACKAGE_NAME}
find_package_handle_standard_args(Lapack
REQUIRED_VARS CP2K_LAPACK_LINK_LIBRARIES)
if(NOT TARGET cp2k::LAPACK::lapack)
add_library(cp2k::LAPACK::lapack INTERFACE IMPORTED)
add_library(cp2k::LAPACK::LAPACK ALIAS cp2k::LAPACK::lapack)
endif()
# Compatibility: some external packages (e.g. tblite/multicharge) expect
# LAPACK::LAPACK
if(NOT TARGET LAPACK::LAPACK)
add_library(LAPACK::LAPACK ALIAS cp2k::LAPACK::lapack)
endif()
set_property(TARGET cp2k::LAPACK::lapack PROPERTY INTERFACE_LINK_LIBRARIES
${CP2K_LAPACK_LINK_LIBRARIES})

View file

@ -1,37 +0,0 @@
#!-------------------------------------------------------------------------------------------------!
#! CP2K: A general program to perform molecular dynamics simulations !
#! Copyright 2000-2026 CP2K developers group <https://cp2k.org> !
#! !
#! SPDX-License-Identifier: GPL-2.0-or-later !
#!-------------------------------------------------------------------------------------------------!
include(FindPackageHandleStandardArgs)
include(cp2k_utils)
cp2k_set_default_paths(LIBFCI "LibFCI")
cp2k_find_libraries(LIBFCI "fci")
if(CP2K_LIBFCI_INCLUDE_DIRS)
find_package_handle_standard_args(
LibFCI DEFAULT_MSG CP2K_LIBFCI_LINK_LIBRARIES CP2K_LIBFCI_INCLUDE_DIRS)
else()
find_package_handle_standard_args(LibFCI DEFAULT_MSG
CP2K_LIBFCI_LINK_LIBRARIES)
endif()
if(LibFCI_FOUND)
if(NOT TARGET libfci::fci)
add_library(libfci::fci INTERFACE IMPORTED)
set_target_properties(
libfci::fci PROPERTIES INTERFACE_LINK_LIBRARIES
"${CP2K_LIBFCI_LINK_LIBRARIES}")
if(CP2K_LIBFCI_INCLUDE_DIRS)
set_target_properties(
libfci::fci PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
"${CP2K_LIBFCI_INCLUDE_DIRS}")
endif()
endif()
endif()
mark_as_advanced(CP2K_LIBFCI_ROOT CP2K_LIBFCI_INCLUDE_DIRS
CP2K_LIBFCI_LINK_LIBRARIES CP2K_LIBFCI_LIBRARIES)

View file

@ -1,39 +0,0 @@
#!-------------------------------------------------------------------------------------------------!
#! CP2K: A general program to perform molecular dynamics simulations !
#! Copyright 2000-2026 CP2K developers group <https://cp2k.org> !
#! !
#! SPDX-License-Identifier: GPL-2.0-or-later !
#!-------------------------------------------------------------------------------------------------!
# Copyright (c) 2025- ETH Zurich
#
# author: Marcello Puligheddu, Sergey Chulkov
include(FindPackageHandleStandardArgs)
include(cp2k_utils)
cp2k_find_libraries(LIBGINT "cp2kGint")
cp2k_include_dirs(LIBGINT "libgint.mod")
if(CP2K_LIBGINT_INCLUDE_DIRS)
find_package_handle_standard_args(
LibGint DEFAULT_MSG CP2K_LIBGINT_LINK_LIBRARIES CP2K_LIBGINT_INCLUDE_DIRS)
else()
find_package_handle_standard_args(LibGint DEFAULT_MSG
CP2K_LIBGINT_LINK_LIBRARIES)
endif()
if(NOT TARGET cp2k::LibGint::libGint)
add_library(cp2k::LibGint::libGint INTERFACE IMPORTED)
set_target_properties(
cp2k::LibGint::libGint PROPERTIES INTERFACE_LINK_LIBRARIES
"${CP2K_LIBGINT_LINK_LIBRARIES}")
if(CP2K_LIBGINT_INCLUDE_DIRS)
set_target_properties(
cp2k::LibGint::libGint PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
"${CP2K_LIBGINT_INCLUDE_DIRS}")
endif()
endif()
mark_as_advanced(CP2K_LIBGINT_ROOT CP2K_LIBGINT_INCLUDE_DIRS
CP2K_LIBGINT_LINK_LIBRARIES CP2K_LIBGINT_LIBRARIES)

View file

@ -23,17 +23,15 @@ else()
CP2K_LIBVORI_LINK_LIBRARIES)
endif()
if(CP2K_LIBVORI_FOUND)
if(NOT TARGET cp2k::VORI::vori)
add_library(cp2k::VORI::vori INTERFACE IMPORTED)
if(NOT TARGET cp2k::VORI::vori)
add_library(cp2k::VORI::vori INTERFACE IMPORTED)
set_target_properties(
cp2k::VORI::vori PROPERTIES INTERFACE_LINK_LIBRARIES
"${CP2K_LIBVORI_LINK_LIBRARIES}")
if(CP2K_LIBVORI_INCLUDE_DIRS)
set_target_properties(
cp2k::VORI::vori PROPERTIES INTERFACE_LINK_LIBRARIES
"${CP2K_LIBVORI_LINK_LIBRARIES}")
if(CP2K_LIBVORI_INCLUDE_DIRS)
set_target_properties(
cp2k::VORI::vori PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
"${CP2K_LIBVORI_INCLUDE_DIRS}")
endif()
cp2k::VORI::vori PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
"${CP2K_LIBVORI_INCLUDE_DIRS}")
endif()
endif()

View file

@ -0,0 +1,107 @@
#!-------------------------------------------------------------------------------------------------!
#! CP2K: A general program to perform molecular dynamics simulations !
#! Copyright 2000-2026 CP2K developers group <https://cp2k.org> !
#! !
#! SPDX-License-Identifier: GPL-2.0-or-later !
#!-------------------------------------------------------------------------------------------------!
include(FindPackageHandleStandardArgs)
include(cp2k_utils)
find_package(PkgConfig REQUIRED)
cp2k_set_default_paths(LIBXSMM "LibXSMM")
set(CP2K_LIBXSMMEXT_ROOT "${CP2K_LIBXSMM_PREFIX}")
set(CP2K_LIBXSMMF_ROOT "${CP2K_LIBXSMM_PREFIX}")
set(CP2K_LIBXSMMNOBLAS_ROOT "${CP2K_LIBXSMM_PREFIX}")
if(PKG_CONFIG_FOUND)
if(BUILD_SHARED_LIBS)
foreach(__lib libxsmm libxsmmf libxsmmext libxsmmnoblas)
string(TOUPPER "${__lib}" __lib_search_up)
pkg_check_modules(CP2K_${__lib_search_up} IMPORTED_TARGET GLOBAL
${__lib}-shared)
# need to do it twice because of dbcsr build option
pkg_check_modules(${__lib_search_up} QUIET IMPORTED_TARGET GLOBAL
${__lib}-shared)
endforeach()
else()
foreach(__lib libxsmm libxsmmf libxsmmext libxsmmnoblas)
string(TOUPPER "${__lib}" __lib_search_up)
pkg_check_modules(CP2K_${__lib_search_up} IMPORTED_TARGET GLOBAL
${__lib}-static)
# need to do it twice because of dbcsr build option
pkg_check_modules(${__lib_search_up} QUIET IMPORTED_TARGET GLOBAL
${__lib}-static)
endforeach()
endif()
if(NOT CP2K_LIBXSMM_FOUND)
foreach(__lib libxsmm libxsmmf libxsmmext libxsmmnoblas)
string(TOUPPER "${__lib}" __lib_search_up)
pkg_check_modules(CP2K_${__lib_search_up} IMPORTED_TARGET GLOBAL ${__lib})
# need to do it twice because of dbcsr build option
pkg_check_modules(${__lib_search_up} QUIET IMPORTED_TARGET GLOBAL
${__lib})
endforeach()
endif()
endif()
if(NOT CP2K_LIBXSMM_FOUND)
# Reset after pkg_check_modules side effects
foreach(__lib xsmm xsmmf xsmmext xsmmnoblas)
string(TOUPPER "LIB${__lib}" __lib_search_up)
if(NOT CP2K_${__lib_search_up}_FOUND)
cp2k_find_libraries(${__lib_search_up} ${__lib})
endif()
endforeach()
endif()
if(NOT CP2K_LIBXSMM_INCLUDE_DIRS)
cp2k_include_dirs(LIBXSMM "libxsmm.h;include/libxsmm.h")
endif()
if(CP2K_LIBXSMM_INCLUDE_DIRS)
find_package_handle_standard_args(
LibXSMM
DEFAULT_MSG
CP2K_LIBXSMM_INCLUDE_DIRS
CP2K_LIBXSMMNOBLAS_LINK_LIBRARIES
CP2K_LIBXSMMEXT_LINK_LIBRARIES
CP2K_LIBXSMMF_LINK_LIBRARIES
CP2K_LIBXSMM_LINK_LIBRARIES)
else()
find_package_handle_standard_args(
LibXSMM DEFAULT_MSG CP2K_LIBXSMMNOBLAS_LINK_LIBRARIES
CP2K_LIBXSMMEXT_LINK_LIBRARIES CP2K_LIBXSMMF_LINK_LIBRARIES
CP2K_LIBXSMM_LINK_LIBRARIES)
endif()
if(NOT TARGET cp2k::LibXSMM)
add_library(cp2k::LibXSMM INTERFACE IMPORTED)
foreach(__lib libxsmmf libxsmmext libxsmm libxsmmnoblas)
string(TOUPPER "CP2K_${__lib}" __lib_search_up)
if(${__lib_search_up}_FOUND AND NOT TARGET cp2k::LibXSMM::${__lib})
add_library(cp2k::LibXSMM::${__lib} INTERFACE IMPORTED)
target_link_directories(cp2k::LibXSMM::${__lib} INTERFACE
${${__lib_search_up}_LIBRARY_DIRS})
set_target_properties(
cp2k::LibXSMM::${__lib}
PROPERTIES INTERFACE_LINK_LIBRARIES
"${${__lib_search_up}_LINK_LIBRARIES}")
if(CP2K_LIBXSMM_INCLUDE_DIRS)
set_target_properties(
cp2k::LibXSMM::${__lib}
PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES
"${CP2K_LIBXSMM_INCLUDE_DIRS};${CP2K_LIBXSMM_PREFIX}/include")
endif()
target_link_libraries(cp2k::LibXSMM INTERFACE cp2k::LibXSMM::${__lib})
endif()
endforeach()
endif()
mark_as_advanced(
CP2K_LIBXSMM_INCLUDE_DIRS CP2K_LIBXSMM_LIBRARY_DIRS
CP2K_LIBXSMMNOBLAS_LINK_LIBRARIES CP2K_LIBXSMMEXT_LINK_LIBRARIES
CP2K_LIBXSMMF_LINK_LIBRARIES CP2K_LIBXSMM_LINK_LIBRARIES)

View file

@ -0,0 +1,61 @@
#!-------------------------------------------------------------------------------------------------!
#! CP2K: A general program to perform molecular dynamics simulations !
#! Copyright 2000-2026 CP2K developers group <https://cp2k.org> !
#! !
#! SPDX-License-Identifier: GPL-2.0-or-later !
#!-------------------------------------------------------------------------------------------------!
# Copyright (c) 2022- ETH Zurich
#
# authors : Mathieu Taillefumier
include(FindPackageHandleStandardArgs)
include(cp2k_utils)
cp2k_set_default_paths(LIBINT2 "Libint2")
find_package(PkgConfig REQUIRED)
if(PKG_CONFIG_FOUND)
pkg_check_modules(CP2K_LIBINT2 IMPORTED_TARGET GLOBAL libint2)
endif()
if(NOT CP2K_LIBINT2_FOUND)
cp2k_find_libraries(LIBINT2 int2)
endif()
if(NOT CP2K_LIBINT2_INCLUDE_DIRS)
cp2k_include_dirs(LIBINT2 "libint2.h;libint2/atom.h")
endif()
find_file(
CP2K_LIBINT2_MOD_FILE
NAMES "libint_f.mod"
PATHS "${CP2K_LIBINT2_ROOT}/include" "${CP2K_LIBINT2_ROOT}/include/libint2")
if(NOT CP2K_LIBINT2_MOD_FILE)
message(FATAL_ERROR "Libint2 : Fortran support is missing")
endif()
find_package_handle_standard_args(
Libint2 CP2K_LIBINT2_FOUND CP2K_LIBINT2_INCLUDE_DIRS
CP2K_LIBINT2_LINK_LIBRARIES)
if(CP2K_LIBINT2_FOUND)
if(NOT TARGET cp2k::Libint2::int2)
add_library(cp2k::Libint2::int2 INTERFACE IMPORTED)
endif()
if(CP2K_LIBINT2_INCLUDE_DIRS)
set_target_properties(
cp2k::Libint2::int2 PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
"${CP2K_LIBINT2_INCLUDE_DIRS}")
endif()
set_target_properties(
cp2k::Libint2::int2 PROPERTIES INTERFACE_LINK_LIBRARIES
${CP2K_LIBINT2_LINK_LIBRARIES})
endif()
mark_as_advanced(CP2K_LIBINT2_FOUND CP2K_LIBINT2_LINK_LIBRARIES
CP2K_LIBINT2_INCLUDE_DIRS)

View file

@ -321,6 +321,8 @@ foreach(_libtype "ST" "DYN")
TOLOWER "${_mpi_impl}_${_iface}_${_bits}_${_threading}_${_libtype}"
_tgt_config)
set(_scalapack_tgt cp2k::BLAS::MKL::scalapack_${_tgt_config})
if(_mkl_blacs_lib
AND TARGET ${_mkl_tgt}
AND TARGET MPI::MPI_CXX
@ -346,10 +348,7 @@ foreach(_libtype "ST" "DYN")
if(_mkl_scalapack_lib AND NOT TARGET
cp2k::BLAS::MKL::scalapack_${_tgt_config})
set(_scalapack_libs "${_mkl_scalapack_lib}")
if(TARGET cp2k::BLAS::MKL::blacs_${_tgt_config})
list(APPEND _scalapack_libs cp2k::BLAS::MKL::blacs_${_tgt_config})
endif()
set(_scalapack_libs "${_mkl_scalapack_lib}" "${_blacs_tgt}")
add_library(cp2k::BLAS::MKL::scalapack_${_tgt_config} INTERFACE
IMPORTED)
set_target_properties(
@ -376,12 +375,19 @@ if(MKL_FOUND)
set(BLAS_mkl_INTFACE "intel")
endif()
if(CP2K_BLAS_THREADING STREQUAL "sequential")
set(BLAS_mkl_thread__ "seq")
elseif(CP2K_BLAS_THREADING MATCHES
"^(thread|gnu-thread|intel-thread|openmp)$")
if(CP2K_BLAS_THREADING MATCHES "thread|gnu-thread")
set(BLAS_mkl_thread__ "omp")
elseif(CP2K_BLAS_THREADING STREQUAL "tbb-thread")
endif()
if(CP2K_BLAS_THREADING MATCHES "sequential")
set(BLAS_mkl_thread__ "seq")
endif()
if(CP2K_BLAS_THREADING MATCHES "intel-thread")
set(BLAS_mkl_thread__ "intel")
endif()
if(CP2K_BLAS_THREADING MATCHES "tbb")
set(BLAS_mkl_thread__ "tbb")
endif()

View file

@ -25,9 +25,7 @@ endif()
if(NOT CP2K_MIMIC_FOUND)
find_library(CP2K_MIMIC_LIBRARIES mclf PATH_SUFFIXES MiMiC)
find_library(CP2K_MIMICc_LIBRARIES mcl PATH_SUFFIXES MiMiC)
if(CP2K_MIMIC_LIBRARIES AND CP2K_MIMICc_LIBRARIES)
set(CP2K_MIMIC_FOUND True)
endif()
set(CP2K_MIMIC_FOUND True)
endif()
if(CP2K_MIMIC_FOUND)

View file

@ -12,7 +12,7 @@
include(FindPackageHandleStandardArgs)
include(cp2k_utils)
cp2k_set_default_paths(NVHPC "NVHPC")
cp2k_set_default_paths(CP2K_NVHPC "NVHPC")
find_library(
CP2K_NVHPC_BLAS_LP64
@ -55,39 +55,36 @@ find_path(
find_package_handle_standard_args(
NVHPCBlas
DEFAULT_MSG
CP2K_NVHPC_BLAS_INCLUDE_DIRS_ilp64
CP2K_NVHPC_INCLUDE_DIRS_ipl64
CP2K_NVHPC_BLAS_INCLUDE_DIRS_lp64
CP2K_NVHPC_BLAS_ILP64
CP2K_NVHPC_BLAS_LP64
CP2K_NVHPC_LAPACK_ILP64
CP2K_NVHPC_LAPACK_LP64)
set(CP2K_NVHPCBLAS_FOUND ${NVHPCBlas_FOUND})
set(CP2K_BLAS_VENDOR "NVHPCBlas")
set(CP2K_NVHPCBLAS_FOUND "ON")
if(CP2K_NVHPCBLAS_FOUND)
set(CP2K_BLAS_VENDOR "NVHPCBlas")
if(NOT TARGET cp2k::BLAS::NVHPCBlas::nvhpcblas)
add_library(cp2k::BLAS::NVHPCBlas::nvhpcblas INTERFACE IMPORTED)
add_library(cp2k::BLAS::NVHPCBlas::blas ALIAS
cp2k::BLAS::NVHPCBlas::nvhpcblas)
endif()
if(CP2K_BLAS_INTERFACE MATCHES "64bits")
set(CP2K_NVHPC_BLAS_LINK_LIBRARIES
"${CP2K_NVHPC_LAPACK_ILP64};${CP2K_NVHPC_BLAS_ILP64}")
set(CP2K_NVHPC_BLAS_INCLUDE_DIRS "${CP2K_NVHPC_BLAS_INCLUDE_DIRS_ilp64}")
else()
set(CP2K_NVHPC_BLAS_LINK_LIBRARIES
"${CP2K_NVHPC_LAPACK_LP64};${CP2K_NVHPC_BLAS_LP64}")
set(CP2K_NVHPC_BLAS_INCLUDE_DIRS "${CP2K_NVHPC_BLAS_INCLUDE_DIRS_lp64}")
endif()
set_target_properties(
cp2k::BLAS::NVHPCBlas::nvhpcblas
PROPERTIES INTERFACE_LINK_LIBRARIES "${CP2K_NVHPC_BLAS_LINK_LIBRARIES}"
INTERFACE_INCLUDE_DIRECTORIES "${CP2K_NVHPC_BLAS_INCLUDE_DIRS}")
if(NOT TARGET cp2k::BLAS::NVHPCBlas::nvhpcblas)
add_library(cp2k::BLAS::NVHPCBlas::nvhpcblas INTERFACE IMPORTED)
add_library(cp2k::BLAS::NVHPCBlas::blas ALIAS
cp2k::BLAS::NVHPCBlas::nvhpcblas)
endif()
if(CP2K_BLAS_INTERFACE MATCHES "64bits")
set(CP2K_NVHPC_BLAS_LINK_LIBRARIES
"${CP2K_NVHPC_LAPACK_ILP64} ${CP2K_NVHPC_BLAS_ILP64}")
set(CP2K_NVHPC_BLAS_INCLUDE_DIRS "${CP2K_NVHPC_INCLUDE_DIRS_ipl64}")
else()
set(CP2K_NVHPC_BLAS_LINK_LIBRARIES "${CP2K_NVHPC_LAPACK_LP64}
${CP2K_NVHPC_BLAS_LP64}")
set(CP2K_NVHPC_BLAS_INCLUDE_DIRS "${CP2K_NVHPC_INCLUDE_DIRS_pl64}")
endif()
set_target_properties(
cp2k::BLAS::NVHPCBlas::nvhpcblas
PROPERTIES INTERFACE_LINK_LIBRARIES "${CP2K_NVHPC_BLAS_LINK_LIBRARIES}"
INTERFACE_INCLUDE_DIRECTORIES "${CP2K_NVHPC_BLAS_INCLUDE_DIRS}")
mark_as_advanced(CP2K_NVHPCBLAS_FOUND CP2K_NVHPC_BLAS_INCLUDE_DIRS
CP2K_NVHPC_BLAS_LINK_LIBRARIES CP2K_BLAS_VENDOR)

View file

@ -1,31 +0,0 @@
#!-------------------------------------------------------------------------------------------------!
#! CP2K: A general program to perform molecular dynamics simulations !
#! Copyright 2000-2026 CP2K developers group <https://cp2k.org> !
#! !
#! SPDX-License-Identifier: GPL-2.0-or-later !
#!-------------------------------------------------------------------------------------------------!
include(FindPackageHandleStandardArgs)
include(cp2k_utils)
cp2k_set_default_paths(NCCL "Nccl")
cp2k_find_libraries(NCCL "nccl")
cp2k_include_dirs(NCCL "nccl.h")
find_package_handle_standard_args(Nccl DEFAULT_MSG CP2K_NCCL_LINK_LIBRARIES
CP2K_NCCL_INCLUDE_DIRS)
if(CP2K_NCCL_FOUND AND NOT TARGET cp2k::NCCL::nccl)
add_library(cp2k::NCCL::nccl INTERFACE IMPORTED)
set_target_properties(
cp2k::NCCL::nccl PROPERTIES INTERFACE_LINK_LIBRARIES
"${CP2K_NCCL_LINK_LIBRARIES}")
set_target_properties(
cp2k::NCCL::nccl PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
"${CP2K_NCCL_INCLUDE_DIRS}")
endif()
mark_as_advanced(CP2K_NCCL_LINK_LIBRARIES)
mark_as_advanced(CP2K_NCCL_INCLUDE_DIRS)
mark_as_advanced(CP2K_NCCL_FOUND)

View file

@ -25,7 +25,7 @@ endif()
if(NOT CP2K_OPENBLAS_FOUND)
set(CP2K_OPENBLAS64_ROOT ${CP2K_OPENBLAS_ROOT})
set(CP2K_OPENBLAS_THREADS_ROOT ${CP2K_OPENBLAS_ROOT})
set(CP2K_OPENBLA_THREADS_ROOT ${CP2K_OPENBLAS_ROOT})
cp2k_find_libraries(OPENBLAS "openblas")
cp2k_find_libraries(OPENBLAS64 "openblas64")
cp2k_find_libraries(OPENBLAS_THREADS "openblas_threads;openblas_omp")

View file

@ -30,41 +30,6 @@ if(NOT CP2K_CONFIG_PACKAGE)
CP2K_SCALAPACK_LINK_LIBRARIES cp2k::BLAS::SCI::scalapack_link
INTERFACE_LINK_LIBRARIES)
set(CP2K_SCALAPACK_FOUND yes)
elseif(CP2K_SCALAPACK_VENDOR MATCHES "NVPL")
if(CP2K_BLAS_INTERFACE MATCHES "64bits")
set(_nvpl_int_type "ilp64")
else()
set(_nvpl_int_type "lp64")
endif()
set(_nvpl_mpi_type "${CP2K_NVPL_SCALAPACK_MPI}")
if(_nvpl_mpi_type STREQUAL "auto")
if(MPI_Fortran_LIBRARY_VERSION_STRING MATCHES "Open MPI[^0-9]*([0-9]+)")
set(_nvpl_mpi_type "openmpi${CMAKE_MATCH_1}")
elseif(MPI_Fortran_LIBRARY_VERSION_STRING MATCHES "MPICH|HYDRA")
set(_nvpl_mpi_type "mpich")
else()
message(
FATAL_ERROR
"Could not determine the NVPL BLACS MPI interface. Set "
"CP2K_NVPL_SCALAPACK_MPI to mpich, openmpi3, openmpi4, or openmpi5."
)
endif()
endif()
find_package(nvpl REQUIRED COMPONENTS scalapack)
set(_nvpl_scalapack_target "nvpl::scalapack_${_nvpl_int_type}")
set(_nvpl_blacs_target "nvpl::blacs_${_nvpl_int_type}_${_nvpl_mpi_type}")
if(NOT TARGET "${_nvpl_scalapack_target}")
message(
FATAL_ERROR "NVPL ScaLAPACK target ${_nvpl_scalapack_target} not found")
endif()
if(NOT TARGET "${_nvpl_blacs_target}")
message(FATAL_ERROR "NVPL BLACS target ${_nvpl_blacs_target} not found")
endif()
set(CP2K_SCALAPACK_LINK_LIBRARIES
"${_nvpl_scalapack_target};${_nvpl_blacs_target}")
set(CP2K_SCALAPACK_FOUND yes)
else() # if(CP2K_SCALAPACK_VENDOR MATCHES "GENERIC|auto")
if(TARGET cp2k::BLAS::MKL::scalapack_link)
message(

View file

@ -24,17 +24,15 @@ else()
CP2K_LIBSMEAGOL_LINK_LIBRARIES)
endif()
if(CP2K_LIBSMEAGOL_FOUND)
if(NOT TARGET cp2k::libsmeagol::smeagol)
add_library(cp2k::libsmeagol::smeagol INTERFACE IMPORTED)
if(NOT TARGET cp2k::libsmeagol::smeagol)
add_library(cp2k::libsmeagol::smeagol INTERFACE IMPORTED)
set_target_properties(
cp2k::libsmeagol::smeagol PROPERTIES INTERFACE_LINK_LIBRARIES
"${CP2K_LIBSMEAGOL_LINK_LIBRARIES}")
if(CP2K_LIBSMEAGOL_INCLUDE_DIRS)
set_target_properties(
cp2k::libsmeagol::smeagol PROPERTIES INTERFACE_LINK_LIBRARIES
"${CP2K_LIBSMEAGOL_LINK_LIBRARIES}")
if(CP2K_LIBSMEAGOL_INCLUDE_DIRS)
set_target_properties(
cp2k::libsmeagol::smeagol PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
"${CP2K_LIBSMEAGOL_INCLUDE_DIRS}")
endif()
cp2k::libsmeagol::smeagol PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
"${CP2K_LIBSMEAGOL_INCLUDE_DIRS}")
endif()
endif()

View file

@ -11,7 +11,6 @@ include(FindPackageHandleStandardArgs)
include(cp2k_utils)
cp2k_set_default_paths(UCC "ucc")
cp2k_set_default_paths(UCX "ucx")
cp2k_find_libraries(UCC "ucc")
cp2k_find_libraries(UCX "ucs")
@ -24,27 +23,23 @@ find_package_handle_standard_args(
ucc DEFAULT_MSG CP2K_UCC_INCLUDE_DIRS CP2K_UCC_LINK_LIBRARIES
CP2K_UCX_LINK_LIBRARIES)
if(NOT CP2K_UCX_FOUND)
message(FATAL_ERROR "ucx required by CuSolverMP")
endif()
if(NOT TARGET cp2k::UCC::ucx)
if(CP2K_UCX_FOUND AND NOT TARGET cp2k::UCC::ucx)
add_library(cp2k::UCC::ucx INTERFACE IMPORTED)
set_target_properties(cp2k::UCC::ucx PROPERTIES INTERFACE_LINK_LIBRARIES
"${CP2K_UCX_LINK_LIBRARIES}")
else()
message(FATAL_ERROR "ucx required by CuSolverMP")
endif()
if(NOT CP2K_UCC_FOUND)
message(FATAL_ERROR "ucc required by CuSolverMP")
endif()
if(NOT TARGET cp2k::UCC::ucc)
if(CP2K_UCC_FOUND AND NOT TARGET cp2k::UCC::ucc)
add_library(cp2k::UCC::ucc INTERFACE IMPORTED)
set_target_properties(
cp2k::UCC::ucc PROPERTIES INTERFACE_LINK_LIBRARIES
"${CP2K_UCC_LINK_LIBRARIES};cp2k::UCC::ucx")
set_target_properties(cp2k::UCC::ucc PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
"${CP2K_UCC_INCLUDE_DIRS}")
else()
message(FATAL_ERROR "ucc required by CuSolverMP")
endif()
mark_as_advanced(CP2K_UCX_LINK_LIBRARIES)

View file

@ -13,12 +13,8 @@ function(cp2k_set_default_paths _varname _package_name)
# find_library should work when ${PACKAGE_ROOT} is given to cmake
# (-DPACKAGE_ROOT=bla) but I use only one variable syntax CP2K_PACKAGE_PREFIX
set(CP2K_${_varname}_PREFIX_TMP "")
set(_cp2k_root_var "CP2K_${_varname}_ROOT")
set(_package_root_var "${_package_name}_ROOT")
if(DEFINED ${_cp2k_root_var})
set(CP2K_${_varname}_PREFIX_TMP "${${_cp2k_root_var}}")
elseif(DEFINED ${_package_root_var})
set(CP2K_${_varname}_PREFIX_TMP "${${_package_root_var}}")
if(DEFINED ${_package_name}_ROOT)
set(CP2K_${_varname}_PREFIX_TMP "${${_varname}_ROOT}")
endif()
# search common environment variables names
@ -79,7 +75,7 @@ function(cp2k_include_dirs _package_name _library_include_file)
NAMES ${_library_include_file}
PATHS "${CP2K_${_package_name}_ROOT}"
HINTS "${CP2K_${_package_name}_ROOT}"
PATH_SUFFIXES "include" "include/${_package_name}" "${_package_name}")
PATH_SUFFIXES "include" "include/${_pacakge_name}" "${_package_name}")
set(CP2K_${_package_name}_INCLUDE_DIRS
"${CP2K_${_package_name}_INCLUDE_DIRS_TMP}"
@ -126,7 +122,6 @@ function(cp2k_compare_src_with_list _list_files _extension _exclude_list)
set(found_list_size_ 0)
endfunction()
# cmake-lint: disable=R0912,R0915
macro(cp2k_FindPackage name)
#[===[.md
# cp2k_FindPackage
@ -218,7 +213,7 @@ macro(cp2k_FindPackage name)
list(APPEND ARGS_PKG_MODULE_SPECS
"${_pkg_name}>=${${name}_FIND_VERSION_MIN}")
endforeach()
elseif(${name}_FIND_VERSION_EXACT)
elseif({${name}_FIND_VERSION_EXACT)
# Requesting exact version
foreach(_pkg_name IN LISTS ARGS_PKG_MODULE_NAMES)
list(APPEND ARGS_PKG_MODULE_SPECS

Binary file not shown.

Binary file not shown.

View file

@ -1,12 +1,12 @@
# Norm-Conserving Pseudopotentials and Basis Sets To Explore Lanthanide Chemistry in Complex Environments
# Jun-Bo Lu, David C. Cantu, Manh-Thuong Nguyen, Jun Li, Vassiliki-Alexandra Glezakou, Roger Rousseau
# Jun-Bo Lu, David C. Cantu, Manh-Thuong Nguyen, Jun Li, Vassiliki-Alexandra Glezakoui, Roger Rousseau
# J. Chem. Theory Comput. 2019, 15, 11, 5987-5997
# https://doi.org/10.1021/acs.jctc.9b00553
# Supporting Information
# Norm-conserving pseudopotentials and basis sets to explore
# Lanthanide chemistry in complex environments
# Jun-Bo Lu, David C. Cantu, Manh-Thuong Nguyen, Jun Li, Vassiliki-Alexandra Glezakou, Roger Rousseau
# Jun-Bo Lu, David C. Cantub , Manh-Thuong Nguyen, Jun Lia, Vassiliki-Alexandra Glezakou, Roger Rousseau
#
# Department of Chemistry and Key Laboratory of Organic Optoelectronics & Molecular Engineering
# of the Ministry of Education, Tsinghua University, Beijing 100084, China

View file

@ -1 +0,0 @@
BASIS_MOLOPT_UZH_2026.2

11956
data/BASIS_MOLOPT_UZH Normal file

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -4773,7 +4773,7 @@ Xe aug-cc-Q
2 2 2 1 1
0.105292485963 1.0000000000
Cs ccGRB-T-q9
Cs ccGRB-D-q9
3
1 0 1 7 4 3
3.13827399141 -0.1167213591 -0.0530692069 0.0348416195 0.5078919192 0.0294041834 0.0060861461 0.0835291492
@ -4789,7 +4789,7 @@ Xe aug-cc-Q
3 3 3 1 1
0.105292485963 1.0000000000
Cs ccGRB-Q-q9
Cs ccGRB-D-q9
4
1 0 1 8 5 4
3.16709967521 -0.1140254941 -0.0505607899 0.0167757587 -0.4517736719 0.0369490053 0.0284990428 0.0054727966 0.0884631015 0.1750464824

View file

@ -1,500 +0,0 @@
################################################################################
#
# Multipole-conserving (MPC) GTH pseudopotentials
# ------------------------------------------------
#
# Copyright (C) 2025 Andris Gulans, Anders Brakestad, Stig Rune Jensen,
# Luca Frediani, and Stefan Goedecker
#
# Reference:
# A. Gulans, A. Brakestad, S. R. Jensen, L. Frediani, and S. Goedecker,
# "A synthetic pseudopotential benchmark for testing production
# pseudopotentials and constructing pseudopotentials with chemical accuracy"
# (2025).
#
# MPC concept:
# Norm-conserving pseudopotentials conserve the electrostatic monopole of
# the charge inside the core region. MPC extends this idea by fitting also
# the higher multipoles generated by hybridized atomic orbitals, e.g.
#
# psi_b(r) = psi_2s(r) + psi_2px(r)
# psi_a(r) = psi_2s(r) - psi_2px(r)
# rho_b(r) = 2 |psi_b(r)|^2
#
# with charge multipoles
#
# Q_lm[rho] = int rho(r) r^l Y_lm(rhat) d^3r
# = int_0^infty r^(l+2) dr int dOmega rho(r) Y_lm(rhat).
#
# For orbitals that participate in bonding, MPC fits the all-electron (AE)
# and pseudo (PS) moments of orbital products inside a cutoff radius rc:
#
# int_0^rc r^(l+2) R^PS_n1l1(r) R^PS_n2l2(r) dr
# * int dOmega Y_l1m1(rhat) Y_l2m2(rhat) Y_lm(rhat)
# ~= same expression with R^AE instead of R^PS.
#
# The l=0 case is the usual norm/monopole conservation. Matching higher
# multipoles improves the electrostatic interactions of hybridized bonding
# charges, and hence the transferability of the pseudopotential.
#
# Source format: HGH/GTH psppar, PBE (ixc=-101130).
# Potential names use the GTH-MPC-PBE-qX convention to identify the
# multipole-conserving construction. MPC and NLCC are independent concepts:
# MPC denotes the multipole-conserving fit; selected entries additionally
# contain an NLCC core-density correction.
#
# CP2K c_core conversion for entries containing an NLCC block:
#
# c_core = qcore * 4*pi*(Z-Zion)/(sqrt(2*pi)*r_core)^3
#
# Entries intentionally omit a generic GTH-MPC-PBE alias so each potential is
# selected explicitly by its qX valence charge.
#
################################################################################
# PBE functional
#
# source: psppar.H; zatom=1; zion=1; date=20200603; pspcod=10; ixc=-101130
H GTH-MPC-PBE-q1
1
0.15000000000000 2 -5.21038103601596 0.83228852908393
0
#
# source: psppar.Li; zatom=3; zion=3; date=20200622; pspcod=10; ixc=-101130
Li GTH-MPC-PBE-q3
3
0.12911182006012 2 -20.60396614785263 3.48845388100792
1
0.20809331048684 1 0.06607910617214
#
# source: psppar.Be; zatom=4; zion=4; date=20200622; pspcod=10; ixc=-101130
Be GTH-MPC-PBE-q4
4
0.15757532815614 2 -24.78078699284349 4.64339750649381
1
0.22139501435505 2 -0.91115250424055 0.85275009149707
-0.74957083455713
#
# source: psppar.B; zatom=5; zion=5; date=20200514; pspcod=10; ixc=-101130
B GTH-MPC-PBE-q5
4 1
0.10454903445746 1 -42.84494121716708
2
0.11035981316993 2 1.13521516825078 0.82583265578722
1.17469554290255
0.11919729897286 1 3.35320424605834
#
# source: psppar.C; zatom=6; zion=6; date=20200603; pspcod=10; ixc=-101130
C GTH-MPC-PBE-q6
4 2
0.10442926427019 1 -53.59126100299123
2
0.10564388844992 2 -0.31569041006470 1.97864614582159
1.46126942201952
0.11172118378821 1 5.54281105784130
#
# source: psppar.N; zatom=7; zion=7; date=20210605; pspcod=10; ixc=-101130
N GTH-MPC-PBE-q7
4 3
0.11242621264024 1 -62.57195769099587
2
0.10759186342789 2 -2.19055984867820 3.62944727292246
1.54647966059246
0.11098059093681 1 9.08933712180711
#
# source: psppar.O; zatom=8; zion=8; date=20210608; pspcod=10; ixc=-101130
O GTH-MPC-PBE-q8
4 4
0.11500000000015 1 -69.16126397188863
2
0.09376144007671 2 -6.15865550189914 -1.43502477505964
13.92040510531785
0.11281705134658 1 10.18567031314194
#
# source: psppar.F; zatom=9; zion=9; date=20210608; pspcod=10; ixc=-101130
F GTH-MPC-PBE-q9
4 5
0.11023852953561 1 -74.26457978288656
2
0.13175930842657 2 -5.69938083542675 7.93330656747557
-6.38574869374265
0.10815313158517 1 10.70620830176562
#
# source: psppar.Na; zatom=11; zion=9; date=20200703; pspcod=12; ixc=-101130
Na GTH-MPC-PBE-q9
3 6
0.19629640089675 2 29.19070512573715 -5.18950946243615
NLCC 1
0.18781308469565 1 218.13155327060389
2
0.33413547556373 3 4.52895581080606 3.00817674630974 -3.90590742941645
-9.55991114228038 6.28649288367896
-3.21756572448228
0.17834139891211 2 -27.70521938139951 8.09927840536277
-0.97270516662278
#
# source: psppar.Mg; zatom=12; zion=10; date=20200703; pspcod=12; ixc=-101130
Mg GTH-MPC-PBE-q10
4 6
0.20161386811616 2 29.29180556655679 -5.45718102194242
NLCC 1
0.18937938473644 1 211.47576167474958
2
0.29267478513464 3 4.06562767494408 3.18783427608112 -3.76531865795533
-9.70271086996774 6.00340336421860
-2.88453954469412
0.19033372194496 2 -27.88419783666498 8.18527889954318
-0.48178252147845
#
# source: psppar.Al; zatom=13; zion=11; date=20200727; pspcod=12; ixc=-101130
Al GTH-MPC-PBE-q11
4 7
0.29132308902740 1 -7.66470685557861
NLCC 1
0.16000000000000 1 352.84586365026308
2
0.24202268683465 3 10.44426391448928 1.54008069340948 -2.28688914089353
-4.44280472488722 -0.53183708311948
2.96389772966515
0.16794287908325 2 -13.50255150699894 -3.80790785591445
9.24813001340789
#
# source: psppar.Si; zatom=14; zion=12; date=20200620; pspcod=12; ixc=-101130
Si GTH-MPC-PBE-q12
4 8
0.26906401643720 1 -8.24939363614006
NLCC 1
0.16291874700232 1 275.34367537929251
2
0.26147974553052 3 2.69418163994313 7.34684002281998 -2.07995295987211
-6.89289445751254 -4.57648945396954
8.23490939060111
0.25071335550345 2 -21.27271068265838 12.42714629689383
-7.92728515844077
#
# source: psppar.P; zatom=15; zion=13; date=20200701; pspcod=12; ixc=-101130
P GTH-MPC-PBE-q13
4 9
0.27035740926636 1 -10.19557516287410
NLCC 1
0.18107738804300 1 259.68818673855907
2
0.32630393543026 3 9.65091440788825 -3.19365097210689 2.62441416534746
-10.04476734443697 2.08069624233179
3.63732298025215
0.26786764816966 2 -21.09926796819445 13.38897119782337
-9.59342829852228
#
# source: psppar.S; zatom=16; zion=14; date=20200702; pspcod=12; ixc=-101130
S GTH-MPC-PBE-q14
4 10
0.22308116828748 1 -11.88690307704700
NLCC 1
0.14360502299267 1 419.56213533779686
2
0.18709427968593 3 9.42562973909626 8.64023950300721 -5.50898084997528
-3.38496766911945 -4.73204201433474
7.40163684882062
0.20647194591090 2 -29.65044715348547 17.19288601193370
-10.75061412402404
#
# source: psppar.Cl; zatom=17; zion=15; date=20200606; pspcod=12; ixc=-101130
Cl GTH-MPC-PBE-q15
4 11
0.13591022143832 1 -0.73327853213339
NLCC 1
0.13496699202782 1 635.81525790638693
2
0.15422702713177 3 31.97210832838817 6.74642814822497 -13.67161294738851
-3.30752293122772 0.39206109861280
5.58447606436170
0.21785526757594 2 -20.48075831702418 13.35333552466377
-9.90623734666835
#
# source: psppar.K; zatom=19; zion=9; date=20210501; pspcod=12; ixc=-101130
K GTH-MPC-PBE-q9
3 6
0.21411637556325 2 -8.08262244072304 -2.98403510393556
NLCC 1
0.17613336318145 1 1460.20952833853266
2
0.23284626216003 3 18.25498034458694 0.92967730737392 -3.28789684967476
2.47629149211555 2.26503823455225
4.69493410146714
0.27547146370751 3 10.54759199626624 0.79987074459018 -0.23916032510183
-1.11155775526364 -0.46434416076029
1.30115589130906
#
# source: psppar.Ca; zatom=20; zion=10; date=20210430; pspcod=12; ixc=-101130
Ca GTH-MPC-PBE-q10
4 6
0.18032325728140 2 -7.96295967995462 -1.72731639619400
NLCC 1
0.25338210772958 1 490.46975106882593
2
0.21745627530885 3 18.28839233874969 -0.59261536060746 -2.27636541660219
3.37191948393712 2.95496594817167
5.02188736623509
0.25886862426616 3 10.69899508726989 1.39222081402185 -0.15630641383213
-0.79855408514500 -0.61901648381288
1.16544921004311
#
# source: psppar.Sc; zatom=21; zion=11; date=20210213; pspcod=12; ixc=-101130
Sc GTH-MPC-PBE-q11
4 6 1
0.34237268077427 1 -0.02293405214969
NLCC 1
0.18503524965681 1 1259.43758659863283
3
0.32109802903114 3 13.52669258942180 3.87705165479189 -5.50226146754139
1.42797573971435 -1.14877248169009
2.45569072811122
0.33274847786536 3 6.04021170603947 3.47202869062425 -0.26391704933151
-11.30597371094451 1.98599563479157
0.41051302716976
0.21219454821407 2 -3.62833637033709 -1.73312778942658
0.99548104418498
#
# source: psppar.Ti; zatom=22; zion=20; date=20210126; pspcod=12; ixc=-101130
Ti GTH-MPC-PBE-q20
6 12 2
0.10744537000000 0
NLCC 1
0.10750863981019 1 1284.22155612663664
3
0.21940184433913 2 24.67538494091689 -11.74146458918433
21.07722799394976
0.21361599720771 2 -22.10332600372438 16.26985604825476
-18.66330480798636
0.25066325060363 1 0.00546616027201
#
# source: psppar.V; zatom=23; zion=13; date=20210411; pspcod=12; ixc=-101130
V GTH-MPC-PBE-q13
4 6 3
0.27517762000000 0
NLCC 1
0.17440528903176 1 1504.04596097193348
3
0.29315386949600 3 13.65507143313891 7.39817991776004 -6.85347929414602
0.80397349111609 -2.29230107911158
3.97042497279931
0.27405177075026 3 9.98260189340021 2.69104382867149 -0.09448998925349
-8.38272779921355 0.03829939059226
1.74126054303488
0.18635407577995 2 -8.70767875939882 -0.39536690855737
1.59939395044204
#
# source: psppar.Cr; zatom=24; zion=14; date=20210403; pspcod=12; ixc=-101130
Cr GTH-MPC-PBE-q14
3 6 5
0.27895002000000 0
NLCC 1
0.17086385561345 1 1599.51919048950549
3
0.28351164582959 3 14.28343127428783 7.37037472199635 -6.53058693746250
-0.11123777581237 -2.20254445537591
3.92826828597909
0.27194885278611 3 10.01463987601001 2.26485215053604 -0.84731507827282
-7.15591757337656 -0.01156571729768
1.88773279547146
0.18942130379947 2 -8.72294925753834 -0.85654721074104
2.18375390737332
#
# source: psppar.Mn; zatom=25; zion=15; date=20210411; pspcod=12; ixc=-101130
Mn GTH-MPC-PBE-q15
4 6 5
0.25554276000000 0
NLCC 1
0.15737534603508 1 2047.05714928897532
3
0.27532719401740 3 14.99984084032039 8.42929716332426 -7.65091732459534
0.09817583700791 -2.48023431412042
4.51676214379425
0.24048877889181 3 11.54261543108316 1.81242783754854 -0.03487642204098
-7.17834722363293 0.80722564629020
0.33480556021210
0.16636714114343 2 -8.69749186029548 -2.48338513199224
3.09737537357712
#
# source: psppar.Fe; zatom=26; zion=16; date=20210413; pspcod=12; ixc=-101130
Fe GTH-MPC-PBE-q16
4 6 6
0.26127724000000 0
NLCC 1
0.15499643385455 1 2142.76697005388360
3
0.26773083677267 3 15.18234703557230 8.88256185473846 -7.74303309328161
-0.92103607273864 -2.63953890529492
4.99718450639144
0.24568744491923 3 14.20583200007404 -0.13298181220702 -0.49476289827896
-6.29411742659549 0.37496754356789
1.31758314521080
0.16927529907025 2 -9.65830128106300 -2.21377434733804
2.98125114584934
#
# source: psppar.Co; zatom=27; zion=17; date=20210417; pspcod=12; ixc=-101130
Co GTH-MPC-PBE-q17
4 6 7
0.30879754000000 0
NLCC 1
0.15902512829840 1 1984.00516121086525
3
0.26904897371224 3 11.69871673202627 7.83530529788853 -6.75183434071066
-2.43581701839808 -1.79828604433429
4.05283080113709
0.29398953679109 3 5.93413004574420 0.23526631512157 0.57111981187369
-5.31181266082947 -0.33776466614481
1.48931286767601
0.17123347834299 2 -6.05685914126775 -3.28851295382212
-0.40116375630101
#
# source: psppar.Ni; zatom=28; zion=18; date=20210416; pspcod=12; ixc=-101130
Ni GTH-MPC-PBE-q18
4 6 8
0.29207407000000 0
NLCC 1
0.15109180613969 1 2313.22204900856968
3
0.24753987876535 3 13.50331185001111 10.21219439965361 -8.32017053374250
-3.06896895340399 -2.04783736451083
4.70699507834514
0.23526821311672 3 7.95062879978143 1.23883242014503 0.48979661022862
-5.48079318664226 -1.30404268147426
2.09978034193113
0.16202238323462 2 -5.12764996453382 -4.57195664493410
-0.02454477867206
#
# source: psppar.Cu; zatom=29; zion=19; date=20210215; pspcod=12; ixc=-101130
Cu GTH-MPC-PBE-q19
3 6 10
0.29769235000000 0
NLCC 1
0.15046986929661 1 2342.02448042044671
3
0.25375807187669 3 12.04098194507405 8.67969492212623 -6.97478873314255
-4.25164005686857 -1.70750639871733
4.31838633416375
0.30564069644288 3 3.85656937867876 -0.01514768335563 -0.56812494830060
-3.15251119251863 0.53824672201123
0.61737126969946
0.16443747002543 2 -6.50229648278565 -4.75001337873628
0.40559430828437
#
# source: psppar.Zn; zatom=30; zion=20; date=20210202; pspcod=12; ixc=-101130
Zn GTH-MPC-PBE-q20
4 6 10
0.21554424762735 1 20.19788806953730
NLCC 1
0.17970160066474 1 504.08277867717561
3
0.24276988366102 3 13.95384905901293 7.01056198147370 -9.02303054359064
3.17588196438396 -2.87782901754981
5.00471854778930
0.21262217231359 3 2.48576151867546 4.13819055221568 -4.72802477449156
3.40204021140976 -2.48306853350061
3.17570603685731
0.13957620276779 2 -11.68503818834517 -2.98567704364368
-3.96556814856214
#
# source: psppar.Ga; zatom=31; zion=21; date=20210528; pspcod=12; ixc=-101130
Ga GTH-MPC-PBE-q21
4 7 10
0.36641431496237 1 -0.88720709408953
NLCC 1
0.22464849797937 1 703.76798069292397
3
0.20806383736519 3 4.71840362535330 5.00465426369649 -1.88349294250463
3.21780611910995 -0.89726445014793
-4.62124436540348
0.25101496231058 2 -7.38778284925241 4.62560209778675
-5.54343715769045
0.19290174061420 1 -17.47814217032260
#
# source: psppar.Ge; zatom=32; zion=22; date=20210602; pspcod=12; ixc=-101130
Ge GTH-MPC-PBE-q22
4 8 10
0.36092490694740 1 -9.36717581275619
NLCC 1
0.19942760929068 1 817.61029726295521
3
0.20006820198874 3 -10.31493347193097 29.33153334510591 -11.16888875201415
-2.56483418172491 -10.86853709701219
11.60125512987251
0.29270514241876 2 2.41372860562653 -2.83595478407880
2.56103160007024
0.14776418400871 1 -27.35168765267485
#
# source: psppar.As; zatom=33; zion=23; date=20210526; pspcod=12; ixc=-101130
As GTH-MPC-PBE-q23
4 9 10
0.38930422494739 1 -8.84402538556668
NLCC 1
0.20338674493058 1 948.35758957238249
3
0.21969584133030 3 8.16569955298836 8.39450965492363 -6.43447712583620
-1.57793799720107 -3.73670282324891
4.55257471384879
0.29708031428311 2 -4.82148073223230 1.16766631335528
-0.27985658684481
0.15761934762306 1 -27.23545239095241
#
# source: psppar.Se; zatom=34; zion=24; date=20210529; pspcod=12; ixc=-101130
Se GTH-MPC-PBE-q24
4 10 10
0.36876605403135 1 -9.88416113558777
NLCC 1
0.19236809988151 1 1120.83296535649879
3
0.19838940151064 3 -0.24993451548854 17.87087629514775 -8.67347292086375
0.05648741654083 -7.90764248989669
7.41225694718136
0.27946762214918 2 -3.53931485976759 0.14830751451718
0.56402138520067
0.14938899638735 1 -29.81887721481769
#
# source: psppar.Br; zatom=35; zion=25; date=20210510; pspcod=12; ixc=-101130
Br GTH-MPC-PBE-q25
4 11 10
0.36575679715774 1 -10.14591893309538
NLCC 1
0.19168691622132 1 1132.82454255810899
3
0.19679162265913 3 -0.03244706442963 17.83621512191033 -10.15593593477214
-3.17388735278819 -4.72524623945969
5.14461715299437
0.27465189083439 2 -6.48767505748851 1.80600056394247
-0.66740298273003
0.14724683817521 1 -32.18275038820432
#
# source: psppar.Y; zatom=39; zion=11; date=20220909; pspcod=12; ixc=-101130
Y GTH-MPC-PBE-q11
4 6 1
0.47818621899480 1 0.94522820897045
NLCC 1
0.31585136867803 1 709.00582516026986
3
0.36090941247571 3 5.29364469700985 6.52807056734071 -5.50226146754139
4.19529003085839 -1.14877248169009
0.99770768778135
0.30732477527299 3 1.63347683351258 1.65706711670668 -0.26391704933151
0.78037093185524 1.98599563479157
-2.50040093394082
0.33350743918317 2 3.20660361117644 -1.48846373028481
1.71135028433087
#
# source: psppar_PBE_NR_MPC.Au; zatom=79; zion=33; date=20231215; pspcod=12; ixc=-101130
Au GTH-MPC-PBE-q33
3 6 10 14
0.28044482859388 1 23.08556154084568
NLCC 1
0.19254387969760 1 4339.21468013634603
4
0.22577773239440 3 14.59410209653008 14.35460885927382 -12.40323679881997
0.32739944796636 2.18375597779117
13.36920610794461
0.21869970156176 3 1.26203418499454 0.96287028296869 1.28926980593834
2.27343967651214 -1.30578795289945
12.02948761032872
0.28825489167728 2 2.99498063324890 2.34638816064647
0.32054529273801
0.21958587704622 1 -16.32282015375762

Binary file not shown.

View file

@ -1 +0,0 @@
POTENTIAL_UZH_2026.2

8052
data/POTENTIAL_UZH Normal file

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,478 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
Def2-TZVP realspace grid (Bohr) for species Al
sqr error : 7.364032138490654e-07
penalty : 4.229096630724015e-19
n points : 436
</preamble>
<grid_points>
-0.0299531884062228 0.07689121080043673 0.06157205627617639
0.008076584716495942 0.003658540312518634 -0.004178172530196313
-0.02581518188185573 -0.007194261864908938 0.02295032200965182
0.05949783772906944 0.01515173166428227 0.02131527856035315
-0.01303321852888456 0.04454111295470538 -0.04434460881726565
0.0227723565718158 -0.06631233348105851 0.08098824752075967
0.1122698574393945 0.0633538130450426 0.05891239044027481
0.07654972447546621 0.02130857603583742 -0.0789490819706697
0.05598103288158086 -0.1121927131539225 -0.04386499788450873
0.009422293275882664 -0.054618496709211 -0.03680959364283947
-0.1100006409727428 -0.0366714545961041 0.06089710800634544
-0.04564355989000853 0.1077738298316707 -0.07215110658116891
-0.08394411394296641 -0.03129859493745425 -0.04283001993916492
-0.0731812478815861 -0.04858693957415606 -0.1375486996547916
0.1698074803131314 -0.08293091835364746 0.03589277964588022
-0.17779288417836 0.07149088785569593 0.004896711991815698
0.0704111554510817 0.1752457358431965 -0.02261631265154708
-0.06480787670525404 -0.1757589404905356 0.02400039148913926
-0.01681670681821364 0.01432680411640046 0.1854576879661318
0.08358361754585236 -0.006223650340334337 -0.1804024993735135
0.1747654155093879 0.1142939657311507 0.1665767485045609
0.2209544028690791 0.08536268189742646 -0.1143368552387834
0.05375615331097911 -0.1814193641818522 0.1851681702539612
0.08788182359286008 -0.2128813010915134 -0.1254818532634853
-0.07491324612107722 0.2100244011868915 0.1017020314109998
-0.08303187702044666 0.1550228698070243 -0.1777666445967176
-0.217099660162473 -0.0736691749098536 0.1265822225307262
-0.1848309867728502 -0.09418710421163277 -0.1658076569302816
0.04682562315359454 0.3136396732335738 -0.06416782882325087
0.1162383294831721 0.2646582860805772 -0.3179567572233398
-0.1657495035974773 -0.2094843219569621 0.3018559449851997
-0.09869754157886963 -0.3184533895548472 0.01784823042805864
0.1886262895719497 -0.0483492798472766 0.3269024004183946
0.08728065614677948 0.01126493035295643 -0.3055889863801364
-0.1076520107166177 0.07499711265738057 0.2950799994597235
-0.2134083353040436 0.09228291033461605 -0.2993032890706925
0.2905365355984915 -0.1425753232103476 0.02026689748211253
0.1711131333919268 -0.3732355961496497 0.06025295372335168
-0.1693389505782305 0.4183140474053725 -0.07992438085646998
-0.2794707609978511 0.1806769618399406 -0.0009096515465905796
0.4545105911927799 -0.07904289382647055 0.1395571666497623
-0.4302929227877924 0.1349453449179684 -0.2192805232882739
0.2648266431257804 0.4498544124112931 -0.04420612100890754
-0.1892621284848287 -0.4503040043335377 -0.0149532435216624
0.007129191533565927 0.02817762321266241 0.5074381704207503
-0.004227706567235957 -0.03987384774021071 -0.504400515638121
0.335030252059319 0.1925136641074501 -0.01073093199583764
0.2978110031766364 -0.1181740246931659 -0.2485316535527027
0.1852965505928863 -0.355065252405606 0.3540535626274194
-0.05885135759844036 -0.2613257067093903 -0.2895332284875037
0.06246936456044237 0.3171127275592084 0.2333165072273263
-0.1949455246315429 0.3603012020115454 -0.4386096748013958
-0.3019920075147154 0.1854962630501064 0.2661381260445085
-0.3677267427736514 -0.1239068126255261 -0.01395340361301231
-0.09235191641445602 0.4658594877290944 0.3202697218126635
0.267271032921817 0.3265781452427813 -0.4497399501359177
-0.2528132186469999 -0.3531159347074116 0.3577524631558796
-0.09867618920401366 -0.4974684954855844 -0.3944968143370743
0.3428394586364349 0.2560519160141844 0.3279038052262978
0.4503234822229889 0.03983566529620691 -0.2693364223950978
-0.3349046282820004 0.1081107817624657 0.5338157386148853
-0.3681021655096881 -0.233787165550093 -0.2936395086242273
0.6198674802714734 0.1942811356871477 0.005018821421004882
0.2210857124288271 -0.4107968871221208 -0.254392370282589
-0.4767703080315462 0.3928810635255933 0.05683544652351228
-0.5050281224900464 -0.06221872901363276 0.1790152702992963
0.1731340769131456 0.3097494650064901 0.618583974702502
0.01778830681796536 0.3223177560575765 -0.7418710510575098
0.4325526741519627 -0.1015420523760367 0.4923193709575598
0.2977434005320185 -0.1508360391642148 -0.5779629959558731
-0.2202676431284718 0.1791810315145742 0.7977799609889883
-0.3468588618285502 -0.06801210381507808 -0.5843522295254823
-0.003161256253369566 -0.3388702786707163 0.6313043752023492
0.03256393967959907 -0.3285693345091434 -0.7918289268415922
0.3709481879682774 0.603558089469187 0.2132961437432828
0.03695625762457947 -0.6330137832139584 0.1172002109865603
0.08653981926542829 0.7874803272391385 -0.2946792514573353
0.2683077389263458 -0.6927243375063513 -0.3024919278906781
-0.2322941151894106 0.6820822647846705 0.3308959956052577
-0.2295121375700364 -0.7667522396390478 0.220808170743011
-0.01503225760531933 0.6433239251677355 -0.1216963933655285
-0.5197619420400164 -0.4232911739210035 -0.02895438855684149
0.7300178110220726 0.098634340881599 0.3261277058692065
-0.6971036565970592 0.2623951769738844 0.3047444139642006
0.5386605106796533 0.4198747880234776 -0.3764925939263669
-0.685262378977975 0.02393921010773447 -0.1674789747770589
0.5090329818332772 -0.3619365367967208 0.003714622548487303
-0.5483748098155315 -0.2875827412023894 0.42252183631542
0.6900278847675558 -0.2126909794526648 -0.2698020176301727
-0.858900239003492 -0.3310269102864702 -0.06418834960021311
0.9368236006669407 -0.1634561207454674 0.08640120092418899
-0.9426348845594053 0.319811906446172 -0.03081170138985171
0.3499604641359194 0.9429428373236073 0.02835935009237418
0.1161076620477358 -1.013700742362655 0.2139674727451601
-0.1677143863289155 0.08999941119216162 1.049207918882854
-0.1227539638191518 0.1589243943395861 -1.03805381131048
0.4285709689007246 0.5962254599659537 0.5989796809181896
0.5035750119564992 0.6191586535017857 -0.7337101168174641
0.4718219388520322 -0.5784481877664808 0.3191507745489692
0.6662377960290713 -0.6880398103124217 -0.2958496769849701
-0.7555793865745675 0.2990136599208638 0.6771933893429242
-0.501483382997739 0.5368991051091951 -0.3186285122412719
-0.194470601975375 -0.7214489329007369 0.8049789342224606
-0.4047917168498903 -0.6285340688693176 -0.373815630776584
-0.08319136741891028 0.7749963019514882 0.6711216617823363
-0.2712971489994846 0.7924699914275842 -0.6146332318056122
0.01767310302027362 -0.5098020734049931 0.7789049261197377
-0.08033014047323385 -0.8847716257361464 -0.5455236820110347
0.4620264406930374 -0.05920273258225931 0.8071709418861018
0.6082468875344331 -0.03887232976401126 -0.7106826487920634
-0.6749175665076218 -0.3472019438358804 0.5745071146991795
-0.6171449621186013 0.01335221426368437 -0.6559005514126651
0.8550368516643297 0.4388608910363868 -0.06840378454105719
0.7227605084966681 -0.6659339040632277 0.4668572192109512
-0.4924356637264362 0.8859327397932233 0.100004245930576
-0.6533495195377794 -0.8650739742850266 0.07818262513757029
0.2615226209779696 0.4973966206567271 1.137889263363404
0.7057954374984522 0.1450171256491472 -1.129281305234099
0.5471656710247786 -0.3120796734749726 1.050447005205101
0.3336896854164667 -0.4450566313076731 -0.9975662149923774
-0.6254870933350841 0.336888449358487 1.143429896462123
-0.1234369239504753 0.7502159831236723 -1.11793840114135
-0.1594870716918133 -0.5361012582409216 1.195390246563135
-0.600258911446798 -0.5002388778233509 -0.8059263582922265
0.5867536566688227 1.027596880495264 0.4787653707143001
0.3175649238953025 -1.137154759674447 0.6378809837630161
0.1920764101311227 1.221238352680787 -0.2555171395290988
0.5551476683896702 -1.060282861918262 -0.296984251098937
-0.3634706989191593 1.105466317570177 0.6081115925512044
-0.451740324750581 -1.174269919070236 0.5259328946276163
-0.6081021457648544 1.122848009503023 -0.3340059142513681
-0.4450971201547598 -1.194446637318147 -0.3635193042888226
0.9219355535730719 0.3191045890493331 0.5934804769332336
-1.133088924855681 0.5636345514787288 0.2072917197688611
1.081101184998571 0.6232382756489521 -0.2057380193980907
-0.82876373593011 0.368262683510131 -0.6723088429269582
1.221673724759868 -0.1822824744722442 0.2456074935559217
-0.9566294879577631 -0.3720106400103956 0.686671136357341
1.062281062403789 -0.2008846366882389 -0.4764859650378235
-1.162651360841929 -0.3227321705791271 -0.1798224846779156
1.557443400562686 -0.01856036463550316 0.003311326005056096
-1.567119852254963 0.1256569053926662 -0.02922098092201604
-0.3777222998091718 1.604636963795096 0.3162012596412677
0.401734324432434 -1.464740740397959 -0.1189323670208284
0.0795422545052074 -0.0157968608225161 1.618693686099802
-0.2623260494499525 -0.105995739622051 -1.307149392269428
1.30662188308 0.8199411547563487 0.3194776787709722
0.7618136760187694 1.03139381245336 -0.7466188746335403
0.8663656526835789 -0.6543814428342444 1.123728030366923
1.061024280876321 -0.733904243457847 -0.732316577085403
-0.562686489599204 0.9063869797185495 1.321492421692503
-1.156157488222123 0.8905197107877634 -0.7474267092415409
-0.8702330194716038 -0.6563353690645966 1.189289117601919
-0.9007105430160582 -0.6787814081110454 -0.9539702142234838
0.3922991928044224 1.093821689963704 1.10398845051891
-0.2581847107540607 1.457466580186813 -0.7501185214218398
0.07718040359848663 -1.158252050556898 1.242194927158098
0.09135443440536831 -0.9653022756981762 -1.044408407079444
1.070231877999481 0.2712014482080251 1.010884181441515
1.367577019997193 0.2725251622505065 -0.8687644649157957
-1.273419253597393 0.1454576031985959 0.8890768525168973
-1.032883211730571 0.317085332988379 -0.8370243830183939
0.57636546608299 1.495318248722983 0.06455967504796878
1.123436405580862 -0.8497173038783593 0.2705541195290977
-1.166201858788318 1.085330549566877 0.360401788293133
-1.247584687195402 -0.8359640880370002 0.1582765138033315
1.040242258704166 0.5307197929699018 1.506068935342886
0.3561821254287218 0.7956196048924311 -1.511853174120455
1.022534800451735 -0.6983361486142773 1.580981095458655
0.4232641308066936 -0.2992359700783669 -1.552841669026776
-0.0004330929345271485 0.7281334194593994 1.986427939745682
-0.6298344736905942 0.2552844568152394 -1.519581459069812
-1.072611119708847 0.01177725028552318 1.626500379854974
-0.4517183718440854 -0.9001365270315884 -1.551352138608087
0.9012733379670463 1.588613751147093 0.6888395294819124
0.8312698253257269 -1.549395744973917 0.4533274023306141
0.4978264256494252 1.757720741371563 -0.8755241912784352
0.4704701419273719 -1.501509672771107 -0.8977750840658397
-0.07450541094712955 1.715544510959068 1.196493825632233
-0.4921974085330336 -1.616078234191154 0.4495194524028862
-1.051380160395533 1.756621356710836 -0.2740386829236273
-0.6634910489726455 -1.484358118130643 -0.5212759315215858
1.796188934151743 0.7057639527835242 0.5449560824760086
-1.824660508906234 0.2864039838987095 0.625494029633024
1.331810896868781 1.240802323661067 -0.4682348928662207
-1.754158028454114 0.8717741055812934 -0.4477187857631842
1.637426239669439 -0.4550191205493321 0.6723483246329784
-1.594443454967042 -0.916160356877168 0.3933843631527323
1.544678725084866 -1.011841359040466 -0.3565273960719773
-1.500952777708553 -0.2897407270964962 -0.7330209581000224
2.02070065897582 0.09018649184898163 -0.4269973057951403
-2.100601997131242 -0.3119285121786682 -0.2965389276277922
-0.06897253372328838 2.144028148923327 0.05144954849757834
0.05710710044711257 -2.123440829016515 -0.1224192740339145
-0.01878566841378426 -0.5947838704461778 1.991106151178818
-0.01360068496965877 0.03668183389002254 -2.129266075493056
1.28051266550063 1.36068485676562 1.505543944686296
1.263074183787043 0.5432054516598063 -1.543691745472244
1.487415270909899 -1.463413107871069 0.8602176556907205
0.7071319135788691 -1.187690432332048 -1.765638982783606
-1.29637270531671 1.313869398025207 0.9725199221021132
-0.7507107136512374 1.179303165164023 -1.485391872930785
-1.033304332843731 -1.269235843967478 1.257681536313972
-1.428705567672638 -1.203435818332206 -0.7952057388252822
0.1289343988388218 1.602395216708225 2.111607158686271
0.3412586312276782 1.376854084314855 -1.876636879928682
0.1709895622066434 -1.82069281709147 1.240659869028875
-0.4159389765240261 -1.79752281824724 -1.298914110563849
2.053033485055057 -0.1531253246143853 1.118855235972779
1.143309068521601 -0.5868515236317292 -1.425624909367432
-2.001268669559439 -0.4693022144766629 1.153158226723533
-1.396458024094914 0.01306860011947681 -1.478221415492446
1.376657921308129 1.898385443346301 0.1524336209929041
1.246335696059864 -1.879528076645239 -0.5880729106993473
-1.758072187491913 1.904501233841633 -0.1079998026088594
-1.155124838010509 -1.882568595643274 0.07751915874069161
1.173348122121429 0.09228594606039933 2.175440120318092
1.175595019659548 0.08651770050038965 -2.282241148017169
0.6433993539883776 -1.226853030188467 2.208803760237243
0.09228747578984053 -1.190328919792419 -2.410587921110788
-1.216830355819897 0.7382813201711663 1.976422669890566
-1.2984858367009 0.7878768284510049 -2.034988697754524
-0.9867385504389609 -0.8898905346420791 2.15475679978196
-1.078741450911252 -0.7670220898579529 -2.048896620884999
0.5938631014264116 2.483963746232417 0.9091403482400323
0.702735041754002 -2.517711984957762 0.5037697243650127
0.5247896889093646 2.430480505354397 -0.7782125000966067
0.276487616873234 -2.418437532989162 -1.345333542755129
-0.8096719209126275 2.199358246130064 0.9911174501388029
-0.9540332322604146 -2.109853396492826 1.10572875406927
-0.8825276143821754 2.031230718206701 -1.192752220081011
-1.43510450856752 -2.053202181028716 -0.9403811842561139
2.363293645718221 0.9592398764338745 0.525774696161241
-2.255011673455395 0.8881794744587825 0.6985599797137793
1.883530657352103 1.154205466603413 -0.907720266591151
-2.15011916846538 0.7869634999467728 -0.9519775784609283
2.266394810558965 -0.9284199296611887 -0.06626869494909614
-2.091472314077065 -1.477521143195438 0.2946231983219266
1.920621472369371 -0.5589147129058958 -1.36047490680588
-2.148541266414871 -0.801889537512418 -1.15850333021918
2.687720844745469 0.2901670455358625 -0.5302410820228692
-2.768870799789188 -0.1970124199886382 0.01888078459098356
-0.503678405495193 2.829277468718555 -0.05004991196633323
-0.4953765200887388 -2.736343666822404 -0.1686361541833324
-0.125255701154248 0.1392498424469502 2.708975873354003
-0.2284863483078635 0.4451156013206652 -2.732435207511616
1.898148987833033 1.63908808150146 1.626277047308073
1.527151815154943 1.594751892887582 -1.689484778914746
1.750830004079513 -1.559833952367884 1.51466863631455
1.676347076229403 -1.656736222977109 -1.58882605158889
-1.530608834490366 1.774164656099184 1.714792995123588
-1.71136623761402 1.873726169871061 -1.747005667836389
-1.995479117628602 -1.565095059792586 1.55695818704214
-1.307945619079551 -1.846760213291482 -2.058258923331288
0.1399871731898644 2.167911599685677 2.440178359622391
-0.05989691223744233 1.973498099283553 -2.227245173632444
-0.1764321239390825 -2.243456636137854 1.917801251596637
0.2394095825576354 -2.377834298674189 -2.484028717651573
2.315292431512313 -0.04560708532387896 1.814192544884488
2.287389747336567 0.1770769012545139 -1.883607704376793
-2.174827257080947 0.004424501519804181 1.983831142500449
-2.144708848279981 -0.05205641261487154 -2.141587616277769
1.941373328320158 2.285773294725379 -0.1111400095070043
2.073988563371365 -2.115660128036492 0.04255128455076163
-2.215448060764124 2.353057366822621 0.1065522975969638
-2.376878328877654 -2.191201721447283 -0.2937425620902782
1.184528977529103 0.7146451208638348 2.824685823474682
1.037681484247717 1.029880428338926 -2.932439459900145
1.139583504734197 -1.075554352232593 2.894544862005588
1.141177676316665 -0.9021423914007449 -2.834856472420621
-1.095474079583563 0.8959881875496565 2.912885030394016
-1.33506962069487 0.9978321888308516 -2.991694491046103
-0.7987596368433031 -1.079449935959016 2.964434775932115
-0.911355552002011 -0.7775272454516642 -3.022722135740136
1.05833711884356 3.030576000769877 0.9630775281764032
0.9338699667911137 -2.875808838928194 1.343008857461888
0.8824767208590545 2.94824566685423 -1.260423894466679
1.225665448571088 -3.018079243284847 -0.7703710390402679
-0.9619914134281503 2.979316640155871 1.258486112244995
-1.21474720642028 -2.891885462952644 0.7456783399929879
-0.9676456561835158 2.993077560674606 -1.169181722754546
-1.039313529710779 -3.09243103471283 -1.305518080745768
3.113455529351216 1.119845365332025 0.754098016305033
-2.902576681613709 1.081575252229977 1.020169478371221
2.871069631265358 1.295213150629955 -1.009139021339504
-2.789144422502022 1.029278569712362 -0.9313331306873542
2.912354729178377 -0.7512954508802843 0.5495672530637767
-3.104830400918353 -0.9172094275275865 0.8478977063149888
2.828484903070076 -1.098178985553631 -1.177616836129163
-2.898223184645257 -0.9860997441970102 -1.303331842795376
3.714933526516096 -0.3078174811227384 -0.0290058216676666
-3.641397544997119 0.3593844354505109 -0.5155047445341638
0.05326894107934112 3.750613871935648 0.07708069686374029
-0.06935152676239482 -3.645053866202754 0.1037155472678024
0.1771591482634573 0.3089876257610969 3.686868738244894
0.4093813247642724 -0.03980361462849439 -3.746721529836811
2.129490559869069 2.045648923752538 2.223660977803082
1.965060126190258 2.264070911110259 -2.110885301603043
2.429972786255353 -1.969257111609413 1.769025475603514
2.125590487910499 -2.132347856908139 -2.2254774604788
-2.068958447375555 2.155376884098652 2.268743589994338
-2.80235225797878 1.979426902320656 -1.750237074934965
-1.867571005333076 -2.236096647107662 2.120656150506025
-2.317095517850724 -2.032640289548783 -2.336460723753491
0.1748812878477456 2.816595122296524 2.85177856029963
-0.2738130600503542 2.341902412210755 -3.008731681582647
0.2333302278125325 -2.612373058667849 2.741737757671077
0.2656819025723179 -2.885082666444482 -3.123170144145817
2.837610457720511 -0.2123103617462808 2.323752603987539
2.680040033214758 0.06224912333045943 -2.480108582087518
-2.416301220953768 -0.08153374664576565 2.807185926954197
-2.686816972425051 0.1888325212289246 -2.863717537040501
2.641996034897087 2.880099417571162 0.02066998262598283
2.866170004266333 -2.481948853887436 0.09650037625795534
-2.479210733299109 3.154264417820809 0.08989339706975155
-2.946147846530156 -2.804236220248 -0.01537048789876892
2.083236042595281 1.037318019390464 3.465429881309359
1.349377839590501 1.660652138130314 -3.747726942534508
1.352775327602797 -1.422160584136389 3.809150239462505
2.4316469313365 -0.9418133951277509 -3.407825831372873
-1.217281496345394 1.4540363598119 3.815288545948678
-1.881401213642052 1.191549935163327 -3.866501487855545
-1.504970900044408 -1.372800472908418 3.724941214119505
-0.9641537834674461 -1.359914433303107 -3.769716838175088
1.506048512644037 3.805203972849604 1.622528898930043
1.346916809835063 -3.812238633793192 1.349413940409238
1.120848466218639 3.951808714040353 -1.421102391569269
1.567993916496918 -3.828637093394127 -1.183380565154909
-1.246681266678838 4.033196042772445 1.34256902768074
-1.467507920502233 -3.480721976053941 1.585018263521835
-1.258184925050761 3.44775158054993 -1.936875557617503
-1.238625716861249 -4.00614469831138 -1.303795611847784
3.881329292905406 1.757982918194359 1.007632530253092
-3.673240386664827 1.300572877207752 1.351285136808253
3.729371485649324 0.7364515068470712 -1.62789185200109
-4.121241010814139 1.771279131868755 -0.9434004266196093
3.988663088403891 -0.5268735902611925 1.824198513221061
-3.585059894604495 -1.216667423498629 1.538199404125063
3.818883474175216 -1.944674783396045 -0.9715749518605253
-3.983738832223986 -0.9946511475768752 -1.287798380454548
4.940423720790404 -0.05565909269145287 -0.8031052428218535
-4.884661997107563 -0.6267609777259305 0.5953554719463164
-0.0239701014431625 4.973822926100283 -0.3976578528391093
-0.3799738082483669 -4.884908334309266 0.3239277274896302
-0.1450101958808399 0.2503352039339546 4.874737772855283
0.4343409985719343 -0.06292022381423103 -4.868562427970392
2.489685939146126 2.319152027247322 3.598418876182306
3.166997255946024 2.551598772217962 -2.152208731102596
3.101430134849301 -2.511222275928878 2.340225116309365
2.359825211365639 -2.936441766684392 -3.365656450827607
-3.086523797596925 2.540954766448138 2.695967885453514
-2.164895607247471 3.508245491264164 -2.828623076973883
-2.789657395306316 -3.206609724188448 2.478280792929286
-2.981522837554109 -2.710493161789209 -2.721320102595829
-0.3345358051175562 3.449880071383291 3.755604945387255
0.473712243749735 3.222577043015783 -3.870319053401449
-0.1241968625857047 -3.453902312606536 3.395192325586958
-0.5491241871048685 -3.820083492381082 -3.668846969325
3.126836482521604 -0.1196508496435758 4.28154652141266
3.611835964307109 -0.02009027829908727 -3.64762344865387
-3.401517631969158 -0.39983423108077 3.383497034726002
-3.925355883030088 0.1537943563091597 -3.202890249818837
3.438448652244138 3.897774726662281 0.2300432484080533
3.505665575167445 -3.777114623229346 -0.1885177281267989
-3.172706309482238 4.085281773510083 -0.2476619117358804
-3.751902651311772 -3.596852055630151 0.1047386232187982
1.651848223766041 2.204405594766997 5.530608463700175
1.792728596352188 2.150443934241627 -5.140493382931037
1.151187256688921 -2.394829589796266 4.943530341525046
2.04641793663713 -1.87634054986829 -5.351364601557585
-2.107796553543685 1.69091696910386 5.036337821991991
-2.624548824310843 1.916367018217216 -4.769903532527979
-2.413999090951022 -1.711790105243313 4.875739638642266
-1.60546104239725 -1.389696214814423 -4.867156856236677
1.607469978331945 4.886466962412522 2.360096039016665
1.962170710018465 -4.68982981403426 2.281393820981273
1.976749814224158 4.998250932813346 -2.138413705926649
1.378337602792522 -5.253763922488083 -1.657125081607412
-2.036317900565136 5.118716368623463 1.925644799939029
-1.682847255762777 -5.041322420436998 2.613133887661083
-1.537207763256558 5.39179384135801 -2.483180825531556
-2.29249094917258 -5.31043892624923 -1.380276101202543
4.917433258684522 1.833251357840668 1.753228118858746
-4.862258217402718 1.986047246516067 1.867042109489204
4.508086250648199 2.368824215419475 -2.531019322712107
-5.120151165318053 1.984611076000051 -1.597574659130294
5.051991939424584 -1.5668368953433 1.87111144363859
-5.140765915081888 -1.562111831819705 2.576081541546047
4.905173305681623 -2.499974844502172 -2.020224672032377
-5.117372021240805 -1.856156268672628 -2.057760517979391
6.508519863601937 0.630542269850958 -0.8082346389744984
-6.804523500944115 -0.354191186624321 -0.173901122616265
0.3395287934357163 6.715950489780203 0.9164288306179115
1.261595717077084 -6.648831518885934 0.8812169696702407
0.004063098274645871 -0.9643163388577468 6.721463804946687
-0.8578696795397203 0.8023511805611139 -6.58898517298832
4.708034843140624 3.016446807622466 3.761626544482281
4.111741323131868 4.624630040752466 -3.850330934381426
4.412830222135209 -2.981522729110059 3.610633217191634
3.554077646483816 -4.617580801630015 -4.160365891230255
-3.860214392535891 3.211553117058901 4.464736886533888
-4.872125497811348 4.100322630452518 -2.769352169996328
-3.683279440244418 -4.471919361572449 3.989305631597612
-3.520113836773393 -2.784434474742811 -4.855703748955157
0.0829608753144707 5.003555518907966 5.275347653824115
-0.3503489915116439 5.172359382556557 -5.052110209587157
0.691652110536666 -5.075268204185534 5.2224278967213
-0.5405075355140446 -4.898060307271432 -4.934740380975588
5.229261483244921 -0.4549871155708051 5.306782670708411
4.776429645333473 0.1183403745377045 -5.142690419458911
-5.484806116285485 -0.08610048604485619 4.825869337289116
-5.245963256588292 0.1322282884023213 -5.117622028613664
4.778848981248769 5.152478617984239 0.3640863233542741
5.034374179176317 -4.99449959985393 -0.1487118748979313
-5.216239103845541 4.704009552665888 0.8202413822772278
-5.15105352188032 -4.821829631267862 -0.303097365780567
7.710692101066657 -0.7816481261400713 -0.04178259192051707
-8.421788696952124 -0.09593968361318311 -0.2918850892095337
-0.9543967814129157 8.150813003721005 -0.02373697401495019
-1.434587405174153 -7.732931983467565 -0.9395388228454632
-0.6861077551328119 0.7873894134430079 8.204539215698633
0.8725208540351898 -0.4663432239033909 -8.080110658423497
5.114162867680994 5.843160192548829 4.415191441501926
5.959734649430066 4.621040237957596 -5.437937921075015
4.9104710561595 -5.615347590124824 4.805484009394358
5.483362983952056 -5.480675820818639 -5.380770834706396
-5.39263739242489 5.67990901469833 4.62703245087738
-4.631947587191406 5.266615162867845 -5.684983408454165
-5.392252422925376 -4.676317911726225 5.877437295538862
-5.190421496644845 -5.576065915204449 -4.829612959138438
10.05523438653606 0.6002109822295975 0.4354763109329783
-10.42274303644049 -0.2032285598262709 0.219009070378001
-0.5847776273467233 10.36053826146808 -0.3837718682789558
0.6086471782776471 -10.11789631450909 1.088289916490972
1.348492636155739 0.6501728540231786 10.25029341863604
-1.562575826548632 -0.369193080622645 -10.09414150679611
</grid_points>
)"

View file

@ -1,504 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
Def2-TZVP realspace grid (Bohr) for species Ar
sqr error : 1.140032672238465e-07
penalty : 2.588648269155323e-21
n points : 436
</preamble>
<grid_points>
0.01025692316515377 0.0244909742082952 -0.002591470810007798
0.02630382345734519 -0.02702056188558181 0.01370059336784717
-0.004953368574395042 -0.01217585996482445 0.003375477346934047
0.01125161614176134 -0.005592290018686141 -0.04765454851193664
-0.03488127568543131 -0.01073064570210693 -0.005050906214995448
-0.0108093925258806 0.01227122084402761 0.05060990959313943
0.05853679206936702 0.03683669856551206 0.01069710123878709
0.045941716319466 0.05251006030988734 -0.07023000671461983
0.02341508249539133 -0.0482829397807931 0.06676849029765762
0.04454565604446336 -0.05463031232634784 -0.02986634025427405
-0.03110354649344551 0.05332787076757775 -0.0153140388689156
-0.05353130828327551 -0.006160319805173307 -0.07169797820282021
-0.08141043848833643 0.01149160807758499 0.0505959026110916
-0.04899498066346247 -0.05208247032048048 0.00364960488528048
0.1170608080109989 -0.01929688646270269 0.007505029686479214
-0.1136196262978916 0.03578474861269722 -0.05216730605805953
-0.02057437007439974 0.1051303044393977 0.01671100742747408
-0.01990928909959847 -0.1071493926934503 -0.003957502585003924
0.03269916496714254 0.05048521024345858 0.08743283413771048
0.02460705963659453 -0.05146756437591923 -0.1135814379023587
0.09796820389676823 0.1179071277569098 0.01618476140837783
0.136118543452345 0.008188970288206785 -0.1057680465181279
0.01551259980791147 -0.08513475066518171 0.1084567148839144
0.08119315795832877 -0.1420116242851422 -0.01410828746861316
-0.007804895253757768 0.06356969878744909 0.1355492696374895
-0.004518675196105941 0.1066083793535244 -0.1001922418687949
-0.1086610615700266 -0.03503844231552644 0.0819894468963098
-0.09739676492164778 -0.1049968393367762 -0.0474196369045605
0.05250674171103235 0.1490478547168169 0.1512058590787872
0.01300165290716313 0.2051611484249297 -0.04319019437910769
-0.06370209998070196 -0.1766252634910415 0.05952159365788621
0.02678260991343705 -0.132949138364262 -0.1547994929495635
0.1381076326347205 -0.008352634225071201 0.1158863972546048
0.05974682821362024 0.09061663551520868 -0.1942036044086265
-0.06906741084971721 -0.02764581418241084 0.1879649523496499
-0.08240336606778434 0.006569371911289573 -0.1614331321431461
0.1915215745924471 0.1159959140458117 -0.03053461967404004
0.2057352377045845 -0.101763155436607 -0.01775783157610662
-0.1000405821063161 0.1305462395658334 0.03977262354842446
-0.2004718491683284 -0.01289216676735448 0.01233977343072556
0.3072645361065398 -0.00502579567333034 -0.01757762229833308
-0.2994078771920204 0.002524846679040352 0.01699891323234975
-0.005157682681470069 0.2773095180487162 0.04371548813990325
0.02168304021753587 -0.2572447312304315 -0.0350685385084499
0.05021419974432494 -0.023043133077855 0.2677536271710255
-0.02744605201229348 -0.007643179309718883 -0.2778928859845566
0.2108964953437733 0.06024544812493273 0.1453147292436397
0.1724879059477518 0.1865475427324907 -0.1440633716608505
0.09154344504790141 -0.1506236666503522 0.141005032847338
0.1645863639221789 -0.08491425011837422 -0.1929144251160453
-0.1578567500911014 0.1284610630181166 0.1326904496934229
-0.1525646339830769 0.134250484181105 -0.1098730144508334
-0.1805504660805062 -0.145595244248185 0.1263675991470799
-0.1441851076522347 -0.1384635983792926 -0.117421816736327
-0.01860451715201079 0.1814060905857424 0.2543493176387076
-0.03759918175906061 0.2280383923158885 -0.1953265422306066
-0.006793700580218657 -0.2366508594312107 0.192871446463343
-0.03665782881019881 -0.2029715455188401 -0.2353370594075259
0.2486930616504149 -0.07576894686242393 0.2133067568646407
0.2202112004993786 0.02590595768587155 -0.252918018618262
-0.1908028289539332 0.02380017048736182 0.2435213205504623
-0.2245186257438481 -0.02919417057483142 -0.1628431100127458
0.1981742981174628 0.2383591827592539 0.08951160183821925
0.2087057804261324 -0.2170795948250918 0.0807680293550025
-0.224267509753931 0.2109997987403367 -0.02591388699111425
-0.1889148957740165 -0.2524002570849778 -0.05675094762401493
0.1401686222314723 0.108257225497307 0.3242872902642695
0.05367499210115129 0.1530419114478403 -0.3536449554955443
0.1580430048398188 -0.1610003263353059 0.3418972233645573
0.120555267413711 -0.1304675816842854 -0.3663589622938201
-0.1035994116258854 0.1161809558290578 0.3961352279063571
-0.2031224847405246 0.09580313398874164 -0.2718315812731421
-0.1023714154778011 -0.1423581547855296 0.3294350171978621
-0.1381577335488805 -0.1384735961210801 -0.3409735868324629
0.09045500046737757 0.3609870942623957 0.199779305311404
0.1862110318985977 -0.3650728909510478 0.09467425664049944
0.1346354478325132 0.3538078532271571 -0.09807309962397412
0.1599187020643421 -0.2720347100457133 -0.1358799471609599
-0.1492193706423434 0.3068241758182797 0.1457069389654548
-0.06198402885711003 -0.3699882134003482 0.0917882804505705
-0.1248192340770341 0.362368116979959 -0.1204144628448237
-0.06226173190720256 -0.3801736037908346 -0.1683944404332599
0.3541364525324122 0.1175732094947111 0.1606086256910947
-0.3370625153913185 0.09077969599331226 0.1839797050667608
0.3561427497696886 0.1481831977245312 -0.1116443057014178
-0.3628209117129054 0.1646922757172397 -0.08299518413870716
0.3930286292038919 -0.1464337135289498 0.1184118288927073
-0.3175866580730293 -0.1906249821153753 0.1181621711974759
0.3476131436414384 -0.1582513541889449 -0.1331655347953599
-0.3381412054002767 -0.1219218988714416 -0.1599280661930206
0.5301771877047914 -0.001547571441086493 -0.02063383100282353
-0.5059650842547829 -0.01708075655481358 0.01420781783347524
-0.001983105824082028 0.5144878461843038 0.01854812273094924
0.004021876001095053 -0.5356806848517757 -0.01696037171951349
0.02945671173694725 -0.0133720380827613 0.5212894500375278
-0.01851643855678184 -0.02384489473617251 -0.5149130377438154
0.2756538046614613 0.1978030695548993 0.338612202269244
0.2579544675120455 0.251810553840923 -0.3170583072676714
0.291398579213259 -0.236423661166601 0.3599354973381797
0.230888929046968 -0.3437714202826176 -0.2622450156918912
-0.2803692636012372 0.3174263018133177 0.2458009970386775
-0.2268573791564551 0.1920204382996389 -0.3511293844618002
-0.2464385010120512 -0.2489401465427834 0.3121540066943605
-0.294369199551647 -0.2508488480470402 -0.3018684298741705
0.02179238706915224 0.3822619090541493 0.3810025543370102
-0.02083074373752732 0.3923557126520665 -0.3440993713179994
-0.00647116925736867 -0.399847399367415 0.3243329922202537
-0.05301181884975706 -0.3925249528478197 -0.3921210123086156
0.4281591043866843 0.0379966463576108 0.3543784866399361
0.3671802736645405 -0.04795549153756375 -0.355559805212266
-0.3785757299335784 0.000421338978797191 0.3672315661617883
-0.4082122306576587 0.02237961709597993 -0.3522152477878722
0.3636900266659508 0.362569186667427 0.02117958826676504
0.3782755618531616 -0.388962552253747 0.03184642536333607
-0.3601102696887125 0.3656878173019327 -0.082894161836778
-0.3335961538657328 -0.3808571766492556 0.002517513355027611
0.2443719628151116 0.221453751042854 0.5639866695366084
0.2061423885171565 0.2167590947088843 -0.5488526587467364
0.2424361925925093 -0.2524230971712941 0.568381102946877
0.2530508526781571 -0.233549440440431 -0.5444285534449045
-0.2267380326357485 0.2210444349581825 0.5558697443451682
-0.2466833141515171 0.2538875252458427 -0.528958014391736
-0.196176338332852 -0.2578852947251707 0.5346415276993413
-0.2464348531837084 -0.2157621795714567 -0.5725226963893973
0.2570881509322931 0.5380972627800454 0.2370013655406111
0.2355356775244021 -0.5621693243158055 0.2550423818589767
0.2274236418249972 0.5526198468482115 -0.2053072509489982
0.2522655261939087 -0.5597590682239731 -0.2455137484637775
-0.2463893302721673 0.5472470355674319 0.2357544636826081
-0.2211761050810409 -0.5667996089759224 0.2230913960478944
-0.2496309684948843 0.5572224117851402 -0.2156248774169121
-0.2659376392521116 -0.5632371390339573 -0.2099392097537369
0.5696776077500225 0.2508228851380236 0.2155215539172817
-0.5479630157490532 0.2378329069801628 0.2152354534497252
0.527330237746617 0.2509351545922313 -0.2472559483744287
-0.5651183787382608 0.2343134379341197 -0.2056876975900426
0.5683755591012672 -0.2604349527917569 0.2341210685800583
-0.5275555034185399 -0.2774611234123149 0.1989717089945833
0.5456293081395446 -0.2464578147700122 -0.2437833365820412
-0.5400967078684549 -0.2577394353713034 -0.2400156772923476
0.7626322080732595 0.003160242885250796 -0.03983223405384576
-0.7565941529464171 -0.02516790042604602 0.02222125668177817
0.02103004382569771 0.761068495905326 0.02053698517229551
-0.007061186721404318 -0.7727086186839692 -0.02099171194084441
-0.02082721469596566 -0.006484770360357377 0.7629487698232349
-0.0006760898641610759 0.01487664272173149 -0.7603849096344808
0.4399957788282693 0.4286232821699033 0.5188640541926293
0.4417518875214686 0.3928863948009108 -0.5054670000012883
0.478653378811423 -0.4755120156973982 0.4912694178502106
0.4536705532763182 -0.4912539413260785 -0.4748000123593237
-0.4792456038355422 0.4712961709004061 0.4276857073200834
-0.4501544039567111 0.4201081681459212 -0.4917422093797605
-0.4221352800406334 -0.4192316863677258 0.4885836777388498
-0.4598389493256619 -0.4756907596113134 -0.4765796228440096
-0.007960103595424933 0.571714999350038 0.5304797535701319
0.02052103978112217 0.5566680308964733 -0.5274602193325014
-0.0001162679312780996 -0.5825652769804531 0.5461528622237629
0.002276022835544402 -0.5563473716050283 -0.5521559129905376
0.5685015644761126 0.003344440686163405 0.545928924416987
0.5593939121213314 -0.03714357630903899 -0.5438916738449869
-0.5615609641162284 -0.001080569577309657 0.5146785130078482
-0.5770780662729726 -0.00812987513978324 -0.528748626088969
0.54816807877541 0.5586499819298028 -0.01480627612987007
0.5545047106348538 -0.571488085982531 0.001011481538404721
-0.555975242778456 0.56140218697389 -0.03432791564820774
-0.5661198453298483 -0.5620109501462957 0.02498855020666769
0.2588951467452803 0.2782257285934933 0.8392169685318364
0.3105429570521779 0.3479293949859572 -0.7990800807319467
0.2755883426409207 -0.2805893908107283 0.8362743014726844
0.2854089435190363 -0.2644031428435583 -0.8247387478509337
-0.3312875703476794 0.3158026336029502 0.7892445611874693
-0.2776816441467826 0.320568684965808 -0.7889395940862448
-0.3068459581819011 -0.2983692221501796 0.7962602027794584
-0.3147652595897212 -0.2684964770915551 -0.8324017499398744
0.3466157338501415 0.7901954508986411 0.294490333759419
0.2928362016977814 -0.8397323301121725 0.2941162385370997
0.3325067072991906 0.8011328371076736 -0.3209760594196126
0.2833891017173938 -0.8341084861042204 -0.2887753786675221
-0.309076409168655 0.8267582576883794 0.2944151226380046
-0.3020901274893727 -0.8091792273391777 0.2873850701272374
-0.2710320580126152 0.8012200818065955 -0.3101732387896702
-0.3218420493790409 -0.8283824022939006 -0.2969702412131147
0.8034791007507032 0.3227572212949813 0.2860141777481787
-0.8181182585266357 0.3102825103368646 0.2996787789581917
0.7913956081111795 0.3529568606623442 -0.3136094210269508
-0.8191147851070274 0.2781283275035616 -0.2675436041519272
0.8441106474218761 -0.2733121719945291 0.2901113454105882
-0.7983417813502848 -0.3115017696243168 0.2999499921469246
0.8178811787975691 -0.2956977591452862 -0.2902359818080974
-0.827095575836798 -0.3187566314281822 -0.2929332455414539
1.039080906961261 0.04867593470934475 -0.02534935010553463
-1.041323871749625 -0.02235829937135384 0.0179998823496276
0.04559876343879526 1.041652907787798 0.0165622099182771
-0.0332203384893356 -1.039570029500043 0.009304894698438398
-0.04438395877038752 -0.02703008217197691 1.038695286573594
-0.0003859297006853267 0.0698194432792008 -1.027812260126587
0.5972146587828587 0.608049864856399 0.6307740837850796
0.6398962884876851 0.6467743749022152 -0.6389900871248191
0.6352054810677822 -0.6326568688033463 0.6205758931696104
0.6176935059445952 -0.6098263400410423 -0.6120377763156638
-0.6340895562939798 0.6275588944642557 0.6402606969521148
-0.6194567265055015 0.6024488199994297 -0.56784216102866
-0.6034579241435117 -0.6128666219419486 0.5909068447162946
-0.6250155383708567 -0.6305964226060884 -0.6588526656842043
-0.00851436112828652 0.7580089943843773 0.746949128105269
-0.01613136489630464 0.7724796586043409 -0.7504114801467309
0.0002780657671245874 -0.7475776405784118 0.7694777122080065
0.01137022120073359 -0.7314842216976641 -0.7651963278144599
0.7441848339066108 0.004979107584653147 0.7641698715992458
0.7542205794102523 0.008001595131639191 -0.7465060167792348
-0.7495607202563943 -0.0006832552337048546 0.748209992208644
-0.754735855365016 0.02221786389629063 -0.7491506844738582
0.7667838043510515 0.7724258752362777 0.007140725515119311
0.7677592281155524 -0.7479370139731165 -0.0007728173315829392
-0.7497347491856746 0.767390116538835 0.02055300494977724
-0.7702420553613039 -0.764594078887585 -0.01067469826306479
0.3052670684720082 0.3333141029440785 1.127555432613416
0.362088255516697 0.3512918763498054 -1.131533727379759
0.3656344095400736 -0.3474133472062618 1.12116226604359
0.3191237784112303 -0.3117638153097283 -1.113097679100554
-0.3333587100663429 0.34418098856443 1.135587387471804
-0.3614681972895054 0.3540021263152153 -1.084037094245758
-0.3702180305351465 -0.3461039352976406 1.10241800785483
-0.3147441909723993 -0.3115244341885742 -1.152290013611013
0.3459890144346865 1.109587906993279 0.3847780140047382
0.3329945008946492 -1.141203686412316 0.3231015312839922
0.353396070435645 1.146969282180242 -0.3608727201339088
0.3301983641610959 -1.103503284795732 -0.3357510857643176
-0.3498529800774041 1.139920900794862 0.3693734909503774
-0.3256570826712582 -1.115055146272349 0.3309368360506761
-0.3375980051798676 1.115530552699404 -0.3020801303477405
-0.31938852609409 -1.136162313390656 -0.3733660856653505
1.106611353791745 0.3426708425780859 0.3594170025943498
-1.127020752220502 0.3501005637524485 0.353983459845953
1.140883331945117 0.3420561764550962 -0.3681612254747513
-1.112548607182963 0.3462408052456906 -0.3192961201776497
1.144567583208788 -0.3180583681101151 0.3333518441679366
-1.101631834334913 -0.3497741068297389 0.3644478484944758
1.110250921883134 -0.3393755144128227 -0.3463221469464347
-1.130958339107655 -0.3305976298370922 -0.3720761344126029
1.409109016493204 0.04122585035170719 0.02033609834266776
-1.406686144720341 -0.05487510395384556 -0.01629430589805651
0.01878031534696265 1.420319452756538 -0.03026738580688595
-0.03711287775504378 -1.406183688823635 0.03266055961578274
0.01557927192471894 -0.05074263881875674 1.410714991788872
-0.02515138626979146 0.04128036963673935 -1.403766005617454
0.7824610538571127 0.7471977373590145 0.7933097925569779
0.8191415796801484 0.8145354211320612 -0.804126662302046
0.8043926707004029 -0.8015694150851467 0.7693607960397228
0.7477896375307291 -0.7670160751110916 -0.7945458737787903
-0.7970042845811591 0.788136617235266 0.8065703906924326
-0.7570890796086538 0.7739362914504266 -0.7673326864423684
-0.7475089844582398 -0.8048217464392681 0.7622358444490788
-0.8118985515006066 -0.787345729179197 -0.8066873806632886
0.008062299170527682 0.9825562497280291 1.007162955699003
0.008362674869995822 0.9802501663185071 -1.002788156355982
0.02278438416432491 -0.9877172663784316 0.9826522037888918
-0.02346395455573348 -0.9691794032211916 -0.9929808115402743
0.98658556438802 -0.0223410178810506 0.9945552602905604
0.9708023299252723 -0.0006594639886601896 -1.002919790693457
-0.9843623795294972 -0.02279593686887405 0.9840256794576465
-0.9757115297838477 0.001264840241798755 -0.9940886799588607
0.9974211439996831 0.9938967906896221 0.01402685127921171
0.9773030348505524 -0.9873299219287471 -0.01768647025941667
-1.000164986608791 0.980412465985338 -0.009178955302688781
-0.9803053868918697 -0.9895315527694976 -0.01808126464213244
0.4794991625280427 0.4461034559753591 1.432231624162501
0.4515367455128592 0.4517061733854035 -1.47084439170378
0.4676490130082127 -0.4966863236882072 1.441297321745649
0.4483040576870792 -0.4817485790408192 -1.417949973501911
-0.4824767006986293 0.4454877024123635 1.444073431913915
-0.4681671198226441 0.4579799734479831 -1.422705235997141
-0.4488427084891957 -0.4831314130941277 1.421382166364878
-0.4931445636372154 -0.4905812463990805 -1.435670767285607
0.4493424610399034 1.437432244723022 0.4466202902397208
0.4750088275128736 -1.448475589748939 0.4627150376181966
0.4803796133149453 1.47517664704564 -0.4762962481535728
0.4428164692756478 -1.407935701792699 -0.4763293801031453
-0.4883386657214683 1.446849081881259 0.4532568075734593
-0.4847914663565931 -1.42256085377922 0.4759864099649342
-0.4666231250791423 1.408739561437086 -0.4912131124117882
-0.4911487084651416 -1.443738751080939 -0.4631854521976064
1.439683282809135 0.4481314664419124 0.4625731770590231
-1.441623389310007 0.4532303824565499 0.4624830069758806
1.472765887224669 0.4496570864825623 -0.4539038316489032
-1.415475323658608 0.4402489077701718 -0.4984331091723541
1.445974872660017 -0.4949103288913804 0.438572547938821
-1.408163406288286 -0.5009855446719006 0.4573130107293428
1.405679246991763 -0.4631136792592895 -0.4723423187841017
-1.44776610704644 -0.5114801857447765 -0.4823032670573331
1.81315478183813 -0.05213626902856074 -0.01419663187989174
-1.806692136854234 0.01459546537863528 0.02743282049020739
-0.04198581113867226 1.812915141099618 0.02508188186710148
0.00204226762284909 -1.814885852344483 -0.02589080319578602
-0.01679282779103501 -0.0002997628752202855 1.795016715798759
-0.01930806403523394 -0.02807818593913025 -1.803758481112138
0.9848515045854277 1.001335454424575 0.9563822173442458
1.005473857403603 0.974017355735026 -1.021201882092861
0.9992702930681191 -0.986748390288695 0.9956511962635557
0.9958178691358678 -0.9916858454635635 -0.9655056166809238
-0.9977634975568991 1.003806536161851 0.994376748550947
-0.9860286997384489 0.9748292151985015 -0.9886566126762913
-0.9859443782282995 -0.9616490514827627 0.9978155626287749
-0.9782410951812739 -1.030713055465669 -1.005237481754586
-0.01893785462304715 1.268364713567018 1.261349809837214
0.01420517685889996 1.269225224840596 -1.268940079755933
-0.004708153175902056 -1.289653071184864 1.236267973343582
0.01256547564009167 -1.287579059163515 -1.240387307955807
1.288439945478488 -0.001947201213121025 1.243426072895636
1.265627809499265 -0.01354286240292253 -1.258354910146338
-1.275311863809729 0.01892978214510539 1.246170501827119
-1.270175061078702 -0.03890507016043655 -1.265299409690607
1.277484574073967 1.261590653670354 -0.0408931058717862
1.241152343046461 -1.280278011917033 0.003998198630503609
-1.279123904384052 1.247299341739337 0.000706336685524949
-1.25881270861045 -1.277036573284881 0.0171333481186841
0.7086189718790199 0.6957203145525298 1.737294133328502
0.6901358287762417 0.6904523289224906 -1.780657633233944
0.6547547744973982 -0.6728147214382053 1.783174396542836
0.693883486225375 -0.6801968374298619 -1.754972221324386
-0.6852587283929961 0.6624877464343617 1.788343689510979
-0.6827274979252368 0.6859203406934369 -1.752865003274931
-0.6846460135799391 -0.6933819308504289 1.74946022593897
-0.6905190260620609 -0.7307141929745363 -1.766500645689367
0.7022112344029592 1.759929164354424 0.6599152157331574
0.7013427699530954 -1.762344583636715 0.731027005617415
0.6787294628435203 1.798690141075825 -0.6910815482137593
0.7000715694592724 -1.761860584791508 -0.6817755930977889
-0.7027650552911406 1.781447199909224 0.6910945317760293
-0.7088261246575753 -1.758969706419513 0.6988384768638799
-0.6937908308718232 1.753582269024631 -0.6867936425845658
-0.7380406983403472 -1.776451472743306 -0.6905849293551887
1.771810785606321 0.6981004581054503 0.649705616635872
-1.773589003185926 0.7017065487910324 0.7000944346458481
1.774793597276 0.6902465765138692 -0.7169475357140761
-1.75817188704596 0.686200512600168 -0.6992542438677065
1.758754587908657 -0.7269083460412026 0.7135598648273396
-1.749884633972337 -0.6954324083632849 0.6928992804366993
1.761227472909606 -0.6981693364732303 -0.6708148731903736
-1.791067025657898 -0.7107233496944247 -0.6605897915766019
2.276775689863762 -0.01987708773878335 -0.001026444032076282
-2.27979665427294 0.01446066047644285 0.01167268642034039
-0.01430034919022624 2.285135210263081 0.006741738830758628
0.01551458659440991 -2.280646137750931 0.003086328133963444
0.008185299161831864 0.008402225195998966 2.266795833784366
-0.01108493272647833 -0.0184590279698155 -2.264956206908864
1.297495488073486 1.284567710452388 1.256541302914705
1.276130307130819 1.283714383339591 -1.259730225626337
1.265893370939832 -1.260536727011634 1.302197719522691
1.286256552167298 -1.279701072770167 -1.291221921163712
-1.269868638681571 1.281306296585574 1.292424792499091
-1.258365538307485 1.273726897581311 -1.308380005122955
-1.287924238390059 -1.268711223771371 1.275120385618173
-1.303495325128399 -1.262711571598928 -1.270943152160963
0.04281864348785858 1.632761781530258 1.62289024185829
0.0006154891998340901 1.652239228291278 -1.64389978698084
-0.03066084320946632 -1.628403293976417 1.65152476407624
-0.01698163008263154 -1.643922213494226 -1.627741725801754
1.638272424681947 0.001406949582803612 1.635944421592557
1.640507239944298 0.01378130470503467 -1.63314954990075
-1.638949319312098 -0.0411853839580068 1.6347737282656
-1.634042347412802 -0.0006924850799999111 -1.640181444662456
1.651610193220667 1.659758868169742 0.003652814521566573
1.630282479803598 -1.645067278179327 0.01961755057478793
-1.638104978417748 1.632921938768231 -0.03593682044838488
-1.674000539180398 -1.64870747604511 0.02487937160091937
0.7944819711700531 0.8325104052630956 2.344066117628706
0.8561888320796317 0.8164469599656321 -2.335632517408934
0.8577912178549112 -0.8645114172172269 2.329483346392648
0.8191231069968868 -0.8072072607149098 -2.349611255635947
-0.819459324247789 0.8422401621413539 2.350501080859455
-0.8725561427677011 0.8378519460256398 -2.323380431764102
-0.8549310921818478 -0.8122765026072192 2.340359499489082
-0.7906092143461269 -0.8519556588632765 -2.370070184648885
0.807565292635655 2.327986483892729 0.9116941347982225
0.8532499146101288 -2.338655878797015 0.8672768141073111
0.8319137789191504 2.358560973453205 -0.8551858226261687
0.8680804328842811 -2.343193861926517 -0.818128927925808
-0.8466973525539047 2.332158577509746 0.8836923122612305
-0.8125403450392673 -2.348492047133968 0.8650482753885205
-0.8764783573655703 2.351705324971029 -0.7856256825753885
-0.8109067029487139 -2.346242085975304 -0.905699986893246
2.330396037015241 0.840547453140375 0.8675158673113882
-2.331552502727745 0.8877539333911229 0.8274795805369564
2.339913061994102 0.7969158932062493 -0.9041608837809246
-2.352537864146536 0.8419052837433637 -0.8096720462294803
2.350195056900856 -0.8417325727438477 0.8475133691372121
-2.348717288460387 -0.7870656525888231 0.8992848225890362
2.344857443897543 -0.8660460608593052 -0.8079846226416453
-2.353056160287589 -0.8023975900419891 -0.9022234783916639
3.110908652815711 -0.0001244566324182153 -0.007019981197500549
-3.113939809836641 0.04891497328626422 0.008398791139867738
-0.009278567960893346 3.110728397482175 0.01485126598531787
0.01285309717306114 -3.109099461990866 0.002447836465702903
0.01624156030221219 0.01856487066430566 3.107284828831717
0.0331597519063029 0.02011888012997997 -3.107774638251055
1.592563004883225 1.574544359641161 1.672503847210191
1.581630480662308 1.582870068781009 -1.640512954696562
1.631793790568658 -1.610946516606739 1.552129296775734
1.574063973093165 -1.590242269654619 -1.668426604499453
-1.596024133040297 1.583096543119405 1.620117716380245
-1.635972736643571 1.590180196306122 -1.604270437917905
-1.553254161937153 -1.631272420835502 1.645648335300518
-1.577614313930811 -1.586414634695356 -1.621434869944308
0.006589166839755 2.235120316270565 2.235714197997166
-0.01049255143989795 2.220323524531226 -2.227305443057432
0.01894360085205499 -2.216051672773597 2.249364816494855
-0.01968246277844894 -2.232150158738983 -2.247068259094832
2.230369138687688 -0.02208024004876232 2.229280825082581
2.237433869928859 0.0128655062080259 -2.23023580783453
-2.226316640889074 -0.02173044362205717 2.23913149102214
-2.220874921584503 -0.009055643894924919 -2.249489305260317
2.217417532677706 2.208751683436412 0.01793563859722692
2.230499544298026 -2.230637713716329 -0.01974351372627048
-2.225640035161623 2.234025200334102 0.007711121857521424
-2.228819297720183 -2.202842913274576 0.001465813677652805
3.718781056958401 0.003811401648372048 0.01248085194645395
-3.717186359174061 -0.02302925124574857 0.002209232640441232
0.01583994765439148 3.71392515390825 -0.001181014613659884
-0.01435947037079187 -3.709330499392154 0.008557789583460169
-0.0005825302307617263 -0.005315149191851621 3.729905539352516
-0.008221281056337694 -0.008080829621419769 -3.72650536617287
2.075899535455252 2.060706106838575 2.060198563695244
2.054850876347155 2.076223760333129 -2.04338334861302
2.062424161865501 -2.066646045522472 2.049749741557044
2.067091550868067 -2.068789797390167 -2.061206472613818
-2.051966610539248 2.055529534601603 2.063347345907752
-2.050872859048331 2.069721185767292 -2.068268372152195
-2.065892572400423 -2.073473375733998 2.053060846755294
-2.071168181765251 -2.068045103198736 -2.03882118669284
-0.004066575944598388 2.99139302674696 2.968131769167071
0.006708439219999971 2.964703755619097 -2.986125957791263
0.004211177604931907 -2.973747652364541 2.987373338025191
-0.01954844807445026 -2.995142888007409 -2.972398261623107
2.964273870564612 -0.01571138381628254 2.992216885743874
2.980240198440968 0.01229176151968001 -2.973791144496893
-2.985576432564736 0.004170993758243109 2.974344716869414
-2.981611208929695 0.0005557761888591755 -2.978689679306584
2.979470162197527 2.955080579472136 -0.006874982188179178
2.96663519054347 -2.990465517937434 -0.00933046122353602
-2.973561522517316 2.964395037690485 0.005758551915769282
-2.977182081705229 -2.972447784892982 0.00128488821357752
4.730447400240019 0.006080152163136469 0.0142208135628264
-4.730524117836514 -0.03290938269954075 0.01366680910324074
0.01766067368853958 4.726283775354143 -0.03101548419307116
0.001585056625425343 -4.725617589125233 0.02391244191529973
0.005553804676608925 -0.008617560051249506 4.737202394230548
-0.001029136113591824 -0.002586014723677884 -4.73182505351358
3.042415184988364 3.024963571650733 3.005273440563526
3.041380557293326 3.030428709084737 -3.01198604950602
3.034341712720214 -3.010438240807491 3.023860506031762
3.011133775183112 -3.028912617227148 -3.03939983294163
-3.021668910618707 3.026895295334421 2.994679185258418
-3.018892764070199 3.026669121111158 -3.016162667915355
-3.022048289309565 -3.044877625069795 3.016613583910889
-3.01399022966803 -3.046848803195192 -3.010083069677096
6.219333084325767 -0.01904572365664869 0.02416826338034288
-6.229640027952366 0.00362430893600627 0.02220600668262292
-0.009966570947922228 6.213262473622502 -0.01867024462253399
-0.0157468838371405 -6.251197727593803 -0.006906168600532225
-0.008547724356275562 0.02048017162724417 6.241474630937849
-0.02218184357593981 0.01555322523681791 -6.227076643718653
</grid_points>
)"

View file

@ -1,578 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
Def2-TZVP realspace grid (Bohr) for species As
sqr error : 1.099973639285015e-06
penalty : 4.931344536791888e-21
n points : 536
</preamble>
<grid_points>
-0.005682576687452402 0.04102235712517451 0.002866689870207405
0.01802259309683584 0.02950987064005718 0.1485676127179692
0.02078948134952669 0.02377419511886557 0.05720458540896967
-0.03009296952890448 0.2567831022618642 0.2223314127314174
0.02880016644892689 -0.03118419842837634 -0.04939161360154633
0.01641978622546384 0.001093480038191984 0.01781596483352629
-0.02828377692441499 -0.007848912908711201 0.03409073313168437
0.02154082226766774 0.0848059793715287 0.01614899945297583
-0.03113459783264134 -0.001513646816066931 -0.03105408634408872
0.004280536447880676 -0.03863037783240503 0.002158164056959041
-0.06540510089269146 0.03048010500327755 0.01284122467927319
-0.03810955023806796 -0.05791135662965778 -0.0100124101159734
0.04219318438607435 -0.03468915169150702 0.02978774684922187
0.01074599701320556 -4.863789812702462e-05 -0.01986355672655376
0.04472741390892342 0.01756653528431591 -0.01043040492003467
-0.1096493848722578 -0.02749700953528585 0.021328881104616
0.07953832022473725 0.1000132691183174 0.04352105166754337
0.005458781344289785 0.04264956124652528 -0.05672678066968232
-0.02557093266390217 -0.04572302674418181 0.06975697776914598
-0.05017175784484852 0.03618423542654167 -0.1327227417670634
-0.01289354094428411 0.0005384101199379657 0.00297818643919344
0.08481137867684048 0.01732414519473228 -0.01058147560937997
0.05350690753185659 -0.07969344553724193 0.01046797536527011
0.03852005889902181 -0.04573939437933373 -0.09481742743182436
-0.04427907259514947 0.05169307360353437 0.08386645375892167
-0.05843339041523953 0.08485889656783221 -0.03612983855535649
-0.03442155401659247 -0.1049157482357131 -0.02419749344889314
-0.05533743024795786 -0.01078183305716454 -0.07607685911687806
-0.04665534047216475 0.130269871395446 0.06521322761741775
0.00211062642053363 0.1475216681594531 -0.05759896724222138
0.006365667440235348 -0.09000720552811106 0.09715636865296269
-0.02724769974569917 -0.1067291198487139 -0.1053903215548982
0.06707488230137487 0.001935154346164457 0.08591075384405326
0.1259754612066308 -0.03232423135346058 -0.01629324813302803
-0.1055176276287124 -0.01409291866286997 0.1174928708537078
-0.1295987680334142 -0.04224446198025739 -0.06977971506999636
0.1498063824080746 0.06380538248873431 -0.0402907719659828
0.06650008511036169 -0.1356114834863802 -0.01527980803285303
-0.1328556443349771 0.0697259995698141 -0.01079295156669036
-0.08568573547111767 -0.131825858372399 0.03824020020190823
0.2021382577570648 -0.03534840284125149 0.0609083542505743
-0.1939831525600865 0.04269730407539885 0.03618652823949906
0.08166514086396122 0.1905009589123693 -0.005293926046490179
-0.001983625383904905 -0.2005994878426908 -0.05340918746826834
0.00390604189790439 -0.02490272044638843 0.2041413305528388
0.08984697800075576 -0.02430170869213623 -0.1402627454926314
0.1207202795963938 0.1005774170989784 0.1241868961856068
0.05648392920786913 0.06456617486796205 -0.08149662620773113
0.1291699389381136 -0.03955287425614999 0.08879473969798866
0.1482053528280609 -0.1226454008743824 -0.07034610119407712
-0.09599742241195999 0.1878927861108207 -0.01928590942471791
-0.1334920034285253 0.07342821993500791 -0.1366407332931653
-0.1149411521384976 -0.1369454601695073 0.1219492900133141
-0.05401147763638607 -0.06554422102975185 -0.1856736048554639
-0.04476658901492545 0.1380724743360108 0.1425201675847631
0.03273055261133401 0.09997485514870594 -0.1745362923679756
0.05683702634104543 -0.1458058664429905 0.1136928568892419
-0.06239129901949797 -0.1739352495162745 -0.1902178908681356
0.1662378356502377 -0.01896843146487558 0.2029072053316946
0.2103962127414803 0.05158516025489882 -0.06467610159947243
-0.1425639646367317 0.04030939788871628 0.1759364549618794
-0.2304647307344528 -0.05167292213236158 -0.1322295616047839
0.147524080595465 0.1337894665553652 -0.1791139481762337
0.1189362708523447 -0.205474918342868 0.08754064875453857
-0.1445437598841835 0.1805674193678603 0.1523300672053392
-0.1671946805213697 -0.1129817372338907 -0.05406199711013128
0.01656806904515512 0.09691666698576201 0.2550063094079665
0.04518889189221132 0.1557805914111178 -0.2908283209382326
0.0982572172580877 -0.05687874286956841 0.3262798466259704
0.1105265017501868 -0.0736847354578037 -0.2108021544435291
-0.1665696946737436 0.01400916354135282 0.2758805689256628
-0.07560743186193861 0.06360207104255622 -0.2517770861302773
-0.0311739584699032 -0.1394280690525473 0.2347524179697929
-0.08037111626544183 -0.1058354572749514 -0.3124768295915415
0.03821511577389915 0.2394545058612034 0.1116935836333707
0.119133437218035 -0.2715229637221032 0.1411487189814664
0.1171764913049527 0.3203393217225343 -0.02626150621630306
0.08194669494936463 -0.260060299838562 -0.109705702848933
-0.1436385812309833 0.2904168083372689 -0.02598517486950731
-0.09614342220763598 -0.2499939961721588 0.01451004200343457
0.004666261131020401 0.2458937210536087 -0.1101539478241232
-0.1752648819676891 -0.2653426258162167 -0.1078187646923793
0.2244018664460632 0.1521494992512402 0.04839651073760003
-0.3156235546133228 0.1060924582646454 0.07081548797452807
0.2967127904598224 0.1071093059235755 -0.09689295210765597
-0.2153131714677973 0.1503265993246424 -0.05929451498447067
0.3062918801513603 -0.07675845369083496 0.1211476517954738
-0.2547134172059887 -0.06930993125890209 0.07148883710152612
0.2568969527767667 -0.1099899586816307 -0.04996992529529646
-0.3313916708786632 -0.0923603938264209 -0.05946135752576456
0.4119656489945462 -0.03311813025013594 -0.06501287746410013
-0.4409348525142439 -0.003521996167722083 -0.02173290163303862
-0.04686538477831213 0.4159845960439862 0.07379922189137386
-0.007207672316022078 -0.3847600765412568 -0.005599912179503306
-0.05969897945622622 0.07583104135202387 0.3979551987547102
-0.04090985388002853 0.09277503529090571 -0.4040177937791604
0.2201243244586895 0.1534955862163158 0.2141799605716039
0.2514141107810915 0.2097765432694526 -0.2559385226699545
0.2134073497587846 -0.2972634155823007 0.2120213892405579
0.1816412565478717 -0.08752633124571102 -0.2684086526996886
-0.2328040013313178 0.2442827875051236 0.2365904788841308
-0.2302867053067838 0.0994231016741772 -0.2387483985755648
-0.1843547206040964 -0.2294826561683396 0.1524871817653162
-0.2778171668107349 -0.1864007001902188 -0.2447207835362882
0.1032993995273576 0.3103336362560519 0.2988386642441398
-0.02107998635845428 0.336840547707663 -0.2051137618914997
-0.06505920463610061 -0.2221436841837772 0.3263638881562615
0.0411669241173085 -0.3126614106954111 -0.2422002211454422
0.2857442576904607 0.004502924891724024 0.3169070228568002
0.2456660936525891 -0.09730232932630527 -0.3615556914691915
-0.3465715530893014 -0.05814405820564152 0.2193722280316186
-0.3290279298350477 0.1217123278544232 -0.3032482909328377
0.32445223731752 0.2507115980773056 0.05913705759772311
0.2721347206679813 -0.2533128772280328 -0.08588258688874813
-0.3008711033245042 0.2709971663928931 -0.05321420208454104
-0.2613704519893945 -0.3286548559161077 0.05239900588897181
0.1540842704004383 0.217685563016267 0.4873504231275141
0.03481877829838871 0.2928588752121101 -0.4156276897217411
0.09824472447327473 -0.1221693381385392 0.4689212621889713
0.1119258762550324 -0.2260620336877159 -0.5058571388456001
-0.2385501934731169 0.1408026853293839 0.448417999473766
-0.220901366091267 0.07837825021038665 -0.4879032405128737
-0.2154509009533501 -0.2183733274438752 0.3989608735452256
-0.09659980767263994 -0.1979502942949055 -0.4218168704324404
0.2974977968085369 0.4486193112211849 0.1497353206410539
0.1042355817949189 -0.4563717456263501 0.1560057687517584
0.1240910729985939 0.466049964174029 -0.1137557943156761
0.2326879918113001 -0.4062771219451375 -0.1820080631387123
-0.1188047885024497 0.4734470217905398 0.2603579662833451
-0.2530568560190497 -0.4247597480376012 0.1713807509987951
-0.2576954627261848 0.4280953766599242 -0.1586713243795514
-0.1406952039672819 -0.4573356838828357 -0.1768868465445894
0.4349285331809644 0.121161124189597 0.2563043078839347
-0.4268271782320012 0.2669324838679153 0.1296938607619699
0.4632589365336338 0.2130764070865762 -0.1347443721160156
-0.5462834871523998 0.1092959872147301 -0.1950447868536271
0.4389503647536394 -0.2155287003442678 0.07920691732178568
-0.5097377414350787 -0.09916187412564011 0.2134233593467575
0.4882362073252428 -0.1551784821531895 -0.2327778215984087
-0.447750551281268 -0.2334224277978984 -0.1339122333172081
0.6314301993198033 -0.01078592952748938 0.1007912797410102
-0.6772258091932943 0.06984816552472098 0.157512216181001
-0.04729521533415841 0.6300369468115911 -0.06917879175435426
0.01405873697025391 -0.6291879067768791 -0.01817626113904882
-0.04237215177927939 -0.09043914584867038 0.6323429397915082
-0.0832244021321444 0.04640802898984114 -0.6688419147743968
0.4587579550697521 0.3040092565812088 0.3898091635812695
0.3438660702828393 0.4595101751143475 -0.2702493486161544
0.3507606856350989 -0.2449904889031078 0.3714180662404996
0.3639421005059766 -0.455406480000862 -0.2927343747144913
-0.4115337861585064 0.3540270526581682 0.3797258427443328
-0.3731381634473621 0.2971174480290472 -0.4575343961620197
-0.3355817649602517 -0.3507066857244639 0.4357005478429041
-0.3620397146819613 -0.2232104610783478 -0.4420031717044109
-0.02540130963882437 0.3621391843198224 0.6067269193421451
-0.01655695459338015 0.469497579979658 -0.4524184063471236
0.05831670864934854 -0.4609005064312005 0.3885940172469425
-0.05158694600877826 -0.5000567658973455 -0.4108723363618196
0.3744431904011844 -0.07007190365559142 0.5347213326889094
0.2801325061196281 0.1162159233472329 -0.4895030469332548
-0.4478073923011655 0.003114024388073547 0.545821502302143
-0.5404813069747889 -0.007665373108793383 -0.5772729526198841
0.57230343130899 0.4472970386034855 0.01967533285316682
0.4157128294712218 -0.4629324532179351 0.1281432927507703
-0.4916525029300867 0.4599267487319558 -0.06014177034920341
-0.4510283586443683 -0.4313717151926983 0.008505339002674084
0.3116380883296285 0.03196991731363106 0.7548821814706044
0.2557379091180347 0.331917713151737 -0.6451769727392614
0.1808736532402192 -0.4412003568859819 0.5898629287928531
0.3429387128663823 -0.186664688741708 -0.6128530028681554
-0.2237847603280857 0.1480997274814948 0.8111377342776691
-0.2931058164011624 0.3090740420018062 -0.7268998899078843
-0.2658959724725003 -0.3344257142511995 0.7017071553744346
-0.1477016574758567 -0.3408328706467455 -0.6876039472222637
0.1969909474100896 0.6338861554290004 0.2775481524232827
0.3283014624734533 -0.7082358931175196 0.1886694379252977
0.2658339455189703 0.7138719104502995 -0.2307497722878382
0.1725571482326759 -0.7051647347248932 -0.3038871450533268
-0.2692118223611925 0.6660204538759864 0.2360934459307149
-0.1877712404664855 -0.6830246203623896 0.2560366465596907
-0.2650190535490234 0.6968587457548556 -0.3208110880912377
-0.3824663370212928 -0.6115744117935323 -0.2270594557971924
0.7358513629633096 0.1607002408618905 0.3183263814545887
-0.7135086728120469 0.3094994782854368 0.3284168829269247
0.628066031045536 0.1074037557762348 -0.3292104440452175
-0.6910795275316349 0.3574483374551092 -0.2733808011587393
0.632134531437988 -0.2980888723584407 0.3708707007241319
-0.6411865798963442 -0.4097554424718159 0.2186976178783304
0.6634548218017372 -0.3435108295689523 -0.1529257980237241
-0.6618224534138246 -0.2107357257480108 -0.2145392857704553
0.9165657953638707 -0.007472220698545295 -0.04188363182552833
-0.9251659556855937 -0.06177834777987392 -0.0766014856575848
0.06226023794429162 0.9182453657537085 0.1187892676832445
-0.07485530054343302 -0.9207395560038205 -0.09002363747063757
0.03510932319834295 -0.1880823368668187 0.9498391064961758
0.08775646342105226 -0.004030866419765461 -0.9186237421295789
0.4451655684361736 0.5281829065739508 0.5319623165331393
0.6265948421199464 0.4839538003014651 -0.4192962719739793
0.4064225490773105 -0.6124608048187197 0.6366365121113626
0.4638522725238067 -0.5133167604044869 -0.5631054176775144
-0.4137891518661545 0.5588708093881924 0.5471689297673183
-0.5913315921766519 0.5154101616237402 -0.6226757608076278
-0.2328749909816576 -0.7439116897832535 0.5451531283878855
-0.5935245047728804 -0.4856213520990049 -0.5090680748202345
0.03773519709919549 0.6065704933837029 0.7192504632780303
0.09125128113563019 0.6937587053672857 -0.6521616287159969
-0.07205241008400337 -0.8345108861553932 0.8491402281871653
-0.05455175043109475 -0.6618346052295887 -0.6584380725379291
0.7121293159285731 -0.06351942050472961 0.6731793849355433
0.6927788603288785 -0.01548772515683775 -0.6227216082759689
-0.7159492721210233 -0.1382351063598653 0.5738356197417367
-0.6533850223579301 0.03632253973156732 -0.7690161843840159
0.7074245145278358 0.6377416383485274 0.1004404029377173
0.6769635378537786 -0.6562210458407327 -0.0528128759687607
-0.6231388781507681 0.7162269857245964 0.03805367185125209
-0.6586347747215786 -0.7170290467908826 0.03062293445288912
0.3892989419873327 0.3402993415161735 0.9708681231962539
0.4902072352641119 0.4034973907104514 -0.9047356607385602
0.427815736909099 -0.3501663447023721 1.039044672136892
0.4631006851813838 -0.4073290337449458 -0.9390446641398121
-0.4349184468756676 0.3486130859754759 0.9324439877978273
-0.2556192021600155 0.3953183051455524 -1.019635063336171
-0.5353755283472917 -0.3756894249275542 0.8829317448002284
-0.2982652004664388 -0.4281605186654909 -0.9626975576407566
0.4425107032549638 0.8945325734637812 0.5242872047090287
0.3277925922365907 -0.995029726830202 0.2196738571795353
0.4605202713087176 0.940510757015806 -0.3335429500475104
0.34332855943602 -0.927632907795534 -0.5099592706827875
-0.3972877362943545 0.9043230178283012 0.5074892249225633
-0.4342159828505492 -1.045020380692011 0.2957105033615752
-0.3299211513308892 0.9703136449100211 -0.369378176579462
-0.4084266650286136 -0.9603744866820043 -0.4693556474739616
0.9403651957054178 0.3650737350380035 0.4635491609421094
-0.9401649766584017 0.3641598257065613 0.4234838724188893
0.9590584507715502 0.4251555011570504 -0.3824924704545608
-0.9787576811540186 0.41580405080231 -0.331121735132103
0.9471754738184827 -0.3987343140311203 0.3289463255313078
-0.9593736968891732 -0.4676570117180407 0.3221020867651087
0.9386788448752104 -0.4093250489420502 -0.4309665488854489
-0.959515540952896 -0.3871029897440049 -0.4516725737516162
1.231367448352236 -0.003336590425119521 -0.01124930315309794
-1.249159698759498 -0.02576631084991632 -0.01619887053157769
0.02702672689321117 1.228227859339341 0.06379702237757756
0.02411685860100226 -1.268395631183087 -0.06068422697017224
-0.1137877038704867 -0.0560603457282868 1.226568712877661
0.06867504345503317 -0.009595456952244723 -1.251728938313299
0.8143177657144721 0.6722244770732632 0.8479322931745125
0.8187906820524966 0.7946290815650564 -0.6882478046110893
0.5945390381874707 -0.8842187621145411 0.6953212017916176
0.8350644612956202 -0.8212608400773359 -0.6276629044131847
-0.7301441157181696 0.6740901702870616 0.9028012808509053
-0.6567253980275198 0.7613806972648565 -0.8083783165405276
-0.7991748696258762 -0.8431967564771904 0.6712507517824791
-0.7707149773115587 -0.5977006679172123 -0.8587859807921108
0.003774061372672085 0.8488611296555885 0.9770185450523525
0.0937948023239271 0.9568523941351571 -0.8678560865246642
-0.01731563243990539 -1.215681468883104 0.8017109428407118
0.007050964905270029 -0.8592632364190693 -1.022321448540219
0.9777209248608453 -0.1364661969200749 0.876469166861515
0.9723304984178707 0.03824662127642205 -0.866087737600391
-1.001264779523271 -0.08721013159620371 0.8479981032105006
-0.8776984261687868 0.1303199891260183 -0.9661594919291291
0.9357094104046224 0.9016643726038106 0.10386207343508
0.8342372016990441 -0.8851850176829438 0.1476788162037015
-0.8547733392165315 0.9303600560989269 0.0286401142687477
-0.9517964447333795 -0.9162417653145993 -0.1190202682102582
0.4054401825638591 0.2967147624852257 1.372417046931642
0.5448026040517034 0.4878037974366044 -1.285022359403073
0.3987869460632334 -0.5640812787636095 1.296437860987836
0.6059515866351058 -0.4796201135373787 -1.266897866799598
-0.4779386263579934 0.2952574360413861 1.40814681357398
-0.3371368931573681 0.5277469597688779 -1.366397424939741
-0.4845413322525319 -0.5342397386500201 1.274867564153431
-0.4503813065601427 -0.3920814621046 -1.363189283755046
0.4682752190792639 1.289262168013761 0.5533404111411437
0.6647319429026637 -1.304496038573619 0.1663561465720431
0.4511651961775446 1.357556413761954 -0.3784998433758152
0.4150876896678444 -1.299295044605028 -0.6052478181095653
-0.5024812559551947 1.287243109327933 0.482649212237803
-0.5427660409495807 -1.392793172130181 0.2587799958506021
-0.4880949974234129 1.295362613455777 -0.4695971295108357
-0.4976585787032564 -1.254862416535784 -0.644197013331847
1.382268421472622 0.3200333579840578 0.4700722941877384
-1.302224018984328 0.5158153876671971 0.4142025355593301
1.33535428440854 0.5253105647302972 -0.4070400100905854
-1.268140408978101 0.6030744138528152 -0.4405527764102341
1.279593429457633 -0.653545295077357 0.302185896371069
-1.340894278671365 -0.5509760867108514 0.3621437258255939
1.329515105570852 -0.4369026095697393 -0.4719899817674296
-1.342322436397756 -0.3461983397161276 -0.5322543839989233
1.671960511249388 -0.007478624784930303 -0.02465264397175155
-1.671710828880949 0.02381145369784146 0.03828856512982739
-0.04292809858241644 1.67636456959902 0.03295049189185147
0.03121513915880892 -1.661274989742877 -0.03758918483851193
0.04991959114069388 -0.1522933797008122 1.69211323009988
0.1068894188784055 -0.09121570460964645 -1.664885967823861
0.9953506661635005 0.9046705066630885 1.014481583985407
0.9782666659218281 1.038542999964546 -0.9327424088381316
0.8594885574642711 -1.008688538187818 0.9653108174165228
1.076892448644067 -1.012665997447664 -0.8405331049564913
-1.003929420606019 0.9548033251785721 1.00569452322044
-0.8690582721042706 1.000244183028174 -1.036492294171037
-1.010531023990967 -1.022122033995771 0.9140598145935694
-0.9980994559953974 -0.8778109842076715 -1.021527916577784
-0.04569868535677148 1.134138965783203 1.228766104021473
0.07384077770720057 1.291842558105221 -1.144604683961795
-0.07402026858691127 -1.265291334560844 1.239010187138872
0.03508706804186325 -1.171935293884005 -1.312416539583323
1.179725066815551 -0.08845785348000336 1.223253177683262
1.27900414057886 0.06734334675314273 -1.153359633963558
-1.296706664562445 -0.02229127223073968 1.108655177607571
-1.194628535549532 0.1053111139102878 -1.226475649992573
1.206961821033649 1.216278657788505 0.07349728531182739
1.246309869532923 -1.281555513520439 0.09347732101944824
-1.158036948702617 1.258728562236393 0.01412214459740568
-1.259880937463514 -1.205752358473103 -0.1244587256117851
0.5955334468591695 0.6195140007250847 1.69370773954147
0.6016157918100774 0.6001590447162898 -1.734477573518189
0.6459978471597744 -0.6997699320257497 1.675064176444301
0.7791463511839504 -0.6372675845915294 -1.640431311358874
-0.5978371996584672 0.5874603406564013 1.759090609191699
-0.4946327057095675 0.5892226495362543 -1.787026968492434
-0.6963796164930359 -0.5386530111093678 1.686062137281108
-0.6906970653660415 -0.573784890555071 -1.718883794025248
0.590994562673153 1.671766833474718 0.7015334450444417
0.5152916661357674 -1.729983236084194 0.6171556591097487
0.5967947672290407 1.795165041926105 -0.4987592739849138
0.6083720267424797 -1.730473163043137 -0.6283262467022266
-0.6275848949520335 1.705203601152257 0.6621317080935054
-0.6317428142563924 -1.748234766536861 0.5350356869369902
-0.6801209512596924 1.709060866945335 -0.6274009272431164
-0.5802307436056254 -1.705725655775712 -0.6958936331224533
1.726462106565832 0.6013155548298166 0.6541796192147424
-1.709298960811374 0.6783407797292205 0.5948341605019664
1.73774709699001 0.693366222527949 -0.5488866953272812
-1.691008512353152 0.7059800979956619 -0.5531604041043749
1.741127136328871 -0.484878927462471 0.5726806709484058
-1.743063656410426 -0.6652515342236313 0.5692445713039717
1.75433429064894 -0.57813322274316 -0.587050322186605
-1.759645552292865 -0.4907892875468575 -0.6428682891605708
2.179426377484024 0.006282238009038182 -0.08264719703338386
-2.159942255205675 0.04724144035327129 0.1164323013157423
-0.07623929558710638 2.18604753881865 0.01494233604546739
0.04478343008825926 -2.146137188577616 -0.001466266560236355
0.09663666765426449 -0.05547291224941656 2.160307769894988
0.09902065136209134 -0.1965652678474448 -2.154318447338064
1.216380276937702 1.331802439981642 1.210579727385618
1.169013696024985 1.307086405746127 -1.28377547445175
1.307591381791273 -1.206934239537073 1.172515234870144
1.312731837158285 -1.249764836580282 -1.261505459212406
-1.338163976208531 1.250498736801174 1.240419305420792
-1.275723669084649 1.159712343790208 -1.304245902917899
-1.250957658842578 -1.254463538530342 1.291466137862012
-1.247311093402102 -1.321387824367178 -1.195886681914707
-0.05506705102056175 1.579890984630749 1.523650860531133
-0.08456483992843572 1.613246708254427 -1.553926510016727
-0.0367165635448837 -1.462465307466336 1.662249403894899
0.04545970328985441 -1.590391098381776 -1.631149299759865
1.496876325909632 0.0853437366150791 1.611623731744754
1.599244775237723 0.07920593573041093 -1.565192715368717
-1.591489633650117 0.04466785116274113 1.532569165885482
-1.588622179798289 -0.02231316819850438 -1.554278853192737
1.526550872753896 1.640052834519309 -0.01414834075876884
1.629407609756307 -1.545613382532394 -0.04075256186774179
-1.560027047917931 1.620739585717566 0.009575614964505168
-1.566184624990526 -1.607709117517532 0.008709050117596057
0.7347511579533477 0.9062401722077512 2.159325260164025
0.6772542537762621 0.816653315294299 -2.268819273872537
0.9016774182314152 -0.8316460914383412 2.168315173057369
0.8842556897551667 -0.7136144957449666 -2.245089927516266
-0.7555104047211837 0.8062866206356719 2.226898159870963
-0.7548390422207377 0.6933289205760084 -2.289713647792931
-0.8050996663034843 -0.6494308180275441 2.245308562836804
-0.8719638663651588 -0.7926013870930023 -2.193597834996055
0.7699629250713678 2.237440145011235 0.7712247863906277
0.7454661547702123 -2.127161738704278 0.8671864280429945
0.7372237594698858 2.281167782652555 -0.8284435411298922
0.7937516770291803 -2.262980736087254 -0.6723413758615188
-0.7562126334673754 2.263193766538172 0.8406608094384374
-0.6972397050156895 -2.209226072821305 0.8155384712377699
-0.880598158751888 2.217679736226561 -0.8117509628989563
-0.7069947815785984 -2.293243443924232 -0.7363931978236224
2.203166440939792 0.841908315490005 0.7317907853523421
-2.290284162747717 0.8020283335218199 0.7355935368019244
2.193647755074248 0.9281735639247742 -0.7917066779273281
-2.227248400286702 0.7779482866504482 -0.7608582328666917
2.227146092204078 -0.6330126346086103 0.800403908611636
-2.232305243221386 -0.7628316547205526 0.8213113664975521
2.287906422642197 -0.7142498303616737 -0.7982514948299839
-2.24523041625971 -0.7409424957686163 -0.687500070912747
2.829401658964551 0.0719352645995109 0.006752243180060181
-2.864982400558538 -0.09846747763155955 -0.03406068380780539
-0.06697632987207389 2.868754856429169 0.009045739839114685
0.08700218279895719 -2.803066597562772 0.1536931169219013
0.151843285488052 0.07751482911716476 2.800801736287335
-0.04486444123706131 -0.176384954315111 -2.847651631962457
1.617961164641759 1.610228744681321 1.568353104961189
1.575830622409156 1.568481170988143 -1.682389750580173
1.699052035276594 -1.624980911938407 1.41451013822479
1.477042313028288 -1.679626515748344 -1.675126694991673
-1.601978744530216 1.608959649013091 1.61850934236475
-1.606051133050104 1.538293512859755 -1.646255161611523
-1.591112849546277 -1.594018923190655 1.61149217618211
-1.619464456480529 -1.643532560425665 -1.515827364107781
0.04943317055147022 2.049573511197641 1.9852348833981
-0.06677651905214647 2.063411825202023 -2.093591438050316
-0.007399216807039159 -1.912920233927343 2.064635570961643
-0.07745767918044372 -2.019803086139922 -2.102399062287315
1.997533247120859 0.1052757564845412 2.01158902844004
2.006037062258802 -0.06404240791264312 -2.076760652994155
-2.005263303318556 0.07473839758221731 2.022935541322487
-2.101037406214064 -0.1226862654271262 -1.928389567061333
1.961447697046955 2.130536384972309 0.006680027734689929
2.042104266559742 -1.970873666097854 -0.1502694089850544
-2.066001746347416 2.055265015133815 0.0541500723881144
-2.025320709509503 -2.017519378246204 0.04295786330474376
1.036107912283899 1.232614381354319 2.805402905176444
1.053186048057833 0.988101160330852 -2.929761494561228
1.188895963648374 -1.104388626912193 2.758336234011337
1.017674741444769 -1.135826080631217 -2.898292043647887
-1.0544418194324 1.082510015846448 2.843321486742289
-1.170950711065915 0.8987916233036995 -2.90658667513487
-1.041699030340148 -1.02878424057387 2.811571055478774
-1.290634084836685 -1.108430184853865 -2.773490474898749
1.081317668844656 2.872978207743302 1.09947409034166
1.082367631976623 -2.703518502473191 1.208119978368625
1.171802945680022 2.859607493611498 -1.112949155448947
1.045102645316937 -2.863032241774526 -0.9696056207451159
-1.041403758763206 2.874241598571636 1.287927267739602
-1.040147641022299 -2.780092068936883 1.084405572875159
-1.148618334584525 2.890488793279109 -0.9855434794371625
-1.002479532560206 -2.892485012122993 -1.029243312425239
2.837921891055313 1.168561371157383 0.9176456447689585
-2.894968644392603 1.059045744348012 1.058872767418559
2.796267125724301 1.149690803703534 -1.127445801523745
-2.805545059870138 1.065123013287115 -1.172935050634424
2.835801035725414 -1.03029143134982 1.042869784321932
-2.800893028367585 -1.054281663096037 1.219647069396857
2.862989843778644 -1.019995569409122 -1.109707732675377
-2.848059646339959 -1.218791067786121 -1.018810947757665
3.749453629546469 0.05700547312801182 0.04332536314638222
-3.71473798142671 0.01104023618596437 -0.02252192134525391
0.05863309606566994 3.733948782021551 -0.0634403829270092
0.07866567706448549 -3.694022074116072 0.214468195507507
0.08620087797232109 -0.1470175010418842 3.661353164058037
-0.08479028755769663 -0.1767250890853562 -3.737690183052487
2.223043847341374 2.140532211229948 1.983690375604182
2.205564078199458 2.076959686035186 -2.14539803349974
2.059934541162645 -2.207019126199403 2.125595523004093
1.88153649069558 -2.215598926697938 -2.185373571662677
-2.283842594992221 1.908171202044855 2.154620325793103
-2.071733654515138 2.163718547418022 -2.1030026728347
-2.046278360691419 -2.156224361359555 2.155084247979027
-2.00913405717061 -2.205768555700864 -2.1659380946869
0.1090368599187186 2.533148356407427 2.874580220893347
0.005022681007882337 2.683585880798195 -2.709868157205366
-0.1708177100649261 -2.620465008639534 2.572163040592182
-0.08688137318038067 -2.790600551190812 -2.630963918206265
2.677197542664881 0.08433327014231176 2.482042422670943
2.764288139406712 -0.1672601023995307 -2.592860629603926
-2.50525888070347 -0.2186763731066206 2.784646361078031
-2.909592013792395 -0.0660181411737704 -2.482306285579405
2.864967287468831 2.626318331995162 -0.08378314446455151
2.568476996183482 -2.596579290963796 -0.06039117884350691
-2.732487063030709 2.674737677847835 -0.04793303919877003
-2.555621839919662 -2.720195157266319 0.07796662423821829
1.832526069479412 0.7867775167608362 3.747474168054131
1.288840314205334 1.562756763348274 -3.753864271407741
1.141832068006271 -1.913695431829553 3.672072036678623
1.601600368234687 -1.312599424707903 -3.750631719358287
-1.31157591743182 1.375128884158193 3.806658570234983
-1.709474267450312 1.341896550897471 -3.696716635959257
-1.593275756745525 -1.438479525182407 3.795002021991164
-1.424501779379667 -1.518714797570152 -3.754104599888761
1.383124308416839 3.661508151540734 1.62477565715706
1.588554253922841 -3.788738545036256 1.322272356360562
1.564416939909468 3.843859123855521 -1.354196542773567
1.339746728694741 -3.721483104180387 -1.595970391800718
-1.522975592505024 3.757524402696552 1.424595519695865
-1.406510183299735 -3.772808390148639 1.777147185344514
-1.365285320957818 3.841166334164718 -1.436465011087682
-1.642095027117438 -3.844078836051326 -1.11153826055775
3.869901925216519 1.466692426265707 1.647241179946023
-3.80574263586979 1.253904415837962 1.701619735621056
3.875614224643083 1.091612636023819 -1.754409514773334
-3.835497527660106 1.582207222116641 -1.275356515107097
3.60276515581125 -1.351782298327882 1.821217710181204
-3.737348852683107 -1.431897339107493 1.311020073398507
3.601296533887233 -2.059312708698421 -0.8951766997868339
-3.759893759945588 -1.727972567347176 -1.467422592475208
5.034792435898989 -0.3917141647474067 -0.1563919149999959
-5.079496965359671 0.05122996507382729 -0.2111140363279245
0.0057110361491941 5.033588843601695 0.1005366026316529
0.3380777046641678 -5.106249298450182 -0.1209259721749273
-0.02287728410177526 0.3393173604083888 4.933623057906963
0.1523420913156508 0.06922384605983738 -4.967739595173233
2.002965196088617 3.147308504670285 3.182854821695515
2.755839516086423 3.026504174676595 -2.899229070607004
3.104366344150485 -2.679224133101926 3.025833053638871
2.897899099048497 -2.483183443957165 -3.072571894088195
-2.749129990150278 2.780441413386169 2.90112386822225
-2.732439995736704 3.148213315947072 -2.727319111027694
-3.434557709011936 -2.257603153879123 2.795094370199445
-2.322581357591751 -3.016096540052458 -3.288980120867321
-0.2268498275438056 3.88704203089234 3.810413837270995
-0.05273406664273373 3.627317494927266 -3.908567294356924
-0.1679052930353772 -3.739808638334777 3.793740977197145
0.4014284556867914 -3.77661761404841 -3.702923352682944
3.718573973523427 0.2704686034213657 3.861342282124132
3.80221492634116 0.1061616822357832 -3.802398754000972
-3.781959290081243 0.2268540573568882 3.884181006383792
-3.676264619643297 0.04586264748242143 -3.822593433753237
3.844533648002078 3.686067013932759 0.2789298149567491
3.693774976219199 -3.785627119704549 -0.1484155555400991
-3.800996988506686 3.819777528316666 0.2493102738280071
-3.683375449032804 -3.873828990311639 0.02137021025821104
6.279080412036258 -0.1096760417773538 0.1335329232028439
-6.30103870355419 -0.09114189864742522 0.00437842811077783
0.1401216690804101 6.227654418992552 -0.3195175503466524
0.018721352183295 -6.299091384600377 0.1182031509915806
0.03436231979913913 -0.3479716796727072 6.151585492958103
0.04290749517192924 -0.1588850102126707 -6.224178279482492
3.804811258946887 3.88323659346039 4.116416619674156
4.071343156095812 3.839660423627354 -3.900774581225036
3.9875410560888 -4.027788301749814 3.826194097238511
3.945713187551362 -3.937810160631339 -3.853414157565358
-3.814871695393101 4.017109172644042 3.973137379710912
-3.859720372602034 3.824123035015323 -4.037691160492708
-3.937059194024982 -3.851440125996361 3.956869521192997
-3.77227609644071 -3.971775577607028 -3.920622818143034
8.990264702183598 0.1306609580159444 0.1549987962516972
-8.770957823050646 -0.2082098677420396 -0.02419308370971784
-0.4241260359828352 8.798553456009808 -0.0399343169059477
-0.3344304598732288 -8.794223673374281 -0.2451623337776219
-0.2231181310386103 -0.4460885065285742 8.658413505031261
-0.1467796998933847 -0.07888660890947292 -8.791093439362641
</grid_points>
)"

View file

@ -1,378 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
Def2-TZVP realspace grid (Bohr) for species B
sqr error : 5.093481732788103e-07
penalty : 1.99649606621379e-20
n points : 336
</preamble>
<grid_points>
0.1903530737109296 0.04389518107162196 -0.005002480928846849
-0.02751943841781659 0.2517241374496026 -0.005691382850720918
0.07147809313694792 0.02548201086303875 -0.02061251136815561
-0.06949438223338122 -0.01638314865774771 0.01729633397563806
0.002742883645572171 0.06490143312238184 0.1300017945074027
0.01965819639073098 -0.1310394081243932 -0.003489997191769661
0.0006271902524079121 -0.0008256504971561971 0.0009119747613697478
0.0574316445640589 -0.1888803424489804 0.13510623874927
-0.057266888955122 0.07553383329158816 -0.1165429768782907
-0.1987615863098115 -0.03630177114313405 0.04492691326580305
0.02001259508123841 -0.1224433082923069 -0.1908555032349415
0.2713541648045973 -0.163517270309958 0.06052738421936806
0.1633628574154871 0.08607013129977235 -0.2318976036340422
0.01436957884239403 0.05512387626467655 0.2687347935645221
-0.4624888541226377 -0.06209130596264312 -0.05433328507171346
0.2264364019314647 -0.2427158199131614 -0.186276388465064
0.08554444156699081 -0.4770848128225201 0.07235371281455089
0.1335045277290423 0.3329314801461862 -0.2005693826952035
0.01204294981374852 -0.00763576588174641 -0.4421299102378106
-0.01601308145864392 0.1393301085042768 0.4622514920696631
0.2669017888930281 0.1842803563996094 0.1610538443409402
0.4530569219337618 0.05095788948668396 -0.1858063710415715
0.1524967697206633 -0.1741558695760976 0.3692458804182569
-0.145023548542509 -0.2719576136629137 -0.07827763031481716
-0.2674403235067797 0.1789279543372811 0.1539168358870115
-0.218483911041943 0.06430605041524685 -0.2286013167043014
-0.1978909700156848 -0.2056975788350317 0.2445053925355999
-0.1726085373703309 -0.3285820516112858 -0.2980280840347391
-0.03115054870347552 0.4287138441679414 0.1895582692429732
-0.1366862908115519 0.2253011160984819 -0.5546773786621167
0.00275606615733811 -0.3443387484469743 0.5452028506146573
-0.2253205156609896 -0.6083860920456284 -0.2767159191157212
0.4636745207449559 -0.1258429446540802 0.2328742252701663
0.2557349787312739 -0.3104402961396897 -0.4588006318918749
-0.3858055846974704 0.01419317735420227 0.4346906161918367
-0.4427626666382681 -0.09228463818494853 -0.4315301796362908
0.3689231402803274 0.4468052690022329 0.04893588261659057
0.3900241025054653 -0.5417838798518199 -0.0405033368602635
-0.237190042847048 0.3670874017546032 -0.208461035301509
-0.3821212873447349 -0.4303513042469977 0.1469771674371454
0.6673382884611916 -0.1537801881236412 -0.1273536711758013
-0.7274659960956402 -0.09838596407806677 -0.01024800038555722
0.01675331748953745 0.6713478241877708 -0.1754553579097574
0.0221852821404834 -0.7304066056135936 0.2391272118575795
-0.07615270563162566 0.06295252694938334 0.8126663394556143
0.2453396825860237 0.04067515829319429 -0.8548194285594897
0.3078064421359701 0.2444634830434192 0.5137380760690222
0.3185189269712883 0.2771804104787998 -0.5003501205559396
0.507709352826435 -0.3062097681683331 0.4941602304433894
0.6850623198039555 -0.2400847905627177 -0.5028934232381161
-0.4809245947490918 0.3561318988187217 0.1011406398563277
-0.1735153697142369 0.5516983716767389 -0.6965861624483377
-0.5418123175291281 -0.4037534611270814 0.5048852058372659
-0.0966786576432779 -0.2600732900516957 -0.720870234493596
-0.1699744673713189 0.5547503800083662 0.4172203698448725
0.311352861418972 0.846361227715495 -0.3599767717491574
0.1738754097590899 -0.5896817769556165 0.7710749867321365
0.1909236496423163 -0.7946960210015893 -0.44303590246519
0.5809035408549786 0.165459899728687 0.7683890871067249
0.6528299225195149 0.441034148314379 -0.3442053710154139
-0.6696538098988487 0.2528929724020467 0.4952334843239989
-0.6389603194444512 0.007009368474452278 -0.6392987863364312
0.338869076932683 0.7449412044160474 0.3457973509238791
0.666389460916193 -0.6482503976111609 0.1255620777183226
-0.5535695398772061 0.4148500156800706 -0.2803204253517486
-0.6827408772760579 -0.5447180771834759 -0.2380538971600879
0.4386872949814741 0.8043559503786352 0.8567727167449124
0.3752555912742298 0.4731404290163084 -0.9998959999561624
0.2355208599114532 -0.0575739075975153 1.216024717167597
0.4483822231360767 -0.4537878423280358 -1.013028993182073
-0.1865499681817966 0.5996479200876839 0.8384003454083686
-0.3835550192292188 0.1905644267855119 -1.134320540622511
-0.4151123711022926 -0.2784670578120811 0.9834815346251253
-0.2736831905901334 -0.4427933580615095 -0.8914118505408711
0.03640233321348352 1.174525811664816 0.171484463560642
0.306470510170426 -1.103506247289038 0.2123880156746661
0.6178990103845274 1.080765699557199 -0.4679545183526658
0.3621222713889188 -1.215525883218353 -0.5561994099714408
-0.4161275705350991 0.8247745338154816 0.04775015823322559
-0.2718140339101856 -0.8840281589085418 0.2442924712543082
-0.3148450936630615 1.034862146496708 -0.5622382559223612
-0.4444693816056741 -1.008649547346786 -0.357189772539511
0.7142930414834413 0.2535090141133431 0.1616316924753081
-0.941110466222699 0.3025415350901836 -0.05134246139550306
0.9953658840899153 0.2367370613652869 -0.55370096774143
-0.845947419516593 0.5892506744460367 -0.501756647426285
1.00774441119746 -0.06493485171611713 0.1691576415531094
-1.041514125008198 -0.3342340428917697 0.2069536517069394
0.9151419272158127 -0.670566739693337 -0.3538754712572689
-1.028086033862252 -0.2668534290144542 -0.6025190605960178
1.390017244894432 -0.236514542033543 -0.05569275848698832
-1.349224977526477 0.3341620899589521 -0.01835817628751645
-0.07987719230614611 1.591383306155218 -0.2684737106752147
-0.300965468013253 -1.457676425268962 0.06926499891155766
-0.3449488640706671 0.4985580292852974 1.310499768593824
0.09071884807159963 -0.02714468712310355 -1.538073089352807
0.9246419444867325 0.6740250130807148 0.1725797323653007
0.7852161215583796 0.7818946629501501 -1.151097786802335
0.8647154403384678 -0.5316180226574929 0.7072675178713108
1.164064626561953 -0.8470165164867127 -0.7591747756076576
-0.7812400908717045 0.8257216806676768 0.4278267849025534
-1.024964510852025 0.5615196771239793 -0.9969573466802502
-0.6558483487147735 -0.8937345070088218 0.5715922124974443
-0.3239441140006371 -0.8097381421658906 -1.040963350034932
-0.2643578885221413 1.27719443917907 0.7549040277278881
-0.1270596071017508 0.9675896438781576 -1.16702061079097
0.06741570198622021 -0.9949130653338609 0.9397896040560643
0.3717789211454237 -0.9665821972597463 -1.354387608374811
1.13390633661328 0.2614147444171444 0.7533501404445591
1.018028195706048 -0.03810405616409059 -1.088114318479591
-0.8900837453597001 0.1184551484404861 0.8173614948209142
-0.9308441206895154 -0.3639969737031886 -1.199286314418842
1.409203897287963 0.6570717894688978 -0.2382393955953548
0.9886876534197065 -1.125492015017596 0.2443454930983898
-0.932568104014077 1.189293313642517 -0.1380590039031341
-1.124211127307214 -0.9039669392055263 -0.2178035785492698
0.5714185736294258 0.4693486054672074 1.388305081316624
0.557576956286906 0.807174192222305 -1.726685923354995
0.6132009243443436 -0.5464189516429446 1.381392807882655
0.7787801988870574 -0.1940608564929711 -1.846111600472563
-1.154914402636257 0.5771397290571323 0.9034238750216955
-0.5720742376481858 0.3633205871837337 -1.794673213308201
-0.5434192030094375 -0.410634476998481 1.388433098816718
-0.5727597423007635 -0.7472512043305743 -1.720798464288833
0.7672441430829783 1.285721534320132 0.4242742074797392
0.4089337995097581 -1.519894204211858 0.6309613333105152
0.7668569347041544 1.546682194253578 -0.5534350080217221
0.3999141968434532 -1.765457593201236 -0.4488435700085796
-0.971518873941386 1.482766895245279 0.6689613063126476
-0.7444555269378964 -1.281335965205207 0.8536334094746119
-0.7598822892158003 1.853454560646906 -0.4164325551202845
-0.6013978686031979 -1.386185718527385 -0.8281527093365832
1.50528787607448 0.6368660473750835 0.7427497639091654
-1.713047295243368 0.6590585866237696 0.386034872699109
1.553406629104184 1.00788910428622 -0.8070126364921218
-1.461844818512111 1.052492151910948 -0.594209128090009
1.448064541053212 -0.4826961212464053 0.8253436769072686
-1.319939110152578 -0.4335082166384209 0.6580745786835576
1.830284466770529 -0.3375271956466282 -0.05708374677011689
-1.64128179009889 -0.1325610458153348 -0.3769127552071924
2.145635267031748 0.5151436612601171 0.1619876118014101
-1.868847296623329 -0.5074032939982612 0.4666860289733989
0.1075413105751393 1.916246171471091 0.5481044381954152
-0.3081734107727763 -1.953493967101699 0.3370419500274515
-0.4809451369454571 0.9204873619111643 1.59122185347727
-0.05213361151753347 -0.6656812713448956 -2.303772763808677
0.5187206363087331 1.196363188290958 1.323403419444233
1.690477736142119 0.8057398189135707 -1.491197596934442
1.129884992202677 -1.24601534284027 1.073765564924834
1.229926088862259 -1.154838227537449 -1.362940173625921
-1.41220937616083 1.287548653145524 1.347561224508544
-0.5087498087103411 1.375196055595989 -1.200748418210955
-1.139618942754766 -0.9141407093754554 1.423155334223226
-1.521090845996057 -0.8285910127294968 -0.9077648321123251
-0.1816080810251438 1.729691015399589 1.605119145123588
0.3767251932415906 1.732269123026253 -1.202572551555197
0.03376432831742478 -1.228880864914004 1.497174300437714
0.05437983847474249 -1.705629303036517 -1.395271151727057
1.157515573015782 0.1348767430156849 1.647163425999405
1.586623450867801 -0.00894756964698395 -1.036932983159163
-1.288840049237814 0.1090354863125118 1.465524038120435
-1.559944616882394 0.2256048346795806 -1.288348473466166
1.31500348931883 1.575133233222356 0.2729019694738566
1.373376309282013 -1.414629116716192 -0.2275395629868829
-1.861357538597475 1.487624188002646 0.1078191353994585
-1.277426993414163 -1.387301613697421 0.0962545430052175
0.3400059272074198 0.6767942586416368 2.309620195761043
1.331454291196512 -0.02461329898390375 -2.260137925203876
0.8679359731653034 -0.8940064509854666 1.982106283469084
1.222542077998631 -1.51893667270664 -1.951215264193826
-1.089922125308882 0.3683124860809899 2.204349163839364
-1.45510018779292 0.01197116167353965 -2.047316027944644
-0.4959118822159283 -0.8475084497724713 2.230944359177334
-0.4166833433132882 -2.083508342340268 -1.832832286875694
0.7060231737741344 2.354145560552086 1.006511259425135
-0.32214070812349 -1.956259336226142 1.346698027955837
1.786851789505392 1.819841845648018 -0.402333590143766
0.8784010473324102 -2.278674884581629 -0.6019815356776393
-1.016413295915732 2.358188020008369 1.248131178115658
-1.454379746279892 -1.741159352668024 0.733103382552111
-0.871714653153464 2.287711054532422 0.1599411109268756
-0.9090896442093468 -1.945024819132118 -0.6289211242691585
2.166287926696089 1.344945151385182 1.078955415140344
-2.229310431999652 0.2701151871114131 0.9065080923466713
2.701526730779438 0.4291251699112521 -0.4657894993160501
-2.534282998117613 -0.003692384800444962 -0.9406120486299387
2.018982741806752 -0.1414125067643908 1.223781848800194
-1.86142848854615 -0.904956536129553 1.547300771913288
2.137132631167166 -0.5123857765881135 -0.9213857670825387
-2.150752095233095 -1.000629523304785 -0.2196302488713813
1.967676852016763 -1.066232631674083 0.4510069240202628
-2.190634082759408 0.3453934878607225 -0.4762927283960555
0.4832530215480621 2.32537222685505 -0.2686883459552623
0.7452875325859498 -2.082400087975909 0.5954277347716466
-0.03779234491030358 -0.0710095984940171 1.935206367558303
-0.1167499756659472 0.8403631536640689 -2.332569331533714
1.319646078757558 1.285775460703125 1.396855264652367
0.9324564317958761 1.711680837897775 -1.784571099390664
1.418156994359731 -1.705482097097992 1.468087949807921
2.133175342256135 -1.600812307141511 -0.2851060641124148
-2.286592054728898 1.062531618769703 1.681933201738978
-1.072704762936147 1.362558350099986 -1.56080916580028
-0.2253000178723731 -2.319229868997513 1.774582982847012
-1.428131393683037 -1.250587535452019 -1.515286517872591
-0.2623331157544872 2.415234865443422 3.068361868315441
-0.648106424120285 1.989185219682829 -2.312803004406597
0.3807727243768377 -2.516430087792707 2.60917207222401
-1.106341180898575 -2.648003540034046 -2.239537459545217
1.534399709219672 0.1796831341607994 2.32243307760381
2.518201116449488 -0.09281914983221465 -1.846388335241123
-1.602521965004568 -0.5935734340530937 2.631483895188269
-3.127756090867209 -0.1257328770538162 -1.111131786222545
2.921501661025261 1.700585703451395 0.2792755166074253
2.396772082875203 -2.795793161711525 0.6730860054032188
-2.533232102114489 1.501733924907602 0.054135363748497
-2.377690873008765 -2.678924975027974 -0.2464376220677395
0.7250554457409248 1.750271710649914 2.452049766653264
0.9336524476978472 1.071407505626022 -2.90115046308862
2.064418744677629 -1.466640432268145 2.03273265376539
1.110977087145209 -1.285480702352464 -3.039832664186939
-0.6878905678588308 1.234865418445173 2.69192821621122
-1.799170967883254 0.7692360531787328 -2.427531475950345
-1.712652497146132 -2.020953198187015 2.811480576701326
-1.962255434364794 -1.404899407517923 -1.937374740441744
1.139983559072632 2.901046569817789 1.129064679012957
1.237754718775841 -2.717523648587373 0.6346184514241673
0.8568526803143832 2.903769570348612 -0.5472977429763076
0.8736304380531346 -2.86104868312377 -1.492389900607095
-1.296635487009498 2.915419196123855 1.5094155433032
-1.730392104635933 -2.186707992938282 1.421435255554435
-0.4540053021739408 2.319240851413616 -1.213381249137163
-0.4507225364188328 -2.530255880882145 -0.06869454268436054
2.375597731569081 0.8154280025856848 2.29168852331728
-3.264546623220185 1.430922717849599 1.090780665511306
2.106006145980324 1.893094026990258 -1.516129290483661
-1.790497171642441 1.491066064775495 -1.179470043524395
2.727600452893896 -0.5833578979389336 0.8671293307726943
-3.35793544367909 -0.9317799870048911 1.167862990085178
2.515642606984545 -1.822668203672678 -0.8666438385442801
-2.011335632287976 -1.998031570980079 -0.322060036900195
3.552193598999926 -0.4095514086710339 0.2531637737538947
-2.873131932639033 -0.5486981239292571 0.628147736668864
-0.9518074665702045 2.954604131935559 -0.2025848534986912
-0.4561141079664952 -3.015963702117438 -0.2508414751395521
0.2458239174020151 -0.8400732293551252 2.843628808110247
-0.3082073754755437 -0.4810452946418474 -2.97646188847805
2.20558397710205 1.998456196253304 2.828742864171503
2.52126059234119 2.687166060736285 -1.668385384234899
1.548022964862245 -3.684836581271813 2.033108631413111
2.697288515743661 -2.52001845336494 -1.782863410251368
-3.018260640974002 2.833674167995627 1.885126718191658
-2.43375084216781 2.0652164316757 -1.006511392833396
-1.013351606989665 -3.468306560497092 3.392772195764466
-2.58637473009784 -2.970747358276197 -2.273937023135865
-0.2948505331231518 2.436763462272547 4.195003656493797
0.3046422978216033 3.821702088148621 -2.704168605757574
0.7012946162643804 -4.118736156962814 4.315019975148104
-0.9340698662639525 -3.629379550330775 -3.92106227967263
3.451795839927621 0.199530974309825 3.673425753297716
3.63380786192235 0.3691012387175789 -3.123845631929907
-4.264120836015859 -0.1266826347599081 3.702961396565898
-2.87791420981469 0.102628706843523 -3.857924922641864
3.174511971546113 4.009068710293512 -0.6146213604188117
3.133794236261862 -4.154054033932939 -0.6501655704229233
-2.651826037969936 3.85268097074006 -1.774799743293085
-4.234409492006498 -3.283632182276982 -0.01241121427825792
0.5870895436578037 -0.1347181263304724 3.557778136309781
1.117900967828831 1.071482814028621 -3.721927108997676
0.5312179041694305 -0.8717071381496336 4.327463876957398
0.4778772842437661 -1.862602691769698 -3.901995139675715
-1.954218658885124 0.659282254763626 3.205660943745653
-1.49116538376602 2.060571544856466 -3.031129980082119
-2.931613809868091 -0.3277145734109951 3.649282136344307
-1.481716002814559 -0.3823020852242308 -3.454034726863427
1.387459768626625 3.734019407267238 0.6816091349404741
-0.2659555574660105 -3.642966293359734 0.6096182535386873
0.2108936161106959 3.203683658649682 -1.736707315087784
0.3667074279221361 -4.070578449736232 -1.257191432374515
-0.06863065139597842 4.68882852224694 1.327174140031619
-0.3691801264350145 -5.218617686273164 -0.2605384166573921
-1.347997584304623 3.759046878286299 -0.1487686888380871
-2.426031091010298 -3.484797920794465 1.039782120276556
3.990781722167907 1.55973732729989 0.531645260365988
-4.944015458666396 1.020164606916609 -1.224951010754018
3.229305093514008 0.0127308409812975 -2.107091939893082
-3.442134656446648 1.845127228149057 -1.24401512924979
2.974082725987845 -1.016271892137534 2.555014240499109
-4.436382444317992 -0.6942271368069637 0.7192567394715523
4.334556334954626 -1.59759037944322 0.1700856562333078
-3.4465783978849 -0.8650237577668178 -1.747988602441094
5.386176379934079 0.6567072610188656 -0.5020544162136563
-6.418747056396819 0.9148079207998513 -1.352199392527266
-0.149120971022112 5.82379335290885 -1.116444243137843
-0.5311026207258116 -6.372878756566513 -1.16833235112353
0.09937354560757826 -0.007468335282901889 5.620434400364426
-0.2135828268189437 0.9732358315751294 -4.982228396005576
3.136160330280964 3.343375154205733 2.648075895978727
2.736232842881976 2.712741639414329 -3.943410233474212
3.517701477233947 -2.80180725123785 3.08233185779745
2.542571559646219 -2.556149201845254 -3.815945432531271
-4.069697550385817 3.329968518481969 1.843063749260526
-2.629766232931268 3.185169016360799 -4.362494022646219
-3.624674026357911 -3.971602622214969 2.660015632336357
-4.139933262275328 -2.06437770651342 -3.661842321027876
-0.8811693105253328 4.440282966670005 3.850742691192024
0.5912994594191704 4.955983953478629 -4.64960973230702
0.4052475242032831 -4.988875472321287 5.028010727703938
-0.303297033822168 -3.744678880972054 -5.75389753647201
5.056764394679885 1.096112086242878 3.794214947750055
4.537873144395889 -1.660004466845339 -4.365591443424238
-3.615857483637654 -0.00518589897131792 5.783600737250851
-2.494461693910139 0.1885451660864208 -6.239669678322519
5.044133861760437 4.322268065625259 -0.7103372449793954
4.737009279311072 -4.444301347828778 -0.3988105553584839
-4.321674335063306 5.127638864106198 -0.6304061199596881
-5.281320346948871 -4.324894429411922 -1.62022701905991
6.368501224935351 -1.002078928579867 -0.2163463815531173
-6.671382480684848 -0.5851222789180733 0.8629935779019074
0.9071467774469465 6.557500267921517 1.630864246470063
0.2125398414367435 -6.84808273291572 -0.06236073785426485
0.2327039973087193 0.882671315870951 6.664082120566428
1.575035010402914 -0.5688959189188924 -6.225586543348506
3.77666710069103 3.751723561911826 4.629242492917728
4.948007224196174 3.485714848085565 -4.108793299007258
5.33643769160973 -3.414834923406489 3.981977730094465
4.553832683527916 -5.368035322720194 -4.831078110078699
-4.143894633336186 4.964762682318298 3.726276122461823
-5.231141651881799 3.465355369610154 -5.274428681109927
-5.618947269206806 -4.377553146993466 4.12866103259358
-4.837592161305671 -5.420226555997463 -5.178668805604805
8.975724374424368 1.199156382581367 1.178313804504762
-9.315198293780682 1.474767455045826 0.6711419717293031
0.6270201294025152 9.13171541960835 -0.1110404870244317
1.173026946297945 -8.856719057874921 2.898915406560977
0.1885910907681162 1.827079319085729 8.986001352977057
1.645924896381909 1.327681966497645 -9.010292977179292
</grid_points>
)"

View file

@ -1,378 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
Def2-TZVP realspace grid (Bohr) for species Be
sqr error : 1.165334819308465e-07
penalty : 1.544079059037568e-17
n points : 336
</preamble>
<grid_points>
-0.05087066877055246 -0.02895842344745878 0.04278198368354191
-0.002446096798027114 -0.002725671400708261 0.002131281169175724
0.06389301353827985 -0.05098060408309713 -0.03784033415256062
-0.002441886360877506 -0.002721415395320736 0.002127423533500648
-0.09757925118630353 0.09221591185857705 -0.01164373479748565
0.01449977047943337 0.07817509136603391 -0.0230464399838475
-0.2145571156004799 -0.01560587619909497 -0.08674445892088702
0.1177019809560526 0.03514582351199452 0.07410531847837593
-0.1411389805021193 0.2274419868247245 -0.1314628074223977
-0.03983787786587965 -0.06173046311970343 0.1312851633533451
0.05137050454177122 0.07197369462449861 -0.1613042693572213
0.2015839878268816 -0.1051374435582289 -0.02678508010397169
-0.04998494210250677 -0.0970214223110886 -0.09414643823094328
0.09662520332335595 0.2082089532150128 0.04526545758927741
0.1076009279105511 -0.02966834336227895 0.2354218318375514
-0.272332819655378 0.2504204570419731 -0.1713400096545298
0.199625876246547 0.1132185084040889 -0.1783579455296702
0.04774990776262857 -0.2280779716719686 -0.02021935750030045
-0.1714304839674121 -0.1531568208670111 0.1127185133865776
-0.05147989308799707 -0.06989213410197594 -0.2808946694937045
0.102505894827051 0.3443780705415193 0.1043587226715695
0.3112108912733613 0.06892974161654054 0.1770480242319581
0.01082994096981951 -0.1276229690810483 0.3430651734793002
0.3050822205410328 -0.1921816449584196 -0.06969891558755388
-0.1139875806351628 0.1453619340575081 0.1355863638239307
-0.05311192406872842 -0.1849628064397632 -0.3336271731095
-0.2128291722408488 0.1371617535334922 0.2527512883134441
-0.3530369984465344 -0.1266130323901755 -0.01194136243968126
-0.1391814179998969 0.3284444918563248 0.3650078499958007
-0.08125966753919442 0.08647765862761135 -0.5163015673081035
0.06625277910790818 -0.1400078351899372 0.4865189114489875
0.1511664693270621 -0.3890369962877198 -0.3299572654314072
0.4080490365330046 0.1858839416430188 0.2928166883070047
0.4534793777129826 0.06515284399948207 -0.2327080422997682
-0.4271172005342173 -0.132226158322533 0.2557697010462673
-0.392458949133867 -0.2033552423700292 -0.2955706976336752
0.1357146542273052 0.5015827293590184 -0.04767169954088771
-0.02514011545790622 -0.3599912647474402 0.04210112648262136
0.1741030251076799 0.2039150209426328 -0.3166196295447404
-0.1439920203915031 -0.4823523116228061 0.09475354243351379
0.8766243241617377 0.06534830342666649 -0.1029654004704105
-0.584318653416503 0.4096869717577256 -0.1376140077501031
-0.05776516241510719 0.6533729886177736 0.2528456012599641
-0.1300337049777637 -0.6737344980654234 -0.1177191334304613
0.1033228036645939 -0.4207339850701056 0.5125838299379235
-0.3866425797539337 -0.1277561788725629 -0.6066481340641772
0.6747003606596034 0.04101738016447401 -0.1080785372593273
0.3730664886673717 0.5742486431277436 -0.1654230944537422
0.3643279787770609 -0.3294257199772606 0.1090557425596087
0.3168642083176581 0.01293201874005791 -0.6149804416473055
-0.4293990025536452 0.320904894893585 -0.07227480454643681
-0.06575869892344188 0.4374426881311428 -0.4578358115219812
-0.4134604030776204 -0.441376711641723 0.3771688718842395
-0.5641377087151499 -0.3078865762246565 -0.2630898670342084
0.4994561586843613 0.1913173142520498 0.4751270263248088
-0.2035878937692618 0.8002289859229575 -1.141638194395123
0.4690853594207265 -0.4757043549600286 0.1952627212340432
0.277030689638309 -0.4795692713384253 -0.4473837185734427
0.8300765087110822 -0.2531220851835176 0.388058202104218
-0.1402806943919206 0.4411245423848141 -0.6588206746837963
-0.06603795308164535 0.1968554789690759 0.6641811797848002
0.0607042877105498 0.6505446655484732 -0.6642999468478853
0.6328858635044284 0.6667982889925264 0.03248027362950562
0.6558398402035898 -1.014605128179468 0.1423008609154848
-0.6882338916125463 0.9681009005133446 -0.1165540997182853
-0.4038524381573365 -0.7442543042035351 -0.3057036400659478
0.2467363950034984 0.3810565353383434 0.8232410622450083
0.4954029728026613 0.1453002871519781 -0.7755279578192045
0.1158554099806821 -0.6492064380554974 0.9356994810460607
0.4251872197883818 -0.2206178329699343 -1.129527276201585
-0.2809064064272102 0.262726568916059 1.127297123722878
-0.3784564888129011 1.010237552966935 -1.457992546768766
-0.4072910568250283 -0.4704872370797347 0.6767473893820132
-0.3146970279782323 -0.3064762544334722 -0.8315449207919644
0.0357208420093898 0.3383812177786856 0.8240871144743808
0.05788778748402014 -0.8327606940981117 0.4001062430868292
0.7330720978871429 0.9020989738455567 -0.3184880902156457
0.3425195309952606 -0.8220532642568058 -0.2564870751128048
0.1342075959718733 1.026532799936196 0.5663778122247974
-0.7251643928439162 -0.8864851074463246 0.277349738811234
-0.09082332610048022 0.9123640152725724 0.0508934888617024
-0.1367928589996602 -0.9803741330086077 -0.6297222520558587
0.8930967530353 0.1684128038249721 0.7496656953155278
-1.173271506768651 0.1220979898598597 0.434507939459937
1.129814045031642 -0.1238115163931929 -0.292065194347231
-0.7589369855497757 0.3030383923627633 -0.4748619891846901
0.3322494637964702 -0.4978733106785408 0.633293198207732
-0.6019290974092493 0.120953964548513 0.3251415430359822
1.423957930794403 -0.2196918747659475 -0.4307924170657262
-0.8884126281635925 -0.1323514608740519 -0.7263758045704407
1.838950189100013 0.04342573401754834 -0.4576804326000463
-1.610929652408622 0.07725133943454481 0.3821468098530311
0.2159943928246472 1.294967159181229 0.7416183697796098
-0.4333368452845891 -1.573529950934836 -0.9210916260526602
-0.5722321592356884 0.3495560075448023 1.41976438471219
0.5202161143173069 -0.2599241645708426 -1.52473565565346
-0.7039750604222665 0.5267014370148709 0.306160607998369
-0.1193500930481872 0.6458994542150626 -0.8999164645708712
0.8794224635059354 -1.322884671626235 0.1919548128099835
0.5093247705491 -0.407406421046034 -0.6588743262946662
-0.7466180728884263 0.07549054890576505 0.5755770337162998
-0.8848358959808107 1.260698065014087 -0.0983245987098426
-0.8058534019836017 -0.4153094098249754 -0.1400485414226778
-0.1238150842662 -1.262121361830701 -0.7944455849279297
0.3267363574233239 1.645263721972805 0.9228512312477932
0.4722940696701305 0.6074615509878284 -2.0112262612396
0.1475658936949077 -0.7546375652065351 1.220763058432357
-0.4923640128657182 -2.197800343663263 -0.4892344552905172
1.158520261871781 0.2282982658612543 0.9223887995959155
1.124373860535178 -0.7851674773525162 -1.543242635344213
-1.920651540635603 0.6357015379102607 0.5229005767301699
-1.108357039747472 -0.2180186733212574 -0.9291791572186346
0.9185499198655518 1.171470100506843 -0.502465913846544
0.9873329678972985 -1.742997191691532 -0.2328889031384989
-0.9715538096408854 1.698168798262958 -0.0252916948180914
-0.8674734844066595 -1.168203549016687 0.4362455312241733
0.6829207920006832 0.03160329760128208 2.147402602424989
1.266453928563695 -0.04558898958634287 -2.350561709891454
0.3682446185384594 -0.8703606667050882 1.547746364512026
0.5543535707835391 -2.058556015720344 -1.920199222450211
-0.5982662506281629 0.8402759941265664 1.740581062626456
-0.5358710683081228 1.285844736109479 -2.064770878745627
-1.158715032675034 -0.4594409373946831 1.668631759956554
-0.5256352525776034 -0.8043351685186264 -1.968276800128277
1.647219872501345 1.42786880101398 0.7157686546192057
0.3933599555846166 -1.75057347010356 1.228803673010465
1.032459040732938 1.557326754710066 -0.6702669960276333
1.407112082290247 -1.56408594689595 -1.417796463207762
-1.369264962447499 2.030146067902232 0.5402222404606749
-0.9939214694118936 -1.485209487704937 0.6515875230387499
0.037665072553415 2.227711048707198 -0.6698341069528337
-1.291309694676309 -1.839212949025171 0.9784493278215363
1.386895100229216 0.4301156794969426 1.19179076139315
-2.48672131954128 0.2205457859617359 0.5323373768987678
1.200641285726858 1.846109692582045 -1.535116739857972
-1.611901201392653 0.9904768717685235 -1.201395418971452
1.873943239560873 -0.7804333436693747 0.6367861483128346
-1.968333330801782 -0.8756136318449014 -0.2754549558430652
1.976803400113278 0.6796887095534441 -1.002472533234229
-1.409280116066403 -0.2246063277590334 -1.17534254927322
2.533838289420514 -0.1932820344628469 -0.3891179611282017
-3.29631737727135 1.0784822606107 -1.046396177577928
0.7357765894758834 2.634098146339618 0.2295633320949824
1.199443274840091 -2.294476984090844 0.02945320479135529
-0.01181596636307643 0.5486572556639919 2.801216568456193
-0.3918792331814576 -0.4468025677789906 -2.728165330791913
0.9255297504231976 1.244203701888688 2.253477040564296
1.985111571060669 0.6556752511514383 -2.717869111434297
2.094943074453466 -1.338740036155393 1.950304959216671
2.463980128093387 -1.249203096638728 -0.9088390332436007
-1.373457695767766 1.140702839667922 1.898949241940966
-2.351684177460833 1.258390942993072 -0.7770745151508928
-2.471369832822074 -0.9057181568360742 1.270008440199693
-0.7243882392106341 -1.987132495114173 -1.508637796320573
0.09131325110633955 1.907123426445352 1.455110601986311
-0.3525611998054259 2.711342042382651 -1.973714903145648
-1.487728366282625 -0.6820330707668379 2.033241985351677
0.4317395167344112 -2.521866247986295 -2.210758877288133
2.135552880616074 0.2672761091825254 1.438022774469384
1.922989195046874 0.8109440925771049 -2.372178564783152
-3.168045403854727 -0.7421879096938748 1.524325874373833
-1.858191420017363 -0.2904811067356758 -1.717328461840377
0.34243548192329 2.894512274190725 0.8727694181484342
2.101750122043839 -1.326808044282737 1.063701612940636
-1.7907106966674 2.22602768612346 1.543030988660975
-2.217822254649746 -1.517163969753956 -0.4863784074251868
1.259202262903892 1.236508956476899 2.663438791097842
1.6994214432219 0.9834547870302877 -2.152588761912008
0.6361179901937133 -1.285225706970312 2.111894671657303
0.7580619489960815 -1.325588209213657 -3.337179161847561
-0.8780741614081924 -0.1294494128434628 3.498801885482472
-1.195878207915691 0.1933799229955123 -3.040822861742214
-0.610459565454236 -1.195164922942273 2.512639919905815
-1.16547797109262 0.1904052941752833 -3.655009317624347
0.5427633905998298 3.334406759409963 0.822198695031567
-0.2524814689709063 -3.833648933779691 0.874458306331291
-0.9827942436657853 2.500009250329175 -0.9986211466896183
0.8805555111408939 -2.774970659685107 -2.824848993448434
-1.754980367561376 1.734964312550217 1.583788732788189
-0.1120626990499128 -2.835135484209392 0.6763332024804832
-1.68707874814851 2.951615467580713 -1.158968051228132
-2.115966646778953 -1.966379670663281 -1.005117160744335
2.304958695910017 1.626734508877304 0.1842042292596256
-2.018583911639764 1.580747016488021 2.435754491295199
3.11803769522051 1.076554811571484 0.5382491669225159
-3.662820740973815 1.505450046548599 -1.145423656361345
2.097522181310798 -1.348258349635999 1.952968337646594
-3.447395571002709 -1.472064921719131 1.674489021701091
3.024162404323413 -0.9443286807273824 -1.091324700675158
-2.736296119674678 0.7784683148431627 -1.045049131781358
2.878216840848719 1.159916864867548 0.3420745084548459
-3.640717586018074 1.286651465753491 -1.158760871721517
0.8772949140067796 3.809021173388102 0.5699708106195893
0.650263598617652 -3.39113764032798 0.5340544584600563
-0.5330574404112658 -1.557200239555326 3.12876458045576
-1.170266307315257 0.2125562185794821 -3.649788915863326
1.121583743821087 1.628622952964007 3.349011288745355
1.942036618955341 1.953409583151478 -2.429958932798657
2.722259474352205 -2.263258642884359 2.266163135411821
3.376542917362457 -2.028952621397414 -1.175621727434175
-2.065581260295552 2.856789923764552 2.105900923253372
-0.5324062791695168 3.680735237595836 -1.85268192401073
-2.37286699497302 -2.102252806950009 1.331377545401836
-2.52070818530935 -2.563188234699232 -1.369727117755663
1.160138384888565 1.358151492000003 2.824629032806607
-0.2683315038295015 2.446851964377921 -1.858715944069484
-0.1220914459102895 -2.776367168799692 0.7032468103327395
0.4114541676045763 -2.4804999433015 -2.152846398259444
2.932079513070103 -0.8318584704486861 2.346334015298746
2.257958490339282 1.156374566327132 -3.132417803490136
-2.950646621140133 -0.334427140839917 1.33262318917728
-0.9450457350483482 0.1240738083314588 -2.89031655217809
3.489814027564154 1.941359024528274 0.364980274046124
2.4306386893325 -2.278713610308849 -0.4401568220119234
-1.89239342067552 2.540949707252234 1.60462250771917
-2.081056207166493 -2.28075456202293 -1.166836185073626
1.077401762284372 1.62853242375563 3.367300231213015
2.24646431309253 1.12926253849844 -3.128234593737582
-1.012324429277682 -1.71826097958716 3.597040260167237
1.2345820768071 -2.38071657979515 -4.070462096723899
-2.62097211157867 0.5752294503500872 3.713583148772811
-1.43641129166729 1.457299201590926 -3.936392766988576
-0.4032875515715152 -1.453835410644329 2.951387987270814
-2.271929841677359 -2.279975071007882 -3.244698985974221
1.568418210957985 3.116307818564688 -0.2820266673357938
-0.2364463812225248 -3.288654958257344 0.6441061723904672
2.294672985763308 3.889981467579966 -0.8106773399895371
0.259477920193793 -3.20502752173347 -2.699946915539815
0.7556790102978842 4.054072928891139 1.584900295046331
-0.1480356340788109 -3.874897841142416 0.9432017604768125
-0.4972484032139091 3.388521122832924 -2.115082890982174
-2.907011352020767 -2.89656580280118 -0.9119842996203422
3.439477063564172 1.360387206805564 0.5825202183639936
-2.961897884631136 2.238936507303029 2.08453078521924
4.227264913101155 0.313808723923308 -0.7091711489122868
-2.980088911477821 0.9455480555428093 -0.9473025764653892
2.420209841729773 -1.851508042153372 2.143560666100173
-4.033383938655603 -0.5795412940806589 1.240407301695144
3.139079772911425 -1.707016718061207 -1.090048212301212
-2.74943115379747 -1.5473553964303 -1.870985270326897
4.681208122348953 0.2708395497953058 1.355235458351205
-4.984638643627725 -0.1703464275676335 -0.6288331435938023
0.2295362454558858 5.33623548400372 -0.3486501438075403
-0.04480123657535764 -4.485369969537727 -0.391391018765668
-0.3311260977984918 -0.378848118540051 4.46358545844982
1.059195910417017 -0.6454794727207174 -4.519533144435455
3.383485511043195 2.088473083142569 2.087291700714984
2.974872238830119 2.98094572038806 -2.336340097422384
2.72304174614669 -2.84954614236114 3.577610093514703
3.905631400327359 -3.060940568929431 -0.5516990232370673
-3.040119843532004 3.406305985234246 2.905421330777422
-3.301977570804894 3.024910984385359 -2.058492742627144
-2.741074457940682 -3.09484189822177 2.020801454194516
-3.805235725429129 -3.46156494324677 -2.187232770315056
0.1103168294331988 2.672896555991344 3.748012449936115
0.3440977067119088 2.491727974021079 -4.184705183824049
0.398381145095237 -2.837440104488156 3.406660662504979
-0.4478125853503817 -4.837777939417926 -1.90878802263426
2.680168915036282 -0.2471233399361892 3.619009244225229
3.84337652923575 -0.3698972484629207 -2.742660555894539
-2.772581189880069 -1.155801614260688 4.621867324419323
-3.517375684888565 -0.6167997001673449 -2.948717641698262
3.972696775326888 3.502239234223497 1.447372780875763
2.90876268160529 -3.372467224314363 0.01568618231691482
-2.093694632080416 4.071673937208609 0.2734193723830874
-3.374151136609667 -3.858724101931141 -0.05036993028549419
1.33443456898481 1.512894545209027 4.9600417312278
1.893369762384547 2.128718462565092 -4.847882975274713
1.71737212559077 -0.1392184222959032 5.25373118182164
0.310662195623169 -2.356689020014845 -5.341363752790548
0.5392285474670396 2.443875690520002 6.178458687481401
-1.926875524195697 1.489876010426309 -4.910035803305988
-2.064609621265453 -2.164108592078164 4.527602559455639
-2.41974854657247 -1.565034914340332 -4.59596555214336
1.987982932261577 4.135703290206621 2.731666425107357
0.6870513885570192 -4.567776598569877 2.225585049811405
1.055723123341377 5.713921824181202 -1.984925671879707
2.020181919972176 -4.505353832784778 -2.528749280574877
-1.944894800623441 3.942728161432799 3.280280536250523
-0.2704856620707575 -5.237721815991273 1.751887872444604
-0.7684372751599287 4.892547072950633 -1.888016964266158
-2.403769917845549 -6.264793782649719 -0.4245529162028304
5.257576243629866 1.829591848022176 -0.1415870087388639
-4.63528967130625 1.786443979384434 1.478692514435833
4.104787431690006 1.197603569908599 -3.377685857091809
-4.560682378527589 2.225231072538562 -2.19401413934935
4.693851440694674 -1.65288591010264 2.285595979009696
-4.880184960077964 -1.664318299371985 1.613065440264202
4.651113152701397 -2.470557381441485 -2.06417200685142
-5.986700305146001 -2.62509899109383 -0.1020435281170941
6.539575288162253 0.5415094818128602 1.113118943785357
-6.608893843347182 -0.1242091065254141 0.4175539945503161
1.030034874240416 6.834686481330338 -0.8683682915943997
-0.06425592866618016 -6.421814850394841 0.9882754088481408
0.6367125490401482 -1.280596315214588 6.643018856029531
-0.9710011637147806 -0.9470397004797323 -6.687244180196086
2.339098349488726 4.707614205283423 4.073063648183201
3.77895308494648 2.585889740632281 -4.667873466628671
4.548297657911658 -4.09191294701149 1.974306430712985
3.82257509469237 -3.090327008986513 -4.413601562312638
-4.236152776669868 4.155762626065085 2.913335330950176
-4.407647281410256 3.350057447787642 -3.053242574927419
-4.139910657099318 -3.039572598965429 4.306353490595
-4.525561647301737 -2.654811892260853 -4.165517720309929
-1.456833836625971 7.64348413401892 3.410054369463499
0.2949013394657325 3.51600113646455 -5.876777646038769
-0.08362040652053666 -4.655454935058759 4.88225747896856
-0.1824967920525392 -5.186324182569423 -4.548621861811831
4.958004013719857 -0.7006577778790251 4.572538887298265
6.007617289999042 0.9864858912961942 -3.342819460592033
-4.523638933888726 1.581742853169847 4.7671179123314
-4.463617304075487 3.063700235573039 -4.186435029651695
4.728652187922136 4.581379317522526 1.400551044433873
4.804800438353645 -4.98923039136737 -0.5592145678567416
-2.77462528937899 6.037064779568925 0.9796462108211623
-5.006524193175502 -6.660817412796767 1.222390888065677
8.318883996564381 0.8852587643609596 1.670977301842808
-8.10420923370982 0.8315988690796514 -1.942083678574434
0.5495483628038237 7.37517553270248 -4.337900672004389
3.202589550884488 -7.867962205974451 0.1576534745093057
1.484509463290617 0.4114554138138319 8.396896761461001
0.1016429073544994 -1.695439582718283 -8.316063584586807
5.578343377216449 5.343421382933174 3.64012986899914
5.038987786187171 3.893363275327235 -5.644389991403532
3.800717633403853 -5.382003838411887 5.42078230028585
6.140107330289521 -3.826566365397439 -4.609589280367966
-5.377840911123458 3.917863465837707 5.321403470198891
-5.927962516179747 4.292393192988627 -4.42037775744997
-5.385214249181111 -3.41531846940454 5.708010007818443
-3.926399624350002 -5.423248578764658 -5.417120213104477
11.1618397445554 -1.050570518902854 -2.006182728275788
-11.1639990967203 0.851349588198559 1.976358063396861
1.146405187805939 11.2719240960203 1.038846065511622
-1.150767564482346 -11.2463270828796 -1.17904120016124
1.877980731535092 -1.215768768757157 11.16347639999797
-1.885937867109258 1.39125826789391 -11.12409553320795
</grid_points>
)"

View file

@ -1,578 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
Def2-TZVP realspace grid (Bohr) for species Br
sqr error : 1.684170327071221e-06
penalty : 4.311178725059589e-22
n points : 536
</preamble>
<grid_points>
0.06508667024317585 -0.0116100138903702 0.004738962099800987
0.01606268292415406 -0.01860006770592415 0.06971840757636465
0.01943980815287141 -0.005782143278273592 0.03005161090945072
-0.02349808971015501 0.02428785894941551 -0.02000500948322698
-0.04584859463123749 -0.009198574637670494 0.03225431709604288
0.01853877432438104 -0.01513570070268459 -0.03074848616489852
-0.01420670737783979 0.03798914118035688 0.03910454598418715
0.02847375192722317 0.03131987820913952 -0.002619454121461513
-0.006355344493306216 0.01313847741574061 0.01030929511458462
0.01114971413493815 -0.05079594628990938 0.009104655151241198
0.008324068968977739 -0.005044722156722295 -0.009614498838828318
0.01866379504243753 0.03496631368824484 -0.05746939155064805
-0.08353743792638726 -0.02578249662425063 0.01546073771034244
-0.03620762265345476 -0.02258860335715713 -0.04086388070131843
0.09612899070338542 0.02342715000702052 -0.03938016074826024
-0.05368578661668076 0.05778841455108756 -0.01316227530847682
0.03827440210767583 0.06893383927912383 0.02094060042586183
-0.01985033294297951 -0.02070023754542179 0.004850045610200447
-0.0411130005746798 0.04335272795230147 0.08108070091994533
-0.05587079628268642 -0.002455236939870575 -0.08053357396208564
0.01921342238691637 0.04435864127102256 0.1300544619942099
0.0284422902311436 0.004269713529268298 -0.1259332126302628
0.04540010485558983 -0.07974920828986085 0.1265839414642766
0.08898972692653949 -0.08499949473818771 -0.06907677780250138
-0.1148700860644599 0.04432055526462971 0.02794420250506794
-0.06214114071225299 -0.01243163099391171 -0.1519566243589511
-0.01955568704563661 -0.1364718058556962 0.03008974351953893
-0.01898001967728079 -0.09373356093002821 -0.07605574969473132
-0.007005942510882411 0.1175532465026488 0.03399144535262272
0.003756427784968345 0.08951663341395175 -0.06311883974267708
-0.03290102120517226 -0.05798856650414816 0.08705062855428727
-0.02098944272472787 -0.08085092411903394 -0.0001651766030973086
0.07471096532848216 0.0198222540939877 0.07320368546189407
0.03395094302536617 -0.04447636965580461 -0.06406709187604208
-0.105731674348594 -0.03068688276370964 0.1093692094148533
-0.1011580244329434 0.04183825010004904 -0.07953860320323485
0.094155997986806 0.107647505709094 0.009040021059299796
0.06868983893831594 -0.07933775665382584 0.02584176811222061
-0.07846473374533482 0.1303564106402098 -0.04231599110249001
-0.1052798041029335 -0.06798649179664146 -0.01719430623570188
0.1430907530267475 -0.01954877991046474 0.04878878676272731
-0.1877126541076267 0.05640212774291999 -0.003640203009861512
0.02985349994265987 0.1954891893054545 0.0014328072885034
-0.03050410621869824 -0.1466372340510255 -0.09409979494821881
-0.008186418396047583 -0.01472537909868751 0.2015621853787198
0.06572874254842348 -0.04097499119432513 -0.1800959266681998
0.1000842939047901 0.1023598153015025 0.1203705446395908
0.04626873447364851 0.1074304649984982 -0.1175517207807295
0.08690556253057262 -0.1606065742667449 0.008913691381994018
0.1787410597587662 -0.102349533450845 -0.07253600545705916
-0.07328572782041885 0.1175588155237216 0.1035067106895458
-0.08652333983616083 0.1114349305703848 -0.15697320636526
-0.1050030213382669 -0.154059015545789 0.06008058939038601
-0.1560090985501215 -0.06027966204759305 -0.04741076487653273
-0.07875515056323841 0.1642149455437369 0.1529802091694911
0.09744257491451862 0.1140553196423098 -0.1750475359716888
0.02534402060115243 -0.163439855087391 0.1512504260941044
-0.005949741508040047 -0.1693800934750836 -0.1687095041465878
0.1743691483215276 -0.0529760905630606 0.1144693295769432
0.1493415030061946 0.01300905891624322 -0.07314788257233683
-0.1712919014616504 -0.01059118785105719 0.1452176926792128
-0.1373890522416149 -0.02237945476197345 -0.1692024684089487
0.1917012304719064 0.0947042618481186 -0.02172631420989631
0.1878486807724151 -0.20062611944266 0.05684365721941947
-0.1352942211164919 0.1849044511660183 -0.02570435364628298
-0.1648868965772813 -0.1619131722628812 -0.08293509148062371
0.0908075368197995 0.1045262375698486 0.2115822786074804
0.1251347242083878 0.1617167933170156 -0.2564346847860516
0.1418570653892708 -0.07484059609039015 0.2340187833421143
0.1467688889693561 -0.04059739578243907 -0.22552765730674
-0.05688879603456748 0.2019771747121295 0.2413501475166369
-0.02603484322029311 0.01735853318353989 -0.2685747976290983
-0.0569050805818821 -0.02804303040996608 0.2736152308965434
-0.105447987792654 -0.1876686720653263 -0.2309163175824106
0.1015474904132271 0.2246565895482371 0.08351620459448311
0.01126154757837669 -0.2465465067296654 0.1923623184343463
0.07978986272978944 0.3347666523938536 -0.1092258605362728
0.02516162228415415 -0.2424054652719907 -0.01254153923696314
-0.1014807583528209 0.2912026806021341 0.02496865750682358
-0.1589693996437563 -0.1909058384239437 0.1125199130997525
0.0323058571690319 0.2374849544773982 -0.1083076480917534
-0.04124403151810582 -0.3201001047451431 -0.04443767873666108
0.2504826399681164 0.04327755544241326 0.1186583790355923
-0.2430858637571712 0.1361679132661268 0.07220211873506888
0.2195257306487092 0.1893987824144948 -0.04835690064517329
-0.2290569013939882 0.03613743567639 -0.166022969215494
0.3038616490379942 -0.07360810744813112 0.1346277765817946
-0.2558734401974473 -0.04518142615134853 -0.009491058493816087
0.2739324479155317 -0.00878305583307842 -0.07075057539217526
-0.2824299756466962 -0.1615628763543509 -0.07284863234795268
0.3474174517102587 0.1301237803479212 -0.05119904399559941
-0.3688150642536787 0.01951202135485738 0.02097322672795923
-0.05799981785492114 0.413698549444953 0.05360161879430597
0.1737345304734402 -0.3315332482103497 0.03398117593459556
-0.04624893685222763 -0.04196971884059815 0.3716878983134526
-0.06336686502828423 0.003772221523266094 -0.3500789356417431
0.1591069177139404 0.2808104760856866 0.1225568313908749
0.2430351909532232 0.2437132482433154 -0.2598273036967999
0.211133775055361 -0.1746849541771391 0.261434754615837
0.1506820584519599 -0.1984649527375885 -0.1644736322639433
-0.2264248111590203 0.2366321619368262 0.2165159101315876
-0.1314360617785388 0.2028013867662978 -0.1789851421609788
-0.2446497943848644 -0.0314061907824076 0.2076570952039626
-0.2239499678618624 -0.2914577656422208 -0.1990204244277402
0.02792158029710389 0.3007466526086631 0.3068363620301464
-0.1232717250335168 0.2659273216804141 -0.2711406735090025
-0.04579625893668273 -0.3129768884131585 0.2633143543689059
0.08678125607299973 -0.2858794039696916 -0.2575144849243296
0.1696088938597066 0.09253755356323178 0.2933648316861262
0.1837884453193786 -0.05569444919970445 -0.3125331108419075
-0.3187517669776462 -0.04208412550114302 0.2817786230116166
-0.285018633410968 0.02270212581965219 -0.2456629066925389
0.2628725874245336 0.3489049826878422 0.06302093531873586
0.3269997829168372 -0.1475202520413799 -0.1038874356894745
-0.2679543379971983 0.2714886223492269 -0.04187272579469331
-0.2316981074500468 -0.2614228408092364 0.1196586046863697
0.2589501722218187 0.1802379537857737 0.3562685576728736
0.06757671680112243 0.09529627477490905 -0.4373498583037868
0.190281292802354 -0.09641701436553919 0.4222678898375893
0.1924478031791259 -0.2084054732266597 -0.4280289237941766
-0.08870108995646363 0.1043670279786843 0.4621714289704846
-0.1362481909426833 0.266071396872663 -0.431149491028489
-0.1416346604302583 -0.2203303740407916 0.4377948678904688
-0.1442122853919364 -0.1184072439823343 -0.4236692177977241
0.3210008047421546 0.3967234143811816 0.191165420591966
0.175548741794043 -0.3909077375575276 0.2454864676480581
0.0548942560568273 0.443957311182511 -0.2131091385548115
0.2519266990296739 -0.4101335186836242 -0.1143561175626261
-0.01104812630741609 0.5324364942950932 0.08927855851624478
-0.1750377428969487 -0.4729498616286588 0.2332124336222819
-0.2996429112659753 0.3935761986820803 -0.1033162862131956
-0.05787080525137245 -0.4463665152708183 -0.01184478669828506
0.3745194271976449 0.03879557471359721 0.1867059320570081
-0.4629995552438357 0.1417414126460919 0.06091356127964543
0.4870742607520182 0.127152227872482 -0.06218945157983952
-0.3627558594061117 0.1189435473668888 -0.2868697504152926
0.4161548838768132 -0.2082458340300268 0.09185504441838371
-0.3609347166317404 -0.2723874417672975 0.126401873409901
0.3677928648313684 -0.09071392518965098 -0.2599305278175832
-0.433318590418728 -0.1388492267352449 -0.1069883773473282
0.6778446263021988 -0.04001560296570593 0.01705485481750164
-0.6004629919399589 -0.005735434336624588 -0.09282937663109876
0.148806164227994 0.6512051091095487 0.01885886241460044
0.07314933413370225 -0.619888442447901 0.02354113997591561
0.04606845082520829 -0.03318943236310529 0.605774258279686
-0.05117152387847244 -0.02992452704156826 -0.6119655964927054
0.3275837185307601 0.251674586182826 0.4983524546055134
0.3415674789577627 0.4087110179275603 -0.1931933047152987
0.3687839816406745 -0.163216077634882 0.4335251964164158
0.50241063834577 -0.2120780155924514 -0.2139660871264518
-0.2692918410971404 0.3619984845731191 0.2638646861246468
-0.3970170786701513 0.21314083090032 -0.4212371519001861
-0.5024293190160141 -0.2641357850196442 0.162868393394034
-0.3794260003053768 -0.1893812612513641 -0.3960559756446343
0.05084303040683565 0.3766689687237247 0.4334174567674843
0.08687309773669316 0.3727180023997029 -0.4926490735998971
0.09974300390697556 -0.4490302701872593 0.4462306013244232
-0.03608732772211179 -0.428155343411923 -0.3209872482138059
0.5143885205715631 0.04755392493651274 0.230993073111852
0.2979614857192276 0.1171211797408446 -0.4533408243638292
-0.426493674478223 0.0308843081742992 0.3578726302813254
-0.4768124224982758 -0.06913129109897993 -0.5769499009464768
0.5304858792730605 0.4029206291822631 0.08648408559371595
0.4354454387951663 -0.4223440865050226 0.122192112273723
-0.5076415758456017 0.3851012030814545 -0.05198280690183427
-0.3141933417367988 -0.4492279125332034 -0.105127960718924
0.1781656568816621 0.3228924746379036 0.7267669011116392
0.2340331130334373 0.1982133578613266 -0.6846415675068614
0.3901177706573323 -0.1664262249560732 0.6357452196023776
0.3350003998114148 -0.2195389673396999 -0.5405189060815075
-0.2443497070294275 0.2405172197142177 0.5648844035069172
-0.1962679868519907 0.2911937045385847 -0.6624921348546366
-0.3251627173321733 -0.2479695881996051 0.5320051172974009
-0.09391860366903551 -0.4294639063137594 -0.5309957098204544
0.1229131282284548 0.5933846112287086 0.4283216373674916
0.316001701501231 -0.6923735187169128 0.2029727394867198
0.3315731913078335 0.5488846970189892 -0.3439525759855944
0.2674044114188349 -0.5342990189902376 -0.2883553230225827
-0.2580564449488832 0.5744542869241295 0.218895935779543
-0.3156508768450562 -0.6043336641052122 0.235044936131561
-0.164015602826503 0.5786684218240485 -0.2671584872673221
-0.205029135568942 -0.6497660663906434 -0.1734616904907364
0.6540415154703779 0.1238507688413538 0.3766294471340384
-0.6024242401939979 0.2279241366399187 0.2727080244526058
0.580598404502218 0.1480078521931645 -0.3247289519611954
-0.7314799490820633 0.1202074150422373 -0.236143045953733
0.5995399526967613 -0.3480791629082871 0.3014454093201567
-0.6663830300667469 -0.2349983834689442 0.2353149038309585
0.6350854277035436 -0.4081579882473458 -0.2025993953649834
-0.5658553690219229 -0.3927220352351339 -0.1756067247348959
0.8526019154723449 0.07388829077593437 -0.159541478179713
-0.8197863715696514 -0.3120353814991128 -0.2121506075132834
-0.3439356580897274 0.7521019451000649 0.1231143643557814
0.1752814223847126 -0.791341654821533 -0.2622018494666817
-0.01951108853626599 -0.02111897526259751 0.7772311723575132
-0.05634776309238289 -0.2267804072839081 -0.8015783249182029
0.5455804533394296 0.5350624478638332 0.4150959339248521
0.4660462753929633 0.5572842497300314 -0.5621683096112655
0.5513521365280251 -0.52917262799264 0.513018008001193
0.3657800902042014 -0.4703417019289619 -0.6260959239414309
-0.381613190141659 0.4865022786088389 0.5708280031806995
-0.4832518186830779 0.5315453801669258 -0.3379640906535936
-0.4843928703232822 -0.4770538099049983 0.5698200021941939
-0.3689930372146779 -0.6050563304385634 -0.4533572565800928
0.03091277019135258 0.7787709656939332 0.543175384253972
-0.01329738069990391 0.7157653081867552 -0.4765728791345921
0.02251780461897278 -0.5178306564364 0.615103886541379
-0.01513038386267768 -0.707822766630301 -0.6665407421414937
0.6131211175763982 0.005111157836796994 0.7522724499468578
0.5967967345372533 0.01808267609134086 -0.6151377302371277
-0.5013826120317537 0.0612482759018499 0.6781698937623589
-0.6145718848078983 -0.09335113197618133 -0.7172969334719568
0.6638178837521566 0.5188285622506503 -0.1042604282260611
0.7686272323410483 -0.580315227932779 -0.01167439901299844
-0.7527937702427924 0.4706378856906143 0.1225906211118078
-0.5801289000233997 -0.7193541981114563 0.002178125817472562
0.3359218592672703 0.5336633010863754 0.8674291814368112
0.5495304464680399 0.2464660929327262 -0.8741318280724498
0.0977904235110193 -0.5657407506556777 0.8235749652444434
0.3399704230357065 -0.3715833969636592 -0.9954342118120214
-0.3438961000453908 0.4316157894843236 0.933736141960382
-0.3725335309259343 0.4056779285301646 -0.7609491979170073
-0.4776392836777518 -0.2461183346818146 0.9530621756070468
-0.2472165474661139 -0.398740730056081 -0.9569672540362728
0.4972218132273813 0.8934735981299845 0.3719162111798696
0.3719334930287267 -0.9291877405520124 0.314678503309981
0.5461850191952271 0.8656195419253734 -0.218071185967815
0.4469582680784698 -0.8839061728995913 -0.4005275703567223
-0.4843871645539888 0.888115426416855 0.3669925346394854
-0.3146866493564853 -0.8850732308628199 0.5089806025397792
-0.4647080581819907 0.8448377912394843 -0.3118910755657276
-0.5163374231949465 -0.7673328197670227 -0.4981412960417317
0.9159696208734712 0.4495299293673608 0.3690148742382517
-0.7843081573133958 0.2888093622958705 0.6335361383930892
0.9668504032757824 0.3882920241404546 -0.3065917262831078
-0.8876558110716937 0.2970349773829591 -0.4000360430233452
0.8809114481265917 -0.3961599701644925 0.5195382978108971
-0.8797893951027286 -0.4153351404226742 0.4500919268127764
0.8205479095997361 -0.3057807543226022 -0.5712197013369895
-1.0094419703055 -0.413576461678338 -0.2792443196250178
0.8862144148272254 -0.0404937805496691 0.2356855155035423
-0.865930599615834 -0.06885715715090916 0.2269107596155774
0.1913409427125255 0.8374132370497855 -0.001005185607505443
-0.1219712737161704 -0.8550643287501284 0.1476861057945176
0.01443609630880157 0.02790801322875903 0.9362487217586344
0.1324271397688871 0.1797736344515211 -0.9044769705397755
0.6989242106830093 0.9362475441053204 0.5874142610885306
0.6415762558873315 0.734700056259617 -0.7298745547893337
0.5932292455142837 -0.7177423956083014 0.7779131262838848
0.8958165950123661 -0.6301528134820129 -0.6961918688276647
-0.943510754157928 0.6300410833335226 0.662760250706215
-0.5706781486713585 0.6038256392431973 -0.8817062389626732
-0.6386265720834827 -0.7576882719325799 0.7956857128543192
-0.7023694307329275 -0.9267948594916309 -0.5862224564566801
-0.03395826551634928 1.025091527409761 0.7155031891584581
0.033993522045966 0.8291438302916742 -0.7476052978332455
0.04906988759766426 -0.8018152022590986 0.9959940523943872
0.04824888848782043 -0.949127413074725 -0.8070320699023471
0.844512815154461 0.0606602761531185 0.9168817550476455
0.9886366721571231 0.06692824545954006 -0.8546649778130844
-0.9854412999801248 -0.02685638728904404 0.8647695513307879
-0.8430385644487777 -0.1046362478576264 -0.8621251796458016
0.7576545747071962 1.068789230140097 -0.1398178220422873
0.9563577460464971 -0.7942477698869939 0.02848365163568422
-0.9292328309896739 0.726617124597 0.009860660247190321
-0.756295545109562 -0.9384747452908361 0.06743579554124907
0.3732927501889906 0.5423578016802664 1.186408168425877
0.3643455254924197 0.321549150323486 -1.224393877289596
0.3012943575244204 -0.2407519891547543 1.394886434906116
0.3792383943276302 -0.3863533228952033 -1.316216250887676
-0.3816531618733506 0.5102567091152838 1.206486055003187
-0.3569024829807579 0.2241916720736227 -1.373638776696885
-0.4182586581965196 -0.2170260161380131 1.329709654814527
-0.3756321118028701 -0.5421826365287449 -1.173886322054624
0.1943025160714233 1.429439994225826 0.2161724147399471
0.4932554934177008 -1.214269000670421 0.3330463581210938
0.171055653154626 1.276962938570749 -0.4791358557962571
0.4891341427987161 -1.207283200437968 -0.4107574069252389
-0.5540031471748085 1.216293446262433 0.3777809076342045
-0.2225122693352992 -1.272967049605674 0.4307046312861189
-0.5547002432584145 1.130415256183339 -0.3500022466746122
-0.2005083909270013 -1.418815657632836 -0.2504596101695464
1.241132111062182 0.4657915054697848 0.3744938431168606
-1.430941529407427 0.1996350380284915 0.2238092889805041
1.250173692585541 0.4760848602343818 -0.330879436725855
-1.172918560365118 0.4193203223368075 -0.4655517236760557
1.217050553013496 -0.3801783241760807 0.5172518053601791
-1.196136608285117 -0.5094063812710485 0.3784806267907073
1.442512981204424 -0.2354267576489882 -0.187918752262653
-1.304909351282974 -0.4029328738962501 -0.3720494855853506
1.150026671572508 -0.07368908357881646 -0.0004426310435579208
-1.126481905720673 0.06526401566222695 0.1350024975062756
0.05699026186610464 1.111143096106312 -0.04766891641108253
-0.05721544329509898 -1.113724845285957 -0.08204731994804956
0.1397306065773468 -0.05835807506107808 1.150640523643439
-0.1329975733263005 0.1779857680916266 -1.116523869550286
0.8507035867870677 1.021845078247461 0.8339636902112114
0.8337659420120522 0.869503852048058 -0.9300987553596011
0.866344045771024 -0.8424643578603698 0.9282472039174452
0.9998456175422572 -0.8791174194849611 -0.8635783680670179
-1.023195036474126 0.8684199259596066 0.8914916756145504
-0.9010451594931985 0.8281673775655282 -0.9459317329395387
-0.8254428350652849 -0.9131174043043425 0.936021142894682
-0.8928187364074829 -0.9994960404516482 -0.8548888899257484
-0.08248876585606435 1.174292886755757 1.073565839647415
-0.06008883472051155 0.976074011359706 -1.089780070452067
0.008942889158746203 -1.106338395874508 1.143604563171683
0.04717572305675594 -1.166458161510389 -1.078444765600661
1.112271183965351 0.06168930258364019 1.112305842266171
1.182991687681484 -0.003111899297604433 -1.120399889077702
-1.214356636382648 -0.04442459069901056 1.101561114233806
-1.106076684047795 -0.08155287053623443 -1.077422347149513
1.098653903120352 1.221078903976534 -0.055778055133531
1.168040634556576 -1.089928476035156 0.001820062171108485
-1.157908815745027 1.040255314216505 -0.03058361407352651
-1.043102411315559 -1.155997043704355 0.06133864758071388
0.4156948338372209 0.4977747457069713 1.573338082091535
0.4158924794411 0.3959108762513379 -1.595399703777109
0.563784348783827 -0.5151089494521155 1.618783256095394
0.4758409204268927 -0.5584376173894181 -1.627183928405928
-0.5144361061453526 0.4663266214723337 1.585308786518383
-0.6005550144310794 0.4853089142589171 -1.591229777330164
-0.470830038629262 -0.4832282702370218 1.649193421887898
-0.4551337834306485 -0.5246267738908988 -1.576011119731893
0.4838004537128754 1.637025015670237 0.5609873655202677
0.4854289797952033 -1.574354272341959 0.4570050578769609
0.4686137503451847 1.551327730701683 -0.5636545242707727
0.4901564359527252 -1.611482815179192 -0.4554103614063771
-0.5456789016015677 1.621090958121674 0.4645791389722457
-0.4589889514810774 -1.622601011049862 0.4254289888139975
-0.5011307599775771 1.526793517554348 -0.4719354569311545
-0.53130634542718 -1.626007637627264 -0.5995857136462096
1.57933865942937 0.5113884447450792 0.4840201803417367
-1.638432792437846 0.5704770173717605 0.518562930748669
1.597152503703741 0.4929910767854066 -0.4533575540709218
-1.60669154961292 0.4044263049634427 -0.5066054852964886
1.600765611410438 -0.4527598194188041 0.5124623569634823
-1.584104328230947 -0.5461074959688421 0.4108494089462161
1.698690735529067 -0.4952958152623408 -0.5455679979147487
-1.613313570867459 -0.5552105935673474 -0.5157408285711658
1.998910695696044 -0.02556355312779923 0.1285797125704559
-1.998043908380616 -0.06399689756807045 0.1327057375831195
0.1462404323148642 1.956057638650111 -0.09298850920084328
0.002498364070147094 -2.017185087086541 0.02152076445447082
0.09236169694667166 0.1392916699220165 2.013052271611273
-0.009860518522550018 0.07764079544687931 -2.007815784672929
1.146467236980777 1.010902283325453 1.202492469898604
1.115174422216889 1.030071404433605 -1.142401053329818
1.137195710952716 -1.148726346532915 1.035291163499383
1.02135475306668 -1.207833683890715 -1.155745302138683
-1.054941741594748 1.148076949646516 1.236519543134813
-1.14487773232474 1.170810762551804 -1.025353202659056
-1.137223234660582 -1.134208504773788 1.05453693707771
-1.15352443249781 -1.033601995539174 -1.210020335337731
0.07823803980174668 1.374047228418567 1.478937249810065
0.001654966217033349 1.292616453144592 -1.369507547403678
-0.004158640622675729 -1.449684921082948 1.35355543908476
-0.03650725550310127 -1.456750489027117 -1.435286184571294
1.405393218069493 -0.08362940269896303 1.413191133685176
1.367087839727685 -0.1117817971589672 -1.500419720592898
-1.465703645531541 -0.05300880456919141 1.432920209794785
-1.383055623154521 0.07925799853496243 -1.42016418761719
1.493163645787294 1.372410894686019 0.08808792162602533
1.412167009966917 -1.447455149399411 -0.06826618133448902
-1.398838846439827 1.419246959032477 0.02663787949310213
-1.376692046920517 -1.473231126313674 -0.05007967735119492
0.8325398065467217 0.5642488575635943 2.031825152113685
0.798827542744024 0.773504150224547 -1.938051678966868
0.7221223655416429 -0.853534883486137 1.958145341674296
0.7483423213669852 -0.7579226913890178 -2.032065016659113
-0.7947197817645765 0.5564386858545712 2.041098674811219
-0.6987327945559115 0.8093380036561922 -1.965633957239039
-0.6993087149750773 -0.8689596390249256 1.96290286666935
-0.63571318545199 -0.6604611269514943 -2.029578296209582
0.7301826094582868 2.007769524575532 0.6893116379603262
0.7490261334995727 -1.974814097919668 0.8000194643712027
0.9015182051017475 1.830284036215278 -0.8161690708894294
0.732924487468653 -2.042789891201177 -0.6113065550108523
-0.6545089733492231 2.04166552847838 0.702359246254189
-0.7613287069385973 -1.995228106781365 0.7769194803619145
-0.5847890932876432 1.969416244722431 -0.7037100293569297
-0.7601805582898914 -2.01236030861835 -0.8093947627421195
2.032267812392135 0.6071633157407305 0.7708650830787102
-1.976057727948872 0.8020580510027793 0.7766923707993841
1.954984501588633 0.6647299117094011 -0.7985599651533675
-2.029678646336305 0.6296374733259688 -0.6592777684508132
1.984832805253692 -0.8539854769303222 0.6957214202550125
-1.991162158064805 -0.793017893644185 0.7063584436029555
2.017775361532352 -0.7841826149730966 -0.8120540628716004
-2.005206812503749 -0.7619492800628619 -0.7325685349507456
2.551959737076388 0.0512307296208238 0.001449317339064909
-2.552934776423264 -0.02283191263228079 0.05507594472595993
0.1106863198806945 2.505236458918048 -0.1890187898184653
0.006945018163094469 -2.578135948704437 -0.03564798828390629
0.09774581269733205 0.02469202744915634 2.569199574719955
-0.07810727173130143 0.1052661341996669 -2.541549792485311
1.39814052001335 1.448756554290556 1.451768391128496
1.543786355251951 1.482528197937865 -1.376417821420373
1.449314123830802 -1.331202732069959 1.540117636725301
1.282716995036997 -1.610201492117821 -1.414958799834027
-1.287821980132047 1.519215817289671 1.550718023805559
-1.370770287409939 1.481094275931462 -1.386850594916403
-1.537687220775964 -1.395819431080661 1.416547142903767
-1.411052173222734 -1.304920955268532 -1.592347504384751
0.06335062068430217 1.724075968200464 1.875392910887159
0.08035420195280477 1.723408935658726 -1.671454542573154
-0.005967547960891157 -1.888807641106829 1.796186632845285
-0.07249812311473873 -1.839364035268387 -1.867703836065692
1.791596983856897 0.07918721213675295 1.785306382701457
1.818244804995605 0.008529659875900682 -1.867807148480382
-1.880737721878898 0.02722897577369512 1.829129675387943
-1.720289583457865 0.06879804832815334 -1.841940709272729
1.87626919041305 1.752134591038743 0.07305798809942245
1.829064169036039 -1.878716858086429 0.0561624167403058
-1.717143406807905 1.836428833128032 -0.04606335549454632
-1.785684263892479 -1.865528731649429 -0.1450713573053265
1.235918386377089 0.8887745960248833 2.52341590483194
0.9327148328316955 1.117179134613732 -2.498796341584358
1.147370672146757 -0.9595015599542703 2.526771879974043
1.056404447092936 -0.9336361068000497 -2.544496389290428
-1.081704105117855 0.8204986881055094 2.566188495021109
-0.7459569885306208 1.332863610780158 -2.465743358277548
-0.9416296254888493 -1.1005796688286 2.504033358759713
-0.8501384546127689 -0.9132279725597495 -2.629036510457725
0.8781878818221391 2.588083449700039 0.8061381359345222
0.9573672512439687 -2.531865158410325 1.08478356074975
0.8257642026160333 2.489372097415885 -1.308682439694409
0.9731783255291094 -2.626914407937977 -0.9295060923709501
-1.036561438387022 2.561008803695503 0.8142364908701898
-1.147380465780504 -2.532211172170716 0.9173691201201932
-0.9618155505777451 2.449116715663702 -1.131895120791564
-1.068137216074069 -2.566845185944225 -1.088127766420373
2.59102629155824 0.7442977376983199 1.186596870763555
-2.445721896147166 1.136841426034871 0.9236924239215367
2.604102555567233 0.916877491993731 -0.958964064634267
-2.507616882412186 0.9481238699554045 -0.9758523822735593
2.510701432514782 -1.022503582652707 1.069802621390404
-2.549078261370957 -1.068889830985388 0.9541931663777585
2.552584768030955 -1.015854370109095 -0.9865716283261057
-2.55177303749372 -1.06502944042105 -0.91527887942273
3.272212187621085 -0.1727954986276811 -0.1274317273357315
-3.275210933148963 0.06841324471239567 0.1336163166556198
-0.05323447223217014 3.287904326312578 -0.09828662934228539
-0.01011691056134462 -3.289950074193845 0.167378467933197
-0.02011643400745347 0.02773495071487137 3.29181222805742
0.02092052291503016 0.02751596721138365 -3.264229770139545
1.709312944928769 1.94572046855778 1.823954517528771
1.978652717046333 1.757638794376863 -1.995664120388629
1.949234059701846 -1.90915029613648 1.846360271448255
1.734733460644814 -1.935687074472051 -1.877046427653758
-1.995069011670381 1.817985364257257 1.927390457135214
-1.846366282398854 1.876377954657249 -1.941344587126671
-1.967205327572761 -1.915600714689609 1.89429060279181
-1.78005599841715 -1.876519744884207 -1.916796549660951
-0.1875078230212379 2.229692043057637 2.263289726318714
-0.05178548734326595 2.563371456399603 -2.531100052459711
-0.167341090343075 -2.315087635354467 2.419390800050576
0.291199501572652 -2.359697260527802 -2.441251080104732
2.351855532127288 0.0818907452262803 2.641498504058391
2.413513449158338 -0.1172920661814163 -2.382183469432216
-2.462841640521198 0.002356383946767469 2.342484727655474
-2.071740310491397 0.009978568085976103 -2.326570056887267
2.229680462996152 2.279626907028031 0.007911220115388494
2.433925047094628 -2.396401733419228 0.04698506457261775
-2.401859734276645 2.248617810237234 -0.06752994732310158
-2.459054887135447 -2.482359870588875 -0.0801028903083624
0.5760911000358746 1.70074305350712 3.33457264146019
1.050441803060033 1.343730180541084 -3.324433815112033
1.337098304398161 -1.256796684227183 3.366170092996754
1.334122904169272 -0.9759676058678516 -3.400431911425743
-1.580053048730729 0.8545473130127214 3.322759831634877
-1.540515909547778 0.6393920281432626 -3.372966897111675
-1.103873018614213 -1.428812670933858 3.322799542256705
-1.028665445767753 -1.507280104172609 -3.243117903175604
1.3774085331543 3.244914463834631 1.091771202268683
1.082952764833331 -3.286236402194529 1.486270767480062
1.637387019056789 3.280677981425577 -1.074870941016449
1.419078385134064 -3.385474243457291 -0.9594830616156222
-1.035699023206983 3.261530326032718 1.705353676819676
-1.215357960097632 -3.430654902736658 1.345186974673262
-1.46030141290812 3.332569621980211 -0.8708248584345606
-1.002868769480093 -3.462933577484204 -1.337709293877759
3.349226866149453 1.117513156450947 1.0187688537039
-3.349745126585852 1.716878885962583 0.7959997716842816
3.309260149275156 1.511171609732419 -1.072891365010496
-3.269372529499408 0.7840665102725798 -1.550452699485371
3.365014751808105 -1.294684902450147 1.107064565532409
-3.482822792575194 -1.221892661004231 1.177252796363525
3.365108045173693 -1.086832307298691 -1.482456977859862
-3.162950378376633 -1.054553487880105 -1.491148474966431
4.464547940454303 -0.2400525306349982 0.01409569036029863
-4.48976353571264 -0.1102267438254169 -0.291311008742798
0.06252508044834132 4.487744043707091 -0.2134696669786644
0.215910554660916 -4.569987927688221 0.1255072360007501
0.09855680085280882 0.01044213317270852 4.524471419642349
0.01022511184085166 -0.2186437336863823 -4.4782963180164
2.471739698546809 2.197447383238799 2.30642151471454
2.674454369090286 1.934484727347581 -3.00314127052075
2.656035090242417 -2.79764567888208 2.100751925329252
2.081121792117765 -2.560048169844541 -2.495722714550177
-2.718704397037103 2.004398923320856 2.94583772611294
-2.44350064486057 2.312145621510786 -2.48138547168627
-2.282002204098148 -2.516084787470127 2.8482659722984
-2.594285699582219 -2.194874347453237 -2.444702248293945
0.2636734058021645 3.448212471413541 3.277620492329917
-0.07273887383041891 3.281026685274544 -3.428340559313257
0.1536013906764651 -3.306738645730023 3.476150058943907
-0.06846539080627631 -3.408831348380857 -3.398266130775327
3.412940287628432 0.1720157412368501 3.309796990871771
3.433081034683193 -0.4890075804677453 -3.315214237291467
-3.405730630987191 -0.2338575360753721 3.279024912857348
-3.336687449123582 0.06335180024804928 -3.506281360281542
3.442327890358773 3.276188827659751 0.1992336634745168
3.384867536841831 -3.396906033347606 -0.3670203673462116
-3.329373761479504 3.372819507958343 -0.1355624339994851
-3.269075338226285 -3.45569107870031 -0.1282678242609292
5.766237215567837 -0.0294902380653112 -0.0187225220926419
-5.724776191256534 -0.04226121151567952 0.1872026901470525
0.01285325968203499 5.761150966940224 -0.08370058600092184
-0.006719059052859798 -5.803304512737731 0.09434324562855471
-0.3783098189793061 0.09724580522025662 5.738677096567327
0.3414571281313584 0.1433671755845153 -5.768636435093747
3.379924715249855 3.448417564139415 3.670806233995223
3.58802099341081 3.493111157388918 -3.371785171985143
3.462582506520788 -3.403676456046701 3.574573870659351
3.496705663725267 -3.574674390362893 -3.452291270499934
-3.572103641240816 3.468973070175557 3.387836457553984
-3.495695099036221 3.493700413438335 -3.458413195914433
-3.470158283921497 -3.499212634587279 3.479991378702787
-3.507849694808091 -3.408819857637734 -3.545515643319162
7.881821013959908 0.04619548352390228 0.1705836578998214
-7.844803370533698 -0.1298516318640534 -0.2663148969488167
-0.09293023277962115 7.869221428444594 0.07204648434434259
0.1000396064368537 -7.882428075081999 -0.02923583474488926
-0.2945188523325064 -0.07783471946043825 7.867786637077828
0.09390419303836782 -0.0002291903952175244 -7.870410287091083
</grid_points>
)"

View file

@ -1,347 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
cc-pVTZ realspace grid (Bohr) for species C
n points : 307
</preamble>
<grid_points>
0.00000000000000 0.00000000000000 0.00000000000000
0.06971481421209 0.00000000000000 0.00000000000000
-0.06971481421209 0.00000000000000 0.00000000000000
0.00000000000000 0.06971481421209 0.00000000000000
0.00000000000000 -0.06971481421209 0.00000000000000
0.00000000000000 0.00000000000000 0.06971481421209
0.00000000000000 0.00000000000000 -0.06971481421209
0.08394398036096 0.08394398036096 0.08394398036096
0.08394398036096 0.08394398036096 -0.08394398036096
0.08394398036096 -0.08394398036096 0.08394398036096
0.08394398036096 -0.08394398036096 -0.08394398036096
-0.08394398036096 0.08394398036096 0.08394398036096
-0.08394398036096 0.08394398036096 -0.08394398036096
-0.08394398036096 -0.08394398036096 0.08394398036096
-0.08394398036096 -0.08394398036096 -0.08394398036096
0.23429685167399 0.00000000000000 0.00000000000000
-0.23429685167399 0.00000000000000 0.00000000000000
0.00000000000000 0.23429685167399 0.00000000000000
0.00000000000000 -0.23429685167399 0.00000000000000
0.00000000000000 0.00000000000000 0.23429685167399
0.00000000000000 0.00000000000000 -0.23429685167399
0.18285804573637 0.18285804573637 0.18285804573637
0.18285804573637 0.18285804573637 -0.18285804573637
0.18285804573637 -0.18285804573637 0.18285804573637
0.18285804573637 -0.18285804573637 -0.18285804573637
-0.18285804573637 0.18285804573637 0.18285804573637
-0.18285804573637 0.18285804573637 -0.18285804573637
-0.18285804573637 -0.18285804573637 0.18285804573637
-0.18285804573637 -0.18285804573637 -0.18285804573637
0.00000000000000 0.28225287833292 0.28225287833292
0.00000000000000 0.28225287833292 -0.28225287833292
0.00000000000000 -0.28225287833292 0.28225287833292
0.00000000000000 -0.28225287833292 -0.28225287833292
0.28225287833292 0.00000000000000 0.28225287833292
0.28225287833292 0.00000000000000 -0.28225287833292
-0.28225287833292 0.00000000000000 0.28225287833292
-0.28225287833292 0.00000000000000 -0.28225287833292
0.28225287833292 0.28225287833292 0.00000000000000
0.28225287833292 -0.28225287833292 0.00000000000000
-0.28225287833292 0.28225287833292 0.00000000000000
-0.28225287833292 -0.28225287833292 0.00000000000000
0.49214639787488 0.00000000000000 0.00000000000000
-0.49214639787488 0.00000000000000 0.00000000000000
0.00000000000000 0.49214639787488 0.00000000000000
0.00000000000000 -0.49214639787488 0.00000000000000
0.00000000000000 0.00000000000000 0.49214639787488
0.00000000000000 0.00000000000000 -0.49214639787488
0.31482565657093 0.31482565657093 0.31482565657093
0.31482565657093 0.31482565657093 -0.31482565657093
0.31482565657093 -0.31482565657093 0.31482565657093
0.31482565657093 -0.31482565657093 -0.31482565657093
-0.31482565657093 0.31482565657093 0.31482565657093
-0.31482565657093 0.31482565657093 -0.31482565657093
-0.31482565657093 -0.31482565657093 0.31482565657093
-0.31482565657093 -0.31482565657093 -0.31482565657093
0.00000000000000 0.48994075436596 0.48994075436596
0.00000000000000 0.48994075436596 -0.48994075436596
0.00000000000000 -0.48994075436596 0.48994075436596
0.00000000000000 -0.48994075436596 -0.48994075436596
0.48994075436596 0.00000000000000 0.48994075436596
0.48994075436596 0.00000000000000 -0.48994075436596
-0.48994075436596 0.00000000000000 0.48994075436596
-0.48994075436596 0.00000000000000 -0.48994075436596
0.48994075436596 0.48994075436596 0.00000000000000
0.48994075436596 -0.48994075436596 0.00000000000000
-0.48994075436596 0.48994075436596 0.00000000000000
-0.48994075436596 -0.48994075436596 0.00000000000000
0.72718089433051 0.00000000000000 0.00000000000000
-0.72718089433051 0.00000000000000 0.00000000000000
0.00000000000000 0.72718089433051 0.00000000000000
0.00000000000000 -0.72718089433051 0.00000000000000
0.00000000000000 0.00000000000000 0.72718089433051
0.00000000000000 0.00000000000000 -0.72718089433051
0.48291997685567 0.48291997685567 0.48291997685567
0.48291997685567 0.48291997685567 -0.48291997685567
0.48291997685567 -0.48291997685567 0.48291997685567
0.48291997685567 -0.48291997685567 -0.48291997685567
-0.48291997685567 0.48291997685567 0.48291997685567
-0.48291997685567 0.48291997685567 -0.48291997685567
-0.48291997685567 -0.48291997685567 0.48291997685567
-0.48291997685567 -0.48291997685567 -0.48291997685567
0.00000000000000 0.67534103694089 0.67534103694089
0.00000000000000 0.67534103694089 -0.67534103694089
0.00000000000000 -0.67534103694089 0.67534103694089
0.00000000000000 -0.67534103694089 -0.67534103694089
0.67534103694089 0.00000000000000 0.67534103694089
0.67534103694089 0.00000000000000 -0.67534103694089
-0.67534103694089 0.00000000000000 0.67534103694089
-0.67534103694089 0.00000000000000 -0.67534103694089
0.67534103694089 0.67534103694089 0.00000000000000
0.67534103694089 -0.67534103694089 0.00000000000000
-0.67534103694089 0.67534103694089 0.00000000000000
-0.67534103694089 -0.67534103694089 0.00000000000000
0.30279436269825 0.30279436269825 0.90838308809475
0.30279436269825 0.30279436269825 -0.90838308809475
0.30279436269825 -0.30279436269825 0.90838308809475
0.30279436269825 -0.30279436269825 -0.90838308809475
-0.30279436269825 0.30279436269825 0.90838308809475
-0.30279436269825 0.30279436269825 -0.90838308809475
-0.30279436269825 -0.30279436269825 0.90838308809475
-0.30279436269825 -0.30279436269825 -0.90838308809475
0.30279436269825 0.90838308809475 0.30279436269825
0.30279436269825 -0.90838308809475 0.30279436269825
0.30279436269825 0.90838308809475 -0.30279436269825
0.30279436269825 -0.90838308809475 -0.30279436269825
-0.30279436269825 0.90838308809475 0.30279436269825
-0.30279436269825 -0.90838308809475 0.30279436269825
-0.30279436269825 0.90838308809475 -0.30279436269825
-0.30279436269825 -0.90838308809475 -0.30279436269825
0.90838308809475 0.30279436269825 0.30279436269825
-0.90838308809475 0.30279436269825 0.30279436269825
0.90838308809475 0.30279436269825 -0.30279436269825
-0.90838308809475 0.30279436269825 -0.30279436269825
0.90838308809475 -0.30279436269825 0.30279436269825
-0.90838308809475 -0.30279436269825 0.30279436269825
0.90838308809475 -0.30279436269825 -0.30279436269825
-0.90838308809475 -0.30279436269825 -0.30279436269825
1.23080822451005 0.00000000000000 0.00000000000000
-1.23080822451005 0.00000000000000 0.00000000000000
0.00000000000000 1.23080822451005 0.00000000000000
0.00000000000000 -1.23080822451005 0.00000000000000
0.00000000000000 0.00000000000000 1.23080822451005
0.00000000000000 0.00000000000000 -1.23080822451005
0.72260709061261 0.72260709061261 0.72260709061261
0.72260709061261 0.72260709061261 -0.72260709061261
0.72260709061261 -0.72260709061261 0.72260709061261
0.72260709061261 -0.72260709061261 -0.72260709061261
-0.72260709061261 0.72260709061261 0.72260709061261
-0.72260709061261 0.72260709061261 -0.72260709061261
-0.72260709061261 -0.72260709061261 0.72260709061261
-0.72260709061261 -0.72260709061261 -0.72260709061261
0.00000000000000 0.93132648166879 0.93132648166879
0.00000000000000 0.93132648166879 -0.93132648166879
0.00000000000000 -0.93132648166879 0.93132648166879
0.00000000000000 -0.93132648166879 -0.93132648166879
0.93132648166879 0.00000000000000 0.93132648166879
0.93132648166879 0.00000000000000 -0.93132648166879
-0.93132648166879 0.00000000000000 0.93132648166879
-0.93132648166879 0.00000000000000 -0.93132648166879
0.93132648166879 0.93132648166879 0.00000000000000
0.93132648166879 -0.93132648166879 0.00000000000000
-0.93132648166879 0.93132648166879 0.00000000000000
-0.93132648166879 -0.93132648166879 0.00000000000000
0.47242224080176 0.47242224080176 1.41726672240529
0.47242224080176 0.47242224080176 -1.41726672240529
0.47242224080176 -0.47242224080176 1.41726672240529
0.47242224080176 -0.47242224080176 -1.41726672240529
-0.47242224080176 0.47242224080176 1.41726672240529
-0.47242224080176 0.47242224080176 -1.41726672240529
-0.47242224080176 -0.47242224080176 1.41726672240529
-0.47242224080176 -0.47242224080176 -1.41726672240529
0.47242224080176 1.41726672240529 0.47242224080176
0.47242224080176 -1.41726672240529 0.47242224080176
0.47242224080176 1.41726672240529 -0.47242224080176
0.47242224080176 -1.41726672240529 -0.47242224080176
-0.47242224080176 1.41726672240529 0.47242224080176
-0.47242224080176 -1.41726672240529 0.47242224080176
-0.47242224080176 1.41726672240529 -0.47242224080176
-0.47242224080176 -1.41726672240529 -0.47242224080176
1.41726672240529 0.47242224080176 0.47242224080176
-1.41726672240529 0.47242224080176 0.47242224080176
1.41726672240529 0.47242224080176 -0.47242224080176
-1.41726672240529 0.47242224080176 -0.47242224080176
1.41726672240529 -0.47242224080176 0.47242224080176
-1.41726672240529 -0.47242224080176 0.47242224080176
1.41726672240529 -0.47242224080176 -0.47242224080176
-1.41726672240529 -0.47242224080176 -0.47242224080176
1.03734958078424 1.03734958078424 1.03734958078424
1.03734958078424 1.03734958078424 -1.03734958078424
1.03734958078424 -1.03734958078424 1.03734958078424
1.03734958078424 -1.03734958078424 -1.03734958078424
-1.03734958078424 1.03734958078424 1.03734958078424
-1.03734958078424 1.03734958078424 -1.03734958078424
-1.03734958078424 -1.03734958078424 1.03734958078424
-1.03734958078424 -1.03734958078424 -1.03734958078424
1.85628009413600 0.00000000000000 0.00000000000000
-1.85628009413600 0.00000000000000 0.00000000000000
0.00000000000000 1.85628009413600 0.00000000000000
0.00000000000000 -1.85628009413600 0.00000000000000
0.00000000000000 0.00000000000000 1.85628009413600
0.00000000000000 0.00000000000000 -1.85628009413600
0.00000000000000 1.34538199198975 1.34538199198975
0.00000000000000 1.34538199198975 -1.34538199198975
0.00000000000000 -1.34538199198975 1.34538199198975
0.00000000000000 -1.34538199198975 -1.34538199198975
1.34538199198975 0.00000000000000 1.34538199198975
1.34538199198975 0.00000000000000 -1.34538199198975
-1.34538199198975 0.00000000000000 1.34538199198975
-1.34538199198975 0.00000000000000 -1.34538199198975
1.34538199198975 1.34538199198975 0.00000000000000
1.34538199198975 -1.34538199198975 0.00000000000000
-1.34538199198975 1.34538199198975 0.00000000000000
-1.34538199198975 -1.34538199198975 0.00000000000000
0.66402978310932 0.66402978310932 1.99208934932797
0.66402978310932 0.66402978310932 -1.99208934932797
0.66402978310932 -0.66402978310932 1.99208934932797
0.66402978310932 -0.66402978310932 -1.99208934932797
-0.66402978310932 0.66402978310932 1.99208934932797
-0.66402978310932 0.66402978310932 -1.99208934932797
-0.66402978310932 -0.66402978310932 1.99208934932797
-0.66402978310932 -0.66402978310932 -1.99208934932797
0.66402978310932 1.99208934932797 0.66402978310932
0.66402978310932 -1.99208934932797 0.66402978310932
0.66402978310932 1.99208934932797 -0.66402978310932
0.66402978310932 -1.99208934932797 -0.66402978310932
-0.66402978310932 1.99208934932797 0.66402978310932
-0.66402978310932 -1.99208934932797 0.66402978310932
-0.66402978310932 1.99208934932797 -0.66402978310932
-0.66402978310932 -1.99208934932797 -0.66402978310932
1.99208934932797 0.66402978310932 0.66402978310932
-1.99208934932797 0.66402978310932 0.66402978310932
1.99208934932797 0.66402978310932 -0.66402978310932
-1.99208934932797 0.66402978310932 -0.66402978310932
1.99208934932797 -0.66402978310932 0.66402978310932
-1.99208934932797 -0.66402978310932 0.66402978310932
1.99208934932797 -0.66402978310932 -0.66402978310932
-1.99208934932797 -0.66402978310932 -0.66402978310932
1.42613015639227 1.42613015639227 1.42613015639227
1.42613015639227 1.42613015639227 -1.42613015639227
1.42613015639227 -1.42613015639227 1.42613015639227
1.42613015639227 -1.42613015639227 -1.42613015639227
-1.42613015639227 1.42613015639227 1.42613015639227
-1.42613015639227 1.42613015639227 -1.42613015639227
-1.42613015639227 -1.42613015639227 1.42613015639227
-1.42613015639227 -1.42613015639227 -1.42613015639227
2.58269408903776 0.00000000000000 0.00000000000000
-2.58269408903776 0.00000000000000 0.00000000000000
0.00000000000000 2.58269408903776 0.00000000000000
0.00000000000000 -2.58269408903776 0.00000000000000
0.00000000000000 0.00000000000000 2.58269408903776
0.00000000000000 0.00000000000000 -2.58269408903776
0.00000000000000 1.87427854889123 1.87427854889124
0.00000000000000 1.87427854889124 -1.87427854889123
0.00000000000000 -1.87427854889123 1.87427854889124
0.00000000000000 -1.87427854889124 -1.87427854889123
1.87427854889123 0.00000000000000 1.87427854889124
1.87427854889124 0.00000000000000 -1.87427854889123
-1.87427854889123 0.00000000000000 1.87427854889124
-1.87427854889124 0.00000000000000 -1.87427854889123
1.87427854889124 1.87427854889123 0.00000000000000
1.87427854889124 -1.87427854889123 0.00000000000000
-1.87427854889123 1.87427854889124 0.00000000000000
-1.87427854889123 -1.87427854889124 0.00000000000000
0.92897959464657 0.92897959464657 2.78693878393971
0.92897959464657 0.92897959464657 -2.78693878393971
0.92897959464657 -0.92897959464657 2.78693878393971
0.92897959464657 -0.92897959464657 -2.78693878393971
-0.92897959464657 0.92897959464657 2.78693878393971
-0.92897959464657 0.92897959464657 -2.78693878393971
-0.92897959464657 -0.92897959464657 2.78693878393971
-0.92897959464657 -0.92897959464657 -2.78693878393971
0.92897959464657 2.78693878393971 0.92897959464657
0.92897959464657 -2.78693878393971 0.92897959464657
0.92897959464657 2.78693878393971 -0.92897959464657
0.92897959464657 -2.78693878393971 -0.92897959464657
-0.92897959464657 2.78693878393971 0.92897959464657
-0.92897959464657 -2.78693878393971 0.92897959464657
-0.92897959464657 2.78693878393971 -0.92897959464657
-0.92897959464657 -2.78693878393971 -0.92897959464657
2.78693878393971 0.92897959464657 0.92897959464657
-2.78693878393971 0.92897959464657 0.92897959464657
2.78693878393971 0.92897959464657 -0.92897959464657
-2.78693878393971 0.92897959464657 -0.92897959464657
2.78693878393971 -0.92897959464657 0.92897959464657
-2.78693878393971 -0.92897959464657 0.92897959464657
2.78693878393971 -0.92897959464657 -0.92897959464657
-2.78693878393971 -0.92897959464657 -0.92897959464657
1.97579819392031 1.97579819392031 1.97579819392031
1.97579819392031 1.97579819392031 -1.97579819392031
1.97579819392031 -1.97579819392031 1.97579819392031
1.97579819392031 -1.97579819392031 -1.97579819392031
-1.97579819392031 1.97579819392031 1.97579819392031
-1.97579819392031 1.97579819392031 -1.97579819392031
-1.97579819392031 -1.97579819392031 1.97579819392031
-1.97579819392031 -1.97579819392031 -1.97579819392031
0.00000000000000 2.75099393035272 2.75099393035272
0.00000000000000 2.75099393035272 -2.75099393035272
0.00000000000000 -2.75099393035272 2.75099393035272
0.00000000000000 -2.75099393035272 -2.75099393035272
2.75099393035272 0.00000000000000 2.75099393035272
2.75099393035272 0.00000000000000 -2.75099393035272
-2.75099393035272 0.00000000000000 2.75099393035272
-2.75099393035272 0.00000000000000 -2.75099393035272
2.75099393035272 2.75099393035272 0.00000000000000
2.75099393035272 -2.75099393035272 0.00000000000000
-2.75099393035272 2.75099393035272 0.00000000000000
-2.75099393035272 -2.75099393035272 0.00000000000000
4.03403448382116 0.00000000000000 0.00000000000000
-4.03403448382116 0.00000000000000 0.00000000000000
0.00000000000000 4.03403448382116 0.00000000000000
0.00000000000000 -4.03403448382116 0.00000000000000
0.00000000000000 0.00000000000000 4.03403448382116
0.00000000000000 0.00000000000000 -4.03403448382116
2.80460948451868 2.80460948451868 2.80460948451868
2.80460948451868 2.80460948451868 -2.80460948451868
2.80460948451868 -2.80460948451868 2.80460948451868
2.80460948451868 -2.80460948451868 -2.80460948451868
-2.80460948451868 2.80460948451868 2.80460948451868
-2.80460948451868 2.80460948451868 -2.80460948451868
-2.80460948451868 -2.80460948451868 2.80460948451868
-2.80460948451868 -2.80460948451868 -2.80460948451868
5.29518167308516 0.00000000000000 0.00000000000000
-5.29518167308516 0.00000000000000 0.00000000000000
0.00000000000000 5.29518167308516 0.00000000000000
0.00000000000000 -5.29518167308516 0.00000000000000
0.00000000000000 0.00000000000000 5.29518167308516
0.00000000000000 0.00000000000000 -5.29518167308516
</grid_points>
)"

View file

@ -1,378 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
Def2-TZVP realspace grid (Bohr) for species C
sqr error : 3.335824633306928e-07
penalty : 2.489128859765823e-22
n points : 336
</preamble>
<grid_points>
-0.1679553145565802 0.03790009145261004 -0.006923468538304827
0.08313889059995813 -0.005506928305665535 -0.01843634437720116
-0.01796075793141781 -0.03432488231193202 0.04206246705429167
0.003804493587138668 0.01236942438767348 -0.02760075428707292
-0.04324723836016773 -0.0790381872369911 -0.07250368836265583
-0.04869434745364332 0.07086868916623226 0.003358594967592546
0.1806808831034878 0.09360408784623735 0.1130232731890645
0.04867513784139264 0.133495191964799 -0.05616597963396996
0.01106416228609269 -0.01408174074934482 0.1335074402097937
0.1592342861706139 -0.07281444672588834 -0.0299421420778652
-0.02834310387959853 0.1812982137247828 0.1270188866966662
-0.1263883490859332 0.1912730894329011 -0.1360067424100854
-0.1800358541166964 -0.03509842909504855 0.1723244017435881
-0.05471233986814863 -0.1924735293220764 0.03763365294546468
0.3622669860416473 -0.05197483790956746 0.0260541913049445
-0.3928068594686236 0.09043787569960135 -0.02527209677103848
0.07437091975770026 0.3507000372507324 -0.0553655084990901
-0.1289074736071551 -0.329596786925911 0.1034616863523921
0.01217183099304539 -0.04791683870118703 0.3241627129407814
-0.0118393187061835 -0.01382531137631624 -0.2005862760150239
0.1770942967096752 0.2209397159914183 0.211098903994546
0.1999184819272844 0.1166688098628978 -0.1619373330444248
0.1416487529278446 -0.1657367378306998 0.1606959405873852
0.1023375448757179 -0.2279486697954632 -0.1571036526733879
-0.2000836073011689 0.2336381055247302 0.1497972506941318
-0.2415668874816679 0.2738470881364953 -0.241771105388169
-0.3238867309470966 -0.09757988687004544 0.2472280312917333
-0.2460468951641369 -0.1170530637638786 -0.1247040080996414
-0.07356260419986695 0.1968007187927495 0.4202201240295732
0.1630017923713521 0.3021626483610408 -0.330489169071866
-0.03816792810897523 -0.2967893730077095 0.4284025398124459
-0.09574131414347982 -0.3525053049991375 -0.2618984075603856
0.2981124745712818 -0.03342789237983609 0.3653196015843341
0.2930738592613721 -0.1003929104977365 -0.3035871154176354
-0.4169263408065763 0.0308127728337545 0.4491444632856778
-0.04432846111787527 0.0211543835496336 -0.3631991201564778
0.3972957827645811 0.2753316591817605 0.03198202278439174
0.2170741653750245 -0.3640494311705967 0.09758536990191249
-0.06069405229261885 0.4967431788950538 0.09035619636946468
-0.4504261572727179 -0.2964227265042962 0.0153426938402634
0.5635147089881125 -0.1544623985764127 0.06700086847387422
-0.6210989602313306 0.07967182396377613 -0.08221256780249185
0.2492038279751099 0.6190351262982424 -0.1358037803408577
-0.1098197565861469 -0.5906545148494334 0.02921384712909209
0.0330362225363167 0.05289483150598857 0.687848424518911
0.04843456973451905 -0.03270208097855658 -0.5899116187528539
0.2846258524462126 0.4015110157916249 0.3658070424200206
0.513729773073806 0.1286558900718247 -0.2843849665027243
0.4177202415487591 -0.1149188508367368 0.507009155263686
0.3108419588712678 -0.4081006599356696 -0.2634705149626058
-0.437879536569482 0.3355860127896247 0.1251306155179953
-0.2225726146316725 0.4161472441294935 -0.3838939857154767
-0.383087292209542 -0.4485877663923492 0.415465585022214
-0.3535657564510593 -0.08191988370162524 -0.3595480090004354
-0.1786094370011553 0.5371800086166878 0.4575297089636043
0.2344042586699736 0.3692980320519015 -0.5811756325491804
0.09611181119201098 -0.458597362362053 0.6569655356366019
-0.08520402604189067 -0.4602454180269023 -0.5017173887627066
0.6780977897133027 0.2482595417283506 0.2274818731475496
0.5323306108090364 -0.166933944806107 -0.5202176247152119
-0.6771008571952959 0.3115845143162083 0.4220760134570407
-0.4781792070503205 0.004756364482463693 -0.5080329502246456
0.6703487171079041 0.3621412885489368 -0.2500168723056433
0.3137057515965878 -0.5386939669802483 0.2445792127138425
-0.2901329861939094 0.6896985179792391 -0.07756671713746924
-0.5001615631654762 -0.4952908916445609 -0.2810268848743451
0.3434734304917588 0.3293058708969219 0.7620348831058555
0.4299669875911948 0.3310061668491409 -0.793301323259713
0.2147618226868111 -0.2302637539154435 1.008672214883796
0.2265017486032451 -0.2981134296597724 -0.802254481558734
-0.2136438115795949 0.6133949148733472 0.804915426411379
-0.2099301910969819 0.3162716780905959 -0.7497367244829761
-0.3291028291420482 -0.03283456194352893 0.8304113178020047
-0.3264895526164749 -0.1934610980377678 -0.8000201322623733
0.3077830775073778 0.7834169650116514 0.2819706613389327
0.4438490958494693 -0.7627185168847201 0.3381601564522453
0.6064871802811762 0.7682013331803101 -0.281534327531532
0.2692133974838128 -0.7306195823823596 -0.2259692576450029
-0.366386634629984 0.8914669403108032 0.1987908831554106
-0.2044675157414143 -0.8321867826944788 0.142955632234783
-0.01040360089002782 0.8381323095207802 -0.438724658824826
-0.1220423199378382 -0.8238409835768278 -0.5390772135046374
0.8867095428471332 0.4581494381359392 0.2993543569250771
-0.9087405972120998 0.5852871600699459 0.09850985395376101
0.9560836828235381 0.07906298272474595 -0.3288890006257836
-0.6703490976145893 0.4127076868288959 -0.2025555316708727
0.6699281575552345 -0.1899847185780185 0.5890659061976533
-0.7648338049714865 -0.1659323614802168 0.1461386358599014
0.756055459620401 -0.3436364647980061 -0.03515404873694013
-0.8638347394956362 -0.05195018901271853 -0.4286633573353099
1.068566985285038 -0.2458809362281235 0.2637605098279791
-1.097421018095388 -0.08007351752026637 0.1342269566641435
0.04564556760207122 1.165500703459917 0.149417651737461
0.05538967497961238 -1.153835980506098 0.0172864863281342
-0.06401826815261756 0.2257592162153698 1.223889668291532
-0.008404480732041197 0.04800840130087805 -1.135545888053102
0.5097033108027083 0.7833576056650409 0.7247273587878457
0.7164415738685792 0.611965863836919 -0.8468152553475948
0.6297514045310333 -0.634070075607496 0.8688239213227152
0.6365868987625589 -0.6800897260339447 -0.4796030231515781
-0.7122177691064093 0.9231242405440663 0.6013896471604488
-0.5906923402393042 0.5907364956610427 -0.6058378353874735
-0.6865401639637012 -0.4512038296728494 0.5700329824668647
-0.5887615113980071 -0.4836284575034728 -0.7891176016170195
0.06660281909348997 1.076274424775053 0.855402901461833
-0.03770203683178608 0.7250813333762921 -0.9744124870846657
-0.1069232351321125 -0.7948436035275739 0.7056283224750687
0.1626359104588188 -0.6721382225162921 -1.028998785499635
0.7771638448864322 0.1440940128531384 0.9461194057543837
0.7803983596356109 -0.1772574816195337 -0.8484300795914527
-0.8220475918076968 0.1628590844055973 0.8232605891078562
-0.7420935719928375 0.169401640507886 -0.9646662579289541
0.8506669694613593 0.9946942214606114 0.0620450444774665
0.7625833770028189 -0.8811456332023012 0.1292197828708376
-0.6152561416033817 1.069195081304946 -0.3431237721081188
-0.7310268725594694 -0.7107048399192815 -0.07253208348369676
0.3708027505096821 0.4039171156955663 1.396377767534435
0.3418749593266422 0.7075206266844929 -1.395116927844036
0.1922063999559402 -0.5667409681735144 1.405401273260804
0.6275569792805923 -0.03160786006295081 -1.286186317754086
-0.6377114486493366 0.5298555664279838 1.283920753452032
-0.5585566567685772 0.7738711992148388 -1.158683663182436
-0.4171435008582707 -0.4739440637999482 1.102712356873064
-0.5918620028641779 -0.6349388202832824 -1.123210906176478
0.5926542405261876 1.441829619344569 0.2046126112967521
0.2177148853001833 -1.189821337643881 0.6663953639940982
0.2494696623239683 1.197548591650217 -0.5008587736439468
0.4147330391170529 -1.172986925549145 -0.5394472649378624
-0.2819561225193565 1.535500476545767 0.2524889210407649
-0.6306410741216002 -1.041918315745034 0.3907789989345592
-0.1542383024974021 1.461324423318707 -0.7340627509074726
-0.509535952676707 -1.123229973199151 -0.4435881945123736
1.307826314893376 0.2770487428419108 0.4409663804028198
-1.360148777735154 0.3606927339713548 0.4481747943871722
1.221602137355756 0.4337791556188731 -0.343940243340518
-1.228649691368782 0.3766928169295554 -0.4051932543207008
1.242934092406898 -0.6168440417520998 0.5616843360870591
-1.172915223295613 -0.5144543277009165 0.5109008797827533
1.217639422568091 -0.4782996052540152 -0.3608603619763936
-1.15756051912697 -0.5329626511008471 -0.4025214734575903
1.695251368058429 -0.1535351681020301 -0.01487653487878617
-1.668840146686294 -0.314275872027532 -0.08473692715485628
0.5612875140403333 1.838588473991497 -0.1763861946447506
-0.05349101124299074 -1.613338441048384 0.0917161387416127
-0.200148388469692 -0.04774115434180251 1.794300632647797
-0.2746176343476047 -0.006980609591624513 -1.498175624906913
0.990425316442891 0.8906758829846654 0.8815206365631683
0.8993312861975656 1.157393359839537 -0.7587496738363203
0.7360107926294296 -1.236309713576639 0.9484009011447218
0.9659434860417049 -0.7997616298431459 -0.9637620034087272
-1.032767394627158 1.157586937736804 0.8857586166902515
-1.058191173218643 0.913352150116179 -0.9131961174195441
-0.5177312916268541 -1.160452167222699 0.9855975695963757
-1.134629939337712 -0.9903081879449576 -0.9438957246699701
-0.02991054050728136 1.198160978774627 1.248298255181676
-0.03189972506696065 1.188873276476996 -1.596113553682984
0.03389498691098312 -1.426506044808282 1.341138571961815
-0.2247982908607817 -1.369767199342296 -0.8845010209577493
1.035728120662275 -0.189069020794245 1.239836421984781
1.348669876448503 0.1573934863289889 -0.9569267821303125
-0.9290296306954017 -0.2684691858913525 1.246769257855215
-1.234687035613459 -0.08118306310190597 -1.070260371895531
1.512340543921534 0.9322699874886289 -0.02521524675127297
0.9032357184840397 -1.249779163158108 0.04585715770232308
-1.133153252138596 1.143692528039952 -0.01327436943615429
-1.033699851819571 -1.271427284950886 -0.02811530671593851
0.6733088688653686 0.6347666119109964 1.709457733492031
0.6051879067221988 -0.02714367643235436 -1.803836173984127
0.7873088169128575 -0.5822492099435563 1.780340760532882
0.282959402708673 -0.7731311170825604 -1.415569214626428
-0.7521511736424699 0.7351702408205035 1.772196458801799
-0.7141780447430446 0.2545257511417898 -1.781729606003342
-0.7742150373084302 -0.7393350496011498 1.705251097719089
-0.3788797019111251 -0.7707658544450772 -1.69641976583203
0.6720756371175276 1.664447307358462 0.7648346546144955
0.7032055218598072 -1.883837403329833 0.3353965791396134
0.5670461331730137 1.853239891735016 -0.8645174268279202
0.6189084606876811 -1.632018552591981 -0.6952225261877459
-0.5000287647120002 1.858787392489808 0.7378644693232758
-0.6513448435896226 -1.859779216557814 0.4460127086949504
-0.7207400547773237 1.832076265295575 -0.39116132448593
-0.5624589749430917 -1.90956706304217 -0.708274726567668
1.648610346985572 0.2652732007195559 0.9310942054551306
-1.552996122320254 0.2535739194013922 0.9990872476183214
2.039944591872504 0.08919168998670204 -0.556282394618582
-1.732225884176942 0.5414939981610061 -0.331827284136188
1.597017011562485 -0.8938940959961088 0.7916573974708083
-1.437441409833204 -0.8770452351591734 0.7540194621532998
1.525960658766396 -1.043767102291477 -0.2991402186133573
-1.729073461875882 -1.173348705566315 -0.3720940887777195
2.282029918823109 0.00904154244874864 0.5310262937792729
-2.210990363130573 -0.1061717619153785 0.2761942905330466
0.2243736746385724 2.394793478819713 0.2785923554990147
0.1750418849773411 -2.441367994242541 0.5040781227467404
-0.08507444173828758 -0.07980734260250937 2.388646221777972
0.2240497568765354 0.1074549280167712 -2.318824024904649
1.49365480929726 1.271898205273409 0.971113462210846
1.279874439710568 0.8348244617576226 -1.394388833544065
1.373286238431389 -1.481349885582512 1.300489561741588
1.343182985991442 -0.7244895742249311 -1.361165874489244
-1.496184471823967 1.391563350488816 1.193980194036354
-1.244405748553031 1.17895040198858 -1.193121229834316
-1.479911297684709 -1.46118890901906 0.9452835018924911
-1.016223149359552 -0.9856446012169308 -1.732202191222319
0.1655082252156355 1.451148732084705 1.782982097501935
-0.3572733151737709 1.930869141419431 -1.569798479877216
-0.1242756439978312 -1.5566522602846 1.824473596039903
0.3306585609851566 -1.35860166884422 -1.617389075523087
1.488434393485593 0.1518073412868382 1.862681449064857
1.866560472704645 -0.3297246837649575 -1.680889211044798
-1.641013377004568 -0.1132709794755221 1.605388282724884
-1.767941395497248 -0.04147824471817151 -1.179004868254368
1.711832653962623 1.436223313102406 -0.2575155721149387
1.926712507385419 -1.367784923791326 -0.2289202049532112
-1.72110499166863 1.190338005133987 0.205930604199241
-1.791582186815458 -1.807649007952808 -0.56477518200466
0.8391963054646904 0.8696832017959751 2.5105089118942
1.06498262325716 1.21574782501672 -1.998683892974814
0.5795698247631703 -1.28807988685576 2.438332701670628
0.6475330156965428 -1.234688538309194 -2.188139731033758
-1.145840737075957 0.746921552808908 2.407185190403369
-1.135804575051071 0.6492429044305438 -2.188175615292379
-1.444797502989234 -0.9131813936494619 2.131113357926846
-1.008250874849262 -1.10641193130762 -2.224010723415528
1.199678043737859 2.029947040894447 1.208094552367113
1.558802927164944 -2.366188547613791 0.6778203135306331
1.106610448268334 2.370592533805807 -0.5928093704878
1.005913938586501 -2.026475157652507 -0.8513805109257639
-0.6956280839065745 2.180814840167017 1.433808089945622
-1.127009107750196 -2.274381073252107 0.9030286172142549
-1.21981665396709 2.269072487929352 -0.2397175035338479
-0.399109063700012 -2.402600471503168 -1.07929540273279
2.392313013351155 1.100566923122774 0.9246559418905475
-2.430378785015046 0.9225774799525391 0.8969601318401121
2.412945082645057 0.9770094781982112 -0.7467665202274338
-2.127930733351796 1.111170570858013 -0.7480175736516768
2.211235521203365 -0.6304814679387543 1.590015657174412
-2.545965975565056 -0.7979732442279774 0.6835332399881947
2.658348875616372 -0.9058648195297464 -0.3252716585609171
-2.40460311568947 -0.3713628549994603 -1.127241594694617
3.254744354134941 0.7582413611314254 -0.3417412442257156
-3.164597859222447 -0.4443119860063002 -0.9138818364350274
-0.2902678092919399 3.105151554535145 -0.5764613434344069
0.04146448651464368 -3.245246190913881 -0.3837968281574982
0.3490470548216486 -0.212923357487521 3.275387132183519
0.5402457521688885 0.2254789172521066 -2.952327522446865
1.717794902563322 1.497490742985972 2.459991212292292
1.6632502108842 1.943878300014988 -1.972064495661661
1.602045231133201 -2.094929718402147 2.255930354268298
1.434981330674268 -2.235327262355332 -1.412381096703997
-1.328344837725993 1.544248875577106 2.683511423223414
-2.407693067984965 1.463094702799224 -1.327001782510131
-1.653118572190974 -1.085120031214259 2.662152068796627
-1.785521852193997 -2.299166116840121 -1.496837217001297
0.04883715901022915 2.762662698658102 1.625672932564505
-0.6330671849280282 1.958797309432294 -2.398813671596118
-0.3271328066498663 -2.698292118703974 1.669341609327164
0.1771667000947819 -1.815542589527714 -2.724822528511454
2.826472755410223 -0.2660495630052258 1.736877797078282
2.304126935271912 -0.4079268709041052 -2.253580421457376
-3.054508418220264 0.2816678234267721 1.360268911091042
-1.57139912946922 -0.1866498026464131 -2.841853304761961
1.877893475185579 2.664579945738195 0.3037257642847063
2.826334184456289 -1.980558397807463 -0.2447443317752075
-2.152259008695031 2.378888068014442 0.4946114940875366
-2.300298054058648 -2.253115620187792 0.652108824267732
0.5793201425587206 1.892411871884868 3.567014497117771
0.7516995958491165 1.13267575866376 -3.635522381617716
1.967099749844386 -0.4823774044996495 3.607577637384448
1.375011177902722 -1.391002412030474 -3.488235584314287
-1.886831051263225 0.5950600745495028 3.670792613828604
-1.807509811870984 0.9629518440247755 -3.49807846014229
-0.7125040907031137 -1.812047227702416 3.553468400750095
-1.661260120432492 -1.91694975212007 -3.197159320888904
0.6957312442929985 3.752073270108609 1.380843544789207
1.774793049405298 -3.528851391273596 0.8572138259826002
1.461536971254556 3.430564101328671 -1.409866149771862
1.140889985403213 -3.379777991908955 -1.688879527711256
-1.777829143623897 3.402287265730771 1.272919651626351
-0.9388958915381821 -3.573593344332251 1.584104084333973
-1.2467387736805 3.360632961031861 -1.685898123163861
-1.845151418541929 -3.564324773088644 -0.9803208211853559
3.279301485756319 1.985151376347979 1.188681815616353
-3.635404322074888 1.178211685483556 1.653574210329949
3.333566997525165 1.333480087931445 -1.967730054170155
-3.37449228370843 1.701836639965348 -1.178082149937856
3.816035906694387 -0.6891583996378327 1.53465215031238
-3.379743929192073 -1.785828414488386 1.321514215765323
3.65284911004172 -1.317602032468384 -1.415045082050845
-3.770830294704948 -1.08596101629155 -1.416040835138467
5.139422759788409 0.5568670540751588 0.07353807846101308
-5.097853369035916 -0.232303500540309 0.06459749708036232
-0.311173392010465 5.153446963919755 0.2775795023455506
0.01234058228133325 -5.014550832343609 0.01444040856850392
0.7425673268124077 -0.1527610214616988 5.468860189200585
-0.2197091021147121 0.3019151666505683 -5.122100535792644
2.605012477148829 2.360236737113738 3.271563091118384
3.168539794794149 3.222180262228114 -3.071381278750757
2.078679632409631 -2.806588999750326 3.040553782084717
2.920723922374794 -3.347246820265779 -2.855613129491951
-2.22047972140966 3.058885679896477 3.196552370362126
-3.095880843097602 3.105210572074392 -2.974137857497414
-3.067079819071502 -2.498249435807875 2.784146753989535
-3.014575918146535 -3.539383329329646 -2.62841621231108
0.396954411499717 4.304504387668532 3.416845514025879
0.3481110749455393 3.428124908415435 -3.309018961262828
-0.4528226954000961 -3.806431278994666 3.666789834801092
0.4614002029414315 -3.297431403368942 -3.556086456820973
4.268728725469472 -0.3891522875360558 3.388196600498
3.001387192294628 0.3375676478024106 -3.868233187472867
-4.089509576571198 0.5791261615808876 3.597283025577046
-3.412488422444752 -0.182131735085991 -3.780536132144948
3.321221888607105 3.498165884504685 -0.03864603042634999
3.751393083737949 -3.107055532668208 -0.02574142021825913
-3.557127031614157 3.362518150391609 -0.7167358693132864
-3.527475746137514 -4.001438985690963 -0.01050129342465083
5.625475675096923 0.1843975134624905 -0.4596004113463841
-5.579800979915597 0.6765394352534765 0.1251388849885473
0.07694862071497588 5.509462665643595 -0.5542374298449699
1.133224677530538 -5.523149656867163 0.3822692266961945
-0.5464332103700457 -0.1090543165263782 5.210716056220321
-0.06419957051465389 -0.02130065201567751 -5.618602557015833
3.678543177174356 3.867858747918464 3.404765130305618
3.505934978103977 4.081549274843169 -3.8264849313138
3.829698776473293 -3.707688025523031 3.248267769111758
3.645178283183497 -3.450743741412105 -3.971932367420252
-4.199644796940142 3.724550616376356 3.355363862153157
-3.880612505979811 3.73475436024277 -4.023066437418264
-3.52470181368875 -3.934591809745664 3.802240917173222
-3.631273801507445 -3.75759313347594 -3.856142025603895
7.595004053863105 0.04153894979550583 0.3471062185660174
-7.586208668021815 -0.4934653218644269 -0.1136662937543627
-0.07632185872968542 7.578028191208094 0.5136482868819749
0.3717259134842603 -7.584771702960515 -0.1565152890534376
0.1807140867848273 -0.1308793325914117 7.58908033855395
0.3388685731042758 -0.08638409968076206 -7.576630714798585
</grid_points>
)"

View file

@ -1,578 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
Def2-TZVP realspace grid (Bohr) for species Ca
sqr error : 5.507020967393822e-07
penalty : 1.476486646696034e-11
n points : 536
</preamble>
<grid_points>
0.001889015543817823 0.005819147226596575 -0.02754566458799386
-0.1356729072444721 0.07001444424079489 0.003971502516300467
-0.08394248339661468 -0.08246231046094424 -0.0753701835844811
0.1414964758430544 -0.09059386710714902 -0.01148763725201088
-0.2967362849983746 0.2085642627410988 -0.07001119188573642
0.2755858357041907 0.02896914995441506 0.1466138041573373
0.1536747069564129 0.06393606769172659 -0.06757943305373806
-0.06677579395127951 0.04080516032749097 0.1449933248898581
0.05888705421043063 -0.04678293285298935 -0.1387403791159905
0.08057340848342089 0.002389245634818364 0.1266735523680909
0.4998598845339781 -0.3553446210363234 -0.192550964525677
-0.07318448898566585 0.1820552144754825 0.03761413435980952
0.01880862059557195 -0.1850973352039339 -0.07436536521727731
0.243973282373962 0.07643888440619419 -0.07622368171949981
0.3349112676928569 -0.1644334623221403 0.1179330600240202
-0.07486820845532582 -0.04766260345243171 0.07568870380340358
0.04798173630922508 -0.1054124744809489 0.01338586122030732
0.02254016388305171 0.06211749617369892 -0.02825290371366851
0.03076675701546527 0.01924352520572595 0.01938851373466412
0.07741392258365581 -0.090025498490743 0.2843923872581633
0.03691958748362153 -0.0245296837662983 -0.09604202288528309
-0.1849269635607775 -0.04656696811929373 -0.1468677137131851
-0.1146856973772391 0.01421748111845467 0.2012860523625292
0.08306849810260215 -0.03755970699362238 0.1960168366369997
-0.1153790765941393 -0.1491146431097592 0.1537673429214252
0.05629981114864781 -0.02552255861960525 -0.0228839804523945
-0.2049836510154104 -0.007075080674549108 0.03387732453754753
0.1071259632955003 0.07691054106695648 0.257225648526273
-0.02770700873748402 -0.02193701686364123 0.01548600828069308
0.07877659039437766 0.1506754503166239 0.04704455694655146
0.02550119813676036 -0.01408426712692775 0.07254786238830738
-0.106981822855084 -0.1441203124490331 0.02395278284171685
0.2028725210371088 0.02192402347037834 0.07584388849982826
0.006053367441576187 0.1141572416433807 -0.08580304756734107
0.07394898088197402 0.001871291595902525 -0.2117114227549037
0.08498909600047116 0.1944398913551424 -0.1072053391869498
-0.03665832337907427 -0.06586747386962492 -0.01230151668122147
-0.0831937341103772 0.03357891232028049 -0.05151310404491327
-0.01612200867045208 0.1606430143035342 0.1674119137715111
-0.04585422017148142 -0.1273959484845554 -0.1969731744766154
-0.05574678275528678 0.02713389800642266 0.02871021406213915
-0.2927152660799218 -0.06582661222618061 0.0672107854110585
-0.03879536627576309 0.2905087362220334 0.04113993699796108
-0.1636934848006613 -0.2078899663172631 -0.0281774359466573
0.02119309206521033 -0.0303904284694398 0.001981687151509256
0.1253305108095208 0.1037871356513978 -0.2861091390298725
0.09603698118318341 -0.2002588354571012 0.07312751668777717
-0.1030098117824322 0.06162377809389841 -0.2719066223431112
0.1970976526944143 -0.1197202961743362 -0.07911330108365261
-0.007111221047466375 0.09369870166636417 0.06183770162526618
-0.2141597553363014 0.1423888262610061 0.06711885122220067
-0.01930315027271652 -0.004393198230412851 -0.04754068446597964
-0.001111304130753877 -0.1239518982159241 0.1121706840543732
-0.1780209387381116 -0.1939624195722844 -0.1932448644698831
-0.01592829274620042 0.0288897138326557 0.01162316284919194
-0.05053977510026826 0.1715716435665105 -0.1493325836386899
0.1106727210432009 0.02952372190389563 0.004172881870776367
-0.0006135932895581415 -0.00396829575409159 0.009347029710501685
0.1453607702346497 0.1893606628494574 0.08974206365943212
0.3346035744369823 0.09197109692976889 -0.08740435563640174
-0.1874914756521045 -0.1007671970905275 0.2732485921087269
-0.09564970847128322 0.03628962105014562 -0.1540222386094006
0.1195206397810233 0.2744424252454859 -0.08117218130071377
0.1289951825003799 -0.3056820928589803 0.11334411107206
-0.2960418594314123 -0.01948849190170367 -0.1631030129073769
-0.189524781099072 -0.2971812464020143 0.05619447390296817
0.0778642008261623 0.1988938469214893 0.31523798828337
0.1602568326084587 0.2283496075277777 -0.3664049751256909
0.1460235477878583 -0.0753095273298552 0.3838994264218021
0.1802659749850721 -0.1175114297958085 -0.3541539679083061
-0.1438078337844633 0.06546258867360102 0.2636216552964228
-0.15127477089844 0.06622332706271138 -0.3802341834182952
-0.1859794216941496 -0.211813052421218 0.412039035430295
0.1414858378178477 -0.1013452062297619 -0.231861493277934
-0.0548804216956216 0.2556153556748295 0.1901881483676719
-0.03431394481834004 -0.2215274761042151 0.156819130100398
0.1640321942657088 0.348736212122451 -0.09618984337883911
0.04554557749209408 -0.2872633744793331 -0.08142319365627382
-0.05471714199818807 0.3996321910766902 0.1379220460444527
-0.4576908595307138 -0.6770300106234938 0.2863906982986733
-0.08248668121291904 0.2815453298294257 -0.1957489071325048
0.05892152365951497 -0.5233700105230238 -0.2565606344312887
0.2400145754725361 0.2284861919530498 0.1487545654413621
-0.2950536708659472 0.1974321775443146 0.1225165335266596
0.430847504575231 0.07255863245505223 -0.1678754996511422
-0.4212911825210009 0.07626008500414688 -0.1814143812815184
0.2404406926958879 -0.1301685762986211 0.09400120971783882
-0.4015335274125769 -0.1120214443850262 0.1194041550606223
0.2757136926134189 -0.1685252270940714 -0.1400803897763083
-0.2681824113963846 -0.2521986056817755 -0.1801779129464417
0.5440362961655862 0.1982877025284516 -0.2123416802158037
-0.5403566397179012 -0.1054935717554258 0.2083659779965175
-0.1031648048629512 0.5746467251773335 0.1304030453841313
0.05970555039502631 -0.4018257297765903 -0.1258034323876546
0.2090412936235495 -0.1114099954226067 0.5181995716479665
-0.1961199455919742 0.1214368942721758 -0.514549762655737
0.3912715334868254 0.08180109435937466 0.2149365874571997
0.1259989906397373 0.4636344683747701 -0.3481552567472225
0.5266721627471309 -0.09669908035305988 0.1947190346310116
0.3704632798747684 -0.2927788142009746 -0.1189731123613565
-0.3752324103719379 0.2622354736644599 0.2120289003613135
-0.4935445243017359 0.3012198808673778 -0.1568148747765276
-0.2088879275210098 -0.3522042239078346 0.501032005462965
-0.00994363431558465 -0.1607031559828144 -0.2999893571486422
0.09436171187667169 0.2768730719760532 0.4147359625738029
-0.1721179063162322 0.4066344745249552 -0.1881242430679814
-0.05799846431775082 -0.2899088897225666 0.2515054008522324
-0.07570395099028651 -0.2552845742027419 -0.4003919849215692
0.4112848833905444 0.3283293871700541 0.3525237257951968
0.2529916142256363 -0.08613859185035694 -0.5057501706069165
-0.1790910865354506 0.08024358530618186 0.3785794135737993
-0.4324867472472244 -0.2393071521914321 -0.2420353263657671
0.2937175187583225 0.4099430859467768 0.03631861009317935
0.1953922339806761 -0.3773689769686746 0.2277718228432169
-0.2176529826924689 0.1469301342366618 -0.07872869606834265
-0.2042313796729464 -0.4476641696423001 0.07501277974298831
0.02676488555115313 0.4888002340651706 0.5386019170618882
0.2596905435950679 0.204222158408713 -0.6394719185870958
0.264051544191557 -0.07697818151465309 0.6788008938376907
0.1904793925281814 -0.3939189043345139 -0.6251080308542961
-0.2071681576162556 0.1766757094244395 0.5359326745946508
-0.279013320374381 0.1193744081286721 -0.6777432059709319
-0.3403130251750391 0.004692992940854044 0.6930359187521948
-0.2032264840935733 -0.3218817142008178 -0.5362079801721407
0.3391620415081499 0.6241673496535711 -0.02649764646550358
0.1663077571626491 -0.5474275470755681 0.2262731910783244
0.0970423133919472 0.6901806851897927 -0.4582625020220691
0.1371552166264135 -0.7609520720949008 -0.1187824385564029
-0.203044566646499 0.7718543967197244 0.1240503448370872
0.002521116153759654 -0.6142021912918897 0.5058309153537479
-0.2826872984143992 0.5481141818320248 -0.3391820187245784
-0.3505285300154466 -0.5551214654149097 0.03917396742405856
0.7379872870870829 0.08305913181303982 0.1356503431487209
-0.5405668197609217 0.3579416662459949 0.2835344622044353
0.6514108607044361 0.3828457473643011 -0.3684768586863086
-0.6951689954989575 0.4302182591799149 -0.1110175536337632
0.5185318997353183 -0.3926753179484598 0.3042673483802275
-0.6842953337830441 -0.2331232612446199 0.2520093380437223
0.6223270217257507 -0.2099528481314715 -0.4413304615472029
-0.648417365156831 -0.04898153759682642 -0.2723531449579558
0.9767373175735069 0.05978851497735956 0.00184357079082055
-0.9112422197166636 -0.09180520803134877 -0.03994563098008053
-0.167129947297206 0.9737891227376284 0.1108328703535035
0.1342282573953827 -0.9782879821115286 -0.1889082134147764
0.0561370696233022 -0.1558186870835953 0.9222304701326647
0.09725356974194224 0.1613196088963362 -0.9028715750135554
0.5637536054927057 0.2988643630828082 0.5550349203906023
0.6404169822373329 0.7184854378911808 -0.4455428489082029
0.6878204314091702 -0.5484985292727407 -0.03102518389418145
0.5863592725307482 -0.4959835688443494 -0.6500127521321655
-0.6405678837910966 0.4065949123402068 0.5478547607281985
-0.5099548101183214 0.5050899843546935 -0.5848931495445698
-0.5644873275423735 -0.8713609225849773 0.4025538245463898
-0.5932497211615791 -0.7677489393110165 -0.2259668126047281
-0.02266109805229405 0.5553233563080433 0.7334422991675618
0.01088786047184827 0.8370283791974209 -0.5995068919941435
0.094705108018065 -0.8358937287042809 0.5387892359851686
-0.03258660641974219 -0.5353848337676518 -0.7789966474832309
0.590729657958162 -0.4433176162550181 0.5234680450393681
0.669489849157163 0.05336083105681468 -0.7542271905897762
-0.6135694966587291 -0.2739814453692981 0.6702708875633495
-0.5726631365858212 -0.1274210197688201 -0.6936251791961791
0.4911419508410093 0.7455229259429991 0.1702383506216636
0.9100888030678629 -0.6607192066419856 -0.1137926922392376
-0.8001636445349651 0.6390146273126353 -0.04280394992698063
-0.4373213616209416 -0.570256011985936 -0.3397411502937387
0.2327140751048883 0.5925531480996635 0.9206880883895531
0.4934210597468626 0.3136637983813349 -1.068966092633127
0.2913269330138111 -0.3003779598198126 1.108108720441577
0.3209268327095104 -0.5345691384855108 -1.083707769782088
-0.4880767157292635 0.39154530080522 0.9826592211267666
-0.3115358092625798 0.2030943256947575 -1.075128632139926
-0.4747764908183333 -0.3698102786398282 0.9787416111338241
-0.3362097151747991 -0.6753753124915094 -0.8883950627019456
0.7024660241640062 0.8426424076993191 0.3305027307123457
0.7027149321995491 -0.7232337967900371 0.5106177851377164
0.3011182226072727 1.154668051002376 -0.405321385946067
0.2161319704831408 -1.201937168872929 -0.3527868903893494
-0.2215341177719088 1.124169495300639 0.3518235467035829
0.04027406632588183 -1.113139204173102 0.5763574137742901
-0.3855956272270648 0.9797485261808796 -0.6772917149042795
-0.7893096350034088 -1.010326578337397 -0.1856872038498212
0.7548120510528059 0.1100250478807083 0.6947291296047861
-0.9688626035896823 0.5803777763751079 0.4868226400408527
1.150956166605269 0.2364919240014032 -0.2499113359059764
-0.9062257886024213 0.6041667279060927 -0.4364130792990414
1.12329779072077 -0.0240333063619196 0.5780974559544183
-1.079977216575345 -0.1818260767105397 0.2710874303426041
0.9541543083976104 -0.4971856274785397 -0.7476227150761274
-0.9632054583645204 -0.1788444625091441 -0.5721826698285234
1.445101225591727 0.2492167154954571 -0.2432642508949213
-1.400094518545657 -0.1823732567505773 0.1461783553316989
-0.2470021067248982 1.450384539679811 0.3331899147448343
0.3211441091918973 -1.50681651312565 -0.3287069608783523
0.2214507447732979 -0.3611308355778176 1.378448517533064
-0.3095470179044696 0.4008152662189921 -1.349628048898226
0.6823536489464586 0.5248275104289576 1.0647435414524
0.8285358349216694 0.7092151973950254 -0.8771364475631612
0.780638868742668 -0.9372690490675933 0.738301109413114
1.226247746205374 -0.7425858248528848 -0.7606971862608646
-1.160603763951424 0.7346484851511597 0.7014989364908009
-0.890725285426305 1.069674614998749 -0.7934257845503448
-0.8720165228186276 -0.6801517163449819 0.8546862994110407
-0.6640168080547769 -0.6217365765953138 -1.112013042135932
-0.04976495902507899 0.9179882086793103 1.098140747926022
0.138167597676824 1.340673780641821 -0.7323523593156979
-0.2576590329228038 -1.291490683755961 0.7122184431777915
0.0369744482163864 -1.01430801325256 -1.202621402199828
1.34080670739798 0.04336784373559398 0.8567950592875614
0.5603490459194965 -0.1424687856013292 -1.451655391785578
-0.6860062306559292 0.1239212134941243 1.260186406308319
-1.195201745276248 0.04743768447876603 -0.7652539369328383
0.8965464143638042 1.111589397259462 0.2208367610094624
1.143122249819184 -0.839731506594032 0.09053373178492105
-1.013982620364345 0.9482454527217452 -0.190179389322889
-0.96634797006318 -1.279214453771293 -0.2612901875433062
0.6887787824773903 0.7596382986091952 1.396572257482445
1.024392532615492 0.65941771763447 -1.213164348372445
0.4694370041021121 -0.5752158672624035 1.592836153947259
0.4637089489928375 -0.6406073398988331 -1.757935117574526
-0.5029105888004839 0.5145724907183036 1.608845169164418
-0.30183225993247 0.677654797160763 -1.662679712393127
-0.8219112097634761 -0.7033437185670309 1.394190933330529
-0.8514250384899932 -0.352176695063474 -1.547161149033399
1.029032285571696 1.412902158664517 0.3820960424645933
0.8257153344836418 -1.355892501729892 0.7513426561753245
0.4504058075493003 1.610839997492862 -0.7326080906090791
0.5769232587270116 -1.770522309590819 -0.5238433856751922
-0.2098483608754515 1.581968214537345 0.9524912365295775
-0.3775823362435583 -1.668304397645557 0.6919538854918152
-0.7049835350927899 1.727763862887759 -0.05973606119606205
-0.5357866977963393 -1.427981849825588 -1.158079500449896
1.627517208712561 0.2736992092686566 1.096912494569686
-1.46673048642024 0.7729777117864773 0.8604677364813336
1.721431246432672 0.5315369919717485 -0.3210596492660628
-1.584802540342544 0.6900094710771794 -0.338861182504084
1.622966843313148 -0.7741126234369524 0.2804002683939764
-1.605924445669057 -0.5070736100959439 0.5107948917865959
1.538179942844307 -0.7248360659537049 -0.9878094699250466
-1.543748117154434 -0.3084972290378927 -0.8285822151206382
2.237229600119306 -0.1488838845548284 0.3746309155535594
-2.153667692922859 -0.08181609411236511 0.03134676468288982
-0.07043661473118666 2.242445205345335 -0.1381068927858378
-0.07445982729702075 -2.216212347958657 0.37943165020744
0.4051856750518031 0.09150580672846646 2.099734088849137
-0.4600855589560283 -0.2758544094166863 -2.173793987856295
1.227227450723944 1.195657575560794 1.400638550010341
1.868372006428026 0.8808845047317166 -0.7485676477342599
1.099391632683654 -1.096568050087135 1.495166396726235
1.986296971417841 -0.9002997355844061 -0.8618139280244725
-1.541764633239854 1.090910635943948 1.238305302602071
-1.063651597462191 1.265525388802777 -1.146872666079852
-1.687240007367078 -0.9637130798681371 1.029920828577436
-1.414754212998566 -1.041955186346851 -1.451622710176871
-0.1017101308071404 1.524206344716122 1.583552268557998
0.412271399093902 1.69329902899023 -1.370763978754835
-0.3223763122586987 -1.389484891346951 1.675506636331108
0.3349610917404844 -1.753575055169107 -1.353649541576053
2.008254759986768 -0.2233170139510006 1.575679703815289
0.9604907970853108 0.5545181657509385 -1.78672996098113
-1.005649757337421 0.07773689515760036 1.872985087503394
-1.850770260990701 0.1603537709820786 -1.18331029343884
1.229141047865816 1.840641202020277 0.1897089312003368
1.393362087761914 -1.702141268182636 0.3537550003348572
-1.709042336778925 1.438128894506054 -0.09500777540623774
-1.349153069166442 -1.565732001220237 -0.2389798216064143
0.630930338082485 0.3292248967378348 2.512903959773104
0.759882002091083 0.8556290694579055 -2.38766226836572
0.9391548092332007 -1.556524600113287 1.962099021836428
1.1766885830885 -0.5519829026684556 -2.072116713129373
-1.125497226013373 0.5500971375644523 2.267134778196748
-0.8115508614540686 1.038050586260751 -1.98153291374589
-0.9237560302854313 -1.060941734354955 2.235607509265809
-0.4439951369665203 -0.984939139024244 -2.430403982640978
0.6653505337092257 2.730072275455596 0.1551823524914912
0.2725396597342223 -2.610643141391996 0.7121760928394857
1.162509950134669 2.102011995344149 -1.21547457278504
0.926074233524431 -2.139434002141715 -1.228792374363827
-0.5816319681283008 2.170090622895994 1.047085042443657
-1.550846378466625 -1.994079621870386 0.7051343050721044
-1.109997923826828 2.14305146491511 -0.820105339490106
-0.8227878829491442 -2.208595033844623 -1.027200086275526
2.027272439136805 1.447340485310967 0.7574984900980279
-2.374454999689885 0.03690006736064138 0.910274126397336
2.302515734163914 0.7365665492189957 -1.04713522873123
-2.344201001431128 0.5938280127339421 -1.1205607901611
2.886169357113546 -0.2687262390426566 0.1709655601770227
-2.593748371081731 -0.6352182022226299 1.33345817669722
2.136236862497375 -0.8300292876447871 -1.820578867436889
-2.313232024191294 -1.139931003544654 -0.6597889693275432
3.519673267804394 -0.2871396287968259 0.00447900949545446
-3.191532083575591 -0.1544312895732153 -0.5171865114725015
-0.9038672293654173 2.968477429235494 0.2531189759168044
-0.04811833675413407 -3.076960150681157 -0.7136749557619732
0.4369957439457944 -0.220896808821129 3.152077713230596
0.3559133064894332 0.297094419950168 -3.088113141656418
0.7560761069898987 1.844034384775185 1.890677319331596
2.427552646309125 1.035381933681149 -1.855987231788259
2.136494699322386 -1.443821709024617 1.910857122375439
2.304987168157615 -2.235658365002977 -0.8239774571231181
-1.367883777541152 1.6670705753985 1.99516352441568
-2.376232687953771 1.940492650175304 -1.391560476245549
-0.7719883357361711 -2.15805683124124 2.152523333382114
-1.724343705410219 -1.751299167381831 -1.892217394984949
0.3585305318524493 2.226538351462878 2.371697450680974
-0.7405378576119619 2.144147696686785 -1.877703534534026
-0.2272362043590757 -2.432656403932283 2.827275736605175
0.5339694836349822 -1.86915511815958 -2.485107503557371
2.286024133110891 0.7820708188116265 2.034244872324171
2.249780272057933 -0.4364022845318897 -2.813357342785248
-1.726757784889696 0.1167655390045201 2.769380946758679
-1.626713724442083 0.2560189740372881 -2.401614830947173
2.426211031425598 2.029936228154243 0.2449405322944954
1.981387075793081 -1.87060820490216 0.2447726185658674
-2.328030542093231 1.568816454342233 0.3243920888143596
-1.979884229801167 -2.575622988423339 0.241762352591877
1.784029078046073 2.129264841492499 2.649094182759042
0.1428349872916022 1.19356655860663 -3.650193025288011
2.088986129645944 -0.3753183055664124 3.232196464848858
0.8009738542766031 -1.792166052572756 -3.695951520426095
-1.117543406599757 2.011916899539702 3.01743221781471
-1.685059903391496 0.5196412219708061 -3.158751447092273
-2.096572095815527 -0.7197887687455269 3.328979082923863
-0.3667604163571651 -1.863512652986992 -3.186139836304204
1.206277010323666 3.34120346970682 0.2911146036908945
1.075152381225996 -2.988961570407588 1.150817448447411
0.87176974768295 2.529188215413327 -2.032750088846295
1.777891182635366 -3.018321738220896 -1.754737910118837
-1.26741948847873 3.438181833242267 0.9727274066877699
-1.630265844056934 -3.428703118298268 1.373336264920982
-0.8972058236721203 3.293880894638185 -1.628003066307922
-1.254488963489702 -3.4397762633736 -1.261697124072652
3.482100981232438 1.289141289499543 1.186031818009091
-2.914418724205504 1.548663300510628 1.187596652125146
3.129452573287486 1.858375861402196 -1.397623445949167
-3.63970524712941 1.333802292870534 -1.077013884757444
2.976600203159928 -1.87442629266272 1.656985758442695
-3.007836223792611 -1.487495730747576 1.478773340531501
3.601628593431275 -1.331897547738494 -1.287994741376377
-2.871504574455956 -1.314028296664946 -1.92000961536984
4.485055592407721 -0.0969965329649229 0.2561738050073801
-4.042520001744127 -0.5401983134030477 0.2292963941592471
-0.07180524104853947 4.385430507574721 0.6182384867500851
0.3748499510227483 -3.931484993241355 -0.1817409826648349
0.04005743399303816 -0.09940186812554208 3.983962521247832
-1.201131132785223 0.3879123488562833 -4.368138296614728
2.133715852869906 2.322114603759299 3.540557182647756
1.974987182811183 2.442372676477811 -3.577294722070852
1.13426674568411 -3.245838180614405 2.559942563945752
3.103910294075388 -3.131448099532333 -1.760185311255043
-3.342704221867521 2.082468996413899 2.685724837974024
-2.374017213290224 2.31143175414661 -2.838340850152965
-2.676771633078299 -2.549627716492136 2.77655595397419
-2.058761659549586 -2.239227144659323 -3.185993214090498
0.1000484572730294 3.144465382355258 3.016995050875094
1.118099540646971 3.315261242741692 -2.301479397954811
-0.05015745227467231 -3.355184296214911 3.29954302921424
0.2123648547488192 -3.469959745822123 -3.191336362428276
3.38448890712515 -0.5361581722939304 3.05193735339049
2.277682270000917 0.7270771877182671 -3.440776375963592
-3.313482451154007 1.014621597134195 2.36274947940173
-3.392787804724615 -0.3997236692038747 -2.854666601431879
2.279071544816293 3.51998032090267 0.3396563207106523
2.61232341586877 -3.278305722073986 0.6918415709318352
-2.971862537777162 3.123242179774135 -0.04559862841204164
-3.237311018873256 -2.818369814825069 -0.3086475041463714
2.791196708233328 1.305100702193405 4.820260869315033
2.759213565404869 1.258394378358768 -4.442282396651725
1.406925544848105 -1.187089263321121 4.415413654472858
1.29088876289448 -1.631013340779559 -4.640658228034137
-1.090778897392224 1.830630036769792 4.244053276571732
-1.795834204345911 1.866527360431706 -4.536975765494891
-2.266952667379678 -1.114733345112467 4.149116307531862
-1.648724726190001 -2.553758725025417 -4.565465746448816
2.380606780524738 4.352756451527676 0.4817514207829446
2.094118706042926 -4.35396980583325 2.127181442158424
1.112833089628948 5.051515008691591 -1.500895497054415
1.500357098293671 -4.65428471263909 -0.7622628890861958
-2.520049329093752 4.021240761198086 1.269673523813442
-0.7053438286176434 -4.731314546834294 0.88756585308763
-0.8540803745261472 3.898221540790018 -2.369523453486889
-2.110680111758599 -4.053841890998018 -1.692638834776388
3.635337252598811 1.932318207384918 2.325154138059217
-4.885672512976167 0.5109829818943934 1.246448290143161
3.780836216159134 2.239814922287073 -1.382463084220573
-4.435999256072399 2.052643806074596 -1.521445157203055
4.091236484491573 -2.196901068732327 1.457848821716214
-4.462342693225353 -1.637229747556886 1.415670771056386
3.45756477541063 -0.896974829463118 -2.936038227935287
-4.204693793702129 -2.224700741442168 -2.084369113023986
5.154540782122056 -0.4285804661519353 -0.1702072099765184
-4.976618475440255 0.1085878486526367 -0.7877087913132598
-0.641675497354131 5.183426937124128 -0.3501240571124901
0.09760582777257155 -4.944310013906691 -1.147052034882453
0.5469851715613302 0.04589954080747612 4.989624217687277
0.1919875587263404 0.3924579866889129 -4.961731888916431
1.043059516195892 3.905296244017212 3.653217916929657
4.003966702585063 2.138502989498639 -3.17211196233543
3.111976487059411 -3.934108611365466 2.116165383998478
1.862798341126027 -3.024578140586198 -5.122897494940777
-3.412001900441572 3.756336914440856 3.128506545513128
-3.696791859564088 3.540034720142418 -1.537935158126352
-0.7134149462744194 -3.578003803246015 4.251401905638094
-3.951613606070179 -2.847990330368063 -3.682302597675454
-0.6229264403259491 4.335486712809973 2.885874430393568
0.2571793614162494 4.026157823840284 -3.412405004015667
-0.5109768121861485 -3.88029655176133 4.188573389711188
1.158287260164059 -2.850413152956517 -4.539159181908212
4.163004416947427 -1.282521608548609 3.367858715658976
4.500704690031393 -0.5989359837471638 -2.647208843730317
-3.754510747083301 0.9700476307863903 4.070760836580926
-3.835024979842613 -0.7605344580825397 -3.647571203779514
3.782512626742965 3.842501629416686 -0.04184980711394716
4.125141387602417 -3.462182026318255 -1.275836825691727
-4.067896769693381 4.223091703957628 -0.1666561773419352
-3.578317775484037 -3.575238204907641 1.355896907405463
1.657420492535132 2.298863650218299 5.534821235660004
2.625963944307972 2.168243782795015 -5.444546234517378
3.451176039905752 -1.204155960194893 4.676592046348257
2.141091059715714 -1.696240532877445 -6.439407922230155
-2.079931583961122 0.008346847356129467 4.98794711529708
-2.602312089140271 1.932407257464226 -5.292797662933734
-1.041975093054527 -2.146546098967366 6.116582305007876
-0.6580970718330481 -2.463778901936319 -6.009523784337896
3.655871468710369 5.210942658143384 1.681489031312064
2.405026364181482 -5.612233177600847 1.977794883591654
2.094909980584767 5.84809153021623 -2.441095046504992
1.489508241101502 -5.965020892584305 -2.301207635166943
-1.569570117909673 5.774461816780542 2.727049304746342
-2.403674852382625 -5.016561978725908 0.4919134607810201
-2.161994574764396 5.448028382908432 -2.308057969287539
-1.03956241018995 -6.027470369192816 -1.219184602025937
5.082472272648434 1.538557155913614 0.512346680568741
-5.255731012087642 1.960624271785764 2.797504810842227
6.400255597477026 1.298920366536131 -2.376956315826354
-5.8792267279738 2.152431492895225 -1.726009669866704
5.444246200290606 -1.580033049477215 2.799073884748196
-5.091064251418629 -2.351421810780991 2.2514698108661
5.421850118675628 -2.367079730137513 -1.954786078695786
-5.698059191071533 -0.6270526304469269 -2.789225169862936
6.408946590800777 0.3514561148295913 0.5582340200149817
-6.560270383588784 0.3289954240048106 -0.3896670654821154
-0.009395975961916381 6.554457651289783 -0.0295545834702303
0.250054545514304 -6.695110960894318 -0.2593508242465532
-0.2871121907079098 -0.1472985644032885 6.531648258713716
-0.6942246145943991 0.7732249896083991 -6.548791237982318
4.393419741173596 3.318211698634669 2.134718908657576
2.460794168092213 4.823679652075728 -3.21304746211485
4.136515719773201 -4.62370412261195 2.499348233106916
3.490970206955453 -4.199745782039581 -2.492439159895048
-3.223036285849008 1.462134319596372 5.438996233923703
-2.230027475400107 2.833208689811396 -4.795255512650678
-4.069469212417193 -4.371324260784188 2.759938648050434
-2.899255568034536 -4.507625930064167 -2.835465107400112
0.4225531434334076 4.94323501524583 3.810330471711752
-1.360437184304105 4.845274300604242 -5.628486562235429
-0.629193514702951 -5.107597457682479 4.09929697578788
0.1962142648149683 -5.372707706131146 -5.977989679303857
5.64756685929186 0.3957118858274714 4.506823105091367
4.111506195089978 1.552626849161785 -4.427366684939464
-5.005864532777767 -0.3263594160556082 5.520484014272339
-5.003170811397469 0.7886685299044566 -5.76927697763841
5.759675918868726 3.415240844115769 0.7988001750092909
5.271446664705469 -5.928360497179634 0.5781236807907121
-3.876840564703427 5.950540859531844 -1.299302519824389
-5.50661505158422 -2.594149530298103 1.688803522583854
1.399856451728166 2.865386648885521 6.694503606681737
2.926916840636244 2.175006112044748 -7.246987570827621
2.867829885701777 -1.666269296691964 6.654702250115765
5.766621172206102 -1.055504544658451 -5.606714514248828
-2.390114872171792 3.681749945914074 7.045254275090106
-3.545613341733604 2.380601954357114 -7.390851919295511
-1.644537867349206 -4.878240911884916 6.491822878202714
-2.779889911556949 -3.694887299622065 -6.544506161439935
2.318820708802693 7.03987472637233 2.750316065942835
2.085963683972218 -5.723659152249032 4.825062072297899
4.692544228258522 6.348567553992329 -1.888385427859942
3.150378839924318 -6.585553088399151 -3.22661745741166
-2.661565428354719 6.206264841812508 4.130526230167293
-2.761216851615597 -7.118759005269623 2.133307892715566
-2.416291118339291 7.313540592088883 -2.813378538739746
-4.050599290767768 -5.748599403431174 -1.551603132378581
6.742136857804678 3.090535540253912 4.33035843000463
-6.823671880556232 3.205941799129715 1.046462290396132
7.739840021255654 2.90077467353322 -1.767649554128412
-6.862112230226186 4.287743579332516 -2.840261241510762
7.014982715193106 -2.636291924344485 2.819936717428609
-6.79413518014836 -3.789076841056253 1.860913727391188
6.293544695628049 -2.054101073637633 -2.112970118838632
-5.995611593707785 -2.583444107077395 -3.634783019254517
9.644635826056605 -1.961230091210054 1.861455000160285
-8.648923171914948 -1.290029818013829 -1.30289892949773
-2.220491304795131 9.34277715322991 1.041979078847496
0.2591971613290808 -9.047013306766411 0.7634146127722509
2.435156349183507 0.1381937111262933 9.276247853671926
1.812013870180947 -0.5172702224948623 -9.553008659206633
4.500395389702823 4.750323482984238 4.988960578785887
3.523676206644624 5.398695409480395 -4.995832620539803
4.983099664583898 -4.794851251461413 5.732467747732688
5.769801004374736 -4.46859753357331 -4.219385606166695
-6.133462013612974 3.572271776643893 4.107845183537163
-6.047436218817686 5.713404267818736 -6.728396226922765
-5.356600269915806 -3.389670514227678 5.363294118212304
-4.063012758227096 -6.666998777112152 -3.462074167385571
-0.3272060248229728 6.876456364298958 8.385364258025726
1.708161939822603 7.630703461661326 -6.271285674907884
-1.014116215822113 -7.269963523584337 7.767243733130667
0.2843895564494629 -7.485112333599789 -7.739797208584138
7.437036703586002 -0.2512071812813331 8.614753383006093
8.312335482407427 0.745139514219901 -7.234273159754347
-6.940490811594557 -1.336902910914261 7.983957049244368
-8.498479298060738 -1.567797611815504 -5.567831041501988
8.19092715918994 7.302989034275845 0.05675280714747306
5.704332797943811 -8.564399850900546 -1.395446781019635
-8.176842424980073 5.914239668146727 2.254406291131218
-7.268383998316197 -7.365363484735325 -1.848439078731731
9.48480053966529 0.1758898842178977 -1.337584765255112
-9.650772117964159 -0.8872572702533439 2.52976541070934
1.217021972045247 9.448022973699967 0.9933242283204924
-0.98396108114521 -10.0199574729714 0.6115725477782219
-0.9626456340331966 0.1097911656660685 9.264798979718217
-0.371631617653054 -1.434757687195368 -9.816208134272644
6.060957193567064 7.585070071382066 5.912407253345917
5.029468889877699 7.721819017545545 -7.295917677229845
6.794249466311269 -7.619773809307911 6.140838021305147
7.839399501244381 -6.760864065126476 -5.884224042585662
-7.069654326667177 7.011859527470499 6.548182275823101
-6.695540615357337 7.506084278371127 -6.689132133014569
-6.857769315883496 -7.448675025937858 6.561808582657895
-7.094296792875411 -6.223151716804722 -7.787687279351232
14.72860912578523 0.4765559425383986 0.6561315145324422
-14.74537363696867 0.07062887580673523 -0.1747344998906617
0.2652239548266637 14.7054671649163 0.8214211349394356
0.197278356287007 -14.75045108854299 -0.4690764605763209
-0.2698708523639199 -0.2278079754444471 14.73272829607091
1.085351370955142 0.3250581882095037 -14.72763786054952
</grid_points>
)"

View file

@ -1,478 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
Def2-TZVP realspace grid (Bohr) for species Cl
sqr error : 2.801276973767686e-07
penalty : 4.423688063516513e-23
n points : 436
</preamble>
<grid_points>
0.03805561451630868 -0.0266460852523491 -0.01380475406714723
-0.03091383690981919 -0.01020028613395191 0.02973099512498696
-0.03742930145766862 0.01074607951004146 -0.04521606409363031
-0.005540825030459776 -0.06108791750401994 0.02671830077651679
-0.009814345475681533 -0.002130143755139658 -0.02221653509711844
0.008978329015940836 0.00189806406337551 0.01601838326169826
-0.028789757657165 0.09122415987210766 -0.03476969365818591
0.05667220616409854 0.01799767120157566 -0.05861522360891675
0.01886065082652026 0.04604290228962794 0.01098261984476155
0.08950135406170043 -0.07356037834299495 0.006352258667041185
-0.04747651550664941 0.04253646445748017 0.04685890683366608
-0.09989077491436942 -0.0281229961907281 -0.004412041693060182
-0.01607905991684072 -0.05034130229924866 0.09835870124939995
-0.01211876582294375 -0.06799214034813729 -0.05627431195163495
0.07602571262948397 0.1026884501489681 -0.004251424987398619
-0.1462762183245678 -0.03498835971461741 0.04367531478856435
0.03341160300444074 0.1803337342724539 0.07377994350471963
0.1333205348015391 -0.1439697168542149 0.02836949040826181
0.0598933886245837 0.01404992958838811 0.06219781036090213
-0.02475297716603591 0.004763570825774941 -0.1275080886864485
0.07456497014498614 0.01487293922143995 0.2024300598281615
0.01756504658850558 0.1370761545357159 -0.1162504035287944
0.1296460274507862 0.01602909329081964 0.09216373614731399
0.1107336730955284 -0.01761118311884501 -0.09926232764189533
-0.03271441644123203 0.07492640597381972 0.1134124225903127
-0.1035554804415871 0.1024104169573536 -0.02471524271083721
-0.001473064844984982 -0.117251305582267 0.1173272106528238
-0.02669567438452742 -0.1344700346886587 -0.03473938165090688
-0.02889108184816907 0.1388923723526247 0.2339398594217065
0.08141570956907873 0.2247174514037039 -0.1189995330195413
0.05062126610094592 -0.1963525140565284 0.1536312231109856
0.04233422199919084 -0.1399966459207485 -0.1357508599672712
0.230373996186729 -0.05250500620358638 0.1355055024029376
0.06899025669363064 0.01186240166004693 -0.2214059510297254
-0.1178017958334175 -0.008709317074280446 0.1693019122003039
-0.1314606797796036 -0.02841314868406361 -0.1286052770625095
0.1960800553467537 0.05852561642426119 -0.04332839245457402
0.2336876814015567 -0.1159387675200782 -0.09762813220517051
-0.1528122417112378 0.1474870772383986 0.0434194782708988
-0.1161220124799616 -0.1856240978607594 0.0153950602390598
0.3586179377364198 0.05880112236553212 0.009161148314194316
-0.2566457695239502 -0.01475491001773349 -0.01781762299518016
-0.04856162546803336 0.2836731619807633 0.02516033556352777
0.04083011097577169 -0.2788564846415489 -0.05522572264213658
0.0477399149684473 -0.06962566190989393 0.3126857677437589
-0.04962426485675198 0.08868131710346067 -0.3105663361887082
0.193543353734182 0.169337934774579 0.09494574806745594
0.2160698459841267 0.128868359681735 -0.1806355468831818
0.255881964718162 -0.2222388370910962 0.1220825041470421
0.1016383612590411 -0.1214327838783849 -0.2873924726521018
-0.2183239105697428 0.1274691894919313 0.1834907863660183
-0.1321792007824996 0.1341144872009556 -0.1608584283664294
-0.1672205373088746 -0.1283542045572674 0.1906626491481557
-0.1180885054416288 -0.1372929914862933 -0.2027591543551406
0.09674980426260417 0.2245276438463539 0.2528107203034791
-0.04860644756626548 0.3290423696234239 -0.1816553917294314
-0.007784419035174769 -0.3310467911135502 0.1492158519471158
-0.09819226534178951 -0.2756284904634858 -0.2578033745327876
0.2748862966627795 0.06144075855818387 0.2705074857656013
0.3379803737809 -0.09410506598993909 -0.2024958011838889
-0.3557570615553912 -0.03410271256432579 0.0969820878678105
-0.2835233204364234 -0.007832278775484435 -0.2044206758067835
0.1992694158109788 0.3255857419676105 -0.001333889089092985
0.1729425916453234 -0.3386951372632061 -0.1356369665799123
-0.2578827967192093 0.2062425568597157 -0.06874895516086414
-0.2256055764060528 -0.2457547315746239 -0.02595543974542724
0.01463006644807322 0.1694861767449274 0.4457055135659052
0.1956261526792048 0.1692981328425012 -0.323457440827205
0.1488025398143872 -0.1882006271141774 0.3860521995806506
0.1294831415512716 -0.1296411120433709 -0.4344860200918945
-0.1619988873145628 0.04338421383616674 0.3680601665820189
-0.1110987748311297 0.255106488534631 -0.3914514785644271
-0.1856130979285186 -0.2134712750838874 0.2869161940416184
-0.1597727774599137 -0.01945105795041904 -0.3992638220205968
0.1810542059499874 0.4058706034355096 0.2110335134133627
0.1627999730328181 -0.4492566808452252 0.1632098586167462
0.2047808810595945 0.443760287205808 -0.179611542517018
0.18381740055565 -0.4525808959132299 -0.2413929577759721
-0.1286621055961849 0.3429115052069072 0.1691271371785592
-0.136564016693559 -0.3396576983422298 0.3894131478329407
-0.1169921208931245 0.4855512971620413 -0.03872455016531399
-0.1564420770464809 -0.4365474027478898 -0.02833005327496916
0.4040266452988356 0.109868271924017 0.3093182943846695
-0.3931121206587982 0.1771789279494863 0.1570070740240654
0.4418540690120616 0.1988327780680889 -0.06454113989340754
-0.3588694818311043 0.2357792294801162 -0.165984271539086
0.4373387736330979 -0.2068900715304181 0.06248022211285817
-0.3988617124623693 -0.2243195929377086 0.1471145051671714
0.4554649582574047 -0.1390921354245025 -0.2910054771431532
-0.404573467731132 -0.1475657797676258 -0.1530756395615223
0.6563192590977917 -0.002824152950770202 -0.01244188825816017
-0.5874297989758792 0.037049183063328 0.04945253116866506
0.04782454661883258 0.6484269656602274 -0.02423665661348646
-0.09676018608641269 -0.6247712596317772 0.03954571393765009
0.05613669780984112 -0.03237402810610968 0.6016434925593315
-0.01212330878166654 -0.01672433089201205 -0.6137244999627842
0.4713244873854545 0.4386342047830591 0.06986160022160796
0.2792891198402412 0.2076935716371009 -0.4449486706310494
0.3936493731229073 -0.264096051247447 0.3875485096800766
0.2555686489472723 -0.3849655765271215 -0.4910445703342501
-0.262125357340961 0.4043072319257316 0.31360503050177
-0.1245785729188785 0.4008940566980357 -0.4421433273004621
-0.419152679731199 -0.3581279441421799 0.3527206565575197
-0.1711094264631894 -0.3336148589484524 -0.3932953394820096
0.1400227250467396 0.4304852682857119 0.434540748747239
0.1387716898146992 0.5205471207023881 -0.4999603598075848
0.1321826710788092 -0.4658971763949583 0.4578027532220691
-0.248012564620697 -0.5034034102226971 -0.4338690007040988
0.482257965931585 0.141945630791511 0.4909565733955874
0.4624190025733861 -0.01292615927101458 -0.5554377276943608
-0.3332617937726019 0.01349563125382906 0.4432369384038052
-0.4104368110862124 0.02119189757467916 -0.4004130868703999
0.4895399805042676 0.3536749619471653 -0.3128491741233625
0.4450229965358852 -0.4862011841385317 0.0202536536297139
-0.4380076122146191 0.4220327710181059 -0.1278765746635586
-0.4582061582707642 -0.3937122387928533 -0.06583557627020678
0.2160170158372136 0.3774144865047366 0.7353163797464596
0.1733622786472141 0.2130522478615039 -0.7753214913213003
0.2461828083348812 -0.2341688541448311 0.7398573486365861
0.2101103285873086 -0.3846105580967653 -0.7331772341472833
-0.1739708654950632 0.216231169388872 0.6840265238436846
-0.3617535149579554 0.3070169283096834 -0.578816562433162
-0.2941112312178045 -0.2810954511746892 0.6471714139402401
-0.2148161668597043 -0.1451391514512671 -0.7185946296474878
0.2336904256654665 0.6764860134684352 0.3648020784092372
0.3974544384067644 -0.6603000034018115 0.3172871291292003
0.3969293802881697 0.7217813336506719 -0.139249083251174
0.1768771450910538 -0.7186358147155488 -0.2234630816972209
-0.303033132020697 0.6239460359330088 0.2951891097966338
-0.1316831025846305 -0.712244599919264 0.3368433709569184
-0.2383012519878476 0.7273460544518698 -0.2445009520490452
-0.4841953770470229 -0.6483459321175044 -0.06596731411678436
0.7259468773402773 0.3787184494310343 0.2371503953634786
-0.5870651776543454 0.1641484898191832 0.3849910581343842
0.7689131258721222 0.2171896599455737 -0.2663191980933774
-0.6979955277146348 0.3606690715503044 -0.08193465872904244
0.7058235330736654 -0.244373025213105 0.3260827654675668
-0.7187037211787245 -0.2599095630969531 0.09605386624832205
0.6683171233733259 -0.3568543485914529 -0.2718165628160659
-0.6220599849875237 -0.1115343882089809 -0.3607683050041673
0.9740109521480983 -0.1443732318022296 -0.03601259370926253
-0.9423412693331751 0.02830199189517068 0.07161515248849772
-0.01359371642920209 0.9709710538689759 0.06040016994839305
-0.0997781561269112 -0.9522908857084791 0.006883715415063846
-0.1290838560434368 0.01580949408610742 0.9539256668405776
-0.1986785995506044 -0.03778379475299785 -0.9464417746764585
0.5582586338103331 0.741357180313729 0.4660961079671152
0.57749401693476 0.4659392234771926 -0.5851696441196488
0.5620920475611431 -0.5107207305958495 0.6854182193706095
0.3812822954579221 -0.7304589774350734 -0.4695183448207744
-0.4203627419524029 0.6112107003239798 0.5514323430385617
-0.4107039221099053 0.513865740794417 -0.6705702212097631
-0.578991388435433 -0.4853238925875306 0.528830179135366
-0.6495182920577346 -0.371361115180409 -0.5189070580034214
0.06704549249045164 0.7546121859778092 0.7083947488349275
0.08716881932900297 0.755366374261712 -0.6227037376673011
-0.01612956756959702 -0.6766799104188447 0.7155018995988444
-0.2362023876345908 -0.6944123823091672 -0.6010759800327615
0.6727779447719131 0.07676492454597986 0.7067652062322251
0.6398920776480392 -0.1442920747703789 -0.7339013703763353
-0.696485359588857 0.1089798265657944 0.600428047875746
-0.7621082275073594 0.08509222727751861 -0.5592046036258347
0.7482500198146992 0.7403224273065946 -0.08477452754066463
0.63767436583172 -0.7522028696391577 0.00751117927640204
-0.674685135573863 0.7086071696373385 -0.04725848314249188
-0.814260024479758 -0.5492884927811021 -0.03659401722674138
0.3158418318765074 0.3485725782855104 1.049888714252951
0.2554699680494276 0.345856837344884 -1.022375339907943
0.2551949961559959 -0.3879229483067488 1.054724734985296
0.1913478275340658 -0.48670094879522 -1.007310166039188
-0.5190734626106318 0.4375882836027673 0.9579848033518183
-0.5372260313514197 0.3557228460494264 -0.9932327747454678
-0.5876748913265227 -0.3190846589006253 0.9308029965517268
-0.5973755625969729 -0.4264709470356053 -0.9036947075686326
0.3297631742975786 1.159793928129902 0.3260256934836017
0.2895648447103155 -1.059965420170232 0.3359362559170112
0.2798418115176252 1.070282097158752 -0.3788055465730654
0.2322420588037583 -1.037650950751764 -0.4828031959121791
-0.4476988881737099 1.018693047431847 0.371302261745558
-0.5309113396284031 -0.9285473259413496 0.399132532749267
-0.4676674020122615 0.934579907137612 -0.496790355051394
-0.536571361803771 -0.9562775263836947 -0.3419434664077656
1.046808259851596 0.2803497447758345 0.3699277421418465
-0.9782923549240192 0.4439161130738269 0.3866470835156431
1.025065088312616 0.2605446203600421 -0.4369487046852015
-1.033888763871879 0.2987002086352086 -0.4055303591319169
0.9525321122514734 -0.5489436426981424 0.3598051879688289
-1.060479066742328 -0.2973706955677501 0.4041902284182784
0.8623350785242885 -0.5901336394165463 -0.4971954861159088
-1.05286635810796 -0.4288752719282027 -0.3364241124468178
1.303765347843469 -0.1880527972438666 -0.09903817585009556
-1.389908729089262 0.05037177533734891 0.009957930677533325
-0.2642993413416226 1.334551367091422 -0.1243854741194449
-0.14454009142043 -1.352455141762016 -0.05491112942595654
-0.1287348030757412 -0.0872701508911044 1.324788438113949
-0.08690402323782155 -0.0402787918980395 -1.345121230644517
0.7802760758299443 0.7422102925218764 0.750719466188954
0.7117617708942322 0.7043398841379067 -0.7680112461301227
0.5912968053189658 -0.8385247949676785 0.8537487512970503
0.5226743010447614 -0.891734839028307 -0.949899380301569
-0.9865647887595378 0.8503248409805397 0.5687031642329599
-0.9407465805722652 0.6737564668698565 -0.8864065667614058
-0.9236634816329619 -0.5942205731056103 0.9272941116567757
-0.9194589248117878 -0.9848431700320229 -0.5194369562832252
-0.01542603913183343 0.9348896825592679 0.9865463015233605
-0.04268366011892778 0.8798620239371953 -1.033642467810546
-0.1763608332116923 -0.945124641584611 0.9155445194378634
-0.2590256705072854 -0.9768259103815177 -0.9465810765355613
0.9106792380300113 -0.0664988891077565 0.9296769458955864
0.8055731006216535 -0.09305275213824522 -1.030172169800602
-1.072007656214388 0.1509844274097139 0.901528830893461
-1.062976341275685 -0.0911731185137515 -0.9193296641997246
1.029652060815198 0.8884821806602931 -0.01680785142487565
0.835507528842647 -1.055707220034608 -0.08949403404778215
-1.018535842120702 0.8601889460680755 -0.1615895586383334
-1.029325521484314 -0.9144735580731713 0.2151760492904542
0.5379518626647644 0.4297836622482664 1.331371261722244
0.5948114940495857 0.5112029855944462 -1.321854665939225
0.5477247084788824 -0.5244852844362696 1.335649230010357
0.5020346056195636 -0.4893888289411012 -1.424962487500933
-0.5178725418049496 0.4965592995871283 1.377463687228428
-0.466424039568541 0.5297959748127715 -1.46514688755152
-0.4493835548006721 -0.6119326830308173 1.399799414445502
-0.5607781692516072 -0.4780266107732493 -1.387805991523939
0.5820447953795834 1.367960730695922 0.4578934924965347
0.5086681262664127 -1.33788354675168 0.5355994641054119
0.5302433173694253 1.316071133781246 -0.503679449806793
0.5124443150549655 -1.423789868968525 -0.537290735218666
-0.445578934900109 1.346494464431939 0.5933444735684837
-0.4700740639362225 -1.391022332957645 0.5637437673277178
-0.4820157480565397 1.362463450940767 -0.64261645167506
-0.4590620290784515 -1.48324112037089 -0.5311085549921372
1.356990029684739 0.4109147565645656 0.467819737785482
-1.516153229550031 0.4574086254426641 0.5002231862200307
1.305208857557407 0.4414666354604583 -0.5846783700125096
-1.48432788252236 0.5949897818103796 -0.4615340860643771
1.283423748697744 -0.5904829668852273 0.5258803716859206
-1.430542019071126 -0.5770008648094567 0.515160661906595
1.26808424677496 -0.5601022285187147 -0.6619680670920114
-1.411419017641738 -0.4767217192747972 -0.5154317467721063
1.755039740478588 -0.021705556293261 -0.0211902034416853
-1.779493653446736 -0.2788676302583893 -0.1632510174974525
0.04237612040086089 1.757336861851037 0.0270629285300042
0.2162709703327725 -1.790653071603919 0.1137067174630902
0.1237209773172561 0.02257551293146503 1.769875906622825
0.1568690150962416 0.02002203414972685 -1.807684962211169
1.01587769737711 0.8715685479312539 1.042605631310671
1.118511206453369 0.9999079549204057 -0.8481790027011413
1.025026790471509 -1.103681466446313 0.9860644166548622
1.015493019084008 -0.9972902757889562 -1.16892668883399
-1.040235840411435 1.065333508269826 1.042144880859634
-1.055349885138213 1.14081047481928 -1.077077061273976
-1.01129762486382 -1.08530020680475 1.089987703912646
-1.046022234182391 -1.061559740851044 -1.038552065056736
0.07181519898528613 1.21723981076671 1.278814948274696
0.125815786572953 1.31516239160643 -1.23050646266228
0.1200991766746775 -1.258844684850025 1.27065741433424
-0.01431502673587437 -1.207024116618957 -1.349099425006611
1.314142558832558 -0.07462065487545132 1.148595128729758
1.352450574880059 0.03602407250656147 -1.194937289260766
-1.181595149433549 -0.02294617175626764 1.380424570583021
-1.272252220991748 0.01133431540770883 -1.32122996749531
1.365476659384026 1.12620540499046 0.145400813471723
1.323504821549909 -1.125781576585121 -0.05089539075912148
-1.08495586954515 1.346878050327702 0.01039370836247269
-1.150135749545621 -1.399625757411024 0.02582430976488083
0.8484290445628656 0.7163664939257022 1.684878985857621
0.8222005454568254 0.7624035515795771 -1.681815246225324
0.8552181978967757 -0.5589399155150832 1.776164443322358
0.7811177332519862 -0.5943075231797011 -1.8592568339234
-0.4859812616187807 0.7133476722467169 1.849409465958881
-0.5264800410102086 0.746981410895899 -1.883634592618846
-0.5256056169512555 -0.6934821335270619 1.882654558333954
-0.5712191540106588 -0.5532992376651058 -1.856857715034737
0.8350477440234108 1.68226199073639 0.7943565221603405
1.020341820971798 -1.757430582516132 0.4362774604905021
0.837649436930606 1.725586579853825 -0.4791404881028177
0.829752578392815 -1.731663020663301 -0.7731202395775127
-0.4632180731248139 1.815860577567146 0.7362146709653906
-0.4335722650241454 -1.876831903679292 0.6470222370313014
-0.4637029095149053 1.912488477494358 -0.6381743011808791
-0.4828040200769824 -1.876160747913162 -0.6835183161827462
1.796413310581525 0.5741564633668994 0.8351999645577037
-1.85079564779343 0.5294920793447029 0.6046946471459603
1.841220343957904 0.6875597817842809 -0.573848919432993
-1.893332940366759 0.5066202246516208 -0.6576213005493394
1.823384672785092 -0.6834532302169711 0.666790105999815
-1.792706257569745 -0.6946156108191974 0.7236247168270749
1.835996704479815 -0.7642868943298325 -0.6108610955191235
-1.738216322272746 -0.854104965513535 -0.6380593117177793
2.40202800481064 -0.001027731448917555 0.07029117574495553
-2.308446335210109 -0.1642296966337929 -0.04715447527873686
0.3066146653472435 2.331523673284866 0.02277729066711836
0.06847024230110635 -2.363401757664772 0.005691118945106433
0.1882965369234224 0.1608161039894286 2.353329909150367
0.1645431668551366 -0.05497442731370357 -2.359929767362893
1.305208184626801 1.36400812253059 1.481580674949965
1.098982578698847 1.571432427191235 -1.225274233497653
1.49521443777337 -1.271934564740036 1.314931169866741
1.325899968814062 -1.247516148229686 -1.575596234049876
-1.35682697060496 1.130255454982873 1.41807516407388
-1.433403209838565 1.494000527399978 -1.165682928213071
-1.17158541371702 -1.606863396084014 1.138323324855512
-1.301827483639545 -1.131996963743153 -1.521702615832105
0.01105126495262495 1.660396991375324 1.692481407612216
-0.08883964980727199 1.747529105021435 -1.643231730463765
0.2804578148465666 -1.644980787746784 1.516570720347889
-0.1461079183925375 -1.599594044332777 -1.629774465091248
1.738676163441891 0.006113901531217917 1.710264847030808
1.800773500304464 0.1716273919013578 -1.44988490011017
-1.599263016324106 -0.1517342377331388 1.680579877462084
-1.630762041652112 0.154761257209073 -1.685118982743993
1.784364182400896 1.543360040069115 0.004795684325741937
1.812707292633618 -1.686620570189842 -0.09019557785974555
-1.522069253485879 1.504505857967821 0.05704936904084453
-1.547792314988414 -1.74422606251746 -0.2251119134157398
1.052866385411766 0.8171484607199128 2.47597801689196
1.114882877099454 0.827111090012793 -2.153135959919358
0.7461858362469426 -1.101648652642215 2.321231802248276
1.090346239637407 -0.6596901824778588 -2.537081283067611
-0.9350124938991475 0.721941067444603 2.420595580535366
-0.8392432374313226 0.6630143907058103 -2.442413659476761
-0.8106201997322583 -1.09945936305523 2.217743995594573
-0.5250351436509382 -1.169401599485301 -2.303838774467538
0.9428097567319731 2.367883989840446 1.035902953221022
0.7805982971726174 -2.435423360561948 0.8675252681741484
1.024525067792957 2.420465234645671 -0.7910528226841487
0.8630590823521954 -2.200813374857726 -1.221723536381727
-0.9240348450039709 2.138420313479501 0.8502604217180022
-0.8377119408742569 -2.321251334915273 1.17736304389705
-1.010401185341839 2.432554768505565 -0.4685122385050189
-0.7990480093058043 -2.457005253930479 -0.8477751053699331
2.333516953255236 1.172097039431619 1.085763533543535
-2.251127307107424 0.9913105162631827 0.7350207644340119
2.391786341016253 1.142534594543811 -0.773759616172837
-2.367594687670875 1.036043350856193 -0.5799634439998544
2.556566185382109 -0.6644706479756775 0.8481305958944929
-2.294640184665816 -0.8541358212986802 0.9551779245329168
2.413068112676191 -0.5644092973348589 -1.248064035481965
-2.303971397808543 -0.791027715085808 -0.9607137047385577
3.226062956269143 -0.06212075108317321 -0.08603797953736098
-3.089230222125556 -0.06605340277577715 -0.06617925887561463
-0.2604670840819751 3.119825313656667 0.0739797387143941
0.05313059890518489 -3.16986510126864 -0.06950824174516028
-0.1793599663398293 -0.1067981274029671 3.14382474170646
-0.1946397833331619 0.1316858962576782 -3.145558110989712
1.618309247253973 1.891813058265096 2.190154888381893
1.559912756958866 1.365733218492883 -2.203284563040069
1.702995250348528 -1.605742538689399 1.855120141167262
1.77901116229083 -2.092111197811341 -1.576616869376303
-1.609356245025409 2.007715937849545 1.413672954925375
-1.738774245834193 1.754014862040512 -1.71242892971685
-1.67829270912796 -1.552726287427945 2.123578262176141
-1.696529008111314 -1.491296743225848 -1.94742468121627
-0.1454269284080522 2.19312409688051 2.070976977966364
-0.04565471313406517 2.163687914351973 -2.079639828223077
0.1561648741790355 -2.343377012957643 2.261214254718689
-0.03821639126550647 -2.12556629674619 -2.348055179435029
2.216882148597314 -0.1400474746020756 2.319302464334212
2.357176557479877 -0.06013617676896973 -2.405561333137159
-2.352333919137798 0.228102689160383 1.906785390277729
-2.27641255524476 0.05708428257694552 -2.02963637751095
2.165587929359288 2.360122104072217 -0.07066040573679773
2.14883982161461 -2.207258151838295 0.1700264489897993
-2.511593675237926 2.028495325618708 -0.0139844995149142
-2.19985778254471 -2.067384779441856 0.01707380723153218
0.9381632402985718 1.579637625064135 3.401982192148984
0.9945962571691985 1.557799580523274 -3.270741127002591
1.27877996579826 -1.068325072965276 3.317348492204982
1.074930923617694 -1.355883846316755 -3.379179066960754
-1.268781433205546 1.458892660922864 3.042076889774969
-1.558167093361937 1.267651570892917 -3.096803306498057
-1.612632398891102 -1.03540782369999 3.305535937556589
-1.407424810353565 -1.271737699342685 -3.264212461815908
1.209932453868886 3.324671797952433 1.15476217181932
1.499412065514275 -3.192267876371799 1.158587429011309
1.117961188918818 3.080593648515831 -1.543864801833193
1.156020526153115 -3.343907391457657 -1.482611297866196
-1.274399043437189 3.218606682027951 1.35315020475357
-1.441342771887138 -3.190315020184681 1.175753756944156
-1.273110750131476 3.145642864967533 -1.421710941647871
-1.44469693600072 -3.088917258239702 -1.29789140682303
3.273121254943002 1.071040386519918 1.413384663951211
-3.201036895044318 1.13793867441576 1.539465608684931
3.180714098243197 1.511572861810572 -1.131246658484896
-3.336667988288914 1.228332011945939 -1.307649610258771
3.136849426574958 -1.539440192481421 1.27694828837872
-3.237976210839633 -1.374272515256889 1.139996892800379
3.275128590029093 -1.553004174962404 -1.180222912443221
-3.145915296533865 -1.245799217068111 -1.433090442557337
4.572779141325377 0.1428979360862038 -0.02063438303875353
-4.570551121385413 -0.1966671128514405 0.1026054124994158
0.1763097961961286 4.490921412032184 -0.1172735079074255
-0.05371146682192907 -4.559509303492791 0.08601194178445111
-0.08099468072141355 -0.01087068871090261 4.660049767727195
-0.01955270270538028 0.1542797808677762 -4.630578130526533
2.784198919264243 2.748799882783392 2.502888146041031
2.847127325964792 2.584787968298599 -2.787788051758606
2.653656814052194 -2.689192827277491 2.837934499336499
2.84323583153436 -2.539437061631816 -2.993591981747404
-2.724190630000295 2.837126211984609 2.68051516165801
-2.764930732714831 2.874632524534142 -2.724631665502353
-2.644084228114717 -2.971519274885555 2.765549697089027
-2.782612190509821 -2.801435948572362 -2.715822123093512
-0.1167895031724372 3.194998040568229 3.29876819764996
-0.04133983905234176 3.259286983562945 -3.143006751623457
-0.01762579446028422 -3.118268281828526 2.960878639481946
-0.1734747265496293 -3.347341715243058 -3.118247381187808
3.161178069501389 -0.06907069040159754 3.0707414157437
3.124606334115392 0.008040376139312532 -3.027062488387372
-3.259286968265072 0.1048170901944627 3.202433771489629
-3.207757717629049 0.08767098549572727 -3.319725370817216
3.026467719334471 3.140657721627206 -0.1351885352701575
3.264699561836879 -3.225151421476128 -0.04078735526481913
-3.08145239956193 3.189615867534203 -0.03569942005253761
-3.209504609433328 -3.166958049336759 -0.008847558953477178
5.218005095528731 0.04927590604240784 0.121796586175815
-5.268536722669015 0.2207659290891461 -0.1053154605398369
0.06934638124979549 5.239930963174356 -0.02760254011301457
-0.001435015176733736 -5.290825122408015 0.1917683721025573
0.1278683773777584 -0.2093438857875655 5.241959348883699
0.07906167600514798 -0.1797306281851395 -5.281544174809816
3.430384091337131 3.321005779886852 3.311933668482489
3.447346374948542 3.401370383680642 -3.370630139138254
3.371259360732639 -3.386659705149794 3.427225973940226
3.365866986629595 -3.497126831447269 -3.464859545324007
-3.492605751672932 3.586560128222952 3.406289449663583
-3.623528734080387 3.452343330899486 -3.510133407671822
-3.421556998495637 -3.456577661891667 3.520558296286884
-3.494071294410898 -3.564081409848956 -3.572576449901367
6.629478540453796 -0.09060498163882899 0.1243460965651146
-6.618012396586691 -0.08574831408655728 -0.06942910549068707
0.1218077593712444 6.557812805889053 -0.01768647966500972
-0.06518958984145912 -6.684578876259588 0.006918749713322321
-0.08180177551615063 0.09892253446851287 6.719240045640414
0.09526919568936471 0.1062455775657919 -6.746987695616545
</grid_points>
)"

View file

@ -1,578 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
Def2-TZVP realspace grid (Bohr) for species Co
sqr error : 2.21310626251597e-06
penalty : 2.695765842013148e-20
n points : 536
</preamble>
<grid_points>
-0.04054014354457403 0.03035768311430664 0.02125742249298856
0.05206986391219719 -0.03651665061821892 -0.028160750743032
-0.01155247016785571 0.007888950285028701 0.006253445405786686
0.02025735497817752 -0.01394740650075645 -0.01125524797934718
-0.03380686504729463 -0.02906910239171884 -0.02611921007820876
0.03521772429454652 0.03026002267515591 0.02208562637912584
0.0807013992940219 0.03936816444731463 -0.0403633272210142
0.00149868978858647 0.03117737752000394 -0.04126187797606651
-0.0005172266872838833 -0.03248503242457209 0.04002516487182552
0.003573468279379839 -0.02431457810791912 -0.09430840512960526
-0.003074511989760652 0.0943493073764632 -0.000282596674647567
-0.0757728194032678 0.02581034691760574 -0.05259271140302355
-0.002553258048383126 0.02642427108083317 0.09106310634329441
-0.07907087747035911 -0.03480006693010611 0.03853336751747636
0.162867680126566 0.005353012956827642 0.006147703786307451
-0.09426288146654078 0.06495064190484513 0.04866908147684182
0.04938142776656241 0.2053956797476547 0.05062179650310812
-0.002654094091092705 -0.09662784894195808 -0.009065787405029073
0.08463284726453266 0.07611300844595036 0.05908437253180952
-0.07568200955014419 0.005396066710068268 -0.1515976274040182
0.06560976597143146 0.1392249440537777 -0.0392593548222826
0.005675480147480421 0.07023752765069294 -0.1059575698740525
0.07858259063955748 -0.02901758823136341 0.0507743590144767
0.09283067000582239 -0.07238696128927939 -0.05483936743199749
-0.01477847721147898 0.1265709918096924 0.09210491551736304
-0.08452532799510337 0.1192986811276436 -0.04872637662696681
-0.00280772710791337 -0.08505261643705364 0.09134268198274292
-0.0837400326619458 -0.07424360241856542 -0.06130160373499457
-0.02715558509859695 0.09345299480507184 0.198197141798801
-0.002436797765239599 0.1317502248828573 -0.1710938636985749
0.008036372305647584 -0.1368048300397369 0.1550647954313486
0.01287956919755292 -0.1050910548714205 -0.1258696210709405
0.0681205061873533 -0.004725835156321168 0.1501109494823312
0.09893836882977024 0.0199130469781579 -0.1346185604043336
-0.07943892847697262 -0.00197617187484851 0.134731460201348
-0.1640289506258703 -0.001475878855929863 -0.008445306956052145
0.1623170317456686 0.1309588649348583 -0.05089350902232555
0.09789667550173921 -0.1210182023241743 0.04552977747798018
-0.1579761831786717 0.110192994602898 0.08026242896877461
-0.1073674091395275 -0.1171435020361483 0.04682483063440079
0.2567963774114831 -0.01165104477957894 -0.02466876186547268
-0.2422128755354061 -0.04947537167021914 0.03453625770057733
0.03465509105832219 0.2661566895282902 -0.08834961683923023
-0.002328317866519097 -0.1748544087332616 -0.01733487266702335
0.04675810154512471 -0.03206300612502293 0.250862214756094
0.02254228079189768 -0.04247291107414883 -0.227793555423603
0.1491503665011904 0.0955847517610456 0.1215190165610382
0.1671341772216481 0.07037392831168587 -0.1860871567842485
0.1777403434464697 -0.08538679028831128 0.1147753500008647
0.1576646046529089 -0.1140925298987808 -0.0900322282475951
-0.08044869430139524 0.2458643203846901 0.1025190574096358
-0.07141705529618342 0.1995145799528434 -0.03580983052318498
-0.1387769394341265 -0.06549288065478803 0.1565741302505725
-0.1451218667023949 -0.1167108996853686 -0.1034128026762582
0.09939679475947559 0.1839456557368492 0.2165324829761173
-0.1154265805124793 0.1754977038625102 -0.2219283028497279
-0.08570853769369938 -0.1768743614806159 0.2208131848230735
0.004289657562300146 -0.2113827656288868 -0.138177880434919
0.2354278572391456 -0.005816620788688276 0.2041994113877118
0.1718455137502077 -0.144513474858522 -0.2075035162419517
-0.1885944920135287 0.05005424093914138 0.2108311850294604
-0.1784071837012038 0.07464452438077279 -0.1148563459949093
0.2308507065550921 0.1884231927043461 0.03022561205427237
0.09255553504446214 -0.2353049353611965 0.03708579619482482
-0.2389318242848545 0.167673223294614 -0.01059505076169141
-0.110946606668052 -0.2202831623164801 0.03906247998911126
0.160805993524551 0.04992359848482488 0.3824145592201326
0.05202937953658048 0.07603489293341999 -0.3126016839472347
0.03578172411724876 -0.1279138878745773 0.3285416383436566
-0.02654019219155505 -0.1729649566844951 -0.3116720141490422
-0.0505923111902053 0.08832559546616728 0.3300338463717327
-0.1902042441859206 0.03994648817558021 -0.3461010147712091
-0.1992960722256503 -0.05574147900160621 0.3162571246890236
-0.1386734006728149 -0.0459187595604261 -0.2357322126651005
0.07316261813957187 0.3516475477558911 0.08185786212765221
0.1207881026209602 -0.2311081658969555 0.1994234789213942
0.1570851185627128 0.2498799100837193 -0.1866668879972575
0.104293191462474 -0.3271296567299103 -0.09178165593527211
-0.1645549875859845 0.2536103392200726 0.2006169143601825
-0.06433312314132347 -0.3396691775998126 0.09144609610667845
-0.1484978075567696 0.3276011982582965 -0.08125209055017441
-0.160158828048211 -0.2574327449019866 -0.112844052200671
0.3756156364462331 0.01196127277245598 0.0611619200353241
-0.3390339760980453 0.06559750598303736 0.1032307702282209
0.3178977345786647 0.05102532744108132 -0.1458110385938241
-0.336453961565513 0.1183594289291878 -0.1499327088964012
0.2728189502155222 -0.1832263792478415 0.01703983039992595
-0.2789488790026926 -0.1741824791590308 0.1017520557444362
0.308813683790131 -0.2346605336832245 -0.1466203318326387
-0.2862633539187366 -0.06644290875429207 -0.1281018837506914
0.4567891028630301 0.144036725492058 -0.04762865601678387
-0.4417892347918156 -0.108919786934785 -0.01054700822238863
0.05094143866571089 0.4465709674679049 -0.1429471796447758
-0.01438203741725511 -0.4796170085513284 0.04532839066971529
-0.07411407566573357 -0.04360280888656496 0.4737697771404725
0.02415171787503628 -7.497475105073005e-05 -0.4707991387173933
0.2739016677933542 0.2068852306754036 0.1974531138744371
0.2692083946586795 0.224894243130958 -0.3172325074839378
0.3102397662068167 -0.1485976629919035 0.2571529624384499
0.1674697911576509 -0.2578538085146467 -0.3572939128199175
-0.2409815323391426 0.2107750634535935 0.3517713672168153
-0.2800745087955016 0.3190136960935522 -0.2274427996304919
-0.2293948089802425 -0.2950340828420073 0.2628672918897879
-0.2923341343571467 -0.1960911811620366 -0.2325554694199461
0.03039656523054398 0.3066749930011263 0.3266281948341591
-0.02339130614999183 0.2620678886608125 -0.3371218989238677
0.0326365570991785 -0.3065289644546551 0.3168787757755773
-0.05660740584079564 -0.3820164541810412 -0.2161598119538163
0.4042182192739639 0.1273014963443515 0.2922120204704087
0.2111076833561222 -0.01438051213209828 -0.3378384089153294
-0.3947303301357378 -0.03556891956399146 0.2618160192283451
-0.3959064146830152 0.0008859407974923151 -0.3317919553979859
0.2956378380319865 0.3161257308465743 -0.04197063492054985
0.2414942959591495 -0.365383175762477 0.1046158900587822
-0.3488030259208833 0.2735741136060605 0.08284535999675545
-0.2884819178621149 -0.3471033333471105 -0.01675742203887001
0.1460669238308919 0.1908023327644096 0.5170357214213038
0.121866891501393 0.3218542793315453 -0.4748822804734668
0.2080917439403216 -0.1719257101000419 0.4660423591072708
0.258536394834545 -0.03067898627465717 -0.5379167211237607
-0.2736874977267351 0.08041616845193639 0.5413531404960427
-0.1911239045666162 0.1680187140206644 -0.4991549379532736
-0.2157101702532497 -0.2813705222111434 0.4675764993104158
-0.1759310111770145 -0.2360379653084216 -0.4314113092842042
0.2315619145176959 0.4268567229664078 0.182057168802227
0.1459530945932344 -0.4626408652494617 0.3322518234364776
0.2928675772299913 0.5074621374409072 -0.134910088709092
0.237873687881258 -0.4563071600899165 -0.1569132263131598
-0.1292941673957563 0.457848557809955 0.1193472063890346
-0.2470339329002512 -0.51050021393533 0.1874874179656213
-0.124693784086434 0.511037998150574 -0.293596020809461
-0.2015234229117083 -0.5095105688009538 -0.1908192014679041
0.5235893460407073 0.3144320392940825 0.07171404224500839
-0.5208958604155693 0.05375800526643685 0.3039432567705739
0.5036616653488492 0.1994732343043596 -0.2780214515491435
-0.5124390158842302 0.1407761975718195 -0.02749162103953168
0.4743936893091459 -0.1624065382007658 0.03341174007748014
-0.5021632779479539 -0.2786034170035446 0.1657649482305913
0.409202926657113 -0.07431620741302597 -0.2652090704418248
-0.5005458626643562 -0.2843302689000174 -0.1618502904547222
0.6466143979743256 -0.0191986009346547 -0.01367394137326901
-0.6642992629475086 0.05775706414011806 -0.02797857890775084
-0.01729760443285761 0.6400827758014341 0.05769297698659383
0.04438615875355448 -0.6447614402962851 0.006549578341931464
-0.003186150171107553 -0.058911834593984 0.6482510187308423
-0.05031948488044034 -0.03514840552446827 -0.6524637151692682
0.3195421524647292 0.4889229610825139 0.3225641488839881
0.3541219692804013 0.4251648890394583 -0.4821548767710001
0.462905869077582 -0.1639019513888074 0.3490855918451595
0.4686020391022006 -0.268335363594695 -0.3157414302564659
-0.3738900180348637 0.3710524691940681 0.3273818591479549
-0.450976530809675 0.2978704768848286 -0.3584383861499015
-0.3808822811710421 -0.4273464855453308 0.4482454898829153
-0.2633121604996619 -0.3707951215652509 -0.5103351415085731
-0.06471202805765747 0.4637853759315484 0.4085818020307499
-0.07696970322654789 0.4014825007870972 -0.6225313699576656
0.06385481882081144 -0.4790408163118151 0.5577474585692628
0.1152607408140375 -0.4129005595316497 -0.4458509609984329
0.496964154906895 0.1396775127766046 0.4590164712170074
0.6049665322776577 -0.02303384661525916 -0.4561878254629734
-0.6258591017097572 -0.02612589536874614 0.4358273667320917
-0.4821677820329625 -0.03779306919281256 -0.4596365731899186
0.4387514578017297 0.6444781959106155 0.0009821273196773752
0.4435140322929018 -0.4244582394123074 0.05354142768744762
-0.4061997502171422 0.4545347194583172 0.006337747708759453
-0.4335100719722472 -0.6161415822157095 -0.03272048184143413
0.1577420441554022 0.2680756607248359 0.7031322711915639
0.2650008811580957 0.0804631297819805 -0.7454614996968829
0.3182298173951325 -0.20938545578974 0.6167737998794202
0.2739467459451335 -0.3468671483263096 -0.6320818214496692
-0.3345500792560848 0.3254301302799693 0.6088710682071178
-0.3530264095739973 0.145237276658501 -0.6572565587566569
-0.2484962880291874 -0.1118772324849931 0.7528183374548475
-0.1907049397996761 -0.2863519226976006 -0.7545806206039574
0.08672068963685402 0.6765321250601767 0.4012891715928272
0.3637192401192436 -0.637349095016566 0.2524186796145972
0.0890590003336193 0.7108503753433456 -0.2985841665355967
0.3225692851570981 -0.6311523408408218 -0.2450061220712381
-0.3502695600516481 0.6588185830028161 0.2396951887579649
-0.1324202195858348 -0.7408377005111088 0.2398461320943576
-0.3736184488843948 0.6285316476694381 -0.2623940467675308
-0.1486427270700066 -0.6645849188874 -0.3551425344506763
0.6996642238396076 0.3016978145866198 0.2609093292365476
-0.6459034528643072 0.3822857083310387 0.1035590485742123
0.7056329265720006 0.3095101985761228 -0.1636407472241281
-0.7127703944404897 0.2014174355550023 -0.3446679134402613
0.6665935919433519 -0.2221574824698082 0.3342679127746337
-0.718257016826699 -0.2997018174728893 0.09452993167215418
0.6574588737411056 -0.3842807149745328 -0.08475226607095813
-0.6467883434636891 -0.3080293614098149 -0.3392470875481728
0.8750080933112379 -0.06069738975964098 -0.04655324546270263
-0.8868391128774579 0.05631171893318055 0.07149321044514283
-0.01493807253772895 0.8722055118060619 0.04061232346138966
0.04143907966482322 -0.8762148190386857 -0.06094378565818393
0.1288674857586273 -0.09729035857882955 0.8732524079874667
-0.07788915976007209 0.0821114428066166 -0.882252238621278
0.456847999236845 0.5477519962751058 0.5342648789963025
0.5574912326476075 0.5275361649545246 -0.4834037811988799
0.4486547427839548 -0.5074783823974298 0.6343525701172096
0.613980015436014 -0.4557641598684016 -0.4815501973140734
-0.6196641160141767 0.448228534804551 0.4947235196047617
-0.4520165105095091 0.4972400939644327 -0.620472785964215
-0.5578141219706612 -0.5299281687018975 0.4627074114036073
-0.4277724512344003 -0.594544025621052 -0.5741496202120572
-0.1083775694843287 0.6404425099493811 0.6628057213923866
0.05659639040522783 0.6417626073543963 -0.678821519644709
-0.07918134769133847 -0.6303567290711619 0.6731385196882067
0.1311124423288439 -0.6706489183445962 -0.6311647432866921
0.6295224058693004 0.02343837190240169 0.6630480593288556
0.7233228047835548 0.05462618479453359 -0.6204376357704477
-0.7178798330392805 -0.06424434858974175 0.6499289547955307
-0.6380223612663394 -0.05748739078929868 -0.6816061151339146
0.6662646371360227 0.7034605488361703 0.03698683518115622
0.650368009733432 -0.6670529880018262 0.03196946392083201
-0.6745884223589699 0.6535241474347134 -0.05164185100720581
-0.6078818675440774 -0.7271096374604469 -0.05378909290077757
0.3144282765063544 0.3504070909009916 0.9383338383502237
0.3159389850492745 0.2833144768162041 -0.9503959479125418
0.4030806460498705 -0.2862018301478738 0.9934825479717292
0.3231866300071472 -0.2880535612698301 -0.9131487274687842
-0.2741897641530397 0.2699506841080599 0.9201923498586929
-0.3475614897693348 0.3121143295646048 -0.970455406975108
-0.2608080976175173 -0.306732138381853 0.966353288232069
-0.2783924457621428 -0.3227600356746068 -0.9935541621205101
0.2747763756165393 0.9410743409123623 0.3707385357152978
0.3052926158178799 -0.9253865959846709 0.3285583773283665
0.2830877398389949 0.9533263658880506 -0.2827462095565935
0.3820322759192541 -0.9310312214418528 -0.2945404589519434
-0.3703291194479437 0.9317246400164521 0.3101149420326126
-0.2912065906144722 -0.9492029079754164 0.3180490849924923
-0.3189939446424528 0.926369570234407 -0.3322475181139566
-0.2444809299556245 -0.9766879344567835 -0.3281183593527204
0.9366376712934341 0.2861771696917402 0.3400309982057268
-0.9733310750836849 0.3803754520863864 0.3046002484966594
0.9790155089084858 0.3173202958228944 -0.2359320723845545
-0.953261288056603 0.2972571405726332 -0.3376066790153489
0.9218755643772982 -0.3273693226823924 0.3378106954912332
-0.9416183739481144 -0.3584198122645565 0.2384109641530071
0.9735921631631537 -0.3753636135809252 -0.2929125416177469
-0.9247863088680758 -0.323137851265996 -0.319210333369342
1.239625718871754 0.0119688074092668 0.0337185908673386
-1.21235845021357 -0.1059308255709081 0.08599823512892721
0.01444150291324102 1.22673156211757 -0.005896105283314066
0.03393700103085994 -1.230319862153112 0.02764166504481224
-0.09732312584332602 0.03296168293373414 1.229403491856685
0.08664736315957747 0.01799555317070499 -1.234816647517969
0.7200942212694672 0.6523590252540717 0.62603570737229
0.6668282820128814 0.665669730905935 -0.6606553319345985
0.7072499535724519 -0.721950336413843 0.606199146577913
0.6187987004401149 -0.6408419808120517 -0.746140409821492
-0.5933734993400449 0.6251188174960457 0.7656586042327915
-0.704774348646149 0.6775713459902517 -0.6427602524986321
-0.6755891933100262 -0.6398775936683008 0.6772502753223821
-0.7082638428396855 -0.6904691781752623 -0.6332053267140531
0.01823658928799043 0.8383269090460665 0.8537190909152086
-0.01686314358986463 0.8419737057059598 -0.8551122867700817
0.04617459151365732 -0.835797341058505 0.8499468697279134
-0.02042345320398301 -0.8473929563867948 -0.8492775680390281
0.8910970023976136 0.002700870748402049 0.8330982057702508
0.8734080006415557 -0.01628099815865221 -0.8411796548692926
-0.8588125176668349 0.02679169433607045 0.8740785630728241
-0.8606179490869048 -0.00898151547783577 -0.8531727018405991
0.8341616060972469 0.8911997668703554 -0.01004250582380256
0.8437603103931357 -0.875626867791062 -0.02209019770889983
-0.8351126013832345 0.8943572269316702 0.02193194654220663
-0.8229327438558647 -0.8909139435710831 0.02719084709385126
0.4967889060716385 0.4851766909564631 1.183305318216144
0.5332839839344803 0.516897245219615 -1.159021430386521
0.4973079852635597 -0.4881057624109528 1.218244763820516
0.4808681045661732 -0.5238547535698852 -1.155146502014683
-0.5067375152925498 0.5861577056980539 1.132053526579864
-0.4797526449887885 0.4665428421104258 -1.209199800925025
-0.486571656583509 -0.5451512200581191 1.167739443572546
-0.483861814707737 -0.4869013176627718 -1.201985101891526
0.4980443427344884 1.169413493864246 0.5219958557611025
0.5069315001765374 -1.182951823320217 0.5149542926646415
0.4969014694604313 1.16008414501439 -0.509252596331943
0.4652731730041735 -1.191309065588291 -0.5003678016138363
-0.4508119720271227 1.192952770245157 0.5172334009236047
-0.4579295733684361 -1.173964767920306 0.5461418621952839
-0.4700424250478191 1.19879844742815 -0.4738575882498806
-0.485053497014503 -1.186121129860997 -0.4882738700847215
1.167392266315903 0.5227457819469457 0.4850537586879282
-1.183075311351675 0.5189028852196663 0.5195251812141038
1.202597895196474 0.5047497987715309 -0.440607396528241
-1.216894143038072 0.3908847519675431 -0.3675719519550281
1.164272551520146 -0.5138166936261351 0.4763640958525794
-1.183169341228479 -0.5469812393063245 0.4798023244306086
1.195827763385488 -0.5144084544783109 -0.5005830396156786
-1.180223459909496 -0.4703551464148081 -0.4826292866139613
1.56941123222374 0.01354196547976258 0.1107201417827584
-1.562418377457021 -0.01242015921444678 -0.06090025002361439
0.06467324734563751 1.566239302714688 -0.02577682510262056
-0.048467487034929 -1.561217034582889 -0.01254734787672586
-0.1097721763470564 0.02000400226569676 1.557456177519351
0.05826019428223241 -0.03407631269075222 -1.574593265916519
1.048053074943283 0.8934975578322387 0.7916395938158254
0.8326888308389838 1.034570804819176 -0.9081619195173097
1.114405262342634 -0.8728756377939861 0.7485483118482269
0.74236812405343 -0.8578773267241705 -1.119191492589864
-0.793064403259511 0.8626766172443014 1.125050457372639
-1.052618407764347 0.7668731837826877 -0.742473020169119
-0.8028192028234495 -0.9671789358267665 1.043507980616752
-1.017427084414372 -0.9255839970555916 -0.7578021915976545
0.1022541470666935 1.116377190620368 1.109122472017333
-0.05696642622864043 1.099579018359631 -1.113017801465681
0.08536541617245851 -1.133694996816389 1.106575887114439
-0.1138985949310572 -1.111490349849811 -1.103294616694978
1.137012864713149 0.03805995956175943 1.103476006625379
1.114156884163144 0.02333946975987039 -1.114462197957639
-1.124421011195274 -0.02434831088109142 1.109368693468897
-1.105971134646974 -0.06377870211763732 -1.111463411124058
1.091123178116847 1.152095858780807 -0.03175466181578349
1.09945316782958 -1.117068251736875 -0.08719199517898543
-1.100317191905554 1.120052591437777 0.06520618038003227
-1.095229319642944 -1.136939252433122 0.07677896267640322
0.5812232230872749 0.584059960011174 1.572840401325999
0.5920669803406451 0.6054553165559651 -1.571186099326237
0.627771726709568 -0.614013681998164 1.569212697414364
0.5505585217872095 -0.7004342843343285 -1.630185790680446
-0.5820435614797471 0.6843263534895296 1.631886742971655
-0.7050000365511949 0.6104619024959939 -1.511741209299926
-0.5358426111934386 -0.5383482697671444 1.672288548492971
-0.6390560169038 -0.6299316135533655 -1.576151425759553
0.6225723909741392 1.57242379015183 0.6877196901962962
0.634920980537429 -1.551757904481627 0.5834265054998883
0.5385976298987541 1.653504321592836 -0.5887225462131972
0.5827867229061301 -1.561367133326652 -0.6134787877947179
-0.5757682726299111 1.5716521502404 0.587011821423713
-0.5406561740712907 -1.651333441619116 0.5534641768794709
-0.7048569497800128 1.484286461549329 -0.6423533866661602
-0.6053543105281743 -1.579396972625792 -0.6886279919806652
1.620922626145056 0.6654621823604152 0.6659865933440376
-1.563774440489127 0.6574083402149781 0.5704902717940411
1.574233588485337 0.5942913808106355 -0.5461743598384838
-1.561879923065924 0.6492286755870864 -0.6530687366957924
1.666418394492328 -0.5931750054997924 0.5938588313931028
-1.59848132646187 -0.5815562045766666 0.5537039022006415
1.546597782899782 -0.6578356129961328 -0.5846979731559558
-1.598400274770455 -0.563811637613913 -0.6854288893733809
2.073045450030649 0.03749243048289924 -0.2022695713801715
-2.07786637634004 0.02317933848070266 0.04029807777436363
-0.1935798406110249 2.06543487834496 -0.03522001984694696
0.1476530929527428 -2.079608295083518 -0.02602244336134707
0.08815791200497346 0.04265800896327097 2.090214435762697
-0.001150173228841819 0.1853127052902742 -2.055393125308478
1.03424722835936 1.100441822733614 1.433009332888075
1.284349299753089 1.021274304552724 -1.226853833041405
1.018456691808976 -1.327642875910414 1.210194729868962
1.27561969149596 -1.288952441847079 -0.992548688692017
-1.222452994664107 1.336783217674534 1.023711428022003
-1.016928263796758 1.39087518628932 -1.246636856559747
-1.235140401185959 -1.071446770870471 1.196712063032385
-1.29763087521292 -1.14177859058433 -1.150162544967334
-0.1293642115513292 1.489326471940658 1.427517217149321
0.06006921885417622 1.3990221318527 -1.448197538303484
-0.03552142008530463 -1.476496915083122 1.412406853691601
0.1032918376391577 -1.519590687688022 -1.426744686684761
1.445976037805826 -0.1024333183552424 1.458627519570904
1.383778204499665 -0.1121191286220278 -1.448445283023141
-1.440110469773271 0.1345841955438793 1.428436801388432
-1.453574684454974 0.1617454260049233 -1.501324430205917
1.400866788339618 1.503010605350483 -0.03655831976085964
1.436670423352458 -1.463626885637409 0.09388585581469784
-1.473622850389039 1.439668301712713 -0.09253089790712959
-1.423325863134308 -1.424096021544423 0.02577983475702661
0.8779449754329279 0.9157698878941783 2.056576870738874
0.931522426555243 0.8190618972160917 -2.075845500174101
0.9211705680165532 -0.7754324589871954 2.037231199957332
0.9639087396151331 -0.7520313747988685 -2.007622323289659
-0.7947694537966762 0.8411219296910374 2.063365187300545
-0.6761490869181993 1.019023255496548 -2.07536015125915
-0.6920561408241558 -0.9047524111088944 2.023817806331663
-0.6521968934318864 -0.7785639206174692 -2.065235311432799
0.6963332722458958 2.057027325381811 0.7928447107171496
0.7945149694207404 -2.037928062433692 0.994905712996926
0.6592989923862032 2.000423870076165 -1.028079512568054
0.840448150268459 -2.121585433483011 -0.8031565405836705
-0.8876879837032303 2.046511245284254 0.9239484973383806
-0.8637398763364887 -2.024888890933265 0.7535653341953017
-0.875194169930564 2.159428450188125 -0.7171241207460053
-0.9087674621499938 -2.000498876924804 -0.8141815938584606
2.040551952815498 0.8302140211741017 0.8477763080495403
-2.044710529894997 0.8136051287932919 0.9073322791656907
2.04607127311741 0.8080302304645357 -0.9623423066078965
-2.062593682356835 0.9109851421623663 -0.7384416018523809
2.079398429492699 -0.773223972693258 0.8048948932194969
-1.989460210016546 -0.9388709552771831 0.7871773176122332
2.028072450868289 -0.8209455119379958 -0.9462935248184023
-2.081595086609889 -0.8893761631860996 -0.7374695216753275
2.72002518086911 0.08406449645561412 0.02421314769511952
-2.725277650763136 -0.02431008609941154 0.1766904217459425
0.1550968808403022 2.744146315722903 0.09504681828444143
-0.05091613115653182 -2.711012563162541 0.0682875187460044
-0.08141883610557066 -0.05197191565735208 2.724449303739365
-0.0639278660589583 -0.1416960714550595 -2.714999806266358
1.544682870450188 1.649800596763144 1.513079420157929
1.638036774049351 1.678171281117018 -1.451068770503581
1.493103608718983 -1.591916108480924 1.610769232476316
1.605475268263949 -1.48727103400614 -1.653071716044937
-1.640903501022607 1.4824035718203 1.659249301686536
-1.623698949265293 1.623992172545105 -1.467712770750174
-1.617672525838308 -1.597743698509889 1.458874547436402
-1.436065545300275 -1.541218959044501 -1.641796254127824
-0.02983710313108212 1.954680551420991 1.901017537713217
-0.04562115221277069 1.99034504003457 -1.902159029049154
-0.09738792120470773 -1.846509845314814 1.960275266677472
0.0162518298650522 -1.898623772284824 -1.879031304098956
1.95402351220043 -0.03815091281015444 1.931904851692185
2.072481916462048 -0.06024969632108498 -1.894427980807685
-1.741808135029973 -0.1548603941371469 1.910637992365316
-1.826420740721799 -0.05124994785433167 -1.889538183113223
1.703753240536665 1.94376706249338 -0.005474515167390098
1.884204676909345 -1.799875879062951 -0.03847893864042464
-1.969288377247659 1.893594872660197 0.1795987455036859
-1.95139782458076 -1.92589581038657 -0.06497964300259701
0.968906300593752 1.166006027252868 2.717863049275099
0.9757860678009107 1.147874007178116 -2.713236684400238
0.9710263966412589 -1.26014801023346 2.726407929543386
0.8925574957868998 -1.207247683840712 -2.74987947760465
-1.389843420180409 0.8303693471875925 2.746129600802049
-1.20645276054261 1.033343489095258 -2.650434787433456
-1.263918650319967 -1.170292864227498 2.674632427440121
-1.288226943125279 -1.172364415114831 -2.652079137376698
1.553213928714708 2.65528530200565 0.9320324383990027
1.347454619242964 -2.634378190178184 1.10285080412077
1.335601762032254 2.719481083422595 -1.038077974293117
1.287551459014018 -2.695037658995688 -0.9069479904837068
-0.9496023543038631 2.755668427766313 1.201230930265901
-0.8593482020769643 -2.74189802356245 1.186415169285929
-1.02831119481704 2.705516858573277 -1.165639964385455
-0.9073736101000619 -2.673126501997338 -1.274020269343712
2.686943001578586 1.242992851692853 1.047672604751385
-2.735440017649436 0.9551308157850816 1.336459186309595
2.743952191145654 1.290040693051632 -0.9137685051275216
-2.630198599647816 1.058522102494774 -1.161086741284223
2.739921562795502 -1.217122515774818 0.9598684546154345
-2.652274696250911 -1.094117852310206 1.338129682763279
2.709125421654294 -1.307382670406617 -0.9415831518795222
-2.674222637192754 -1.061802888550379 -1.195995085164199
3.693897657587689 0.03707965228197259 0.01896418864712645
-3.660271145749849 -0.05125456138082899 -0.06252287342088489
-0.02287426539011845 3.686877164390269 -0.0006574832067266426
-0.0274427016504066 -3.684218563272788 -0.02953231861437892
0.02725674412927857 -0.009089974625329952 3.686292203890428
-0.05513594329858856 0.02420305401678044 -3.659623699440326
2.216383245507704 2.069398148416578 2.281344767071344
2.130097586015984 2.120335361237218 -2.246494595143175
2.223853782861865 -2.071642401899815 2.166502384452998
2.11037119113323 -2.092460460949694 -2.132036909719444
-2.13792642869816 2.198640925810264 2.120970908523479
-2.210907283365209 2.265135677644667 -2.041360879981251
-2.202151882135194 -2.176998298095948 2.074510642621822
-2.308774679364018 -2.121139327357053 -2.121648876182709
0.08487406989365012 2.486671482301174 2.548321955385097
-0.1454350754796432 2.49831410620888 -2.615029395025656
-0.0595428300032676 -2.658226016436969 2.485147999726754
-0.1112797229731764 -2.659664600486416 -2.44419476137005
2.475919353923376 0.1046217635539199 2.486729488385006
2.595368694106641 -0.03511197606914866 -2.40712797454511
-2.76562819974575 0.08591558311379303 2.858768665751572
-2.552861303018639 0.3143895124060758 -2.551715847635619
2.840402554090534 2.714764756287485 -0.0009301265735053659
2.651273313187458 -2.845668839206825 -0.07564032807816401
-2.569990979277602 2.36754622836437 -0.05918084213360081
-2.379586364514088 -2.539625938648912 0.01074087042735157
1.487970025426384 1.63052709525669 3.750407864070353
1.438462836915798 1.607933331698278 -3.781354250496102
1.825214269374335 -1.317478038212559 3.70682503990337
1.707838844763861 -1.459393549638873 -3.59531913372474
-1.323871444168503 1.805478907608628 3.777131023598537
-1.722577709414935 1.408156487568643 -3.799942907021182
-1.182131094639432 -1.825304202562629 3.717720456080105
-1.231183301690468 -1.677464161253384 -3.805462048247561
1.45253435780559 3.811005736803535 1.590498998175193
1.163196035174017 -3.770218751599834 1.891178205770176
1.338969518757234 3.787779051711753 -1.835956287178133
1.495104775718494 -3.764196934537115 -1.690913300275802
-1.556400765382138 3.729823770217378 1.573095525159042
-1.907363083024796 -3.709340065156431 1.14613834590814
-1.59376364605726 3.745249146195019 -1.49688067862423
-1.499606965582219 -3.74373586633566 -1.730276718525703
3.770227315368492 1.453704307540368 1.678305816826414
-3.740007880740763 1.874620341141284 1.270584080985919
3.775607678661721 1.457076562720418 -1.932169859499348
-3.758501112519538 1.570795249545424 -1.517348456197916
3.770043583784794 -1.363753738955539 1.555747078209297
-3.756690785010993 -1.739457568540246 1.133576609105561
3.801162332979912 -1.271204624819237 -1.628830409242816
-3.68357964648264 -1.46661226176097 -1.893181277520088
5.103122873660187 -0.1491426287890141 0.2211727084540668
-5.073188066598856 -0.1071537460172309 0.1129951229203514
0.02372888500932672 5.11862276513153 0.1183798225370452
0.06338595842798625 -5.045541910316386 0.1563910629817123
-0.06550643009939514 -0.119368945197761 5.017958484246167
0.1515282453871316 -0.1628452939776376 -5.037419257285126
3.054646087275652 2.763890407147336 3.331370830400846
2.904617579026951 3.256372197123199 -3.284345132308351
3.212496680612293 -3.016679611390845 2.659767851336372
3.058913801557518 -2.707520549965637 -3.095664930173372
-3.054176123250762 2.732131622311878 3.397513444347605
-3.162728488567165 3.059239219278888 -2.94604669989518
-2.744591293207153 -2.987908142324124 3.07236435977118
-2.761554362709077 -3.121477204536365 -3.330171570984028
0.02630541965590984 4.016320144359629 3.800546700174714
-0.2553109967805894 3.798715343894169 -3.870424021939769
0.1298590423607875 -3.837016634866186 4.044117369549392
0.2631325899781626 -4.013054867664741 -3.81469587751564
3.736705897191674 -0.2222606813650302 4.093400790933261
3.931179786640036 -0.01459672128012511 -3.935271413251715
-3.8965950108357 -0.2436829599338991 3.761046924704324
-4.00685970834237 0.002152130998448709 -3.773165117592973
3.929234023711387 3.724699391747043 0.1213843696036692
3.841070422649661 -3.85062737367253 -0.2485579636792459
-3.775930150197909 3.974970985762881 0.1665383728242543
-3.911213854176863 -3.94114157941759 0.05347841626045393
6.504995967827712 -0.09321314610083577 -0.02128445580200844
-6.513798171247064 0.2842506218146182 -0.03098489956014087
0.07293804725319247 6.528675598341422 -0.1426704174195618
0.1603727052565007 -6.4827102576295 0.04034644631481396
-0.158539480290847 0.2336602311372827 6.506877317507391
-0.1711928775936819 0.05771984539149306 -6.489066652727262
4.212161028610681 4.207209085862632 3.992953355167156
4.210228867494974 4.158438715997307 -4.146248341334281
4.186838120413543 -4.011890453793666 4.157486356310091
4.112646608423369 -4.110041036565347 -4.132686122286419
-4.152405857194679 4.245817719826499 4.009149040207045
-3.977239062740332 4.215253828520409 -4.218647316297666
-4.204308542168245 -3.974411989365153 4.122557863330051
-4.191381475027541 -4.192276830701529 -4.09101996137499
9.454343862677915 -0.07547166868754984 0.01110628866092521
-9.417236922919344 0.07490055241516 -0.3157685064948411
-0.2281902980770495 9.464788619588083 0.1379563746323876
0.05026792470003224 -9.367726108685513 0.3676156470224934
-0.2219534213482637 0.04329487360655548 9.372534197885376
0.1756464815559613 -0.1328722859209313 -9.412097564926608
</grid_points>
)"

View file

@ -1,578 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
Def2-TZVP realspace grid (Bohr) for species Cr
sqr error : 7.371668947676666e-06
penalty : 1.318999393925844e-13
n points : 536
</preamble>
<grid_points>
-0.1086527655696004 -0.03318037836293813 -0.006147811484642571
0.1103877274874583 0.03031832944639744 0.004331209794778669
-0.006371069842774115 -0.1143278588549485 -0.002288403871044534
0.01097629587262993 0.1127100964491492 0.004073048406905054
-0.04866600443292771 0.04763620252142012 -0.09036719281744
0.05239708861211823 -0.04860573691751414 0.09008866641958618
0.02799906613595594 0.02949849132583934 0.04543775860836064
0.02938262872792773 0.0346313119462455 -0.04292664007576742
0.0485498068401095 -0.03846009978544611 -0.002087707409432199
-0.011456652010727 -0.01781495512730091 0.01497629074426096
0.009529331886833723 0.0140010597971039 -0.01207174178188935
-0.0469365055806784 0.03868572345663772 0.0007417597888695141
-0.03037201195197332 -0.03829451446417636 0.04581050771427926
-0.02575528661017685 -0.03154438313978648 -0.04564753340321977
0.1919114163805775 0.0319113241241194 -0.04666263909525706
-0.1663335189501833 0.01142792800434952 0.07914769415871079
-0.04734499908828103 0.1496766015225941 0.1005150456927938
0.01679264812965201 -0.1905514736430843 -0.06691649939253927
-0.005587586021582617 -0.004303048835593072 0.1967339198564791
-0.04064639595082258 0.03622175302185424 -0.186886165699064
0.06457359597423327 0.07005741193631447 0.1079997181645146
0.0699064132097499 0.08172874592526909 -0.104103376858175
0.1154839453100833 -0.09264143519446064 -0.01949306045955962
0.05135868314082399 -0.03511504980129802 -0.09461521748292463
-0.0508502921111046 0.03611414568994214 0.09402302073503475
-0.1052096873473972 0.09690637554769535 -0.003713286808462763
-0.06484886996668718 -0.08241617048787718 0.1027577485678523
-0.05368257031526386 -0.07966117154519788 -0.1126727598888533
-0.03781707333098116 0.1855205971193145 0.1773129967395393
-0.04299522266260335 0.1757758904164168 -0.0811987468369519
0.05351053957015991 -0.1570433037068553 0.09346584259495121
-0.0947093119194493 -0.135131810920433 -0.1774794320465521
0.1604848906292044 -0.02180020675625709 0.1001836519977864
0.09574806527697322 -0.06264487573966263 -0.1663189209872197
-0.1789658786634592 0.01716196831174399 0.181085686045886
-0.1643532167170058 0.01573805255950532 -0.08921468906185505
0.1073343724080703 0.1613825657984089 0.02434817470402257
0.1876427618212648 -0.1519789975083301 -0.01659985414213578
-0.1833469484145679 0.1588068738972014 0.00373529078504956
-0.1225516137363023 -0.1471890402305625 -0.006235862523957423
0.2804391152882906 0.0107103652210531 0.07227914941510785
-0.3217182289517483 0.03432369637420302 0.0114303290496714
0.007254466155833608 0.2930927752849216 0.001632095469810838
0.03187098212648768 -0.2906904842411894 0.03276240047875326
-0.03033287965417465 0.007092760897230738 0.3101103230002248
0.02464413217076726 0.006393291463744689 -0.2935162259209444
0.1318017752182138 0.1063450109642021 0.1825470413651264
0.1054301155399822 0.1368892090560287 -0.1717551133364894
0.1198053334740954 -0.1253518541681281 0.2079069656468896
0.0881539508646985 -0.2120025856375604 -0.1965433479671435
-0.1979187285632154 0.1643420547731075 0.2165745041820192
-0.1940204189278514 0.05928529469837952 -0.1730138105337395
-0.09645038780694028 -0.1676880459819737 0.1535272976924323
-0.1539858946233771 -0.2644189927443047 -0.03550203977551904
0.1143181545263486 0.2703878685772602 0.2089163195359555
-0.08622536670132219 0.206600030914017 -0.2025216887111302
-0.03391869435820544 -0.2216635569104667 0.2698936272811569
-0.003698762009642198 -0.1705273664009001 -0.3554003468458349
0.2140632106642147 0.005322067986613322 0.2933536824877926
0.2493617074081541 -0.01105311217073674 -0.1676498172483615
-0.2627275266791407 -0.1387990431465792 0.187663062093539
-0.2377579595211453 -0.1087011541979188 -0.2231302897879985
0.2057715873620776 0.2011669057450798 -0.003282223473254525
0.2626155865949154 -0.2184291049956326 0.06793668560779229
-0.2201012675237661 0.272784005401188 -0.0273053626796668
-0.2470294992000912 -0.08603380141888664 -0.007028455424756914
0.2617446549660045 0.09053322029378376 0.4247092133386319
0.2149374405679114 0.002174008635034378 -0.3428451260105294
0.05985252571689115 -0.1608996561068917 0.4028095422992867
0.1102639454826643 -0.1081344873804162 -0.4864121580594574
-0.03113904095895156 0.183431417212408 0.3967298775433878
-0.06467069765234712 0.1369715454153549 -0.3797580375074281
-0.2535889118032174 -0.02615126637084296 0.3610570292937175
-0.2586409347642997 -0.06497802498391293 -0.3988730709143807
0.1605329037263169 0.4073329216045096 -0.0004745964288088886
0.1752904515511359 -0.3472316086503903 0.1780844647609137
0.1565045139305789 0.2646778077535941 -0.190679405319562
0.155641591705149 -0.3395190360971554 -0.1488289458422202
-0.1278080304588306 0.3766584862576018 0.1371871573604834
-0.1332603722049875 -0.3758703679531734 0.1138725043509576
-0.09601407253024791 0.3653222398600345 -0.214683136586143
-0.1087500074591807 -0.3653981790194251 -0.1787672257455802
0.3494624916321774 0.1555310949435758 0.07257120237128707
-0.4063861942383905 0.1142813947014291 0.1110019462509141
0.376840620422235 0.1605534927395792 -0.155245649470668
-0.3167807561927208 0.1292369582636903 -0.2170049977366753
0.4151733975967978 -0.0769417703289192 0.1816840488284588
-0.5174067569275334 -0.114976529983611 0.1863079466485422
0.368523334476639 -0.123506524989774 -0.1272223835564515
-0.3783323672011442 -0.2001662736199224 -0.03890328512092081
0.5660503911409122 0.01396672911009679 -0.02343996567416443
-0.5264559325997764 0.01808472767207265 -0.1542248634745727
-0.05329212301355463 0.5653089835976524 -0.0393746175465103
0.04218581522735545 -0.5507969579397413 -0.01398580474570347
-0.03058722574078077 -0.03773811144924708 0.5669098690325054
-0.03336937989636205 0.1160478515022137 -0.5606984621955674
0.3421023612789149 0.2964771480005015 0.2381866388768115
0.1552643207162032 0.3466835554980499 -0.3470023391588532
0.3235940412265635 -0.2575701064793925 0.3879042352453607
0.3532330101657565 -0.2414438754479097 -0.3121357458071028
-0.3200545538899689 0.2880141636286602 0.3232523619229835
-0.3152857658554472 0.2977105913197648 -0.3519715215144655
-0.2579698304115117 -0.3070899938073803 0.3304089638351241
-0.31864202323285 -0.3060266689032213 -0.3107939204586702
0.04640705583033679 0.4326231730861087 0.3120062319433795
-0.05299952179468935 0.4871140598441066 -0.4510138302876391
0.03472828797840961 -0.4298377756230736 0.346493490940072
0.06528162554817205 -0.4006430718246507 -0.3529407839725601
0.5317827784464632 0.0811450958631119 0.365765460745621
0.4083312652877366 0.1031516539884777 -0.3866175027395997
-0.4187102964883183 0.006700590362785745 0.4955723454311747
-0.4266766750387205 -0.04310321259641015 -0.5034494052037372
0.4119907743974086 0.3822962962885235 -0.0290865809699127
0.3802417457016994 -0.3698669109625265 -0.003370562406646257
-0.3586449780885344 0.3761224064167181 -0.02142954347353485
-0.3470098225315132 -0.4437673884685629 0.00794866574754982
0.2425305408776839 0.2951333332525998 0.5737296637475103
0.2486251497229456 0.2497601393860821 -0.6188163506591444
0.2623517861424831 -0.203411611803846 0.6329824276865208
0.2939662303098999 -0.2423613489118831 -0.5855106525698516
-0.1405915632886293 0.3548112600413553 0.5256167982689782
-0.274731780260377 0.2752106036109765 -0.6469722739177399
-0.1401464566113056 -0.3715732918773009 0.5793085956304647
-0.1287392417878346 -0.2753469124651822 -0.5824065326488262
0.211005472431204 0.6085004835815994 0.2396393657720023
0.2915080061316303 -0.5977117840258116 0.2309294850669348
0.2798221739825458 0.5706776419478348 -0.2145851573620796
0.3148284151499042 -0.5722013834448485 -0.2522537840413616
-0.2949628848996058 0.6019535843848925 0.2221977741794361
-0.1991228891499679 -0.6261015855443789 0.2448223472258534
-0.3830989017031309 0.572612833912425 -0.2312386838188939
-0.1942096086154813 -0.609058073410348 -0.2547106575671103
0.5937795403091265 0.4064813744813827 0.1633982971123819
-0.5890815256195263 0.2716954108468927 0.09601921228612674
0.6172916126275078 0.2918321361523759 -0.2523717018935478
-0.6556628151256066 0.1831661876820465 -0.3001393321797888
0.577972536077306 -0.3061215920053019 0.1413336477718007
-0.5611859882323528 -0.3665167115439805 0.271741781511767
0.6105124707919881 -0.1980932287645228 -0.3047178064147776
-0.6069143610121328 -0.2912520189297961 -0.1826564228545632
0.8004239795965118 -0.02402173509473812 0.04460626593569635
-0.7908849761778834 -0.003356377842138556 0.1163199220815142
0.006430484243720734 0.8011879222296479 -0.05328895404117022
0.02290554263953429 -0.8195425102845336 -0.03184926516689598
-0.08048407226616332 0.02967447447706706 0.7879106839598689
-0.02923148547450433 -0.01542391912851095 -0.8049113504922634
0.3528339882086433 0.6033768925914462 0.5063023232340952
0.3743917917883181 0.5849703109495746 -0.5092188771316977
0.5632556598507775 -0.3699185904095078 0.4942026371389567
0.5581735407576531 -0.4506637602555924 -0.5059752505952864
-0.5358000690446854 0.3443321124790048 0.5033809811655585
-0.5690064392323607 0.4261892145797559 -0.5627139550986006
-0.3904462143435472 -0.6041592124935505 0.5244774501474095
-0.4140704688430962 -0.4712754558866865 -0.524413941710919
-0.1410489745553981 0.5924726641995791 0.6173324956706191
-0.08527765845192437 0.6295586231369316 -0.6224405371228676
0.09065260060096886 -0.6520034847581111 0.5764372544510576
0.03266627881135552 -0.598099299880814 -0.605490915066383
0.6249359018630056 0.1169432879263076 0.5976091706344727
0.6150297618536962 0.1001552879095791 -0.6220171397010653
-0.6135080512857529 -0.0950039016634993 0.6225411907158073
-0.6237178015072786 -0.07878857160528616 -0.6261016002595285
0.5640991150321178 0.6995491938852333 -0.05792981872564688
0.6696436551488042 -0.5675624053147071 0.04951760702287089
-0.707233451366049 0.5424309084747446 0.03808224367484015
-0.5449157462389445 -0.6739996177470461 -0.009552622938512863
0.1880718683131692 0.3474444648902297 0.88127343742304
0.2195992653658635 0.303365910422942 -0.9128263636837478
0.313090013654573 -0.2226095578513094 0.8931598694845142
0.3556737826535327 -0.2838043256557898 -0.8719520801540066
-0.3760335314745044 0.2125074006400269 0.9136274355922089
-0.3362143552752738 0.2643684639043718 -0.9252101156733935
-0.210385625186485 -0.3593898611419003 0.8885226380109533
-0.2336898026239695 -0.3334135532355601 -0.9062981710286956
0.2311277142529969 0.9214173898754747 0.2726642902504449
0.3764445861289779 -0.8784996635755586 0.2475309849700109
0.1373685073500294 0.9623914963750405 -0.2972577182057311
0.373981041049935 -0.8559378652398568 -0.3236944968761138
-0.3476539029705658 0.8746217686717066 0.2499350067878593
-0.2220607234962131 -0.9542809664298295 0.2691807681915536
-0.4300976742896301 0.8492634815291706 -0.2741241899641326
-0.2577383011568493 -0.8881815565219182 -0.3659470548171709
0.8344494118088865 0.4306305919276675 0.3104895453144931
-0.936446459109171 0.2119495844709857 0.3473009885318367
0.9035208030196336 0.3187514475352727 -0.2450094002240802
-0.952537990740759 0.2061513658119818 -0.273059487435267
0.9547094454982384 -0.2027249165449125 0.2709591604980922
-0.8598696038257464 -0.4046964514987784 0.2952505740632199
0.9161796333163003 -0.2463290235735505 -0.3131360988632846
-0.8733311423379374 -0.3368788868213686 -0.2302143200211542
1.177823945769207 0.01398500465569447 -0.002836033978174617
-1.17435147342507 -0.0119853584001982 0.05068771946307301
0.01292667850314264 1.175395630181055 0.03109310419051073
0.03336565966298826 -1.169603780448391 -0.0408990126247213
0.01748397915910029 0.02142730990125204 1.1624459970374
0.007619899851074704 -0.01657106855636695 -1.168384975201266
0.5837434997332196 0.6725748885326968 0.6849438166839751
0.6075376633548309 0.6579715172095782 -0.6483960562825094
0.646013280584752 -0.6019562772456841 0.657090942139796
0.7054315999369416 -0.6351459910636934 -0.6687723515553791
-0.6235078191912897 0.6292809291419741 0.645143968707671
-0.6824418452230929 0.6206076389545701 -0.6958170253658283
-0.6315581023069108 -0.6549459522612098 0.6831636633664493
-0.6478832023726984 -0.6162094450097276 -0.6417461381024884
-0.02339267493154234 0.822866148892578 0.8297912444362229
-0.03266279240760345 0.828650897053833 -0.8380000372817866
0.03411978553811875 -0.8298342769825279 0.8236203546246745
0.04433429272785203 -0.8195385674803366 -0.8290185979707381
0.8120861947924655 0.04119632705376245 0.8273135737304494
0.8226367523432433 0.04669493274074593 -0.8344313714870765
-0.8336967410967613 -0.03432641343290074 0.8401699334953764
-0.8356504935729224 -0.02450274758253061 -0.8320012303631027
0.7938478600965707 0.8735232906282671 -0.02010884526512136
0.8714391637705999 -0.7838881534976863 -0.01292120517106463
-0.8735626209720835 0.7939178984679839 0.007116549518235502
-0.7818486647343459 -0.8687358168708726 0.002080928004232408
0.4248565549439203 0.4588470798618672 1.184918599026261
0.4186218743523802 0.4511918789307944 -1.18370531972795
0.4537007568286665 -0.4224797930043707 1.177424122843657
0.4618924741186443 -0.4284391187129767 -1.187404178632683
-0.4642392854296084 0.442481121796538 1.180658630689097
-0.4510878733280587 0.4025774350915899 -1.212858496007616
-0.3988048668026349 -0.4334030260832042 1.193070596809444
-0.4534312969399986 -0.4832048987670668 -1.165013025777657
0.4419818534590174 1.170058369630425 0.4838749277112857
0.4590910476214402 -1.160103993380898 0.4351160434797332
0.4198875012067989 1.200811643462227 -0.4573374612874279
0.5038091632683583 -1.163256879279143 -0.4564493091008806
-0.4720823831920021 1.156338276234581 0.4311919711892633
-0.4225833406794298 -1.196360977123544 0.4497599706135128
-0.4544297641629634 1.169532939255756 -0.4251501159992048
-0.4403389400878711 -1.161467552408765 -0.4944015503326153
1.133311533215648 0.5007630570100017 0.4607496275212869
-1.17131845926787 0.4552071717031014 0.5037682739238597
1.177086246493646 0.4605825143309337 -0.4299516495625303
-1.216412510016938 0.4053914440233374 -0.4279040187798077
1.181344490131929 -0.423245575993981 0.4751135603567635
-1.163662579546286 -0.4859304156134994 0.4316250684222316
1.203878493060484 -0.4099776072387114 -0.4671632448763687
-1.160686533201738 -0.4493194541175048 -0.3925062223079773
1.542852749598685 0.01932170678937787 0.02549930622228878
-1.539970810316426 -0.02981731891322042 0.0727041341072388
-0.03013428698977686 1.549107469996811 0.04749939724842184
0.02207560789083759 -1.54005952625727 -0.01527776297868652
-0.01755949810298593 0.01705179537811185 1.547947423460905
0.005913730692197415 -0.02748095732306982 -1.550705661008554
0.8931819497519943 0.8393481307609356 0.879470886535841
0.8535614126424813 0.8198851228939712 -0.8728006236659709
0.8336267578632029 -0.902174657572503 0.8050518080577369
0.896451265184687 -0.8646843332520272 -0.9051555967769094
-0.7503273456873705 0.9219231933156175 0.8730432654171382
-0.8705597834893238 0.8992655412049246 -0.8348387724109456
-0.8784506412064677 -0.8150744415050364 0.892750579456892
-0.9412503400579483 -0.8126096185935869 -0.7970745834359034
0.03634859007272599 1.112120935882886 1.076555755917342
-0.02688587689913479 1.097158386160938 -1.087496912742949
0.003922977771789811 -1.089509803126868 1.086978832942455
0.01545184698276079 -1.085139483959373 -1.094762333549717
1.089082619310864 -0.003652802153196523 1.07425205925387
1.088792544137437 0.005046926899833174 -1.099450026828402
-1.097617458084349 5.527605757106172e-05 1.099687131206515
-1.106054731261144 0.0136946108713353 -1.075873490479546
1.058055436309112 1.121814006671318 -0.02789689803878645
1.11093771181884 -1.064598562131493 -0.01626335719680023
-1.112470651701704 1.073199161249491 0.03683221445626598
-1.060404089990698 -1.112864242946713 -0.001082319397446824
0.6249568537219234 0.5898258524351531 1.536360229361221
0.6123759915166752 0.6198835148537881 -1.491768643319081
0.6109662485291839 -0.615160876614004 1.499432485920696
0.5999186701370999 -0.5935409805897943 -1.538450291151101
-0.6294228494978776 0.6672208489657039 1.479616515299868
-0.6135852062182067 0.596694590245866 -1.533702673211708
-0.6194827607536445 -0.6074635227108706 1.503076971988557
-0.6685562937515307 -0.62244432500205 -1.499838966645508
0.6131330402920356 1.530961940953424 0.6345707164799643
0.6359215366439224 -1.485503133376185 0.6388789146803557
0.6070421021910699 1.50151644894972 -0.6482232669705471
0.6397834286804013 -1.522416801868098 -0.6176192994023743
-0.6620516820804193 1.504830549346968 0.6324893991817877
-0.6100809060691879 -1.504489033538542 0.6425700111092607
-0.6167253207345981 1.506409561431655 -0.5879338774997563
-0.6206343463238227 -1.494773925496558 -0.6464602777557044
1.478384578007461 0.6486403583832551 0.6240089546774527
-1.516035663486105 0.6378023553983785 0.646413994386596
1.494123579048209 0.6404221930745569 -0.6152339400254841
-1.531290823465187 0.6145861390644829 -0.5808393423044742
1.476009324288432 -0.6349548529752573 0.6640206103920627
-1.51488121613664 -0.6379260024729978 0.624940410147063
1.547642923581313 -0.5841741268057261 -0.6244803774083989
-1.508339862797415 -0.5614269169638834 -0.5584913584297887
1.977390483502018 0.003977375220902438 0.08295541478813892
-1.991805156629817 -0.04218341252154375 0.01317253978149198
-0.03965593734563772 1.994024418951774 -0.07965671214149035
-0.02430669673678857 -1.981671247180227 0.07489436101457531
-0.1646820260313843 -0.01283676973792762 1.981698350223427
0.1069693587920359 0.02476543818273753 -2.001752946449793
1.316736653547447 1.060775226430027 1.075324662562081
1.009816660388771 1.141555360495791 -1.276584683669278
1.167250069027141 -1.243484495958441 1.045324465325582
1.15385569557725 -1.078682391770374 -1.278515514761483
-1.057544045828466 1.122619793276449 1.277653484346204
-1.120826365758953 1.291087740287125 -0.9867986129613856
-1.083158265742007 -1.110583488402644 1.264517022240823
-1.354239447686366 -1.084844323482928 -0.90615309797211
0.04749805797700288 1.431771003361413 1.421002158320131
-0.03347049905722888 1.423848306495685 -1.415297176457074
0.008308466250439078 -1.415712390275634 1.43267584521123
-0.002765992576612425 -1.398927537997495 -1.446218086555119
1.441140331957937 -0.07166723057256265 1.379151427577627
1.406105317129544 0.06092587972762215 -1.440648907564567
-1.452130369969589 -0.03384245786458501 1.410848911466906
-1.465045088464416 0.05184496591397974 -1.348927282384653
1.386162829023786 1.444527160675493 -0.111579957847372
1.441872817838391 -1.390342889308075 -0.06188948595589713
-1.469801024580426 1.391476642315109 0.1091541157177516
-1.398632798502617 -1.416150436506676 0.128948733575462
0.7524696319461555 0.6526933514441368 1.988195955841367
0.7764072924860297 0.8433631534370045 -2.045851714440871
0.7680225535026131 -0.7093768091641089 1.930183756698969
0.6997097979288496 -0.7335290281437069 -2.109125647175893
-0.755505231647764 0.7969725181469189 2.061313083536708
-0.8300006899574017 0.7329425863513785 -1.932148095820124
-0.7346169513883185 -0.808617092439063 2.083087596141084
-0.8712055656275423 -0.712183206534134 -1.912521215927523
0.7750812696546138 1.998445510954518 0.7321876188568884
0.7608189760476308 -2.015097154374023 0.8109305847460792
0.7169513277547522 2.034738667726578 -0.8239798570984459
0.7400491774530592 -1.999533252995985 -0.7298719481692091
-0.7501197378895644 2.011602984768982 0.7165618542863859
-0.7620289138693148 -2.051400089961334 0.7788418536296675
-0.9010737895261416 2.005099214529343 -0.7647865920445999
-0.8074018721910665 -1.89919959529751 -0.8074575961792981
2.032332353118206 0.7746389144882092 0.7415616536551376
-2.060429040733795 0.7446887363385057 0.7411606205354876
1.925333407661571 0.7754066395628461 -0.7445488304546584
-1.997261326878134 0.7832517841738922 -0.7778438354283856
2.0002625516939 -0.7367528603970188 0.8633105896241817
-2.070452521619721 -0.7427614691989797 0.6477664513497741
2.052362832097014 -0.7070071284709445 -0.7241686437794325
-1.984611426905434 -0.717089200633379 -0.844993976902968
2.604126049212505 0.1584556692279824 -0.09797268928280202
-2.662754656116258 -0.07353984696700284 -0.1162616576830668
-0.04241188059908782 2.642694458823825 0.03990920883364277
-0.1288059235814819 -2.583213054595876 -0.2585410336852104
0.2193517367760612 -0.009322757745765494 2.623882812013523
-0.3043013709491434 0.03559168162608304 -2.617960210236076
1.408343939362886 1.307896627874743 1.599926004728676
1.738181555965365 1.409520335086468 -1.199960354670456
1.202539446979208 -1.319301784562084 1.825035235804916
1.485253483143955 -1.569656013027542 -1.352357211291306
-1.350891575518425 1.621950173879674 1.290941343049492
-1.450103757937227 1.355895222309536 -1.660476181259811
-1.691452579273995 -1.318221966344361 1.231081511580679
-1.417773010865369 -1.490578664290988 -1.528099279046168
0.1348363516120934 1.848224596471531 1.793095936891008
-0.01543375529470718 1.798696279129852 -1.851106471542766
-0.1511563243896744 -1.857625938632619 1.861063664502919
-0.02520142158279692 -1.79490369970935 -1.879029437854138
1.853455367984797 0.04407915877953558 1.838092479771452
1.797623839117887 -0.01639429380602708 -1.853237433827674
-1.829557801504257 0.05412840906023621 1.812323859966852
-1.930580016430936 -0.1005434260928765 -1.798189954046204
1.768859165343617 1.890223228308224 0.1892802338319977
1.829441781849221 -1.778516847356245 0.1390066908625141
-1.968752143832773 1.791336583213709 -0.1247939032252967
-1.805419747779519 -1.78007737105535 -0.2296147340270876
1.195623020853888 1.3243168898297 2.45707145344706
1.012849771247727 1.135930351329569 -2.592010065530942
1.194500021158094 -0.9079301657471824 2.650599958206918
1.128427153756077 -0.965656838410345 -2.610664914145739
-1.013342680816859 1.093634804916588 2.550411068770173
-1.267947786002833 1.358141668725051 -2.453886284040411
-1.334269732063829 -0.9717032789718243 2.500064070774558
-1.17651434340696 -1.068619571627034 -2.598332029994605
1.038418061951591 2.575218389787437 1.163167593400101
0.9833822250959046 -2.566187009579751 0.8721632656227677
0.9918232954436824 2.541792452212773 -1.221658981854626
1.225628743731193 -2.481739612914033 -1.110717462445567
-1.171442003003852 2.431475725963368 1.257324931195058
-1.367202139771223 -2.492585017208216 0.9173329098977424
-1.169150625018668 2.572936542493371 -1.075669002409956
-1.105564220399234 -2.607461756253165 -1.166649569452684
2.59108949275085 1.053659858030793 1.081535653542444
-2.542890688666885 0.9197515409590904 1.271187045821077
2.567981878316834 1.071279993518768 -1.237528458106233
-2.662201864945083 1.01877743604531 -1.106334146392436
2.490691436255138 -1.115763766025545 1.00080588475971
-2.58233520643778 -1.184688420136945 1.024464602999098
2.564086696872634 -1.118895739898431 -1.056184706097108
-2.479369323483556 -1.414885474612376 -1.118605753308427
3.351923722150314 -0.0199206292908445 0.1584999244385096
-3.481443926415948 -0.04062528818355428 0.006137118137579309
-0.1523186993243527 3.400589210574235 0.10075873889994
0.09123000667541475 -3.341869367663458 0.03881579531732692
-0.1513574424096206 0.1042822104769738 3.368140346482602
-0.3219685684635396 0.0789164583807157 -3.401952630626515
2.08124121782902 2.113394998687352 2.099803994331789
1.970032884487348 2.10569330050149 -2.284200492602648
2.024691033513353 -2.152778447872386 1.545807730778423
2.05196763984035 -2.110082280708606 -2.07243419822953
-2.009929249638201 2.080776906376428 2.117447493379728
-2.088105147877319 2.063731239145538 -2.156804346507924
-2.156919011662423 -2.11278470080976 2.076126159316592
-2.023173776595941 -2.162974029439012 -2.161726479259091
-0.0848859349230163 2.561852321824289 2.424938421540483
0.0555922782089339 2.543116944970472 -2.379935128430514
0.01684552457773204 -2.297159599016104 2.374163590624796
0.1134061642879988 -2.364767786339292 -2.414560964346357
2.426257045661063 -0.1541078958868485 2.441163487974228
2.426153591578444 -0.0009621165487429543 -2.465316890019538
-2.499980714110479 0.09277346408956869 2.476982583163141
-2.577659400715117 -0.09594886188875135 -2.299499328368602
2.260703181500518 2.40512800911256 -0.0396872418196611
2.458140694699315 -2.419475036181998 -0.1797522247703624
-2.558758492522371 2.339019499665369 -0.006414859494031937
-2.511204186050534 -2.630273390347561 -0.02393141733609896
1.154766496117868 1.198812810283649 3.627104523458622
1.208320874433144 1.060068376862005 -3.655354133282251
1.489606175619052 -1.265450616056264 3.421143441438128
0.9257990293385789 -1.371692077461744 -3.622858099941133
-1.496413547792328 0.7787848351996131 3.672038456781464
-1.727815999356561 1.283472811902839 -3.57352847922173
-0.9022243112932599 -1.783203222480883 3.475609502393407
-1.574969758011915 -1.220546834822096 -3.569000861970708
1.474884343040914 3.546900390155399 1.203339996280052
1.613447867582087 -3.12665062703824 1.841994097218737
1.538647760221158 3.508163781781971 -0.9918212912933829
1.08860302478018 -3.725678658873497 -0.9030247536279544
-1.462943195512118 3.46218729067113 1.548839769569281
-0.8845478971583898 -3.645902024117111 1.287718424974119
-1.396542698026727 3.664393113377564 -1.05860985552403
-1.101454057973499 -3.497404589717709 -1.655782014778983
3.48796213555099 1.480699352706695 1.163355620383272
-3.60352757644003 1.46198781316768 1.250271364367095
3.41394561290115 1.628923161545361 -1.031440088449349
-3.59683212567236 1.549057442011425 -1.514514781924137
3.443890138244505 -1.298509491869464 1.437654125434517
-3.556945842880242 -1.186337604334056 1.505138455559101
3.639108200337415 -0.9848446182226358 -1.195306554284236
-3.729402097329031 -1.076857505379688 -1.541302839960129
4.845312773168573 0.03787487394005375 0.2394575240585403
-4.944823140346304 -0.1758280842991506 0.3596773076555387
0.1019164932140692 4.902095642742884 0.1712345379575242
0.06063188692399511 -4.876498203487061 0.2416568125017885
0.1655222648502688 -0.06447681207668809 4.919034793689886
0.04146705319095172 0.003869805147095075 -4.89188270465514
2.702581312788443 2.892093673396519 2.696800495898342
2.35706475562307 3.081354836134599 -2.908903307786496
2.781673507290731 -2.809541222240711 2.833765684050001
2.575189061275359 -2.432447874572548 -2.763896108480655
-2.866663870292685 2.668826136391118 2.737996434188813
-2.165344662297093 3.416573678999191 -3.020105251483101
-3.06744313656594 -2.819913408225287 2.484363953830747
-2.835964044029698 -2.71005086327565 -3.007560576557134
-0.1289683562234581 3.199045664081039 3.37644955953718
0.2691442417122359 3.214320780883968 -2.973968340794601
-0.2923207232574779 -3.33831701946747 3.515105874120311
-0.04631514233828491 -3.362247640991134 -3.175930696400572
3.289685241734711 0.01559418780975286 3.303395538052142
3.411533595309291 0.5071561205468393 -3.015675320353148
-3.188140592103135 -0.1232009945365303 3.613638337516027
-3.483631382761502 0.3859146052507671 -3.639712128237158
3.508200923450151 3.285614103105363 -0.20649428778512
3.251544961058586 -3.185828115808797 -0.03372629766604525
-3.44336760972401 3.41902059125433 -0.1806344127852821
-3.023150610266606 -3.525711594801915 -0.1620710726421848
1.359904219652024 2.456350790129576 5.036376934890343
1.51388643179589 2.387217703157708 -4.825129434974687
2.949988424320483 -1.196332618702644 4.960569514393391
2.478272812784863 -1.706998165031572 -4.647786863182175
-2.509769332258907 1.714885470357411 5.044032124503071
-2.655925251619973 1.784235906832224 -5.149015689392082
-1.435886964062079 -2.487881289019872 5.162688682301352
-1.224925882980008 -2.571165191052551 -4.993623065969836
2.53343092441285 5.046250907680286 1.599943121855874
2.037960944203543 -5.094388599208396 1.947308006555017
1.223040280637771 4.983982114598675 -2.553996291815554
2.104363426737117 -4.61309997005819 -2.156133131425493
-1.750988358715807 4.860648838466554 2.542476384478692
-3.070528481540447 -4.886465795117944 1.486755200501434
-2.262025170135965 5.206959434676064 -1.818316248627321
-1.453197948171236 -5.1325378089878 -2.077590990737237
4.917974082394578 2.174238799423169 2.37514514375995
-5.044579220305046 2.504676912609303 1.657739198012752
4.911806242193199 2.074924980204122 -2.235170104907484
-5.209605215748097 1.450323515142874 -2.045736495708614
4.929543011783941 -2.521114039942873 1.700116586483068
-5.012606244536265 -1.580972518636582 3.060638191531495
4.663148600267614 -1.994067540402116 -2.085275378285944
-5.093493644766228 -2.435281950198815 -1.430347232393282
6.993739631169552 -0.4007461342664101 -0.3805115342859933
-7.182382228533077 -0.4642033663724447 -0.5904600166104819
-0.1594608786039972 7.119903990769828 0.4830380175369648
-0.2048779227091452 -6.95987289567551 -0.6105699232812891
-0.4142667347097496 0.4280353204299259 7.142265842112876
0.6990877058544366 0.1516644182088555 -6.984367075291605
3.839831768827596 4.072518024127154 5.227124445493131
3.381009110960068 4.766958284438821 -4.01362378939394
4.009271034313797 -4.725836331578059 4.543613708897285
3.615691258507394 -4.242824379876033 -4.19457717912631
-4.71222050984991 4.482412682099389 4.471595522594002
-4.727995238613324 4.610370390272772 -3.585713264760944
-4.529269059831705 -4.228102481022247 4.922169392270656
-3.839819671347991 -3.35963712091775 -4.696617621859501
-0.1758098694295293 5.156583877294343 4.950413069596338
-0.5148388395022928 5.22879804717689 -5.348975770842143
-0.07089557722072225 -4.987084132660687 4.69516189363478
-0.2697147519824092 -5.380834049402719 -5.231409095749873
5.484630195281142 -0.2849913379192777 4.760516694867756
5.106657570695088 0.07605899055065976 -5.159661652934566
-5.335361125448053 0.3564714917540546 4.865441143064577
-5.048288876655969 0.2703185730856468 -5.416436616585425
5.364010880559047 5.073087103071702 0.1511858973570122
5.04132793968448 -5.099742614136098 -0.3451086865426394
-4.890503186687419 4.852774091173615 0.1461587159053055
-5.338411356186613 -5.308932969409673 -0.2513910241132256
9.19680369059723 -0.3585962030222096 -0.3677447356795608
-8.025252677145835 0.9665632393332847 -0.226010574411178
-0.2955616186339088 8.282948296908661 -0.1089176850108307
0.1466942462242453 -8.338759656632075 0.5580996481789744
0.2603488834414831 -0.5956003832904383 7.926595704105202
-0.258147132930659 -0.6362626503814359 -9.389864601131507
6.02778438788821 5.678518601814344 5.35445299291894
5.795701449899348 5.284698027288109 -5.935358289343632
5.878472071363733 -5.562444690568816 5.742231089314454
5.67072287849816 -5.822441459030948 -5.420722319031658
-5.187249278905354 5.826547760524047 5.09077245965361
-5.27998540249958 5.315269685764982 -6.127340981351796
-5.368001881450867 -5.376489152595099 5.430244165566164
-5.523108024875225 -5.556090525538682 -5.375616654630303
13.70576161372382 0.1217675877086654 -0.08351571056542266
-11.23396238741646 0.3722230852459089 -0.3650004901581033
-0.3805112857236144 11.35964976795622 -0.5882306862630781
-0.9911680052058099 -11.51364496692126 -0.332209824720146
-1.10865091488242 0.394676772260324 11.14883215358979
-0.03381453659337393 -0.07729580605798375 -14.05503039930639
</grid_points>
)"

View file

@ -1,578 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
Def2-TZVP realspace grid (Bohr) for species Cu
sqr error : 3.270393306629847e-06
penalty : 5.413075276743474e-20
n points : 536
</preamble>
<grid_points>
0.03549311966656869 -0.02042542972378697 0.02445403204804362
-0.03095609268314866 -0.02847123823476973 -0.02134385776018504
-0.08067855073428219 0.01413396070820312 -0.00897526879356551
0.03122827870114172 -0.02540152251681444 -0.02444607724640848
0.000377597107695648 0.002678199720910992 0.01940404436808569
-0.0004356524711342142 -0.003223284575022746 -0.01705082369198454
0.02820176868369118 0.03550667700353257 0.009860695983962402
-0.02997541609406886 0.03562238058430454 0.003886281999916702
0.08107487621298604 0.01475686044560436 -0.01213731555866585
-0.003814690821218819 -0.01100369410166802 -0.07613416598236457
-0.07065218434192708 -0.01868351370979849 0.08200176431966713
-0.07180474925152332 -0.0249553483074015 -0.08640390491411486
-0.03360112021751507 -0.02112136457310949 0.02692924909107659
0.004026004218942827 -0.07670330702213574 0.00851240625564227
0.00346277069920225 0.03302139427200269 -0.0345087154870526
-0.1539446825962839 -0.003904128431403642 -0.002406823091534817
5.023248565566292e-06 0.08771418936070015 -0.005151051023534675
0.07732149323793673 -0.07971010095176721 0.003129124935342109
0.001748499917907513 0.01967951705340831 0.07457983311512352
-0.003055455245844284 -0.090336280359353 -0.06957679650910636
0.07775828644961016 0.07890653627443524 0.04772797392668802
0.006772832171885582 0.0580751730460679 -0.09881841727908344
0.07587015300201229 -0.02420926266172858 0.07705659747921324
0.07425922177804842 -0.03101895874014871 -0.08290463520887315
-0.07715858713873648 0.07712665205731455 0.04580916122077976
-0.07572438294772911 0.07722468056978661 -0.05602933601824234
-0.007027779292263715 -0.07912930509760924 0.08236531590535301
-0.07805123342084494 -0.07459771190370332 0.002720594657396003
0.02011631413293051 0.1426689682287226 0.11971011625155
0.0175134678976534 0.1303470600850482 -0.1215252496687676
0.003855154335338953 -0.0203925391851307 0.1585100200396951
0.08390786828527258 -0.1183200902069355 -0.07357853873768808
0.007287017047009454 0.0743651087543757 0.1043476770202995
0.154516017087069 -0.01599096663862359 0.001371875866682581
-0.1053570072310686 0.06168910593658129 0.1213127290813
-0.09361326954384432 0.04503895001512758 -0.1336514218317495
0.0771845310750286 0.0794114711731241 -0.05950081704401167
0.08343911554647311 -0.1104170638554211 0.08631900143844283
-0.01273072335808773 0.1550261470276193 0.001492929712004021
-0.106079380909577 -0.08723096243867288 0.08662461744933131
0.1641038388983933 -0.1368036350244663 0.01159895429059378
-0.1931863717418678 0.002288967666572572 -0.09759885685528644
0.02498283498138418 0.2333226289448878 -0.01362771045902105
-0.02395985686567095 -0.1604207110286492 0.01039700176457642
0.0104536661957901 0.04321711456876345 0.225404107153338
0.01307514348727089 -0.0305303750090815 -0.1583965200902998
0.1479457393619686 0.1600175759577894 0.1325017660764198
0.1262965415321234 0.1314662247247682 -0.001674370141409042
0.1544456848586864 -0.07159905996138945 0.1737792833614408
0.1551658499368982 -0.09116663060199157 -0.1555916472317718
-0.1050461894708698 0.1820615684447938 0.1226135135764381
-0.09956861942020052 0.169165475025455 -0.1461020988924377
-0.1387228359060653 -0.04211054283377132 0.1792158953897302
-0.09742826077839063 -0.09880405890974653 -0.08255343908905023
0.006218563380900223 0.295414696509301 0.1282420238232138
0.02386334845091273 0.03472016804344772 -0.2287021811400566
-0.01019951581864777 -0.1486421294507831 0.1530666901457776
-0.007737107226902319 -0.1580070589234719 -0.1421774764361435
0.127610993080545 0.03225530605251056 0.1210696424073882
0.1329683607053984 0.02434206789205849 -0.1184023424064832
-0.2223037213013215 0.01906989750356457 0.05067362431250018
-0.1216282126326469 -0.06448605441679839 -0.188302099220458
0.2326819483969122 0.02922681862075752 0.004752091809944291
0.0291224420419336 -0.228388190494403 0.002045760944118027
-0.1372591203430995 0.1319987304364982 -0.0143693499065027
-0.158507432875979 -0.1506974969973877 0.00278777704916685
-0.02086103063785735 0.1635988075688746 0.2596596103347049
0.01104883252650696 0.1351278577722561 -0.286307628155257
0.1389642948308338 0.04195636865895967 0.2839194633911944
0.1427057172919723 -0.01750627591971219 -0.2827283378573777
-0.1627685191018104 0.02660560666657948 0.2616487112212541
-0.150127213079912 0.01548736539143555 -0.2687669161126734
-0.01461279907265104 -0.1275804732308185 0.2719881162908188
-0.001488909110884855 -0.1525529511940187 -0.2595563489946769
0.1562736091426484 0.2770900309348789 -0.01873428169167029
0.1107223733807068 -0.247383091349973 0.1195712243661213
0.1522558570551968 0.14287715962214 -0.1400527018764742
0.1209179768605187 -0.2557686397935841 -0.1082620997094077
-0.1506097354025649 0.2684792653410525 -0.01608721463313401
-0.1088016735390369 -0.2403434471222404 0.1146634664653396
0.009577445403438366 0.2689761321656111 -0.1696274781715484
-0.1043547762525697 -0.250892118120126 -0.1016521459311344
0.2846425029851199 0.001581315174463172 0.1498890007827972
-0.2588801985527545 0.1220520318613741 0.103405108455869
0.2814696451742502 0.147117703628012 -0.01276768518091488
-0.2573372285567409 0.106268087109822 -0.09878059214175156
0.2668658428872253 -0.1450590730036756 0.00292683663656533
-0.2650519911664076 -0.1016965199618165 0.1044677945665592
0.2739251616681407 -0.0115836001015428 -0.1531268899075943
-0.2578413350583108 -0.1099831865465975 -0.1019773058595178
0.3986509385919954 -0.00396422756573862 -0.01831015730170237
-0.3871247516945062 -0.0020586995716531 -0.001148855784591402
-0.009186232887405721 0.4012622195582022 -0.02526319472930992
-0.01192096421857318 -0.3780275249393228 0.01068290343832114
-0.02292198197533566 -0.006950334993015541 0.3951762629251189
-0.01694413113359979 -0.02331376427091533 -0.3974110978615727
0.2301895349930355 0.2346875806382334 0.1665768417925681
0.2179750849057978 0.1957343169022873 -0.2088262492592909
0.2166105164575239 -0.1680088171320618 0.244661563873032
0.2407114554740373 -0.1905655072418817 -0.2275075135521558
-0.1830710588906783 0.2643243930827804 0.2070943961576591
-0.18486595619427 0.2334940368104476 -0.2334883929255101
-0.2113341394009296 -0.1942516419360625 0.2402377864391799
-0.209122055560833 -0.2113781548439042 -0.2309746643008727
0.02640457272025576 0.2627413682309883 0.3145231762348599
0.04027126077391618 0.2757942657308134 -0.318128087438783
0.01180969285983549 -0.2847009633459424 0.2684307099526954
0.01299287433235221 -0.3032328245373885 -0.2534681668323103
0.2811355628231055 0.05574451215958689 0.3124123399230562
0.2841154119856351 0.03183892299443541 -0.3138528967360091
-0.2995283472001388 0.04717464961996199 0.2653749233205758
-0.2961162647995583 0.01215688309884352 -0.2631350752467505
0.3016021931692839 0.2970718673564721 -0.06312815716294225
0.2609106916623553 -0.294310858026132 0.02422682145812757
-0.3057554318140188 0.2610204276125935 -0.01549878241202819
-0.262756145848093 -0.2745759800344234 0.01192146748491207
0.1585669778212504 0.1872175243684027 0.4444291609480936
0.1537051969925262 0.1412319753051033 -0.4563682396101574
0.1592881484145344 -0.1758062930598398 0.4236655211859138
0.1666665588459241 -0.2108603178959156 -0.4149726434038332
-0.1886314569278341 0.1862741556721742 0.4203574324790446
-0.1906342037570171 0.1543323872460801 -0.430269443120588
-0.1763008358157766 -0.1696420502762704 0.4198053617403614
-0.1907941669255394 -0.2003581688417322 -0.406178243590501
0.1638537893914174 0.4155589229155161 0.1679641761959919
0.1657721728326785 -0.4216676744805584 0.1853529740856999
0.1739622926423256 0.4305515810963409 -0.2040721440295508
0.164882770779052 -0.4310845089960731 -0.1444482569207871
-0.182195446158071 0.4236892628832524 0.1617423214271608
-0.1769214711552985 -0.4174153580656169 0.1781094011773959
-0.1971505426182034 0.4192548921598787 -0.1895594890901699
-0.1890923032915757 -0.4243224238972535 -0.1370127460799997
0.4295181835795582 0.1970757757616854 0.1516895923467111
-0.4361797051204595 0.1906238028494191 0.1538919459760636
0.4425911795845054 0.1432609383611315 -0.2009499746245929
-0.4325169885272044 0.1624642011745059 -0.1856652507533716
0.4039824677207413 -0.1679910336566314 0.1906208272136108
-0.4104643305378381 -0.1741819941755413 0.1787513868215896
0.416930308974115 -0.2180405829548854 -0.1464768569144259
-0.414350102997897 -0.1960826627508781 -0.152300882327106
0.5829094016295244 -0.0389722532999622 0.006647672105140771
-0.5835401264934869 -0.02546511606146603 0.009716249460898507
0.002258898300980091 0.5862321700658845 0.02626107615008708
-0.0182388162942817 -0.5841188068731069 -0.01339376371196941
-0.006676035307945382 -0.03311141997528334 0.5833313371734344
-0.02051384854714499 -0.02157375695407634 -0.5893685609577987
0.3433866555622046 0.4204395763243883 0.2579345574605302
0.366691769367088 0.2619851399623329 -0.4063079510539161
0.3596733900347435 -0.2990475694171558 0.3758987247268885
0.3534763652957864 -0.424890906716777 -0.2619003227522013
-0.316181891250803 0.3910859000600619 0.3320363412526054
-0.3740872082744714 0.3134898666392165 -0.3790934032352118
-0.373830786050065 -0.3060750954822414 0.3547971922589726
-0.3858501053472936 -0.3829990498722604 -0.2767612651016209
0.03487812568708152 0.4475150206693694 0.4035433848823158
0.008165247957904498 0.4077792664063692 -0.4465541350823432
0.004934494443573128 -0.4145569817987332 0.4316364066181538
-0.006980313855327457 -0.4527456683204983 -0.3850567233930681
0.4197047349606587 0.04091987423319911 0.4227328330809076
0.4166093219549341 -0.05624147714913723 -0.4352991342871772
-0.4318771780743585 0.01872049233445874 0.4149805802279627
-0.447359351829108 -0.02248068793988436 -0.4076793991409479
0.4257009084125162 0.4290257390478054 -0.04404368378422269
0.4073543405363251 -0.4413855019975174 0.05867084566127807
-0.4350443426846523 0.4231547146961283 -0.00291883328415337
-0.4305380544218286 -0.4264928273149539 0.04119218313342231
0.2339719500606668 0.2425723867995541 0.6051925039807838
0.2037274996555622 0.1935021038139899 -0.6559508476219584
0.2333912201858561 -0.2224255346593521 0.63853838676898
0.2235792955637948 -0.2971767470113563 -0.5929310561919966
-0.2330950068840455 0.2475607810209166 0.5953792210132755
-0.2270462905646661 0.2081602705923084 -0.6372142495305561
-0.2412213102016875 -0.2184767746427506 0.635330883223521
-0.260706022091425 -0.2835264832223683 -0.5775948091825817
0.2284086642910067 0.6556932034279102 0.2117332272972303
0.2113629709152966 -0.6190791593646584 0.2358901057375301
0.2364017347478714 0.6024671631906927 -0.2639780054299734
0.2089986169059991 -0.6617254137629679 -0.218340904656874
-0.2395874438003753 0.6333288830976908 0.2238985973213567
-0.2304339282285728 -0.6034709074166988 0.2649700634154823
-0.2360575875409447 0.6064359909865081 -0.2359955543836887
-0.2366849877294767 -0.6508340714717301 -0.1949641532814946
0.6089543462503744 0.2672913978151127 0.1897548598989699
-0.6193207308243703 0.2590005355494541 0.2100107478024283
0.6335848563518401 0.1831837915034347 -0.2346596173744923
-0.6467643657110792 0.2008755413013732 -0.2276456397201542
0.6258584263607858 -0.1931663187401278 0.2694247854973643
-0.6256103201521412 -0.2127438781998212 0.2597362077031106
0.6250548487593381 -0.2773252743745917 -0.1888954736650406
-0.6458184340135648 -0.2627755484190122 -0.1796245621737386
0.8149974676971368 -0.001529948562688895 0.001975300901744888
-0.8235075574861868 -0.003638715132785732 0.02646411874101288
-0.01418783658891887 0.813539201298672 -0.01520797914212825
-0.02445594539081154 -0.8166065865890035 0.03542606724298943
-0.01058378568851348 0.02566919074142808 0.7989740567172188
-0.03173709252763215 -0.04911986073632457 -0.8063966294362368
0.4787593490058853 0.4439020472713658 0.4795061166661579
0.4902292808598634 0.4298349977430914 -0.4730478916237748
0.4582356129918323 -0.5030849666506463 0.4139064230977869
0.4740771614048661 -0.4979278145209931 -0.4598550395929774
-0.4489089183603311 0.4671367602398422 0.4996965781244748
-0.4664059176822684 0.4788532669725766 -0.4752086334498873
-0.5043653521612769 -0.4966920656636526 0.407779230937697
-0.5013765711107919 -0.4518383055150475 -0.4742574615519424
0.01054647469064781 0.5811506539582733 0.5905392674210242
0.003936235010481491 0.5801615954468905 -0.5829714782723122
-0.01389328338902107 -0.5824990407663069 0.5998844390091476
-0.03057921554450366 -0.5948777524274957 -0.5808674112126623
0.5771761305862569 -0.001248019221431016 0.5815053816511316
0.5789164448720641 -0.02139330097036367 -0.5830190321123185
-0.587606782904225 0.02099635426378568 0.5838386864373615
-0.5959060150975594 0.01829045387459674 -0.5821758254475979
0.5820861394039414 0.5797412448880416 -0.004185673843475886
0.5805602992132674 -0.6050915152813349 -0.007793765684757902
-0.5879134191674166 0.5865543900309235 -0.01030942862594519
-0.6011411359976803 -0.5979050248598912 -0.01675998914910475
0.2490679478282297 0.2479826349858149 0.89023706268683
0.2659200397299901 0.2703318606011656 -0.8631953398914581
0.3910031281503624 -0.3662827888387119 0.7977221523630106
0.3048986983818878 -0.3193463627695859 -0.8491479558658878
-0.23870793582389 0.2506851643459605 0.9017861609893257
-0.3009235702747115 0.297381565914122 -0.8567646322306741
-0.4106807779964737 -0.3630124754310698 0.7884318843236522
-0.3281553817491132 -0.3071197079065471 -0.8661310468869483
0.3111551969868295 0.8591168925750449 0.3077761378470458
0.2521430038114235 -0.8808826283933737 0.2659922230885833
0.3097066202300637 0.8449960687127532 -0.3046925661696741
0.2948307176641823 -0.8757348999413314 -0.3126499143676429
-0.3166358425714415 0.8517376415775328 0.3137734081984892
-0.2673701289589248 -0.8878819095433268 0.2969911412637547
-0.2982675889640301 0.8599949870914456 -0.2980412928157508
-0.3025292113933785 -0.8726799930641191 -0.2925896245368882
0.8563484460998217 0.3135705428737825 0.2899223913984654
-0.8490187829066488 0.3399401370358195 0.308716110894425
0.8663699249495803 0.2910465940934039 -0.2837339066589383
-0.8838301021077657 0.3016777615098241 -0.2665233440493371
0.861093351978596 -0.3005653424160787 0.2875341491549459
-0.8735509985404422 -0.2978026040840872 0.3070812434274239
0.8649402352341388 -0.2826706772073823 -0.2925168281088911
-0.8853940230989442 -0.2719408183563716 -0.2989079485134537
1.071210812748854 -0.01197523728938805 -0.005488152737124905
-1.085467307467609 0.01232254529684959 0.02573784366658949
0.007489364808873258 1.101919828202146 0.01208211057428701
-0.02139815595395065 -1.130839595831185 -0.0003329685594764708
0.01662547513246269 -0.1775091848614082 0.9346320105957436
-0.0004020018178992057 -0.003458662204008841 -1.116044360905883
0.5688161923813024 0.5580793691900398 0.6408869485720926
0.5544817976612154 0.5636872517889203 -0.6310561728014678
0.5940380998966531 -0.6883953667800848 0.4707157005765069
0.6261170784816112 -0.5618299363386188 -0.6208555382922303
-0.5642159505176547 0.5290275821210432 0.6882616340091559
-0.6243995367764554 0.6003096147827772 -0.5793238161826899
-0.5798022373431694 -0.6948589390899408 0.5186953679831512
-0.6329436683922189 -0.6062358830387201 -0.5685282289189364
-0.005912803336746724 0.7698773666662684 0.7726663261472154
-0.03379764636958663 0.7635898675076506 -0.7585989589666509
0.009319188142202355 -0.7799585285836159 0.789683330355864
-0.01495711566987412 -0.762504020850731 -0.7725328276403578
0.7555957354760636 0.007752136739486909 0.7259732036642275
0.7544313195463944 0.02207710017457418 -0.7776021560816305
-0.7809301197107358 -0.007654526745283879 0.768961291388364
-0.7749267489068672 0.009732546885295734 -0.7877330939971044
0.7522259022055956 0.7731991542403708 -0.01830952963320621
0.7775510452215146 -0.7860105278373776 -0.01545131657504661
-0.7621339352110683 0.8005158373855189 0.04014374970161114
-0.7860218264814285 -0.789331576747027 0.02650685842564696
0.4675318052158356 0.4574727979894045 1.048351871879264
0.433907079066475 0.5031219823764919 -1.019240789259413
0.5085119132892462 -0.4699079918798391 1.010085327976029
0.4892879130376404 -0.4394928186472591 -1.064618712535299
-0.5130898341919906 0.4658027024480542 1.040485836315823
-0.4516352748554187 0.4910769192198632 -1.057534231890575
-0.5133263398622847 -0.481608405450808 1.001691871586776
-0.4818424322572537 -0.4526690444418878 -1.091158274947842
0.513077980818844 1.035478658277731 0.5116199000237092
0.4845679293329903 -1.062381055477402 0.426694070104881
0.4510967492153477 1.034633014613997 -0.485843288489814
0.4612746640757516 -1.074949749359485 -0.4830681466313171
-0.4511438375262912 1.054168174338441 0.5130233805467965
-0.4772028728423746 -1.072373491149443 0.4919778714302373
-0.4323000495274005 1.059113192428399 -0.4934940654207378
-0.5038883603730219 -1.057416296131202 -0.4940948376351126
1.082040090982408 0.4709591987513833 0.4080827997776693
-1.08428498469607 0.4529641555535919 0.4785560011528522
1.019891572260313 0.4760479777309441 -0.4852171852819493
-1.030253216086229 0.5435469368831668 -0.5009258709748773
1.050606379138431 -0.4916473903029388 0.4350490407407394
-1.120420606813136 -0.420865987512302 0.4202776866064819
1.017566625488169 -0.4738891174275969 -0.5152842823934649
-1.065604074178076 -0.4384210871908406 -0.4968949331123745
1.241478010082353 -0.02865309442601041 -0.05461025971109584
-1.253276743137641 0.07643808882678858 -0.06852301964933064
0.03531538079790616 1.337036496935764 0.0391552003095194
-0.02122048346460982 -1.380296513070974 0.01715635817752225
-0.008919343910308861 -0.03397689342998366 1.168805349751661
0.04062830256304824 0.1105433216060281 -1.389289643559589
1.253073204854182 0.6068935151047162 0.6875056052187172
0.9462924651438087 0.8558214578999721 -0.8426697366000895
0.7850973639794924 -1.103141392011814 0.6870551311454605
1.077883041962729 -0.6960605689296803 -0.7980111806045761
-0.7509346345918502 0.9042307853881363 0.9882890101950341
-0.7206410011764834 1.02723915886317 -0.8676118785853069
-0.7079341266506494 -0.7587622894209226 1.09394583910553
-1.177728034885457 -0.6724009808318103 -0.743213422161191
-0.0076891977579039 0.926068369377543 1.075733745427805
0.1136256992396789 0.9755247555065888 -1.035412589427753
0.06450743621100596 -1.015497790901267 1.011757141396673
0.0594399069093252 -0.9272104902748147 -0.9972756193199218
0.9365095589063912 0.03911813106419483 0.8552075723851462
0.9485397780599869 0.1281191002027549 -1.029475715643715
-0.9935479524048768 -0.01817052309536122 1.021673819458273
-0.9691936820586908 0.1124589103952835 -1.065444968888363
0.9659537896882936 0.9946312178276105 -0.1342434030982236
1.091593177197805 -0.9524756816062835 -0.04445104085850212
-0.9707733611515994 1.059637936335673 0.03567611177141581
-1.022332859983635 -1.014832912262401 0.1137372411449467
0.6527342394516352 0.4539205284004466 1.306252844960287
0.4668903745238038 0.5482310509478062 -1.529396777226982
0.7407900822283973 -0.4448184663890291 1.236705215994453
0.5530055935893775 -0.2940698436588663 -1.80631657727823
-0.7689788914071002 0.1756822860348621 1.502013799095337
-0.4985777932405455 0.3649725222633062 -1.549664404308465
-0.01745716253494934 -0.5190805911946508 1.720382990948381
-0.4160306122020325 -0.7078367582954982 -1.384144814574493
0.6631091790762876 1.299203953397971 0.6409559085066235
-0.047332503228462 -1.860461069287007 -0.1956193064874284
0.74221372743961 1.499732774700153 -0.3059166173370577
0.4293055912808907 -1.262303858901529 -0.8949904558045093
-0.2728632982077239 1.52248088399277 0.4718221179675443
-0.4905107466452397 -1.487291023449879 0.5051389861547784
-0.5426472650790597 1.663394599097024 -0.3554177472719496
-0.4623883714548339 -1.391945811716427 -0.6088326730563708
1.709823827777158 0.3085048016462336 0.7776984866009208
-1.438580026783366 0.4756542168916567 0.602024504649657
1.507441022939721 0.75035857320498 -0.1476742313896961
-1.435730737202751 0.5009234659877605 -0.5468758216802481
1.353887964120165 -0.3001342361529146 0.6579430302955332
-1.45677155375715 -0.5330664501763572 0.6135836020138188
1.695166458795617 -0.5322178494123047 -0.09981316774741272
-1.838330615498874 -0.2001330942236043 -0.2270395919071386
1.459644932228978 0.05005977593771074 -0.1914488868742758
-1.492109479029646 -0.02734476993245358 -0.02661247594737416
0.009098955707343178 1.467354154357714 -0.3123210589918884
0.3712530683989824 -1.506506668711329 0.03625788227022236
-0.1090105026146773 -0.05988823335499336 1.443087299750694
0.4878740131048467 -0.4235905529098698 -1.461765120392424
0.8555949546419525 1.313334275116029 1.16777467844569
1.180649636418392 1.000462665610479 -1.144708622518931
1.23084326069401 -0.8347617970362943 1.114766887980661
1.198887280896221 -1.009628447947192 -1.053296458646294
-0.8040867728972843 1.34506221490411 1.098366715075795
-1.217611306314703 0.9689924596149095 -1.110679105663235
-0.9005255676048716 -1.055316756489062 1.217679446213424
-1.129334940851218 -1.168787025424123 -1.03975567282192
0.02101342627066057 0.8926862377051658 1.513104392721589
0.007340123617419975 1.363707292830936 -1.140407648064877
0.3043394131278033 -1.429682003020099 1.057909467773988
0.05423764742519045 -1.401763419312026 -1.369205906168971
0.870592300300876 0.1601093586741203 1.631853750295472
1.400662752993125 0.07825422964504961 -1.032766002171616
-1.468872187605671 0.118384635710382 1.303258108905911
-1.354488230586473 -0.09940666040489377 -1.26435163390784
1.441246014025387 1.42134170877926 0.01685920853403166
1.07475524250916 -1.47297491063101 0.05520803739623057
-1.306824313769511 1.213199475865291 0.0483275512403488
-1.26065965722224 -1.305940970420899 -0.02159529083613582
0.875405833662415 0.6164831662968197 1.998476536183761
1.281528097522708 0.4721493289803653 -1.74356610250735
0.9654949947701057 -0.8747451190317362 1.852060521218708
0.684032455753549 -0.9222824161262083 -1.984588003544505
-0.4643555290585218 0.4593242810366741 2.011928707250115
-0.1918001037429848 0.846402372879431 -1.914597071472398
-0.4923641075482355 -0.913506041404763 1.963391956991834
-0.5318295258258975 -0.3569399327673239 -1.906657590671238
0.2064809648763088 1.94922987647127 0.349698966517215
0.5418721041412375 -1.914961598391164 0.9297372046557932
0.5085348353363445 1.811138063898397 -1.067982036951553
0.781531566414006 -2.019393931451949 -0.6127812666901334
-1.203440998073711 1.818906140750917 0.3177298615282252
-0.8018843290855288 -1.828735419704604 0.789039958231654
-0.7998481331239973 1.901877178276795 -0.7347675059665504
-0.856353677539295 -2.01365002892583 -0.5053032004416829
2.031131346917722 0.2168449804992901 1.103108193307801
-1.911907129695948 0.6401262792031088 0.388140479806542
2.030452419913273 0.1945254564670147 -0.5138369884980281
-1.956107446198288 0.7475817243554062 -0.6421524306555926
1.806586315856942 -1.212059264794863 0.3958745385014145
-1.803550947942887 -0.9036530755835108 0.7298636409022776
1.792433392553995 -0.9294772472016124 -1.006798442378588
-2.012003014752492 -0.907823591797204 -0.5610069943935569
2.593106653086247 -0.05815455013145644 -0.3619527792982969
-2.506792486275804 0.3276077086526253 0.06368249302903073
0.3444038005770481 2.44486399863072 0.05338840043926107
0.1202257246908177 -2.676648186421947 0.05884266380268198
-0.1454738444079868 0.181340763704572 2.608939750979432
-0.1095670574272547 0.07825620551300869 -2.56289366616889
1.378801026522699 1.784347182084725 1.068406676314823
1.535898624732857 1.449867312975718 -1.388257853385161
1.613606852636326 -1.604635139141118 1.34569613424869
1.870830245254552 -1.389859129502331 -1.345722487479141
-1.50426935312589 1.112046003272149 1.453086991469685
-1.411757262389416 1.385844584736687 -1.438233530561035
-1.349654157838879 -1.644238708006949 1.338567364606557
-1.065534474220673 -1.28715685625885 -1.732311411576834
-0.1449739647988129 1.796876548044384 1.505406191290882
0.1514818268177675 1.671705705244551 -1.993971980684474
0.1885899975846234 -2.070158665863061 1.619788035615384
0.3289590993237047 -1.849539388213967 -1.786326350406223
1.874188517505342 0.04112909452172191 2.022421151453951
1.850828800780554 0.07985279435117078 -1.998981676578736
-1.881105658161332 -0.1190570161411615 1.589310872383585
-1.56484492681398 0.1182364934431131 -1.745338634526572
1.936339107825424 1.483426176003389 -0.1363065723402908
1.890927855750831 -1.891627664622977 0.07981979649522783
-1.802132829217047 1.913949797540197 0.2539754721377863
-1.905709015643737 -1.84428374412991 0.1201379648245871
0.7370242964535457 1.516054544930103 2.369971596848039
1.039182275427317 1.283847822215292 -2.619485624844067
0.8033469139474617 -1.204002744382705 2.534589799301081
0.739198972964023 -1.151326134692053 -2.698735447264212
-1.328675826487965 1.253073367135342 2.164202183972454
-1.412566224276151 0.9372597810517607 -2.388189999437518
-1.116478333445976 -0.9796862652182965 2.429297453329645
-1.520608055835654 -0.9157972567228091 -2.385781012169043
1.531538568353629 2.644156956112695 0.7600130268778297
1.216609600332816 -2.507933544523273 1.506623612443281
0.9281536431752804 2.527610815204937 -0.9809098188323014
1.250695097464827 -2.567096492577877 -0.9350616924131563
-0.4507583579272281 2.594152860380909 1.175038163420783
-1.117681557852954 -2.499585414803738 1.253793261887123
-0.9633358604556597 2.487212861926366 -0.9646565229652956
-1.173290638520968 -2.320290273513739 -1.146285256638607
2.579007907777865 1.194976163023346 0.9025882168686538
-2.426764204612321 1.186368837043362 1.236052938829989
2.450933294879159 1.616034378623267 -1.000918913438671
-2.471019230310944 0.9021019733636897 -1.254684806623935
2.689383466255411 -1.055390463170951 0.7445792300320365
-2.544156562664265 -0.8818155602460958 1.025875889682515
2.840809520080301 -0.8283128086356317 -1.228052084809049
-2.478126685474159 -0.8277187858634937 -1.154831359535629
3.57257518082032 0.3312290396770511 0.1806550244212585
-3.433676580190182 0.1033242730433058 0.07195024222046606
-0.03152305786198235 3.53431124346615 0.1436609839658595
-0.01935482441398692 -3.468958946906037 0.05274923411691138
-0.06026477653612854 0.1901403181146051 3.404408813867128
-0.3655694395230416 0.1367570430511796 -3.431667528284975
2.173721761904982 1.865323364161345 2.155180938232799
1.918928485690147 2.506348665153825 -1.763549333390421
2.113989422583571 -1.964996797298226 2.044939371734132
1.84809516501902 -2.041531137620116 -2.189080336791437
-2.055530696019141 1.986732646960354 2.046367437629988
-1.919613078033982 1.870015729286234 -2.266482567507263
-2.159606200969849 -1.826312760699423 1.959933894686387
-2.172814013042003 -1.951091434684749 -2.052799859991906
-0.1259898020053781 2.567205293163237 2.35817576471214
-0.101609076471417 2.727052932725218 -2.08835857479212
-0.1688289500687663 -2.33882983149919 2.647125459423255
-0.491200480149092 -2.567732393559606 -2.156700656223713
2.294070397574907 -0.243564288504591 2.507960788724569
2.563659732391998 0.1169740128050047 -2.412284580582298
-2.24410059413775 0.07212882270663301 2.484688328831032
-2.87003873422874 -0.02984259612081981 -2.258030594640889
2.815992897330348 2.957739699805185 0.1576145675682478
2.560771206428913 -2.328138830309164 -0.1054240997179491
-2.234999559035942 2.529958243336827 -0.1078472421999919
-2.49231760243043 -2.289616299370507 -0.1720318512319208
1.016406247477565 1.685764367132382 3.671252181468135
1.3013236198108 1.406180698448989 -3.597596698811686
1.650659861971605 -1.32710022101906 3.64281775927266
1.251690370210446 -1.647061402021559 -3.493009262438358
-1.798846095164179 1.408618491778083 3.59271484412769
-1.760017637704405 1.266335566381807 -3.717755653364495
-1.471122678563837 -1.298797180764637 3.622968985801829
-1.456953852886355 -1.614790165258257 -3.578537649728817
0.7807223182272794 3.816234198682642 1.866683937233057
1.051814506865788 -3.578055582116428 2.043877828271581
0.9805316264048969 3.690912280386891 -2.202947922148932
1.631957691530465 -3.655657513329056 -1.095796220949996
-1.972847514587182 3.541809830223872 1.378006951491039
-1.82676464567398 -3.535211825776856 1.077102140081321
-1.594298355984801 3.522763282471865 -1.502326847741176
-1.2896181659045 -3.628474669243706 -1.88164855166156
3.640243121977565 0.8474050819180872 2.126433130511867
-3.457866359006562 1.421269014851528 1.740841327333623
3.665381634703166 0.9658120778288556 -2.038982374916962
-3.701111829076403 1.614409357509612 -1.246447844643854
3.440099660495582 -1.895311219813989 1.234886281123261
-3.579177444532129 -1.455553002529168 1.53544863268483
3.706221201975134 -1.574674459241065 -1.458779024925593
-3.663260194653239 -1.762187110214796 -1.445326859777267
4.941489005292097 0.2343525902899067 0.06797252904535933
-4.884584797455397 0.2210267274923615 0.0381307847036128
0.04601158341761791 4.948417558718458 -0.04741345025774801
0.1417589083122847 -4.925377398691718 0.02461643657357633
0.1000962444586875 0.06420388839553458 4.939964390914832
0.2818984430281372 0.2193104729358417 -4.913934959887447
2.983598986770928 2.556290735061951 3.22285516890792
2.862101399557834 2.694153887554864 -3.224156381953222
3.245367142514554 -2.57724826051021 2.776012119559147
2.666209718660786 -2.484901229900832 -3.281932982683115
-3.072593970653229 2.807290870972523 3.196644631015368
-2.422747167131974 3.288255116197841 -2.985304341289935
-2.25083677305995 -2.964053381785928 3.192257405908877
-2.836669329980118 -2.655936374571803 -3.482135448380455
0.08580714504620268 4.038121754035421 3.923464998611376
0.1207590270543871 4.247477914667701 -4.104543247626613
0.3884612810732392 -3.897512702507238 4.119095808545881
0.204487883430293 -4.047112693271393 -3.852028656506751
4.063322037812534 -0.2009403049046511 4.19249014027455
4.179219572617453 -0.1171023523145132 -4.000503703993441
-4.063089263574198 -0.501785192959507 3.735155621428312
-4.09222671362001 0.4250113341342865 -3.719580099963333
3.863595270371186 4.070843213123896 0.003347864086701789
3.979807311022941 -3.906780034787546 -0.2819953147868587
-3.841263050904342 4.052238475098297 -0.02063339312831216
-3.911986944256344 -3.903036083952985 0.1827781639286236
6.480165982017318 -0.1285450692586772 -0.0712273634628946
-6.478275363750891 0.2147017169054307 0.0158864969549743
-0.1398696589690514 6.560828716219273 0.2725538022944001
-0.06833002059507361 -6.452375415426358 0.09382165076991916
-0.4241442121180354 0.2637623420167729 6.488889891153923
-0.2927909410937637 -0.1130027311502881 -6.461356094056074
4.326002556451735 4.193446060968663 4.265888060688522
4.478350620560945 4.20520245822104 -4.201990012305292
4.239370652840716 -4.417296225185195 4.184437058493004
3.970430205756376 -4.388183653422913 -4.374729736047954
-4.322579739185207 4.319412479366788 4.175247279660246
-4.325779922308494 4.243647566473539 -4.216542127907589
-4.258005872580321 -4.13997107169773 4.332391175286624
-4.462348269131556 -4.176055884765344 -4.044046049272546
9.621783312882547 -0.5000571907823751 -0.136418534979889
-9.705533025704835 0.2676021844187761 0.1544417623452809
0.346908836312269 9.653006097151671 -0.1898984644145504
-0.3936956637713321 -9.659414300357662 -0.2263641731135787
0.2900123561909514 0.1378582240680179 9.640123236350631
-0.06847558238060374 0.0852308022046324 -9.593629033724888
</grid_points>
)"

View file

@ -1,378 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
Def2-TZVP realspace grid (Bohr) for species F
sqr error : 1.905526737366385e-07
penalty : 3.08784157932398e-13
n points : 336
</preamble>
<grid_points>
0.0424588780319069 -0.04856810258011342 -0.00669907799726066
-0.04115813307614895 0.07636777345328694 -0.00754827126987042
-0.005168149766133914 -0.01569521277612363 -0.007218048341426552
-0.0004099113066010995 0.01401281555000632 0.03917874480537528
0.06809802407190678 0.04355832406452136 0.04141586935128644
0.01765607498960237 0.03018230065962014 -0.03209642911311984
-0.07469303417073046 -0.1048840057044351 -0.1270717980869384
-0.1508970126954819 -0.09080668717855148 0.09163279319134564
0.0357412434026023 0.2181051468473781 -0.08140665704620587
-0.06477972298876694 0.05721739607650942 0.1213233511573439
0.09580697784050567 -0.07706281500923361 -0.1476737694057873
-0.03387525591453992 -0.1309943267593857 -0.0003205577899839817
0.07667777026533293 0.07082732644007132 -0.08519693714613705
0.1041567798173674 0.05758644168433669 0.1110925342002524
-0.222962010834118 -0.0514389659295888 -0.0847581731985201
0.3574194739920341 -0.0255415850968405 0.0939752129287116
0.03602963186827045 -0.21635238379386 -0.007540927337876895
0.03329185686385337 0.1928771051901224 0.1192095520318182
0.09042374765800928 0.07740736342250783 -0.2205313942072587
-0.06058847560994227 0.03320369990946225 0.2417638469700978
-0.076779048920601 0.07906578604228737 -0.1368379567214077
-0.2521004141273875 -0.1390608043572535 0.1582992315781382
-0.1689556823454642 0.1750388494223991 -0.1606276752271911
-0.1672742786994289 0.1281526061996344 0.02983372940602221
0.2191365492665101 -0.1110680211071614 0.01195022401357087
0.0580003111300143 -0.09915141281877761 0.1465649664489679
0.190157352521752 0.07787375559967243 -0.02566956879854734
0.1854537389469831 0.02498755264920282 0.1930791308479348
0.1019390990209436 -0.212767992036821 -0.1911031439251226
-0.04974192790588957 -0.2046288551200046 0.1863008736645556
0.05784999782137711 0.2887646530232958 -0.1871812995362714
0.02067349188684845 0.2139593606158051 0.2644597787200993
-0.08040239733371556 -0.05504449611055475 -0.2544098945434816
-0.2574668433343396 0.08598866182273152 0.1318839502818214
0.2782091632262661 0.01298664084447507 -0.1610630750622795
0.08892695061835244 -0.09618093576848501 0.3264344235194697
-0.1211687634973446 -0.244307495697008 -0.0516782674642764
-0.1129227246740965 0.2969066954010484 0.05526259430217999
0.1722809969034119 -0.2408280999174304 0.1139898573614446
0.2176837886152459 0.2247473604592739 0.03425768921894769
-0.3266698748128007 -0.04787917863605697 -0.08897033761893283
0.4115196395633938 0.2241500415473824 0.04132053274450886
0.02539046960693746 -0.3894861145335 0.009963482146257592
0.09578753905909761 0.4185151325618694 0.08385288291882616
0.05000027069776168 0.0667096741395968 -0.3523177245813087
0.03061900558467545 -0.05327795354994892 0.4904125615325438
-0.1441473205953775 -0.2204287410200638 -0.2665002191394973
-0.1804174282139064 0.02762725713580633 0.3464130040060667
-0.15403151465721 0.38822491485222 -0.157821036229383
-0.2493498148908076 0.2776248199726837 0.2255978167796392
0.2994387835709173 -0.2563773549113809 -0.103843975835258
0.276678894433831 -0.2472266747549135 0.2626241716545387
0.2676390231695574 0.2379079047414822 -0.2286093611468736
0.2458034377205466 0.1486896953353514 0.3050420909159975
0.1595094690169875 -0.1412775597695626 -0.3812843573210294
-0.0960202437119994 -0.299956060535649 0.2827443424898882
-0.01895958678850217 0.2354291031302563 -0.4420872246181451
0.008813901949143197 0.3113878221249022 0.3971226938606322
-0.2201267647295826 0.08756915468307055 -0.3161189872515393
-0.4187273328664679 -0.09277078541939218 0.1807300809688535
0.437485252714321 -0.02841542830547182 -0.2046634166639893
0.3804899794397402 0.02073188601289652 0.4176628725901696
-0.2654725725310662 -0.2899682828406578 1.593289252301888e-05
-0.3728345917427051 0.1760712020176521 -0.04140228852326883
0.2924869434533845 -0.4571565965446493 -0.0458043046438301
0.3641811545200222 0.3815294124450271 0.2560791451672118
-0.2011907015277468 -0.1255546279906495 -0.4533647239443454
-0.2842950116744398 -0.2210852221552528 0.4113392932431962
-0.02310202097960218 0.2942879167625899 -0.6118676630854861
-0.3172801196319459 0.1680628399133799 0.4315704071423785
0.04505809148400007 -0.1108812979563143 -0.5894191243839768
0.1185184833458402 -0.2965670075211942 0.5433251481665201
0.3145895691009735 0.1744650329583087 -0.4307900185802522
0.06714433400559852 0.2319554271842771 0.6144564796584895
-0.03184832239513381 -0.4199039221392111 -0.2586337400316261
-0.1527166724137161 0.5499156494851799 -0.2919156027058035
-0.268223939069023 -0.4606327623179439 0.03463769623713095
-0.2967522672898399 0.4743304739099918 0.05110464751424539
0.0807482445639081 -0.4922689247262841 -0.4473844553741482
0.1851991889489447 0.4997131101622548 -0.1673061186455899
0.06191230299421389 -0.4724249255177508 0.2610388494414144
-0.00357156244897413 0.5627114399813467 0.2416416252188695
-0.4384217062037049 -0.1462129312679547 -0.1850598483351323
0.3623236107451325 -0.2704810433261216 -0.365997964878065
-0.5692597259078702 -0.2913045496925632 0.09971803014411997
0.525152510549392 -0.1251864003970959 0.09253632730600793
-0.4100388742411383 0.2247105309177151 -0.3124533034305295
0.5602781595616063 0.2833255300612446 -0.1095137979846253
-0.5568406134375232 0.1613148802322186 0.07841180594703938
0.6495200138893709 0.1102386074444886 0.2751084431911892
-0.6647478170026409 -0.03334387512950024 -0.2318885725275762
0.646855730057861 -0.124427630983578 -0.1897659901417189
0.01178527350779013 -0.6696019068318932 -0.01388047361655107
-0.09585765155923766 0.7647095087159781 -0.01598599848738635
0.09759225474493266 -0.07669106975958551 -0.7891196734279341
-0.1701359329689697 -0.09986894445593786 0.6785158452177112
-0.3664985347979893 -0.4187699482539197 -0.3296168569728536
-0.278720634640971 -0.5003661197158564 0.3658756483066782
-0.4660870501026461 0.4036559649257913 -0.4593025251215396
-0.3837384426915052 0.4278637774663329 0.4213985697391153
0.437340957135465 -0.3980401789177424 -0.5720713482107983
0.466321249718751 -0.4019851031525558 0.2841706486293492
0.3231003246071275 0.5013170139981447 -0.4261297332021346
0.3855545196386883 0.4409935706464815 0.5102168835840324
-0.2245221108387949 -0.4130860805716557 -0.6496188204455849
0.1187930565562036 -0.6424402916565091 0.4221867207722111
0.00342420093528989 0.7224401452387722 -0.4837769472258088
-0.03190963818199102 0.629959032670625 0.5019495526326829
-0.364922963876461 -0.02573359022228083 -0.5812296245174591
-0.5511103163006791 -0.03819241254370011 0.4522263628831514
0.4494921229924451 0.02108828989576007 -0.5615578204575534
0.4155749771917554 -0.073013499795302 0.6431373717858992
-0.3889006534245148 -0.6809718269915973 -0.04546371300887903
-0.5534682058796454 0.4990799920969549 -0.02286706974056912
0.4835641576492956 -0.5484956002707612 -0.130556641556292
0.3600356793234886 0.6411511551460767 0.05638600759779191
-0.4868899313903896 -0.07240868997596656 -0.7596942978692084
-0.3983019282148531 -0.5032438252170969 0.5605639172222892
-0.2239945362338997 0.3350719464633225 -0.7938515713623561
-0.2480521914548317 0.2272536145103521 0.7950466518890424
0.06976254041592649 -0.4400296190218969 -0.8884600377920334
0.0351118589221107 -0.3566522951203673 0.8161261419158017
0.3495323365983068 0.2962467883590743 -0.7974368977158698
0.2288650488834905 0.1823370663262179 0.8919529058322025
-0.2941751751513847 -0.7741934018979632 -0.4457469898905607
-0.4887660943991594 0.7459156721052072 -0.3155644915543953
-0.2615621230538473 -0.8709350560279627 0.2728635515530392
-0.425911635184828 0.7794902835969258 0.2525628748354208
0.07436205865656406 -0.7756920385594538 -0.3544436109602669
0.4744761057205938 0.7791840852981908 -0.1811879433910503
0.3035394071378163 -0.8322327061137059 0.1047935461250195
0.1788217847911553 0.9252905085638434 0.2093086435017583
-0.7064892735309427 -0.3802204548344122 -0.3455625590907463
0.8064092240959858 -0.156339473739518 -0.4149317402268688
-0.7612844769894002 -0.3852959718782684 0.1875806414711107
0.806656997206414 -0.1862151176731343 0.1406351092995039
-0.8223314475288964 0.2005263209279792 -0.3662640321600835
0.7209224916818922 0.2882345791871658 -0.3428388846056493
-0.7846480987664789 0.1539458552653661 0.1756267006487121
0.7581907893104839 0.4142225824002281 0.1242771483137869
-1.036937970593898 -0.006985510191487556 0.09592599924827419
1.062935148513501 0.08038767093989958 0.01219494189661832
0.01974503749277968 -1.101949542008506 -0.1287329619124694
-0.07516975918933257 1.043127457093657 -0.2171163854267996
-0.09925619365034599 0.05331791271922916 -1.106825642720214
-0.2442149904257685 -0.06418382122325772 1.108805408510831
-0.558880367242667 -0.5349572984755099 -0.7809263667292855
-0.798231629975777 -0.6836642116317243 0.3559246881088692
-0.5641005228578689 0.5779140666711889 -0.7338766392607371
-0.6831347131593964 0.4133401098922922 0.5283393453809789
0.4760025302289376 -0.7643642656089562 -0.5200905002204279
0.5799698933011747 -0.4840757263516423 0.5341724494887763
0.5817020758902492 0.6660401635878981 -0.539686045658454
0.5192301563630084 0.6489788616762857 0.5325246094096783
-0.05942252743353212 -0.8820882184956693 -0.8103650089624077
0.160465254166362 -0.834930274409783 0.6684131576087738
0.06055664803958153 0.7288193726138318 -0.8650135637366505
-0.07155115272155498 0.7137862334782835 0.7466577568597539
-0.8172363498043912 0.03955800887787671 -0.796560779020273
-0.5931680695699557 -0.1349601860287592 0.7079574899158769
0.6131636341937258 -0.1165886003579523 -0.8610856149868044
0.7714559096791362 0.09633550522525194 0.6064056416503697
-0.6650344150127879 -0.8516746389285484 -0.1714356207108075
-0.8721864308672229 0.5940968510356894 -0.004678835350683224
0.7705152164080166 -0.5802411110479746 -0.0503815258109583
0.8668116724170942 0.7358954809453522 0.09427010498889438
-0.4095470386191372 -0.3469849751410433 -1.254909706048711
-0.3946987265725085 -0.6279954896541348 0.8362362735338189
-0.5626335802576463 0.5467411616647346 -1.136206616971095
-0.5224344465785603 0.5028785096377635 0.906702130628215
0.4956081818328446 -0.4896720138731303 -1.108666118434728
0.4698204946899869 -0.30957169083647 1.008105162152699
0.5077457159117326 0.4002168366055712 -1.087868154570703
0.3665841345585243 0.4541348855734265 1.034511662664295
-0.4484875376378666 -1.206418759770275 -0.4500542111220434
-0.5363462963769243 1.073211245900267 -0.4096142411581223
-0.2746327975797305 -1.191989094760926 0.4238722859719094
-0.4300182955992252 1.059381204728347 0.330318298682063
0.6126221719744075 -1.083727053421941 -0.4746506040455799
0.3851960757246515 1.12234616034084 -0.3208696218860078
0.6136943122488553 -0.962351019127541 0.2150719953545554
0.3301008132649488 1.091648726863434 0.4856089497321706
-1.057880583212213 -0.3150452833725163 -0.2767788080097118
1.033931117554084 -0.4648961912153143 -0.4079662694303912
-0.9513439409965639 -0.07048023496401554 0.631038554731597
1.021291767211654 -0.3982235600004158 0.4327719542402042
-1.122318010800603 0.480068954190332 -0.3457155811325225
0.9633575126350123 0.3412997454935116 -0.5350188929047485
-1.038468467863738 0.6109052861429057 0.4627273226693623
0.9546893748239781 0.4261215352378708 0.6887639444956934
-1.367699160257927 -0.126420354024208 0.165801356690116
1.376846942640244 0.1978464442054765 0.03548780355875926
0.2883969498183866 -1.430677991436353 0.03200970313185108
0.03655092786556063 1.480483969757877 0.07193271125542643
0.2597409798017263 0.2588888858918219 -1.397156717789287
0.1988913813484566 0.09457747962280796 1.434186738053091
-1.022702197334199 -0.6337985412151875 -0.6838912970696723
-0.9071942373741735 -0.5837671261810099 0.8529248697180741
-0.8280568582073238 1.13621408443063 -0.9602932995970238
-0.552003548763486 1.146034254572243 0.7897124915515713
1.090045783967516 -0.8342607373013158 -0.8459280842966285
0.5729471695258816 -0.9722499140720747 0.8062506407733846
0.8975905764238902 0.8419841204100896 -0.6399239588787644
0.6881634711242022 0.9409666382921608 0.9615487926303053
0.05472047544284731 -1.23636865995164 -1.500263255394782
0.07927229262048545 -1.811383827904613 0.9458845389729771
0.1166461825007578 1.114463433016305 -1.524545856600684
-0.407913190904454 1.318748659854869 1.140348772460777
-1.509535639273136 0.07819721447058132 -1.355527416591672
-1.55128367168311 0.1897641693942451 1.286714997890276
1.203332285390849 0.1958964665115067 -1.602166283330793
1.723127612408629 0.0821450681151064 1.17339214924698
-1.280302688250871 -1.54297208274463 0.4252075653133042
-1.755854110941145 1.068633241375883 0.02761506473405962
1.45718741820059 -1.520272794853093 0.230355787299263
1.501094487578122 1.253071562621353 0.1794101983968726
-0.9914402337970921 -0.7722848781873622 -1.151918454946765
-0.2268501237960653 -0.7484701975173358 1.601101935971359
-0.5633602536861934 0.1971265291405468 -1.614712476532681
-0.5686986276988973 0.4207790134116591 1.593052829511552
0.4944677060751306 -0.2881253084187755 -1.606387917344947
0.9043135011575762 -0.6238903649833815 1.352177494262117
0.775420704067328 0.7050769090233884 -1.284001836725216
0.6258529188709079 0.5316258400600348 1.60413907589042
-0.6596535830251604 -1.560372216607394 -0.3230877155657515
0.04237651070779316 1.748017566615148 -0.45947244217713
-0.5178480536918603 -1.408385374108873 0.6704490439560219
-0.926025413344546 1.560535080902495 0.2585924810389604
0.6009161852321051 -1.616145443668306 -0.3746560288876898
1.05321328805466 1.289650977053263 -0.4655255100441142
0.5766831756543299 -1.430405160000956 0.7286769384721984
0.5381170213695269 1.554505260623669 0.71535079798074
-1.587934577061701 -0.7058972549655429 -0.06806367899578553
1.451159808107874 -0.8947425425706649 -0.9744077373524206
-1.254999853083176 -0.6032860238075443 0.9991410290581361
1.591100049359812 -0.7675703999889769 0.2999686120382056
-1.591952443779259 0.371237184542185 -0.565665131088854
1.645543523718086 0.2038977823026946 -0.5767452367619414
-1.453472026677625 0.5139143224539113 0.5871704179088862
1.508723164746374 0.4023067862943839 0.6439962399201716
-2.160830640560992 -0.3399438895737431 0.04327233515259246
2.212328758384622 0.06138215836719237 -0.2745821455528419
-0.008488033840394659 -2.120302145003583 -0.3325313352956524
-0.001406061819699271 2.218055585670014 0.04456928538793731
-0.1524173242088287 -0.008328274497225457 -2.185249830810898
-0.01582096610221164 0.1366581455611727 2.191013333496296
-2.002809425929085 -1.47092984887633 -1.77188764583328
-1.593182906319993 -1.904902298876647 1.544226336337692
-1.698354912088108 1.81063223512574 -1.691483184817365
-1.937058673379518 1.743650357688331 1.71166513510628
1.571553009888518 -1.827158485883568 -1.60818507536175
1.788880255995295 -1.638995120710639 1.941974458468896
1.732179443146853 1.658178893839616 -1.803730648865161
1.764645449003034 2.101664492457683 1.379137258830344
-0.5806332869650555 -1.564457546095777 -1.933571555107483
0.1950757024445302 -1.90562762435075 1.758126361897203
-0.01921240656584404 1.66219526777228 -1.857527553086628
-0.05596781785064791 1.861997546205176 1.902727752715226
-1.923227666732177 0.2591647439280024 -1.611019573750903
-1.875725658710878 0.1451256644176253 1.738636670647765
1.669647842260859 0.1485981710141779 -1.890240247391796
1.828198296975457 0.2125902889868278 1.839845211522175
-1.714924417557323 -1.878412820129187 0.01623398925932345
-1.806411646448775 1.774449962760602 0.1563323785164141
2.082568347428024 -1.474004168433736 0.3662483215709785
1.784604532127779 1.757235833029642 0.1160225447622737
-1.524831361572928 -1.519758640620552 -3.242858755234105
-1.40311620149832 -1.027329212847347 3.025850066005252
-0.7278126587406731 1.19829871602334 -3.214080994901607
-1.680831385061948 1.645544172240624 3.414489060876411
1.210197623378361 -1.308815839221573 -2.95138954692767
1.36353441692614 -1.663588178882537 3.412803740323853
1.181250056175046 1.392236019204339 -3.926879044083823
0.8980074939602503 0.9730039804576402 3.222571773882127
-0.5335018909438535 -3.055159695013796 -0.7994035932382021
-1.590738978872129 3.44045678900646 -1.458964135536316
-1.175460168869711 -3.435670100078556 1.078788524774648
-1.343518406419797 3.010056251536504 1.223970826489541
1.23530972019624 -3.647920561083003 -1.39009444826689
1.368194750323993 2.771771408280654 -1.661616363120973
1.556257088997329 -2.866727479156047 0.9640123803726769
1.349233050398556 3.441993229347348 1.153319785037245
-3.181606538333443 -1.636739614658934 -1.053546567127794
3.107330836683586 -1.06301459510627 -1.29246318473626
-3.21619011478816 -0.4889174018519747 1.393807013285853
3.801113579749859 -1.404401700764964 1.448268824590958
-3.086646718094012 1.551150258804233 -0.9186639913650093
3.366537613956216 1.442788346194809 -1.47147150297947
-4.278493072621744 1.130801974284677 1.364636225853328
3.167973558651495 0.4491932186644658 1.470413238384694
-2.813336390909929 -0.1543251155055962 -0.01944903344318314
2.879185361099335 0.1775931526588372 -0.257182734395697
0.2728984470949913 -2.610160534390108 -0.05214877830230404
0.0007276237358421981 2.829188980806608 -0.2654026915606301
-0.1038671316123294 0.007432781327472612 -2.856367730482423
-0.09399994376288547 -0.1089859242439346 2.815910491886974
-1.249521082001036 -1.31013738223033 -1.132857140421899
-1.014157045180352 -1.127031441712938 1.610288382838028
-0.9980831341987539 1.479655545268336 -1.186606233503945
-0.821435229451169 1.452035441975303 1.406019725684245
1.088383940739783 -1.444111501295742 -1.450252677801236
0.9566992535389589 -1.063803047423113 1.654441178682367
1.157911468727192 1.468319465080517 -1.104420148893746
0.9029057202430436 1.416905584657567 1.403801983240735
0.01231722449251691 -1.098739079554101 -1.10205152388553
-0.1150411469240033 -0.7135101532114052 1.210447772598684
0.0495132550118998 1.15718635205168 -0.9014057129545718
-0.1405401925968823 0.825991229333047 1.103076682317597
-1.236020842077159 0.1488050331776735 -0.7812467458618642
-0.7963855256470118 0.1446300878966788 1.174002736229478
1.175209333154686 -0.04087267455232455 -0.835304907952737
1.019327434428987 -0.1637984685245215 1.001653821033377
-1.041349236250368 -0.9385181175884022 0.1283893875421397
-0.9864766801218418 1.12747471796639 -0.1421301366903797
1.242589589838226 -0.7730633839245865 0.1273086931863729
1.008542796924955 1.066077234115806 0.08737027210862262
-0.1264832359847671 0.0008764603751401909 -0.01714292147941307
0.1139175606975854 -0.07103936617243688 -0.003298497029813216
-0.05655464975698542 -0.02354403358132121 -0.004493121716954269
-0.004455258321700231 0.1489026987027417 0.01191817462508464
-0.002812159866108038 -0.02713979473652427 -0.09372712326182021
-0.01720004050325679 -0.04196095186094932 0.0854217459074189
2.711849028209805 2.684653863106791 2.910622682577748
3.110554757978668 2.994518470227792 -2.718203960316815
3.030018253270039 -2.75517065736938 3.076936448433131
2.648547857592586 -3.097204458389101 -2.747224075844595
-2.52478142003386 3.366996007406847 2.807908053198422
-2.626977921739742 2.59993577838145 -3.376979113990642
-2.774328752436984 -3.100945721012162 2.58267311374428
-2.916095881136398 -3.193498445441847 -2.547942223086703
13.17165622884432 0.8910450583242776 -1.265101011264349
-14.16153143873993 0.7541086141387561 1.239742368985576
-2.089766441687429 12.29264364306792 0.8096531510697147
1.212569620943403 -12.97705699474445 0.7421921761097103
-0.09322347097915606 0.6172058502700112 12.65858302089003
-0.352233077925231 -1.393619384682379 -13.85802598305677
</grid_points>
)"

View file

@ -1,578 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
Def2-TZVP realspace grid (Bohr) for species Fe
sqr error : 2.555759483796505e-06
penalty : 2.492057054292137e-19
n points : 536
</preamble>
<grid_points>
-0.01893826389445827 -0.02851722564613698 0.03800247700196151
0.001387945573328954 0.001925362804693418 -0.03194561714221413
0.04973067952291344 -0.01327112059722746 0.003001839374869116
-0.004197225962116502 -0.01111305421051024 0.008074992797610875
0.009730092317876849 0.02963461140827896 0.01307680362763934
0.003349388137666441 0.009767717898734141 -0.07683143925964804
0.02072757799343764 0.01635692180062179 0.06575577039387491
0.03154184425098392 0.06936285378338139 -0.01581537725928846
-0.0005434222475370766 -0.05622066228874563 -0.02401746366046755
0.09230141696557928 0.00147174118068152 -0.04090564606422588
-0.04457084661363946 0.06602792393982466 0.0601773680560833
-0.05012272503711682 0.02014566714804121 -0.005617131276527138
-0.06744865201382588 -0.03587679060025229 0.05231502546343102
-0.06677336112356211 -0.04724672457204703 -0.05026041676571021
0.08950718212505109 0.02465385994293882 0.06252717992343709
-0.1316227310107546 0.01725521234036399 0.001812830682859225
-0.080774299082558 0.1469147531211928 0.01393573725951973
-0.003111569237806288 -0.1401780777552645 -0.03873887277252746
-0.005981824531781576 -0.02177312953719801 0.1321351598156977
0.04709227721231976 0.0544701596776681 -0.1166576556073964
0.03592465423392362 0.09811213440118557 0.1174886858352832
0.04738713438899861 0.125973723230327 0.001606575688441982
0.03617624455578222 -0.07865124973982193 0.04853845705841627
0.04703284730240211 -0.06413145694646967 -0.06977034160324694
-0.107607664590053 0.04059897434323655 0.1214998712439445
-0.05724639820222268 0.07177891502941645 -0.05530409789152003
-0.07824662702837877 -0.09938080541752554 0.04828418017985336
-0.04413609754664852 -0.03717371913891252 -0.1326078735792636
-0.0354289072078015 0.1618640721026212 0.1556190030491926
-0.0007359644699632266 0.141375330896852 -0.1110187248084353
0.02849855108917913 -0.1328560711420822 0.1105972700936084
0.1019201705904134 -0.0538721801697477 -0.1338888893059176
0.1260674270487301 -0.02795797492332188 0.1299669768601883
0.1476483509414571 0.06025387921865537 -0.03012069404430705
-0.144859602307186 -0.09185493272029929 0.1125960260615111
-0.1185137705864428 0.05344262035861688 -0.1160497156091121
0.154236799089459 0.1187953805240441 0.0753672351175929
0.1249806178666178 -0.07768080064169701 0.00819136315425139
-0.2081158521117502 0.06340826143876842 0.01390507138437262
-0.1499815191158552 -0.09555188501251685 -0.05204641890143954
0.227908676507413 -0.03144951248879063 0.01136479612825293
-0.2651676416417125 -0.08757071694550139 0.05263761093188422
0.04092825530641919 0.2161726313447854 -0.008208205037916536
-0.05006183213931965 -0.2089878210652508 0.04096518184776029
-0.008999872252014459 -0.01875361173578129 0.2151439922583291
-0.0125913896790427 0.03690768629379907 -0.2212426383774139
0.1390462071878207 0.06720319858298331 0.2201972706583514
0.1559165176338949 0.09903371140074534 -0.1312635916793165
0.1272827630662469 -0.1555821387215462 0.1603432898116463
0.1506157303472878 -0.08775179742174172 -0.1860783118638664
-0.1778627348132496 0.06509904940776319 0.1989893690793022
-0.1217236976021501 0.1713528280887601 -0.1466851069707345
-0.08424817298210804 -0.1591069966422025 0.2223475462473973
-0.02314211467262708 -0.1520747344404171 -0.1538067098608607
0.03290771929285428 0.2769374110087254 0.1172542280393579
0.05633305445443775 0.239449828171742 -0.1651801121673712
0.01764803834742352 -0.2993048297295653 0.03242003810894867
0.07919911257882871 -0.2371513367186358 -0.1847455511476941
0.3071554329621847 -0.01134187952244211 0.1136491868556073
0.1080852148840473 0.03752765351573219 -0.285701589577166
-0.3337474106825993 -0.0005880093331639636 0.1701871931886123
-0.1955687794451251 -0.01979487293838162 -0.1651305176701242
0.2227716325810082 0.191515946714671 0.0004268767721241842
0.1135390698570269 -0.1844377221381253 -0.03191297828444544
-0.1431253942308381 0.2249137763920142 0.03720733640318612
-0.1584628403506354 -0.2162438939119705 -0.05872543713586981
0.1891118700690133 0.1944353842159851 0.2532854355929756
0.07353588443083366 0.2531561122362421 -0.3076419585961825
0.118997680074336 -0.08051358532251239 0.3245853799191658
0.08215913863805289 -0.03916614864574437 -0.3847284690169483
-0.03474519412002052 0.1121396024529271 0.3190818956045202
-0.1425112865680046 0.1178890468431301 -0.3004748051271444
-0.1463196121493634 -0.09875113778230277 0.346580484776135
-0.08768261671811395 -0.1159874127084512 -0.2777558736443292
0.2929986788174035 0.405755290400137 0.1111232277681315
0.08391434161491504 -0.3092838555141904 0.2120629062875732
0.1237125146493564 0.3650634377734689 -0.0138425014672734
0.11295452112752 -0.3811080191936428 -0.04987836824697895
-0.1805000337671985 0.2728277104646241 0.1760946519756549
-0.2147127887606917 -0.2806448485161367 0.1144351206859646
-0.1305064569505582 0.3263853467663095 -0.1039443984158952
-0.1627510830591648 -0.3010214338923794 -0.1455430926297873
0.3528241691848079 0.2007049150623433 0.07183829505293322
-0.3857104231519096 0.1395688287106095 0.273501182151566
0.2933426455056239 0.1527009478770174 -0.1851467102150911
-0.3051322666352203 0.1334532751869508 -0.05506437175840467
0.2454838712294957 -0.2110729313538943 0.04215065808835446
-0.3812688450610447 -0.2700333877175887 -0.04070796130697601
0.2823039592470307 -0.052004201419758 -0.1282267505375337
-0.3235204874257954 -0.08795649904086493 -0.1453382728620702
0.4314794007017129 -0.04778208345743853 -0.03510226328350283
-0.470053142471862 0.006725894538048958 -0.01041065466259179
-0.03767637567242531 0.4846726449989083 0.01114499470340901
-0.1126424470478009 -0.4760876406576269 -0.002024365170980435
0.09458116992489984 0.008322107002264519 0.4607626992823892
-0.1143905984234873 0.05175885069436389 -0.4738065719660038
0.2604325403018109 0.2147115462469836 0.3710461767456565
0.2781247189463598 0.3684791326040481 -0.2001810231831433
0.3440626133585891 -0.2896103911374655 0.05203408308962573
0.270671967163345 -0.1944166990226852 -0.2369776023748256
-0.1356930314981766 0.182423932144171 0.4122003219565912
-0.3413412437310553 0.1703835097015179 -0.2714597627572897
-0.114340768297315 -0.3622390888190878 0.3021268985003868
-0.2267667202078885 -0.3752824051582477 -0.2811513644128376
0.02127397463196197 0.3691398073095188 0.2661296446968074
-0.1123843404030968 0.386237065175752 -0.2896344526448771
0.1748215912771402 -0.2550237669950344 0.4054130742521721
-0.0001050136397473555 -0.290585909209686 -0.3160135612450501
0.3425487574565161 -0.08966740144946672 0.2658438747229346
0.3350069751437014 0.0297756329041469 -0.3511495160536015
-0.3831836744674232 -0.1871560494562422 0.2697720658421364
-0.248693428790092 -0.1150197737326814 -0.3557865164960348
0.4629365590237212 0.4699493230936646 -0.05078007518500465
0.4801408185829497 -0.2521921347476901 -0.1677615325740872
-0.3291201273430608 0.3165619274430919 0.008457756516226291
-0.3526570577392434 -0.4909666390843982 0.08203926562254714
0.06465360005310267 0.2755364691130725 0.5524816708805556
0.1516067892774497 0.2304687131757209 -0.4695025511397333
0.3512457347823046 -0.0476962653027382 0.5140759804493836
0.1492401094577854 -0.195159121330305 -0.4774320842048987
-0.3099983315123965 0.1602384320476961 0.5435012581007301
-0.2799726506473681 0.1183011398937299 -0.5519853281625182
-0.157863850488524 -0.1119142370196744 0.5040627335175032
-0.1656677200877056 -0.2575239334752829 -0.5377983214877003
0.1006510788878774 0.5564391128619413 0.2427043676963458
0.1851152141447032 -0.4745007227133929 0.161641150242788
0.109180164512076 0.5790709384979983 -0.188022549399419
0.1894930152260525 -0.4400170835777932 -0.2101088644337269
-0.2624598914761285 0.42856809482623 0.2649774617506916
-0.05850431010886468 -0.466994771685899 0.4376569441399785
-0.2977563234188266 0.5057638581274039 -0.100440070910442
-0.02693941189949062 -0.5767706058356041 -0.2737621172441437
0.4995273809227607 0.1083628621756176 0.197687406499322
-0.5633422209698707 0.1255585387245013 0.2926880208924108
0.505008854509518 0.1406575777644898 -0.1262389442905121
-0.5413000671322272 0.245685046803857 -0.03147035003703842
0.5162621891834124 -0.2500778677782903 0.1950703310457212
-0.5946968318378067 -0.1888009054159589 0.05989130733219088
0.4881341158717431 -0.0004262545791999145 -0.4317036156254352
-0.4895345052499619 -0.09692793388221055 -0.2875827328548903
0.688001192435742 0.06470273884650342 -0.02054526854394148
-0.7178288551812269 0.07794299279530489 -0.05020345670500124
-0.07077428071216435 0.7066572907566014 0.03025282385524733
-0.01841110096973516 -0.6695203309647713 0.06749827269088113
-0.008930967558194619 -0.1126192510227652 0.6776919693178246
0.088228182720127 0.02299123538752601 -0.6688695479083426
0.4553344125068621 0.3742971013347029 0.3326275203316167
0.3957921518117299 0.3492091367712395 -0.4375372069879894
0.2968209791660464 -0.446711729958623 0.413057682241868
0.287778231278204 -0.3792897030959944 -0.4994591677745949
-0.3163729160078371 0.5288260869222983 0.4002151613861231
-0.418211034633292 0.3459643913984359 -0.3651475858089646
-0.4127833162474681 -0.2759711479814328 0.4650512375212295
-0.4290530021724612 -0.437639101603538 -0.2952337677954919
0.1217701499593923 0.5812881189044941 0.5116423256019393
-0.07371611851851065 0.4375692911669935 -0.4826561323924276
-0.05314470463178998 -0.5135822145213443 0.6460675417423352
-0.1705265166750781 -0.5263392234191779 -0.5535846145252548
0.6399558485952715 0.0297565243925982 0.4282757045180213
0.4936758089272107 0.008135849598803861 -0.6802702959171515
-0.5893527378463062 0.1888690651294302 0.5418610602180823
-0.5944822884882526 -0.07117250785927451 -0.4683474713777174
0.6006366900159797 0.5396842728061443 -0.2468227569238184
0.3696801495767998 -0.5607698870954532 -0.04154027182763836
-0.5210464726243837 0.5399688178451412 0.03185663057869861
-0.5142187495341006 -0.5675659303785614 0.150770944505808
0.3092889381035571 0.1765997806558011 0.7302151431147157
0.1450464644818368 0.3671901164132205 -0.7135126643939161
0.3743841529738799 -0.2910416597904206 0.6863665428447355
0.1309772234321085 -0.2893552828225337 -0.7763991096604443
-0.155715172200954 0.2791130477302682 0.770812692362789
-0.3205675788487669 0.3358807905432123 -0.690065314179637
-0.3648981287609394 -0.1759504059130655 0.7396913275456263
-0.2779272006387602 -0.1029660903010687 -0.7640893365156738
0.3227929206229764 0.7433091212729435 0.1478237245708233
0.3060824046192464 -0.7198651911579409 0.2462214826831719
0.1776106562159232 0.7109737376171947 -0.3549543797816762
0.2191633986605663 -0.7512449496857114 -0.2880124647282919
-0.1884518812199596 0.8365083707667793 0.2264696501084342
-0.1601307543427928 -0.7620114028458166 0.326113282678754
-0.2995757262351279 0.6905226663573407 -0.3206270986161646
-0.2724569438490799 -0.768950736852497 -0.1793526930458185
0.7230647203817403 0.4174070178598405 0.1293322528149005
-0.8002003724224837 0.2900267234213207 0.16631437513307
0.7573043441586347 0.05928514280051161 -0.3724773746473312
-0.7082355189429439 0.3496907903221613 -0.3145532840430611
0.6755723919573955 -0.368676173049749 0.2635483818429762
-0.7562777463186641 -0.203570228834626 0.2900682635247125
0.654592312802305 -0.3606511840159033 -0.204812390782716
-0.7480296357639896 -0.3130014911772818 -0.1550872255308047
0.926039055773061 0.0001096646964505798 0.07781260184260499
-0.9674011260216336 -0.03630992431800791 -0.08058169542244004
0.02090296574698184 0.9664386112142953 -0.111793320568844
0.0364550367521276 -0.98100919205907 0.0320605636915668
0.02801182867491388 -0.09230097125727112 0.9485719473301252
0.06248956052797575 0.0872890367574136 -0.9670952648671635
0.5974904375421168 0.5054181174894852 0.5192512674026312
0.5628659799275104 0.4900235072968938 -0.6319266418881504
0.4853784922535181 -0.6548193057856775 0.5509981379727968
0.5309695856262808 -0.4894888796239664 -0.5841538206442128
-0.4920825755176475 0.604046524291601 0.5708113290385898
-0.5816487636677495 0.6228646557472901 -0.5413687343063748
-0.5561290288805122 -0.534834010708705 0.5665026044618764
-0.5782567537636006 -0.5241353533444423 -0.5160459338989889
0.07662161094589036 0.7101274820288914 0.6907890384577335
0.004201821142743625 0.6974827711356784 -0.7263793903100303
-0.01849403032979745 -0.7290057985912294 0.7396467705619272
-0.03044549415547446 -0.7065830316439969 -0.6923104654099105
0.7184451755470822 -0.01806770119877035 0.6886718856466751
0.7405101048575026 -0.02900619148075766 -0.7610380305403441
-0.7360429466295089 0.0359240554351966 0.7196462567592143
-0.7264474942561122 0.02849600916246449 -0.6734119733275991
0.7352447988541984 0.7232714588207592 -0.02281460936945418
0.6555873417649508 -0.7122557510428351 -0.04245189131839831
-0.6541676619118347 0.7435394479697617 0.04542436005987276
-0.6987268709114034 -0.7209182654213443 0.01820101119934443
0.3304863174512266 0.3061129800537636 1.002253607958605
0.3492214611558658 0.3735954308665819 -1.057802608901295
0.4043485337270221 -0.3906878445932735 0.9956665281001454
0.3255426847555837 -0.3878018277211116 -0.9999289732140443
-0.3176968440352215 0.3351526652740625 1.001896351908663
-0.3793845607754758 0.3733659278757158 -0.9953767362167272
-0.390484741750726 -0.3447593104581571 1.0129827051858
-0.3330234332790585 -0.2743389877996141 -0.9838153419977204
0.3529856391306275 0.9986026279200964 0.2934686915838622
0.392344293765778 -1.040433306611305 0.3352698821475732
0.4031116823904501 0.9742691150626428 -0.4200617116356653
0.3847357991945928 -0.9801633864969347 -0.4204105076135502
-0.3191826487974825 1.041768162338748 0.3798103375706841
-0.336142724325227 -1.017467975250471 0.3241188422454682
-0.3410394984717527 1.035616369110216 -0.3686557103971625
-0.3370115889720417 -0.9979787318921863 -0.3560425609769709
1.042703465327919 0.330464767600205 0.3474797333649245
-1.009255055415043 0.3521403212655085 0.3191324282073648
1.014910218348579 0.3028608585652092 -0.3244157462872861
-1.018178823409344 0.394927418652325 -0.3425795776010664
0.9486016460681849 -0.4114130524161372 0.3936458589622432
-1.001166257739761 -0.3555058749656488 0.3406671481753065
0.970036862732666 -0.3485759938882508 -0.2588963832892571
-0.998593913711488 -0.4035686531676906 -0.3804404746105093
1.296944773541249 -0.1182598409139939 0.005760595816198143
-1.314430611740006 -0.0006083411534834147 -0.03753405960031337
0.01692310185469403 1.31847624296216 -0.03149866880933364
-0.02100645946136295 -1.324383192943731 -0.005134195288145909
0.0187447465775576 -0.06836655672350404 1.302630603131963
-0.03572609592143337 -0.02133096640215822 -1.316583470573705
0.6823885591326464 0.7083640947242146 0.7401355805604547
0.8119174666381016 0.6957603114898173 -0.702561357855344
0.7821942629335341 -0.7419069001297276 0.755858404875326
0.8538973330678401 -0.5863385385585709 -0.6634235071318343
-0.7492792583105012 0.7089747063626336 0.7060799712778379
-0.7587684987123032 0.7527609004900614 -0.7557772918348038
-0.6769041879044674 -0.7961360637374367 0.6865882226725841
-0.6229058398340999 -0.6846077682184137 -0.8066267684992918
-0.03308729938454221 0.9052662128257165 0.9210420269338985
-0.01934342369873617 0.9456622341968005 -0.9263589649624073
0.0440810325808757 -0.9748333770103456 0.917567245915719
0.02089968736177313 -0.9038163294639097 -0.9362191215761141
0.9281555972895672 0.003656168460564356 0.9251014610776752
0.9762609921550504 0.01519681815021275 -0.927914351446563
-0.9720145761229265 -0.03143086850036197 0.8932112174984808
-0.9155544254041491 0.01153930968441565 -0.931357703513703
0.9236752374713521 0.9491707517239362 0.0323325143575238
0.9359385859156719 -0.9005642927106237 0.01793318775160241
-0.9187449382807948 0.9258833251321852 -0.007825519343680615
-0.9063660538707453 -0.9462113965005522 -0.05403190057511669
0.4640148406191518 0.5258412107897578 1.277185212030999
0.5176665086696134 0.5195235652610221 -1.323323590040737
0.5240245845017525 -0.4850846274992739 1.3314952479248
0.5237800092462934 -0.509514540548427 -1.255580790295996
-0.4901727257302458 0.432394557578429 1.2709905295191
-0.5017584727728687 0.5023840108443334 -1.317870869373865
-0.5543702391582159 -0.5494027275401948 1.273478112104247
-0.5144569711711294 -0.5574620636872143 -1.26851754203072
0.4636274006634838 1.27871192405117 0.5213302506373175
0.5485839851479077 -1.35553834563777 0.4352130530054814
0.5428989983451935 1.287888469319125 -0.539753585634605
0.5499543911361565 -1.243188737343565 -0.5805839037277896
-0.5283731905156077 1.288265172813675 0.5587063994915114
-0.5733261902868517 -1.285989453233023 0.5008041375699545
-0.5289848718846336 1.335830921411951 -0.475158679185283
-0.4921798588187808 -1.249507953073349 -0.5965526181911298
1.296122444506639 0.5068691646112915 0.5460476640997299
-1.293198361273855 0.5222951351050185 0.5025805863126954
1.329009044058763 0.4047940872572556 -0.3698853506837023
-1.327539271727695 0.5140237226956159 -0.5254640523560711
1.343990061344899 -0.4963752625806293 0.502546303856987
-1.270189466724285 -0.5438566400024336 0.4708383732728653
1.272625494229422 -0.5836309522072489 -0.5589374226665721
-1.250132657360825 -0.5581344841573181 -0.5885824053986989
1.728718343542874 0.06247443598841666 -0.07168252740872701
-1.704519450449176 -0.08273440619435753 0.03248482159504005
0.06056923103990628 1.71590362763572 0.05307298380199944
-0.11574783307137 -1.705393885291301 -0.07308530377562628
-0.06705886262336344 0.08277784463953924 1.700879212249876
0.02612227817638462 -0.1131224905922193 -1.715953117170547
0.8284276196466327 0.9926941018222381 1.003148862260753
1.143513300142209 0.8625246638872094 -0.8232471780518168
1.000022199594422 -0.9725907758952353 0.998294709472759
0.9570896547313296 -0.8134039660647669 -1.167425222015741
-0.9141934667564002 0.8393272604468093 1.094953835459121
-0.9598063557771247 0.9962739665273503 -0.9906513279530197
-1.11925247319912 -1.001448092566149 0.8086523883991711
-0.8287793921743106 -1.065802185202811 -1.073539732795944
-0.00955372954764179 1.174552676064455 1.23444926625507
0.03294435799305089 1.243867187859908 -1.196146690611384
-0.0576051699792125 -1.265784649448783 1.181077847158454
0.03291805401567429 -1.186369861510799 -1.253559564698292
1.187964628693047 0.09783609887391546 1.238604649211796
1.253114154234351 0.01667791299601775 -1.20313663139096
-1.260762255027916 -0.03541765059338398 1.169739738834552
-1.195774528989297 -0.07904341816613988 -1.241274034649345
1.21044707317454 1.223665709213583 0.06229280130412402
1.25777018627385 -1.186283530432564 -0.09031871500149445
-1.223146721532852 1.200669030954674 0.06444167199553408
-1.215550017248454 -1.218462326856889 -0.09547843618351812
0.645896319969397 0.7531721880594324 1.719453063630223
0.7261535351533337 0.6792992112533084 -1.659412855605201
0.6539919680604961 -0.6272656735588933 1.715294681549697
0.6511572485077983 -0.7103946560935204 -1.792605370050055
-0.7580628793926384 0.7069560810042734 1.707211866101296
-0.6319465481895592 0.6963263314133966 -1.672755595658658
-0.7174487798410406 -0.6729863044554872 1.646943448514519
-0.7385828945810164 -0.6796733363756197 -1.75651565335804
0.6663397661501564 1.66595423288429 0.7784376359453395
0.6793901010020603 -1.727117597213836 0.6024766477325751
0.7309826313845034 1.672961401918279 -0.7163641509743746
0.6299017752012582 -1.633222660013206 -0.7385905719685594
-0.721917382013168 1.649308443043374 0.7688619149750884
-0.7526140798977573 -1.73296529267653 0.6301071252629779
-0.6874423511652591 1.724497540305625 -0.6288231749117308
-0.7432461070565843 -1.71916418973113 -0.749251851267705
1.652316371666799 0.750524753887018 0.7689042911080306
-1.685868983130581 0.7059193357596694 0.6738870700120565
1.719971886564441 0.7352815827554351 -0.7130739395395796
-1.69290940755638 0.6679561757460284 -0.6990270587271004
1.719456356073697 -0.6211676747193992 0.708042731036902
-1.755164594555313 -0.7213648589152716 0.669418377951374
1.688104493121814 -0.7460505274952682 -0.7537937264216028
-1.696478334833206 -0.7044082817325567 -0.7015818954558269
2.231547996491505 0.06436663330694845 -0.01623826833537797
-2.243825631183067 0.06965947758669105 -0.02851900738864798
0.01864703214893596 2.235994279535115 0.09592145688158145
0.1187831035207297 -2.22748177885323 -0.07775875742363035
-0.0860412274803201 -0.09793847038275064 2.227579310257305
-0.03994443703624687 0.2550743000894167 -2.25225887557247
1.141672544012214 1.539199078019436 1.297690773047127
1.245720917630586 1.14611014573215 -1.559995918049084
1.188205027324754 -1.272977493317616 1.432538934002325
1.077616455521714 -1.682243494422729 -1.084675000572195
-1.538022080623276 1.374405133060804 1.050233706690423
-1.212346249615682 1.16753534007158 -1.518413281472387
-1.167815768852633 -1.127429176839373 1.592598451616729
-1.633545816568025 -1.225364377788722 -1.112173867500421
-0.1333531176752644 1.575517747401224 1.64105186969035
-0.01761108461768217 1.687113687969628 -1.516687575575911
0.02931946597336836 -1.6378131460504 1.518120269309313
-0.1171764464801384 -1.614884594790198 -1.603578445736762
1.549938986646153 0.03551276551564738 1.658911406482048
1.5970582775758 -0.1091142763989291 -1.613564143646236
-1.641538612818126 0.07706498300357784 1.546306450844094
-1.622455290522878 0.07353399046675353 -1.589546069175422
1.51730796157199 1.654763371131862 -0.06698434724600393
1.598250847333708 -1.563575182868816 0.1423219247125163
-1.579399285810727 1.591498369482055 -0.232167652476984
-1.612204692333239 -1.626771596431183 0.1549567494140441
0.7950962704611098 0.7694496455980501 2.329716737743009
0.8876594689222779 0.918354315807327 -2.331267779754447
0.6032633409367921 -0.996833322953483 2.29145106574929
0.8353634064884468 -0.9038469683246525 -2.253257228903575
-0.9434401899784701 0.8738296148926672 2.249633979991415
-1.004447321814991 0.8628068673633954 -2.345102765768311
-1.025055017740368 -0.7374214011978053 2.329379328479099
-0.8599207477253162 -0.8643664596968146 -2.250151054175219
0.8403485477201129 2.343564138788787 0.9145431594511965
0.9538041753264767 -2.285315649361885 0.7599578052653101
1.071680807774633 2.227723132195901 -0.7761790515519047
0.8810781885792206 -2.363721556502122 -0.9205040066426574
-0.9122350294989625 2.239027716465221 0.9323901723938145
-0.6657024055177522 -2.280569458167912 0.9611809135379418
-0.7859812710540752 2.341611554841655 -0.7459738107394818
-0.810168836663902 -2.310607272108335 -0.802736007907039
2.172656024555653 0.975934236553587 0.8304597882447177
-2.366223962502725 0.843397997962074 0.883521754379496
2.263632988017713 0.8904594024162232 -0.8564014378702364
-2.287876679579864 0.9709390792993117 -0.7726060417245308
2.245842608910193 -0.7714781623923728 0.845983824765261
-2.312872555115495 -0.8351827545015733 0.8652513716501988
2.159669222818173 -0.9443909657820071 -0.8940359133779869
-2.417717351272383 -0.623084625272921 -0.8955060435556156
2.957235038065313 0.0187282818245309 0.08636428180007993
-3.098894460960191 -0.01925907409963336 0.007243499687384722
0.02149859605461709 3.029146954794754 0.03031724877142903
0.000131981765759372 -3.037652692130937 0.0319083247898737
0.1223029476463637 -0.05230650826163325 3.046962952512247
0.1444939714033339 -0.1796962736293597 -3.006547686077162
1.889158025413704 1.516717847133219 1.639421505863956
1.694699611253724 1.622010342604467 -1.818344943598615
1.537733944325037 -1.728175380183599 1.717562321379863
1.731494690751068 -1.714168806123627 -1.648903150259878
-1.612761372832424 1.718318167388572 1.797429120904529
-1.809838793273171 1.659127880454793 -1.469449036674852
-1.54943549437356 -1.807225483872291 1.580434984503723
-1.597510145961348 -1.692227003041162 -1.718033888155711
0.1812795114394845 2.018647028735981 2.164048511918244
-0.08871873024258975 2.152511694217402 -1.949375875168409
0.00156783295110771 -2.145122462999722 2.134685413683597
-0.01279819967131228 -2.151433805955239 -2.096289552499366
2.102803034610669 -0.2363245592504505 2.006355509426623
2.24695195515781 -0.1441890376062013 -1.910758960527018
-2.087518466751702 -0.245927169117234 2.181396641991593
-2.081559384760834 -0.08685410095392034 -2.165308117675043
2.192213624650525 2.08588518005953 -0.07875725085364808
2.250049462893602 -1.875615158776692 0.07733369445205598
-2.021143510630848 2.204032696002729 0.1006239076298664
-2.054889463489466 -2.084115150713092 -0.1305923640188873
1.429874701884686 1.288941852645707 2.894199265135036
1.317375602532922 1.288900833876549 -2.917801405713341
1.501932524991993 -1.331514746489249 2.879794554917149
1.388596367909187 -1.232835737783761 -2.926984240721714
-1.170376642844881 1.345754669594666 2.964416873132271
-1.068966183809591 1.385037449143099 -2.932993158039529
-1.279338534305575 -1.276047872294417 2.977443533877223
-1.235809949686008 -1.207503407346698 -2.988171206195384
1.380417461880562 2.876305841692066 1.332786758190228
1.492296328956936 -2.893240246283698 1.130043945448924
1.284929203894103 2.902875356036819 -1.364598810740798
1.340478667307352 -2.962195802073299 -1.25908249183464
-1.144015262147828 2.956166204697264 1.345758383592935
-1.274367758627339 -2.934103307832401 1.248229768202462
-1.204627083804548 2.929707832754835 -1.371126061837664
-1.327060953224126 -2.957615485210732 -1.235176206028591
3.018311476214346 0.996164344430218 1.405156262299519
-2.911168526022664 1.328533662808017 1.227057841377782
3.074735891563961 1.0481544669974 -1.203354476796607
-2.767090739715571 1.392590245850294 -1.461565410695128
3.028028288254002 -1.329094648532534 1.139098955743313
-2.813098777184666 -1.536101267081686 1.266566476058848
2.956902116643252 -1.393670477950484 -1.26305208756266
-2.879233877186504 -1.413487084629656 -1.358738438961002
4.142947020863266 -0.0007842383781687428 -0.04472766244038257
-3.986348900505956 0.01650609792712122 -0.0287096433754461
0.0155949960281005 4.002420225497173 0.00144527433263797
0.02782175311510291 -4.062104573392801 -0.05986638365903021
0.02365131662810988 -0.06213529093719976 4.028995653426105
0.04706202151489355 -0.08918251161232099 -4.041751311091343
2.425157631185312 2.5412458153779 2.380841858166123
2.276973893390475 2.508314446862681 -2.390522006406408
2.384922223429389 -2.469817198305944 2.534037024331186
2.467595828628061 -2.366693650261236 -2.440481535736507
-2.368005120411869 2.470631854292767 2.260204564752372
-2.55789383544501 2.543863965128662 -2.376621832697861
-2.246064798306898 -2.39980762498834 2.735714035400436
-2.45446325635115 -2.291132687410128 -2.517415031456667
0.09992255376497192 2.796342977143991 2.888253238905465
-0.268567901791713 2.780060370494151 -2.981300610794251
0.001969677110288545 -2.99883763319035 2.569397180952777
-0.01234554964211418 -2.820866692864329 -2.805912144238274
3.05487699023139 0.1383692961551668 2.791459893041193
2.886600065286366 0.1148771107129444 -2.83415163009444
-2.866464316203558 -0.1236239489103279 2.714389984685635
-2.680190917062497 0.2940477930901216 -2.914807277927491
2.908125435413485 2.720905718483806 0.02846771792377769
2.977659708602189 -2.908820591063416 0.1838649616564843
-2.792840718099947 2.756889099557559 -0.1399766082333449
-2.804339912691628 -2.943790837719924 0.1902231319661969
1.743250879038825 1.677368382984663 4.152061493392466
1.606414700341654 1.746935943408316 -4.186735203941392
1.32287966584502 -1.841064245970494 4.223254409154048
1.786717626489049 -1.655898255915448 -4.139841501132445
-1.590504995965816 1.814977952408211 4.044498082254965
-1.86252702220546 1.387822191301681 -4.252083510017085
-2.033058157154942 -1.320677691867039 4.154418958256509
-1.464728075921347 -1.903877817656455 -4.165341890520279
1.470491385982463 4.240948421364011 1.731914785193542
1.693270336331897 -4.29087209653787 1.552534873021419
1.852240277932365 4.129613554471776 -1.534488283503908
1.42677547209426 -4.172187976779084 -1.929357925359341
-1.824754808968311 4.016600613399273 1.722730377812241
-1.525613854784808 -4.149648557166515 1.905249176144548
-1.526845188014098 4.298682104920367 -1.430849594088779
-1.869634157616905 -4.11859409565983 -1.578558693773537
4.236144682889823 1.942795149149945 1.491981362415944
-4.026272522439778 1.645351489942664 1.85292704533632
4.13014878167899 1.64836602107062 -1.928186839048959
-4.231699756373686 1.857800508546684 -1.268896319347944
4.261527714910864 -1.538877265683567 1.877631599006406
-4.215353725330758 -1.668940054506671 1.453353689373458
4.196031530769774 -1.752844114709789 -1.741454645110281
-4.104186688218699 -1.405187111097241 -1.941439584512371
5.807559248629559 -0.09896080584963338 0.04399336884796213
-5.731236400713259 -0.01890588948646592 0.1026643931945767
-0.1766545808571961 5.761974557908046 0.0007897947554474207
-0.05932963901887008 -5.773692189553884 -0.08002906961738154
-0.1247505611616965 0.2009093792927519 5.683973682479981
0.156123374702597 -0.2902453947543514 -5.729898189415357
3.292701450611716 3.657135290884823 3.590334482985777
3.177646657771825 3.594896737933486 -3.88948558846352
3.409312463152575 -3.439157948820343 3.682485655804135
3.547753557492412 -3.50548373808906 -3.59278541665057
-3.539159926852349 3.497427378613004 3.416117388476493
-3.403969998455397 3.429243095568362 -3.662521672795406
-3.460758857164271 -3.459364848751841 3.735998621067269
-3.674122642955092 -3.417013872380181 -3.424911818710647
-0.1616118699049435 4.067780969418606 3.979353314442116
-0.09777113388020321 3.972929127953706 -3.973764131796344
-0.1472278134019751 -4.030351006139323 4.059216540339946
-0.09721037301469665 -4.15442626949528 -4.033576420548543
3.950488137748131 0.1228552927513635 4.143864894858977
4.11432025870268 0.1145540939024221 -4.057396208984142
-4.104321794374708 -0.05723766386895617 3.978145465513144
-4.100801904965708 -0.05173871242909282 -3.999496693793767
4.016442137972819 4.115769088534787 -0.2287634383015273
3.999744631701276 -4.125268152865294 -0.02288989161893702
-4.11252490545982 3.982418556036356 -0.113666801098138
-4.010480742375535 -4.043986492086293 0.1907911136737489
7.156328083226601 0.3151059464053708 -0.0005114318377401689
-7.179520366614861 -0.09375207952825278 0.02110768244250963
0.02769768630884735 7.148228594350565 -0.06035538776542144
0.02286754796958367 -7.199131151488742 0.1445352639707843
0.04577125726071972 -0.1117718904043745 7.141582022694651
-0.3799374408877156 0.07420002156122057 -7.190637959224319
4.42304527549413 4.470157504094355 4.409652186134502
4.389251666456679 4.515533086538281 -4.558532765522258
4.663387300838943 -4.360901141959451 4.28805505114526
4.555502947728315 -4.401310606413372 -4.538558350771252
-4.367398968287985 4.35832742868338 4.558350971584226
-4.584693865989284 4.49252335867273 -4.223406891630623
-4.445704186607144 -4.465180742200699 4.552483298912949
-4.353424690209475 -4.70276058031389 -4.358285729385293
10.14201332565605 0.1259655847064446 0.2103370366521116
-10.15207936782731 -0.07773822983294119 -0.07780345366973461
-0.4134248886522592 10.04342267529024 0.4636690820080609
0.5417648073917095 -10.17160308190666 0.7963121002406679
0.5807503246320197 0.2577576684051074 10.05795590314929
-0.1620378736845101 0.3393418826748011 -10.19812269592732
</grid_points>
)"

View file

@ -1,579 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
Def2-TZVP realspace grid (Bohr) for species Ga
sqr error : 1.523424817597176e-06
penalty : 1.926409282549976e-18
n points : 536
</preamble>
<grid_points>
-0.004990329461490483 0.04608548392086324 0.05429883654669122
-0.01231592930165517 0.002531537635837021 -0.002863258664099459
-0.07966384243550539 -0.01008295927316874 0.001695190875859033
0.03602613731412321 -0.02142916677951941 0.03904285863650006
-0.03560713379094962 0.03364814074852712 -0.005298968627695278
0.07113710548801977 -0.06028743638191429 -0.06457603255920846
0.04601095783168829 0.04194282169443792 0.001610189578408857
0.01589550440416148 -0.01921424090725281 -0.002163237013909517
0.05154339956446526 -0.03242676278486727 -0.02387075372750512
0.01130536929929745 0.01820935967015781 -0.03372346294590202
0.01395735438070455 0.01776572921566456 0.01732088475354369
-0.02399027227888744 -0.03148156756261158 -0.02400980272937241
-0.02248801377012673 -0.01585848339575063 0.03431370762271063
-0.1674995723567557 0.0290652750286448 -0.001759003079495862
0.07320766719449955 0.04965972503658243 -0.04263223932586713
-0.03911183669894003 -0.07389140349615966 -0.06525209091292025
-0.02286610504541817 0.08181383764474132 -0.02697487326655954
-0.003791067631246246 -0.0771182745506593 0.009641181700620206
-0.02689941022967659 -0.02693193374583364 0.08776320773826991
0.008011061413599129 0.04030525595852007 -0.1174418771659727
0.04607518604944888 0.09452903167664026 0.05213384064661601
0.1062282898704256 0.06818620784853135 -0.07427764604956791
0.07543150090648167 -0.008557241659556025 0.05187783643555292
0.04080563763726327 -0.02636453953755611 -0.2216527910976757
-0.07984328794309926 0.06379740907416279 0.06203123738484276
-0.1010996864548989 0.02923308092601554 -0.06283448529097002
-0.09195012027279438 -0.07687536162647765 0.04065554937118259
-0.006631002399064571 0.002196002285925464 -0.07737635952749961
-0.04747855029940726 0.1369356326979709 0.097303956639246
-0.01943065023651692 0.1401973886360448 -0.04119812357137439
0.04803722712429126 -0.1006568742070184 0.05236560632474407
-0.005307087476516987 -0.1647110956119491 -0.1389891659660565
0.02946033686425898 0.01212501937841139 0.1321513749779329
0.06588320249755977 -0.04984311354532856 -0.1374074500989213
-0.104454999075405 -0.01763346007820561 0.1362024713649098
-0.08773678162038236 -0.06626257835601136 -0.1148442611727314
0.1882942671267405 -0.0004989783810062201 -0.07802277801527044
0.134761983679821 -0.005037126122796073 0.03254335523547011
-0.1235554295882914 0.1492934320648965 -0.05370042587623369
-0.1206740080235569 -0.1458340186579111 0.005845348795937784
0.2588902330683667 -0.08015277688992511 -0.03379666665702628
-0.2162901799214917 -0.05203328638819798 0.06633930299012854
0.01163296053662853 0.237675255574096 0.02588019171458154
0.01825349472316411 -0.2079522044154628 0.062761608676858
0.0641191784809222 0.04715316882585848 0.1783864563799359
-0.1116067679662139 0.02635860766423282 -0.2521835728432394
0.1123970032852226 0.1297348634819938 0.04763553208361777
0.07560239887504373 0.1389539352654542 -0.1214433663934192
0.1589008574346514 -0.05349906371534769 0.0861800904203856
0.1263359307925552 -0.1261137808944999 -0.02904686957893434
-0.1394258874625712 0.1072101690788947 0.1564478445438387
-0.05070628924490175 0.05815358351286019 -0.1665265252103445
0.007914417958500414 -0.112998669032609 0.127896473715621
-0.001828740771242058 -0.1482913541945267 -0.03318577168770275
0.05901430700471015 0.1256427002825804 0.2254641137056877
-0.06652809368869424 0.1805940712911568 -0.1810021972143323
0.02563080592269276 -0.2859617681740914 0.09365150295791799
0.06493269347852196 -0.1487421035098995 -0.2609113404294311
0.1612685039992091 -0.0990073755640344 0.1673578067901183
0.172880044188089 0.02068790019166095 -0.2083551691406862
-0.05335833957130012 -0.09409636683828325 0.2200075345394918
-0.1852306255004501 -0.04341659872101312 -0.1286675679144767
0.2108115054050856 0.1168481796174383 0.05215893119107001
0.1424818903272859 -0.2013347587940942 -0.07106389074338004
-0.2275055286483194 0.1482400996820662 -0.02251278888574025
-0.1548230124872091 -0.2165611806242678 0.06346311477495779
0.07875298473383822 0.1887731257521133 0.3240564541932381
0.08406909850530907 0.1126278492798369 -0.3274909660387981
0.09675841184273283 -0.1365809224723562 0.2939488149357475
0.114955292865055 -0.1956988994692563 -0.3654545745080759
-0.09973180354034344 0.02633057680563061 0.3110138240245301
-0.2217833282013255 0.1593858562722383 -0.2251198103998043
-0.1430598035438697 -0.2289427310555875 0.2435326888795131
-0.1422303893188509 -0.1287571417946307 -0.2910548636437543
0.1476341049471141 0.2810469796533487 0.09514787515304918
0.02529920120119486 -0.4010349720122285 0.1363463107678762
0.1409876501844495 0.1876605425460645 -0.1432346622829409
0.05642950013179725 -0.3412485321470064 -0.1190185541929884
-0.1276627688307838 0.2613055167488736 0.1307265085742416
-0.2223487682426397 -0.3083436795027112 -0.02295306154776891
-0.01027729243362147 0.3197155676918865 -0.1174982272376714
-0.1090188161707077 -0.2244871335965522 -0.1224290618801246
0.2734806362091669 0.03952819795782653 0.1766884889625623
-0.2560853431294765 -0.01961029725646612 0.1808492118609603
0.3048777463844204 0.1304660529263518 -0.09345852636919982
-0.3318515745489266 0.1668531962129444 0.04398399822144122
0.2678843341255152 -0.2110578525898862 0.08307524173932024
-0.3925274010311948 -0.1126547189901807 0.1381726676596268
0.2677053978592959 -0.1453398006112136 -0.1764355549081817
-0.3010330942546764 -0.07959907394242442 -0.06002972855888965
0.4377765301710428 -0.04963883928774101 -0.02567825542245569
-0.5700022809673968 -0.05716758595594189 -0.05228047685042166
0.08053494575116607 0.4249690723292059 0.09365621004088351
0.01483208604433442 -0.513856504500803 -0.07126740591563832
-0.003045231710331675 -0.1156962508808527 0.4276806075911966
0.1208352932856935 0.1533528270867881 -0.5012786609422073
0.1137536106139771 0.2363834441575712 0.4328553058570203
0.2610440326388568 0.3097474945101135 -0.1717761543769888
0.2445827816579119 -0.2761195880166451 0.273092715645555
0.1277624667547218 -0.3067660421115372 -0.4648820303124994
-0.4397542108943076 0.218764748095515 0.1631678015761894
-0.3768321568197685 0.2406462233135416 -0.1848394032947552
-0.4363057570408038 -0.1804916572955624 0.3248945024188392
-0.3830085062510332 -0.08121877783495905 -0.1774009902991169
-0.1999147301885975 0.2997244131339938 0.2440828197588898
-0.05759290999231702 0.3337017714154418 -0.2876378927598501
-0.1496843963960437 -0.3474531683272948 0.342065118469737
-0.1340898686437203 -0.3349084840178049 -0.2858554961431521
0.3235654895286951 -0.0380279882139111 0.2878179604029067
0.3027159249059322 0.04717690755754606 -0.3350512041853552
-0.2420894743071172 0.03695648165636815 0.3497126871251564
-0.1463918149409319 0.0138624767503966 -0.4262460600358327
0.34291713338459 0.2439524963301559 0.129224039000742
0.3105575142103718 -0.3299359597545554 -0.1138317983846466
-0.1813656421860695 0.3915692308062086 0.01816815226320951
-0.342592883808107 -0.3808691133762119 -0.01059518373195401
0.196400481953787 0.2400024032693495 0.5999628744000389
0.3364493787276079 0.1374074734551814 -0.5643112134519023
0.1458699062814611 -0.1882435669786049 0.5344824991040916
0.264468816720196 -0.2056826569323791 -0.6836582588520392
-0.2085592449706054 0.07523152311655126 0.5128792173659528
-0.263831673130922 0.2927837008401901 -0.4421050879457069
-0.2076568101137374 -0.03407252611409476 0.677362696047032
-0.09469657055586786 -0.08965816031731326 -0.605750640490311
0.2637550153014869 0.4833084312473273 0.1633331247166276
0.1625451773761123 -0.4927434336426734 0.2848374536900485
0.2407680001664467 0.4397090016366679 -0.2831924737489722
0.3118058870251544 -0.5359177574010271 -0.1416227439219697
-0.1794437457649453 0.4715505841344102 0.2995569887869734
-0.2640541770439389 -0.5817767525254529 0.1231691559050012
-0.1069669464605193 0.5391327892427139 -0.1085322722811354
-0.1868985986469846 -0.5379428042012504 -0.3050008294872135
0.4480792288075614 0.0790781014363552 0.3389854116991788
-0.5226528801796713 0.221615429263898 0.3654037960232969
0.5224020222114563 0.1958918234351772 -0.08954057921740824
-0.5189580564594478 0.3722564352738075 -0.07200241615682203
0.4878131107578141 -0.2717502834672794 0.1521176635859332
-0.5878171982670914 -0.2553989745795034 0.353503425509473
0.480365145519156 -0.1553996690589741 -0.2885837995627183
-0.3661426250926741 -0.1682662465003846 -0.3936041879563681
0.7211645243595121 -0.08332358083466644 0.02152921487453544
-0.7606214737536749 0.1064143005662982 0.05977834815311358
-0.1334416479984805 0.7172488225580548 -0.0174762480870395
0.09171470458754914 -0.7482049340981157 0.08956836678966573
0.1733018600901388 -0.01296916653552918 0.8380555874240962
-0.173727332838778 0.1971266289007896 -0.7216732266273915
0.5871614544740307 0.3577858683902769 0.2288446567682199
0.6381837815728851 0.2320562130202589 -0.2851142012745674
0.2249309172975469 -0.4348273661570358 0.5716133044440993
0.5785147515101789 -0.3558719179773941 -0.3534898432034012
-0.1746716334274043 0.4386188863835045 0.588315182056694
-0.4173685329742854 0.5330355138005353 -0.3841469062216999
-0.4843709888709563 -0.6573705603439536 0.2331042146418413
-0.2901668620298861 -0.3295003601897582 -0.6471732576999073
0.1944111150529727 0.6298306939256614 0.3322225208989514
0.05144077605317164 0.5156562505628072 -0.4864659165376066
-0.1734377322128816 -0.4508310288023353 0.5206838149745493
0.1639589123605978 -0.5791385678718768 -0.4826459260468228
0.5196011209615442 -0.04228842850740605 0.5135598199298435
0.7482599136045838 0.04135807422970399 -0.5157912822893982
-0.5664999336141182 0.0960904094047895 0.6320302493641897
-0.5930056611009723 -0.001766218002092015 -0.4197448751911473
0.3546693291567821 0.6292935189472969 -0.126399549900983
0.5337434717550071 -0.5079245401631818 0.2045713589614281
-0.4719908816443019 0.6059625993889033 0.224235970004754
-0.5671557822805475 -0.3753884458984649 -0.1121146638660389
0.4170601121398274 0.4123365991550494 0.6865998175454828
0.3721079950599011 0.4274767880724436 -0.6506547030764238
0.3299098189830297 -0.4676126988015179 0.7598837965064681
0.2091931325715059 -0.07273390177580469 -0.9035529499502105
-0.236356350157184 0.3562679497880697 0.8616477966481283
-0.2180580757059312 0.5650473190669073 -0.7401863919033509
-0.2902893655455602 -0.4140906180372033 0.7738765268373158
-0.5143553056520415 -0.03525470629568011 -0.8162559686422438
0.4795500429896706 0.7599203065007646 0.2137987302885212
0.5776609896262754 -0.7324326731901589 0.3050040928759438
0.09234535064115049 0.8732468827745172 -0.2747738321241052
0.3961887581440916 -0.7859263201969808 -0.2418556191698767
-0.09175360299473977 0.8176425708469708 0.4441638420161761
0.006246252834348726 -0.865361466077588 0.3690648012720317
-0.5013383330378194 0.8458160833900297 -0.1149323823194355
-0.3037740846122085 -0.7495957678794727 -0.273533997325369
0.8358329234373748 0.2506345182735714 0.2223920415810813
-0.8228342762362002 0.4172420409137267 0.309658385924821
0.751033266414039 0.5452087070256508 -0.2149605494745603
-0.8042962443349913 0.3025104806022005 -0.3221476071070571
0.7543835609465561 -0.1937028193912738 0.5192658770188576
-0.8550077453919864 -0.2631525377216426 0.3143715169690242
0.8771547630692234 -0.344699784358354 -0.08713110357882584
-0.7569317028369393 -0.3515733468837169 -0.2839711649897482
1.127123005582431 0.06044533228117027 0.04354698536604022
-1.106446567247315 -0.0561994550577605 -0.1311654568936574
0.08298498456593599 1.126902508108293 0.1308064204949828
-0.01509924687787434 -1.072889080917123 -0.2175868345465229
0.03866576841050776 -0.13601175243627 1.105773420186801
0.0382736190747314 0.1732672411734902 -1.102000083261667
0.7306158789985673 0.6522116915328233 0.5224415087115377
0.48341533927403 0.7168682926431188 -0.6864570897968905
0.591485239063378 -0.6636647036341081 0.7164608063020277
0.537407966008283 -0.5142389187818214 -0.7136056037963402
-0.5520656355965499 0.7539052467039444 0.6063403489478043
-0.7607833634802982 0.4870214759035247 -0.6792699675400913
-0.5880820453346778 -0.7319061955233207 0.560493680896858
-0.7078460593656154 -0.5795116179449638 -0.5989612791952934
0.1536766795896297 0.6674720613838705 0.9189397489014123
-0.1851650371848504 0.9742062168956591 -0.6554206740425954
-0.02126808487852275 -0.9666054491034126 0.6973843869141807
-0.0945934146074115 -0.6296778660877428 -0.7691164250226625
0.7419625802160714 0.03026227686067037 0.8551365329805789
0.8538030212745613 0.1280566768014271 -0.7008111012367317
-0.7741838325893203 -0.03568924694939542 0.8122625985680801
-0.7270766747226272 -0.0869165492663144 -1.024718540726734
0.8509026392380477 0.8383153600442818 -0.007064322170698487
0.8363265378843164 -0.7770484871474809 -0.1637742026301078
-0.9460096984487243 0.7483214706756199 -0.01581626856743526
-0.6823779497557106 -0.8396415131887441 0.00318840990030133
0.5557030293582812 0.4089807095181863 1.199937957965459
0.4635455033549889 0.6311051701697994 -1.138668022528348
0.4533261044771735 -0.506777371210212 1.168058686163595
0.5924657984001398 -0.2385155759378946 -1.124167006354685
-0.4045659332873044 0.3844360077909668 1.184997268908297
-0.3853938093763589 0.5884561504268475 -1.155190804084539
-0.4660994058480406 -0.5771774697787871 1.084531294755648
-0.1249987210327145 -0.5914268451322969 -1.090482885980606
0.5099964705439693 1.109089114625265 0.6283309867466569
0.4678239885426906 -1.158865180207701 0.2447113365592478
0.4328634358546135 1.202831864497738 -0.4369492868126942
0.4742672240717317 -0.9871611140931856 -0.7084538915184569
-0.3400217942208473 1.122417870304327 0.6610779757573895
-0.5794536712865965 -1.199817604852749 0.2296801818253625
-0.584710101020179 1.197287733375464 -0.1569373225118959
-0.4161008021096441 -1.126006254183366 -0.5990864332035684
1.158829573794944 0.454779101476374 0.5685366138039124
-1.134196985902691 0.3996984224235542 0.4966923318513337
1.12101935473589 0.5011663360035875 -0.5390231268162338
-1.260479565297519 0.2821783869991121 -0.5001086207290016
1.111434584585976 -0.4718675656639491 0.4455366165679662
-1.089377689017131 -0.5043522241386172 0.4023542997720476
1.138810131595067 -0.3831453257969705 -0.5270102289752876
-1.113584305438914 -0.6563947024669888 -0.4151940712047618
1.497712749320954 -0.00941067254972751 -0.01682104982710347
-1.490570751648269 -0.1188033080433188 0.09138866383793726
0.02235095814169162 1.505698567849189 0.09207178109247971
0.1156544316933428 -1.47664594198601 -0.1369562802349623
-0.03639187150396249 -0.1293132685561604 1.502538144463516
-0.0105836488079611 -0.02683910063982524 -1.489363483453075
0.8928678973162456 0.9237776396642307 1.058726053732851
0.9172112853321543 1.047809417979485 -0.7988588078549498
0.7787940904873654 -1.029385422342401 0.7734929280024637
0.8867266292398437 -0.7280400970776375 -1.057621197465316
-0.8659746106544013 0.86253174530356 0.8618404940417672
-0.8767059541021121 0.915101419525135 -0.7755557883776217
-0.977330258991901 -0.9456298937953693 0.6977368917004204
-0.8532473268552132 -0.6486250539957551 -1.087012653882236
-0.007580986765403455 0.9474363884531896 1.29653179855962
-0.09390162599537805 1.293489480200994 -0.9381127251934478
-0.0605832777166457 -1.240782618716946 0.9497503808297794
-0.01705219706204581 -0.9721688572319452 -1.274337449173937
1.11488746975492 -0.1956081798145683 1.069268849511456
1.153225634052507 0.1150154022327433 -1.09968266485493
-1.083011885351451 -0.1031110185031842 1.065596445874529
-1.051860127263489 0.1666039510956415 -1.218809532418087
1.105549233465328 1.101436591121799 0.08145234664105425
1.110634358088579 -1.037939281295146 -0.1705859320860861
-1.240549595917617 0.9768879029456267 0.1198435182434285
-1.124755353933762 -1.190169600930522 -0.234938229492193
0.7074890407942913 0.3040156921288834 1.632038650447785
0.5302223444312911 0.6799710154538736 -1.539997703417857
0.5533742859024839 -0.7023252510908419 1.532866561800599
0.5849815120700315 -0.4007247416510856 -1.649019332346439
-0.698442732738914 0.4930950089647951 1.524426388511118
-0.4622993609786077 0.6811550748022345 -1.556295493019644
-0.5881186260059497 -0.6912656597907858 1.498972215291576
-0.5606915721446222 -0.4142175802801355 -1.686831060667038
0.4991157651707493 1.585741594635548 0.6795126062482202
0.6567057339811466 -1.604353421551956 0.3538472985740342
0.6101615813290386 1.61381445978486 -0.4556533111739479
0.6387042376654952 -1.426465005017254 -0.7873833140933449
-0.5181580650440293 1.514890521932087 0.7119867777516882
-0.5672518011233817 -1.669850015843089 0.3480843419104624
-0.7622987964708562 1.555157922521202 -0.288687908322028
-0.4092264213483867 -1.55052846269663 -0.6749900272552463
1.570091318990838 0.4878735863801924 0.6770282355017426
-1.574578445324307 0.4534654118947589 0.6778185886683965
1.605882165326088 0.5927443986871931 -0.4877776970116534
-1.611289385986779 0.585535045128602 -0.5207755014893282
1.512224397369987 -0.6779031406746382 0.5347039977682563
-1.591921637492359 -0.6430960889334618 0.4761193570110555
1.592210819276731 -0.5248623558938906 -0.5935101947973666
-1.593693323370883 -0.3966742996343945 -0.6407936939548279
1.995369698056968 -0.04990744134922475 0.05527410997578361
-2.013119714576852 -0.03437113356688301 0.008583277294845411
-0.06345340607146463 1.974210396479035 -0.04079319956849253
0.1401385870903625 -1.993077896166162 -0.2186056829801444
-0.09400947020173574 -0.01634335363688166 1.965540225096412
-0.00766759724881186 0.03990500800734256 -1.997087646216843
1.139307287691307 1.135255270270104 1.284591608218704
1.201742107751246 1.169651873943052 -1.112857037606523
1.101077446842945 -1.22976238145069 1.100656517773805
1.166120245680054 -1.086727008794212 -1.265901224239929
-1.145574811530503 1.17162314017482 1.089775543511874
-1.088518700329805 1.173131415608165 -1.101945395298974
-1.132766016448143 -1.226618239257578 1.037263802825239
-1.147046489540167 -1.094471671718586 -1.140985170256262
0.01353864587679801 1.298187050639502 1.627953619155831
0.01597130408717159 1.591531261866914 -1.32936338168038
0.02008329035007605 -1.586572361338682 1.301648050505258
-0.02174063497244469 -1.374442795524774 -1.572561464379987
1.547177340876739 -0.169765966129399 1.379920107514771
1.502871098695802 0.0728406213275839 -1.435213858555659
-1.444770992889266 -0.1487981858212793 1.438847406786872
-1.44239636959279 0.04240420943905179 -1.510266844799908
1.444556980905304 1.431526339427905 0.1325606188636124
1.495239961394114 -1.401433970065007 -0.1271915804969025
-1.562220272251009 1.380629908925115 0.1141702993520506
-1.519055045515045 -1.473955014185847 -0.08796864969911354
0.8753355074391735 0.5234642804188401 2.101962248382246
0.6705585856318759 0.7226845129418245 -2.043717437311903
0.6830929171575155 -0.7745017775068509 2.046826583804362
0.7505111635175151 -0.6830359266664497 -2.121102624869506
-0.9539579486320372 0.7290368071814459 1.930426698846178
-0.7322639580578205 0.797651374506388 -1.991874229461102
-0.675524049922715 -0.8198833722142318 2.012584157270553
-0.7779836897229531 -0.6928172124555771 -2.093273203593099
0.6461982959859752 2.057437138432975 0.7633366427353414
0.853230111654501 -2.084444944144626 0.5989277210069825
0.8867503529001414 2.016977409232778 -0.6427627338218384
0.8573638129054181 -1.962107174961899 -0.8913453389642315
-0.7098535451770533 2.009090633788274 0.8106534774121953
-0.6994799506749 -2.130170995987405 0.6239844534383644
-0.9093928398557073 1.998184431048648 -0.6471596367436377
-0.6430166242546089 -2.030988356965861 -0.716656883375587
2.025333786487477 0.7403081311078763 0.838973199060428
-2.062516994410724 0.6623889524188349 0.84761838104
2.102452347800889 0.7822303022636995 -0.556218154147169
-2.011878308596952 0.8041880185174494 -0.7666836400653368
2.024052715666342 -0.8973480197238729 0.6670123797974052
-2.108666808729829 -0.7409835622520965 0.6713379057234536
2.119000204934002 -0.6514757006709015 -0.7730736024392284
-2.080182578253406 -0.6303938036730486 -0.8365555069506955
2.553918439130936 -0.105668063569843 0.204868829186959
-2.569804149896777 0.1553253506431876 -0.04614411516102508
-0.03446410546136699 2.520132640920233 -0.2127863947179759
0.06990213222812551 -2.569203654601083 -0.1884891356805239
-0.1888681985677893 0.2018839596340453 2.522331049976424
-0.07631776347927875 0.06403178501054936 -2.53652028454091
1.445049632213912 1.537614525181397 1.463982828269821
1.520842937426866 1.345102683239906 -1.535840344863902
1.472954375953444 -1.37348132302864 1.558847440652799
1.537027270007872 -1.544441710695343 -1.463658278125827
-1.504840735708849 1.588417590988583 1.379521916516301
-1.422712359979872 1.421365229206849 -1.587980998389964
-1.424865816389558 -1.407319288546754 1.465591832884638
-1.41932096043955 -1.554871932345338 -1.374470376082229
0.007665078049982545 1.856208479912585 1.913760389279515
0.06264190434573134 1.848266077808752 -1.874753910708252
0.07231905827579956 -1.884787611331222 1.865491661136758
0.005228401442844608 -1.995539103371679 -1.818371278143512
2.042691947248839 0.05311148968396916 1.827623349914979
1.889591058462175 -0.04150425142753844 -1.896647491633235
-1.856066854432595 -0.03601658575080609 1.94629556000282
-1.902085038026147 -0.05146168705924806 -1.957797536006223
1.856537429575919 1.911401598261689 0.02739185791786168
1.936961918661579 -1.888564457920568 -0.03775091614421559
-1.930538018034366 1.889485990541452 -0.09364905964196456
-1.943972434960892 -1.910742142299115 0.0832894780997354
0.9579953320921253 0.9668154514878244 2.614245276628795
0.8862966616162787 0.7796687599009972 -2.689440920366064
0.9386186605093187 -0.8140279125036928 2.670803451781104
0.9919326420321437 -1.008775530124559 -2.614398989028072
-1.080392083442028 1.087927977108707 2.50934301155183
-0.8874868870999133 0.9889774682442498 -2.644051579576677
-0.8659057633355649 -0.9730293820867114 2.618024873954362
-0.7690737282351263 -0.9629296051215005 -2.646608265053553
0.7959624058257685 2.678120214968557 0.8599618907673017
0.9873227241252716 -2.602270434164299 0.9642606095340609
1.003012381834357 2.51915495265716 -1.01634643184313
1.050021247440104 -2.731430821556498 -0.8501650293089253
-0.95781705334435 2.664162830883428 0.8192555663092201
-0.8461345688301859 -2.594945294779514 0.9963485991966278
-0.9130896824528109 2.577363656390844 -1.093671491219592
-1.014706179980332 -2.633496961543275 -0.8289141403451415
2.662620066773881 1.00164333924216 0.7415786305205497
-2.649907142676 1.013585777365306 1.00686583184524
2.668290292087536 0.8417839772509116 -0.9308727340832219
-2.622124193695722 0.9452493876766532 -1.000874785603088
2.633577197955211 -1.091760492538974 0.8393680640513373
-2.716750419169158 -0.7517591463015297 0.9487722092961351
2.718683862106932 -0.881323984121316 -0.97664923057218
-2.666151823209801 -0.9980377950569452 -0.829008041761195
3.278993469745747 -0.1084849274487992 0.2752794395206198
-3.316986803647047 0.1753750276032792 -0.1922776189680203
0.08773103815452346 3.305229692550861 -0.3304951992406219
-0.07471525829186096 -3.313750704149534 0.127808606304519
-0.1806649632894211 0.2442070191936849 3.279893767581893
-0.1852134057092641 -0.05890217719605814 -3.307107841547078
1.932758492717016 1.894096126238239 1.734541372664582
1.811275987797606 1.807777469287012 -1.947011025362926
1.94232962204457 -1.793733837136747 1.882783286070467
2.003764528197848 -1.899285736827794 -1.849763266719321
-1.905497592071538 1.970096154770281 1.904454056286233
-1.913912347756329 1.879617817492617 -1.924453649779923
-1.871897985927178 -1.869899100880169 1.739070970255682
-1.851631492043151 -1.732863087492492 -1.960299412482189
-0.04293185982541815 2.519046683073583 2.287442744657226
0.08034741527163004 2.278372076399974 -2.473684728495641
0.1114570573549103 -2.294924151794222 2.491183058888767
0.06844679090430365 -2.57789173378031 -2.283696570718856
2.525012060917924 0.09182197780605797 2.413236241877519
2.290744422571359 0.02167717900474282 -2.558047623281889
-2.310276249433695 0.01236020077817146 2.569618208947331
-2.471734080156003 0.04493736548961438 -2.485102089674283
2.288531592331978 2.498965583596838 -0.2155142407201741
2.500312983404903 -2.478544112231637 0.009683851487408824
-2.374491714539509 2.507907281147125 -0.08128735482686211
-2.503728267638118 -2.452038347797932 0.0690610834444374
1.23366245550254 1.409882285615148 3.205455889868214
1.206036820527202 1.248791998696205 -3.435806583763398
1.328433164450534 -1.113063124216227 3.381710865119757
1.265148050747187 -1.253160584888982 -3.345020957895803
-1.177953441638786 1.404499430900423 3.395449638009021
-1.166314203609738 1.455135815704606 -3.381006287931548
-1.257482503655427 -1.393706259966957 3.295736314624702
-1.168908294620735 -1.363389284834762 -3.313305781015079
1.260755163990106 3.336847673373875 1.206828995259303
1.260648993061193 -3.296904390197497 1.383422424095518
1.217133695583798 3.224234291378549 -1.636632373339575
1.281971482716525 -3.586835150858493 -1.070827779996003
-1.257369329455303 3.472002364177158 1.040124145975843
-1.22088675849001 -3.206627010944273 1.396440979349451
-1.180193898499602 3.328279028935021 -1.556233748268278
-1.353365662646878 -3.274881164414684 -1.237945115275989
3.31720604649066 1.371368106143662 0.9400018560409558
-3.424581601025425 1.294731153657641 1.291559878563786
3.304385072428411 1.07478880654796 -1.425368742042405
-3.408895736143567 1.421735526541113 -1.169886957658057
3.42448690748978 -1.255983776955651 1.254998477700586
-3.396558406034633 -0.9869361723153371 1.350693790898917
3.504052209228303 -1.074576738317363 -1.219220798932246
-3.390316968705558 -1.33865849000501 -1.132644113504733
4.323076127924369 0.2410336052822643 0.3557104502454809
-4.375448932358705 -0.02239654279261483 -0.2354415047034353
0.3154033123066568 4.333236431216084 -0.1640989919808494
-0.4282829557056692 -4.275367462336137 0.1919480980894536
0.177263248761596 0.05842454993031287 4.276064917417286
-0.1883413661944346 -0.1393543584729069 -4.318430426131152
2.538942100256559 2.217292180043947 2.576998426694238
2.50165057500821 2.468391734993782 -2.485266517474736
2.570690536650834 -2.363833956014353 2.541418519190907
2.650044201583978 -2.24925791211893 -2.453589268657034
-2.477154884511757 2.410865688442908 2.581732304777087
-2.731602595088936 2.526375960710504 -2.388067680019091
-2.633311012960715 -2.650430576270733 2.005669970306475
-2.417180457642017 -2.475674483196876 -2.497259227096587
0.00183967450943091 3.311148762659947 2.92746937809548
-0.08209246201849048 3.1644396616684 -3.334891769561547
-0.03399430945540877 -3.116771605897929 3.104112381945115
0.302797812144405 -3.100928394271747 -3.143894483071195
3.381768618698993 0.1943465732447307 3.068762883374388
2.922914905284687 -0.013438278388973 -3.452196007516207
-2.902371773993253 -0.139505843417235 3.445054286180928
-3.06792795539182 -0.06041530931361234 -3.222793139413861
3.09615150647529 3.054526824835188 0.08210739264318059
3.424141286267636 -3.05970611909601 -0.06712611145489103
-3.052803362148893 3.359834327412141 0.1763241929964257
-3.342964671452958 -3.287764495353067 -0.06349711899476244
1.519672592587763 1.742532810168513 4.304694208211375
1.122560745752282 1.829531735304987 -4.627741821678057
1.787331739357542 -1.755560100916005 4.467289831352772
1.830443477771326 -1.545813623379146 -4.46069445305274
-1.456852162048602 1.800994977359194 4.516132197864217
-2.276629508462542 1.295555367762622 -4.410855147126704
-1.442627300191152 -1.920560132129329 4.341027082843286
-1.309702243990212 -2.080878226719281 -4.405988790226848
1.843801223021973 4.364534638083053 1.797388480584042
1.828378003762908 -4.331902518687317 1.296882703967826
2.062651720799123 4.411384651168773 -1.690204287815052
1.650495904079148 -4.464316713219431 -1.971800047144333
-1.477392357879863 4.531855395227653 1.843157780433803
-1.27981320566598 -4.466188186643367 2.215393106776716
-1.435605930716565 4.58445601525312 -1.595693014333531
-1.524276249118813 -4.303650934550133 -1.743665838964072
4.492551974386066 2.478096735377213 1.052506799976452
-4.415046024676473 1.518497810046065 1.864903574535047
4.313618711172565 1.266596374284541 -1.915222418026841
-4.56365149469411 2.135125741290232 -1.299318042973839
4.714012397510696 -1.132333826066807 1.82810583390072
-4.348040133751147 -1.52709802032356 1.756391790726532
4.547769814700779 -1.604967078233035 -1.49778262679505
-4.386500530382942 -1.272723995530694 -2.185364351842321
6.147220633944463 -0.01523907087469231 -0.1923918972925077
-5.904140785213448 -0.3087884922861206 -0.1083458035971942
0.1486126674246371 6.09739652026147 0.009689829489918958
-0.1161989474376797 -5.814160613859842 -0.237834835819172
-0.2670437076832361 -0.105623311745635 5.849044743855229
0.007836915723898906 -0.1120991611486697 -5.94546882988501
2.988476391836631 2.711934321159804 4.198527202864939
3.737213287212689 2.737095945158786 -3.431946532262905
3.200425084823501 -3.899257472182252 2.829251504496467
3.480834954031092 -3.004875893276634 -3.47712859687574
-3.466107398594565 3.121415072616898 3.440336144996162
-3.029328587360901 3.768334490067707 -3.528171895202389
-3.668992770293211 -2.927154295126245 3.399556990581243
-3.117343984579903 -3.564512132458937 -3.406350673373126
0.03899022056194489 4.714798020443414 4.333411232551725
0.458376404347225 4.56246079525833 -4.530044170538569
0.01715767105191572 -4.548542691130336 4.527286466903297
0.2173976724042249 -4.428498119560466 -4.692219015245906
4.669405225657845 -0.2094347566807441 4.368566092506128
4.633511110436928 0.04048491361905686 -4.550468688716689
-4.519906037436495 0.004055033803387243 4.492158632931997
-4.537689007513469 -0.03133775745016234 -4.517160866103184
4.568947774901684 4.654855377349997 0.1208827803370107
4.662236636592472 -4.421334316349316 -0.2991174179283905
-4.439439049258326 4.571070184104904 0.1876536087335164
-4.348159037169882 -4.54145755772528 0.09473257268533826
7.978501413134223 0.1323373605107841 0.04021576517466189
-7.37032028223746 0.2509414040647217 0.1058524347765973
-0.4794590409410607 7.888891603391288 -0.04364815259857997
0.2514835758883034 -7.311862652056699 -0.09725184151200403
0.1032500704734233 -0.1603907112704223 7.315401940000822
-0.2679373156142902 0.1460534443593844 -7.456159263395683
4.472319455237915 4.546820986701712 4.929263483639951
4.616846501578345 4.735332454451796 -4.80687924071774
4.774390557020964 -4.627346118446543 4.500174044238514
4.561487317375208 -4.549008276927243 -4.890887191858329
-4.550163747230102 4.356231268547909 4.909330579766854
-4.945780550782821 4.533363724867737 -4.634844203827861
-4.691941945931955 -4.636989977096182 4.561777849938292
-4.818641735429692 -4.789422914215586 -4.36583559447203
11.09017662812544 -0.5628568439073081 0.03057573647777059
-10.37704636767238 0.007396328410486939 0.3743178212378988
0.3719468444982038 10.97544482189646 0.2882088653375902
0.3739125345588251 -10.13887018816575 0.6531393559720307
-0.09374735182597911 0.3301759128700352 10.15386688352367
-0.1604585570621022 -0.3916772955266007 -10.42308742306413
</grid_points>
)"

View file

@ -1,578 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
Def2-TZVP realspace grid (Bohr) for species Ge
sqr error : 1.457531589885463e-06
penalty : 1.191434687369119e-19
n points : 536
</preamble>
<grid_points>
-0.0763104357555689 -0.05717928210442113 0.09894350484341159
0.09113141132450921 0.03591897591140782 0.01016766951306915
0.004643996486489881 0.0224768204000214 -0.007925287450421517
0.0009254925978675397 -0.03953728750558774 0.01774404452925668
0.04045326488847985 0.009251105892782132 0.005303994313432931
0.01033016905427339 -0.01903033906571579 -0.03562299620715199
-0.0189272587039397 -0.0055051737203356 -0.008813317042427226
0.00868591742370339 0.0620277934000605 0.0127546807215931
0.05260391345708174 -0.04470367173510723 -0.01553143467594119
0.02946735516031878 0.03536209593410508 -0.0544434123690023
0.007848184306459626 -0.006675636032775358 0.008317913883539118
-0.03047803672940173 0.02357607691656964 -0.0321364100183333
-0.02010819141843897 0.01303484936414945 0.03356052600965768
-0.05722396100567799 -0.02763306301704502 -0.005438599282528199
0.03347064973689321 -0.004265769409549609 0.06005744347945503
-0.06276307933279529 0.05113152882902713 -0.0160755725888518
0.01630151354241337 0.1814040996302133 0.01075318635872851
-0.01194550545548866 -0.1126082547264374 -0.04000678632632243
0.0363382540160837 -0.0154654908029361 0.1135762052937518
-0.04737182300668313 0.01883369006030835 -0.09577882723328256
0.063026928245259 0.1048989992508001 0.07723199174706168
0.01533967302663189 0.1081697158278814 -0.04642479530799717
0.08157608619548078 -0.07056713328578763 0.0225812493798895
-0.01642524665593414 -0.05142957763453159 -0.05944442726666554
0.002952370321404882 0.07802677205750309 0.06457392072430485
-0.09660081117637974 0.08239860804029599 0.01357789496934328
-0.01553836363196287 -0.07772575637471489 0.04406804865087225
-0.1096201862124857 -0.04051897940823056 -0.01184509364216912
-0.06530812681949293 0.07246878066592355 0.1177373992784149
0.01323588306648796 0.04709557559041173 -0.1532477638040099
-0.07865110425452243 -0.1069181740868572 0.1631472640286172
-0.02686528557457205 -0.0831783915291823 -0.1265167485557954
0.1339354887074047 -0.02412886309445576 0.07374531879392163
0.06550962127195109 -0.01646932476526979 -0.09173716414689809
-0.05506347976332194 0.00795669509676186 0.06848103290449048
-0.1366172885280315 0.01544204636646184 -0.08614188089131025
0.1294776177209131 0.06482074599097144 -0.05082661614138174
0.1132821216605154 -0.09373136446217249 -0.05888885194220979
-0.1670521336364067 -0.00493497962032149 0.07171778403119877
-0.1170705988930138 -0.1283064073011436 -0.01584204592146082
0.2119762846340898 -0.04299572927097346 -0.009179761552326873
-0.1930454092759206 0.06358472450834499 -0.08706857399791283
0.004886431651409666 0.2406510500439999 -0.05767103580866714
0.01820952809785299 -0.1439393105025948 0.06423215101681941
0.02836913458586636 -0.007381348707732493 0.1804459354921147
-0.04899028995606922 0.1099318539926749 -0.1917517236023592
0.1590219769758445 0.0891289053939967 0.08943337645423433
0.1241944123667689 0.1456021771531772 -0.09794133657195805
0.1240484661924109 -0.1416585259277748 0.09936834233668389
0.1145645658922522 -0.02921334276902465 -0.1725382059821421
-0.138480766542659 0.127127229468828 0.04183634156219931
-0.05224468295796728 0.1440874502839802 -0.07091468472502967
-0.2151832864313229 0.02787804500241105 0.1130255100073473
-0.09225517343256359 -0.07660191336243756 -0.1781224313522009
-0.01687923071624143 0.1567637212361598 0.1416631631651166
-0.1073478277958778 0.1736643160887548 -0.2249094930766577
0.03908343420383312 -0.1880510825689825 0.187323998581191
0.04125546301297001 -0.1864998596078385 -0.07902563780420065
0.2231488000392136 0.05463759465886819 0.1455707015706192
0.2178317893478258 -0.1226266904106538 -0.1229041530129441
-0.1902257368736061 -0.1167397235320597 0.1950826745556675
-0.2035641724137679 -0.01063560444165791 -0.2086680161541811
0.1084745573602426 0.2275975050327362 0.1006141590417116
0.08632155130903585 -0.2544929074250002 -0.04144142797980296
-0.1598682666582994 0.1976111771404181 0.009437445318169202
-0.1020719035933281 -0.2085488058575737 0.02310637859473113
0.02556594419068665 0.05346148971454324 0.3304280035081256
0.1097729219610455 0.1019705748839185 -0.2475940278690682
0.09080130385446014 -0.00728292878216273 0.2430488785109697
0.1147798050166155 -0.08630257304391957 -0.336598348765185
-0.08722510794597314 0.0676920697653032 0.2230929068089637
-0.08433722331888589 0.03914090871496426 -0.3575937264772258
0.05408678838950994 -0.1924268508572462 0.2901121973333602
0.04637338982684905 -0.07625789569918943 -0.2612406268380675
0.1652776695563316 0.2974340749395503 0.1348035961183922
0.103879708060207 -0.3216197616234201 0.126617304072773
0.1565445898816941 0.2673394632745896 -0.1148478591100052
0.05817077228666024 -0.3404050082060968 -0.1095740431615006
-0.06984087863411767 0.2035618851131986 0.2202512497336846
-0.09435966471144179 -0.2919429316217656 0.06037908342401509
-0.1172851475373066 0.3074352197645895 -0.02490888304631366
-0.08092434581952297 -0.2166099047509553 -0.1672287535807869
0.3481868819614645 0.06446943968164144 0.07350258972908481
-0.3043900688621144 0.08233242560794954 0.02802487111711412
0.2479645726347856 0.1056164359266715 -0.07225977199423467
-0.3281514800106427 0.02245924833431581 -0.1985360785376077
0.2408920847084643 -0.1541382818906508 0.09613956499617655
-0.2881205530821673 -0.1934930107569069 -0.01513225464730857
0.2835537104858317 -0.1862347522861692 -0.1328222463959024
-0.2247098659562086 -0.1064996578815242 -0.02302755466980348
0.488903613289049 0.04865115203358882 -0.02965690929426896
-0.4104317519329779 0.02352891068172467 0.09780149224052996
0.003331284132184288 0.423690786211644 -0.06837971382919694
-0.1510392187412614 -0.3897472206701625 0.04395843489274234
0.06134739684714565 0.003872346276050934 0.4358104341966663
0.07294989133280355 -0.07077129866666527 -0.4702535977160874
0.3471271598725422 0.106998714096457 0.2814830347021239
0.3249821501073399 0.07059808447981765 -0.163760292125488
0.2142734098550976 0.01163324377949222 0.2819245056165439
0.3372754673334399 -0.223409918289091 -0.2316053246192929
-0.2024476042786118 0.07960324817300313 0.2741485204712272
-0.1674386431054155 0.2706121043561251 -0.2553893762382086
-0.2355334795806507 -0.1914299335860885 0.2800186548458076
-0.13542028969911 -0.2161745163223694 -0.2670451754483295
-0.05797096272379457 0.2872080164641467 0.3013988770274449
0.1287326601408426 0.1886232981217651 -0.3327318987074079
0.08979747491131311 -0.3254321198525944 0.3217168994100741
-0.07429268053246249 -0.350784917850665 -0.2998139872933801
0.343690794954352 -0.2025461897956308 0.1344062732527596
0.3299776174981481 0.1219224632589254 -0.3766992928918055
-0.2661329966964784 0.100124180101688 0.3822238150008128
-0.2779862305083826 -0.04659058994201584 -0.3771654431705104
0.3095417971058018 0.2953086803763381 -0.1103214846982309
0.1436896398106007 -0.4539204540170138 -0.02707959883577854
-0.2920263737835172 0.2979863464968636 0.05125097544686357
-0.4043941427608719 -0.2334328717595976 -0.06930664063408833
0.08819255166466838 0.1982774144915039 0.5167214325372503
0.07557420559228172 0.2141589776632284 -0.6010972406203973
0.2856160522676668 -0.1131803683853306 0.4633628353202197
0.1837299863075721 -0.2375576011081379 -0.5266483020447366
-0.2420602470554639 0.1046371371796378 0.5592239679442051
-0.1155591373353536 0.2537824553739353 -0.4305287869162274
-0.1418240436647272 -0.2435269324000867 0.4803806320599867
-0.2495741507230949 -0.152382928456539 -0.5168619905376678
0.2063164209046561 0.4282935745039729 0.1615514351440736
0.1449328071743253 -0.5298454118059409 0.2554916095399317
0.1595795822405918 0.4514081998887248 -0.2696755381833484
0.2198384196162246 -0.5100774763352278 -0.1974882520014317
-0.1447392605277025 0.4468985578766457 0.3103057996901711
-0.240651735180882 -0.4812730443110502 0.1081387642214935
-0.227931118239814 0.484408172934046 -0.08656306195703506
-0.1764898897525097 -0.4858548675435375 -0.2903527184616826
0.5139445414622686 0.177060461567026 0.2536073954384461
-0.4758867154134916 0.2397039349823516 0.1582374310378551
0.4944531903140353 0.330923138024262 -0.1171719630449416
-0.4749527294902654 0.1405906824580231 -0.1760533480768053
0.4563559272560658 -0.2979441619506891 0.1534123382587089
-0.4790669472613057 -0.15738732524112 0.2424739998497
0.5262424129090221 -0.1847445740363345 -0.2270280760688626
-0.5201166248598755 -0.2282553873500984 -0.2125792117394676
0.7080015963098724 -0.008172713591392161 0.005285345893833057
-0.6962473080601637 0.03202728694731444 0.08010245809783507
-0.2274477606227261 0.6677320539011754 0.08232140031042542
-0.1207545272642479 -0.7144651367532264 -0.05137654854781901
-0.002676006717271652 0.08617596306997435 0.750491247872105
-0.08549517587875843 -0.1224436577385003 -0.7245524047723113
0.2636117239848322 0.4554157212302731 0.4300033274714847
0.3973144039186042 0.5238865765108346 -0.3476191581275765
0.5625805886013246 -0.3597627120721694 0.3303970571117064
0.5773931878774821 -0.3536173775439966 -0.3435845138697782
-0.5162502382570517 0.3400054340016796 0.3418986467504442
-0.3704311139790653 0.187937983758006 -0.4823455879830841
-0.2425804026738204 -0.5373011828832391 0.393871078620214
-0.3701634685971315 -0.4593037274557104 -0.4893660491998611
-0.1433063578323479 0.5140630451992956 0.5330373132688204
-0.08652063233580003 0.5587735107701346 -0.3849878188248445
0.1067370103347825 -0.3164609000540458 0.6063697288948737
0.1463569143067906 -0.5428764863527599 -0.4970289546715402
0.4433167109539816 0.02091490969569773 0.5483333949612639
0.4557312873120273 0.07298468116733085 -0.5034502927337601
-0.4872746116153812 -0.1550616299543426 0.5199438653197769
-0.6538665115585973 -0.06216139931242829 -0.4034261861146659
0.2005559433570935 0.6082972517983718 0.05319888848603066
0.3893005282366035 -0.6136059353169229 0.002747243909177966
-0.5522220381647749 0.4075526138442998 -0.1610247596810412
-0.5530863623358072 -0.4515410505125907 0.05038581420403228
0.3589354714862894 0.3743127247791086 0.7182190674789917
0.1384506478180283 0.4379922253723191 -0.7119820148106867
0.3761750523281888 -0.2886795137871155 0.7593175898484573
0.3671526861157517 -0.109706145679719 -0.7638546228899231
-0.4455334845974241 0.2264000521300707 0.7401291985593706
-0.3908426735804612 0.2733814225782519 -0.6661113756610704
-0.2311819133933594 -0.3645206586976436 0.7700732819981608
-0.1909296281503268 -0.2001857368727947 -0.8748579820609519
0.1862510899183817 0.7730020136672572 0.2951170216375904
0.1601107898942553 -0.7062474830055956 0.4210968540915738
0.1105771492136715 0.8018894540668898 -0.2052375335007351
0.1750351766427456 -0.8530207105439445 -0.2072986286546048
-0.4891993404740177 0.7068140497581243 0.2244794508381348
-0.359546174855007 -0.7782827376577206 0.3156678449200848
-0.3717465862176945 0.7058900981778014 -0.4013054590653244
-0.4500495734512426 -0.7728463095756598 -0.1586621401609692
0.6268288860197752 0.4545617513665722 0.1482012040615977
-0.8074665518765524 0.1739792751557351 0.2930017978090343
0.7454260168138179 0.1737172008823222 -0.3733161861036834
-0.8017011362091938 0.3864153405865731 -0.2265539027640699
0.7604346216124056 0.0307945949073301 0.4378570595993803
-0.7145482595475949 -0.3779757587372993 0.4347908238434102
0.8409324147433557 -0.3166458414720612 -0.06370890505634673
-0.8307892397864892 -0.3024386738280677 -0.1099297782409609
1.00224853071949 0.2131593002262062 0.05331775786534412
-1.074487145400648 -0.09681543290754734 0.03661861008030708
-0.1076172570001735 1.029136305412679 0.03557554844577019
0.07521551861424003 -1.050192284335127 0.03019312114496533
0.00161594232180079 -0.0004656995300190079 1.033271246413307
-0.03069489192965052 0.113391398550784 -1.039195932146031
0.5994786552145441 0.746014903005433 0.3828777500216009
0.5479319179917431 0.4085567462936528 -0.7541106346308085
0.7701772442622388 -0.4584999639532726 0.546461568883736
0.5679793149781573 -0.5428419465577349 -0.5605919256472868
-0.7768481450664534 0.5471368713739215 0.4799295297197141
-0.4957100220503286 0.6193318418627657 -0.7610027293464522
-0.5154348146355924 -0.5869499046391414 0.7399523626838156
-0.611611583714862 -0.5290271821275372 -0.5709100989751849
-0.07063008370271734 0.702801462596641 0.7242091086563501
0.01916295064154057 0.8232156958754259 -0.6781123996094183
0.1573737490720612 -0.7704736129483793 0.7300390977409155
-0.02181704661000819 -0.6852693071607167 -0.6856671519348054
0.7283149903498088 0.1531159133969979 0.8147372088748077
0.8998699932365383 -0.04529522427511439 -0.613385056555235
-0.7817032276958666 -0.01397326142764657 0.7851392263514861
-0.7290630796304006 0.09473891490863441 -0.6960134711003869
0.5837832791219056 0.7420082208491557 -0.2292533740151609
0.6028871951030559 -0.7174176678560147 0.1224513383564024
-0.8313603172130846 0.7730347137619819 -0.06586051520004009
-0.709557988439581 -0.8750888983030969 0.004188821690818086
0.364668562848437 0.6078699404508222 1.011303785889606
0.2992678927184466 0.535089108000699 -1.06670734061274
0.4449603980116679 -0.3933266884597867 1.064716739737785
0.4147586010877394 -0.3704364754103869 -1.019055671893195
-0.4263344238790696 0.4574589277482721 1.055747354785276
-0.6230985276115028 0.1548360165739942 -1.105597966483874
-0.3581665723700612 -0.4426972914788477 1.121395923164018
-0.3076528983747209 -0.5084346932508915 -1.033367157227993
0.2861438437937414 1.073314805692623 0.5340069104522298
0.6578770194525129 -1.00966789638268 0.2831972781454433
0.4299375922532898 1.109565674168174 -0.2192722435579095
0.4356798717627785 -0.9834814657906185 -0.4934039860759964
-0.4755305421242553 1.055299611159249 0.4520017373218676
-0.297679225612676 -1.089922291494407 0.5032538781815815
-0.3795561979960448 1.122382364640045 -0.4577110929453896
-0.3198038483406249 -1.027935275006712 -0.5409013212541376
1.011843377417762 0.7318716044188019 0.2909984078482816
-1.191082589238279 0.3289880381565196 0.391547504443689
0.9557182235359298 0.6026151238900319 -0.4500592104198284
-1.082588020248026 0.29607209950678 -0.5182029946223639
1.16052871625984 -0.06179292940029026 0.4544454504788321
-1.021952127478234 -0.5349461403132912 0.4746019615703644
1.010215865034848 -0.541711880074695 -0.1460077673989419
-0.9855135253781658 -0.49875649995775 -0.5461734597020392
1.338650683354471 0.02508354085606166 -0.1939272523294364
-1.3945020196267 -0.1998911698208626 -0.07673524975140504
-0.04257925251228187 1.408927419208974 0.09169593144343388
0.06776000541517266 -1.374218891094819 -0.06891123832297408
0.04984697776404741 0.0254334738934227 1.374035068667
0.006854107655312953 -0.03624776068068331 -1.377735738107168
0.7003897216718901 1.057778561273076 0.7300665387221814
0.6195575061982513 0.9760068269438038 -0.7552402451475325
0.936264894816115 -0.6634601535646377 0.7787562312988608
0.9055600197767983 -0.6608370298897306 -0.7595915056868477
-0.9209816553718974 0.7465973947607475 0.7756739464129898
-0.8819680698240476 0.6997806219931986 -0.8753702124061543
-0.6954536278079861 -0.933053583326837 0.8780810437778416
-0.7151994970914215 -0.8596804702138664 -0.90440648794282
-0.1410271192007914 1.031482219431791 1.060358006774586
-0.2025046836670863 0.9299274207083887 -1.069019164364748
0.1886244841368125 -1.043050495320601 0.9544444020225219
0.1622658223737752 -0.9835070552279357 -1.046075831726043
0.9820111339830159 0.1789904454016925 1.060988099039728
0.9277450563377306 0.1164104139297548 -1.016253382487011
-1.013791134106966 -0.1255250228067445 1.031238566823939
-1.149354963360142 -0.1248260251310615 -1.01511669483191
0.8449718595887327 1.291765041659799 -0.05232154099563409
1.202589946037065 -0.8771833479094522 -0.04644960711318982
-1.100689306632376 0.9644583873002808 0.04087823474534506
-0.8978759596789311 -1.138341537689969 -0.02156056621668511
0.4490750684229299 0.6524403126379287 1.422243370837935
0.4076059402930486 0.6460299577181282 -1.422151372716704
0.5300528670482315 -0.509243092206719 1.42998395146412
0.6395363260709147 -0.4129778205186834 -1.399674089629257
-0.5913506000557621 0.4344963526344354 1.429870871569312
-0.6481525488731854 0.3453009182111923 -1.509386871107808
-0.4324519266365736 -0.5801111199268103 1.462702455081145
-0.3196482070403899 -0.5394972599293638 -1.499934725421177
0.2486692674207726 1.535391260941644 0.6496068349899619
0.6968020707136312 -1.406618505445011 0.4238893720739055
0.2294708521507707 1.439649843179412 -0.6400462605395786
0.6240821796925911 -1.345072753203593 -0.5476223522168351
-0.6026437921157677 1.449496899577519 0.4997632474917016
-0.3746342096747658 -1.503766225277051 0.5443441499482653
-0.7031623457174976 1.375957649246978 -0.5559775961887086
-0.3885448967391546 -1.44309111832384 -0.649664900368103
1.432257345582062 0.6678790657300397 0.3255816357052666
-1.537584176199381 0.3509053256970683 0.548154682296815
1.305428592485899 0.6444272430500328 -0.6236873355310056
-1.487973158377308 0.4579905294910174 -0.4975595206889182
1.521072896568312 -0.2552342614140925 0.4950074282396613
-1.384328566700048 -0.6895419483236408 0.5317650227705323
1.455461817777159 -0.3908437614719771 -0.6174790854279352
-1.366914652222482 -0.74481636775289 -0.5600840059404562
1.816402524870768 0.01338999798035202 -0.1405708973878384
-1.838345936618368 -0.1598736149086171 -0.1438517207476123
0.08289524774912813 1.822954674023106 -0.07924582506931586
0.03398248112309685 -1.81910307856779 -0.1238429596736541
0.05694407315167605 0.01080894615448591 1.813331773960571
0.04390813216223101 0.005823261748652511 -1.829092022132571
1.060786692154317 1.120591927180306 0.969546878993466
0.9214108342003018 1.213684492573108 -0.9681574586254921
1.125248746130224 -0.9231396347640034 1.039874071134735
1.077107900192317 -1.005529302816296 -1.029860734858852
-1.114387861966296 0.9730068911883193 1.042690254297334
-1.166031485958652 0.9321305064214197 -1.109909282719285
-0.9625780875283223 -1.140868206678718 1.106388593507368
-0.985021694479542 -1.072833877632298 -1.151392094389329
-0.1191244395407482 1.258649107778296 1.451297532790272
-0.1632434243446508 1.316638616462275 -1.353246978786388
0.1424939340116123 -1.361074118295631 1.281903630320533
0.1177572988802573 -1.319716084350002 -1.369371716569384
1.312336473414984 0.1237411485227212 1.321901964475978
1.280752813054788 0.1347818198444626 -1.328028589955325
-1.305883856565047 -0.1362132975254573 1.369965573309262
-1.436123814332108 -0.1258751941657163 -1.342902842768637
1.242407320361491 1.495162772950567 0.02239293408169378
1.46164304412007 -1.236980854202119 -0.01273637283515878
-1.446479698104701 1.245451759215647 0.07714707880138016
-1.195308727957001 -1.477506153774613 -0.005646629057951556
0.7336426888568978 0.7485382678288233 1.822681463675387
0.6541422349446699 0.7995619257604919 -1.827106563731137
0.735312859988152 -0.6493641247490667 1.858956256849393
0.7714018923538686 -0.5747437434380089 -1.84619636148817
-0.7717351503815475 0.5884507960012957 1.843035902562373
-0.7065366904440562 0.6023896659573097 -1.959782273541042
-0.5552282437054908 -0.748764867166938 1.892982662201948
-0.5374089045887711 -0.6578405876053334 -1.936566637142062
0.5609671042061203 1.872811653079506 0.8395301466643003
0.7211633973779712 -1.874334517587905 0.5917172891692
0.5812490751777019 1.859680074231574 -0.8203622712379676
0.7520931282649335 -1.810076524342408 -0.6910776397266075
-0.7032853092458579 1.844938001986927 0.6852864640793607
-0.6082048984619055 -1.923101828293766 0.7277827169807713
-0.8040771052159391 1.836901502354164 -0.6168497764991973
-0.6618376343067348 -1.857267309560271 -0.8289598563457485
1.876694209984498 0.6897099651142783 0.5968276281805985
-1.929248220749207 0.5372916469977126 0.7707556840434525
1.770469522084083 0.7902621906563038 -0.6975170000790119
-1.910740380089907 0.7044593497400812 -0.6338113444312095
1.890103827525455 -0.5497094753085846 0.7053902002806387
-1.839195507118773 -0.7726461833252665 0.6417478398836495
1.84252221782037 -0.6447768021377254 -0.8058965471991987
-1.816055010918696 -0.9137128359609477 -0.685719695709523
2.327630602211867 -0.0518595217583603 -0.07272846028504076
-2.368673626006637 -0.04179492362840098 -0.1307467591139403
0.1376362272135744 2.333117741861001 -0.01355617503777269
-0.09018154117180562 -2.347613900159601 -0.1541136087986206
-0.009778760604061049 0.1014445468255803 2.342675054561095
0.04627294351029822 -0.01107210352945325 -2.360150675290714
1.468749039373784 1.277645979342146 1.337460963240349
1.371429251493886 1.417197430414205 -1.305985481992781
1.321091280970529 -1.376772090423478 1.282064904626609
1.252879775290936 -1.404675720370082 -1.408872588725431
-1.309688172745937 1.390783231208386 1.346935672958366
-1.333953784368063 1.406885258696374 -1.381275026472847
-1.42291972307526 -1.293576584404998 1.360654719721274
-1.401282398523032 -1.276116992083792 -1.502429585376993
0.0301888665305092 1.670819535917587 1.832618661588849
-0.00565706834859822 1.773858290955578 -1.709304296393958
-0.004683859710180273 -1.726838081090136 1.712948979895284
-0.05392165106813491 -1.731609107194931 -1.782632900960493
1.729890428261479 -0.09763976409795175 1.69679651395973
1.714369799120552 0.05684520273858088 -1.682849210281371
-1.692384185939434 -0.01786600209689749 1.774718278996809
-1.817569536330474 0.08286750158279205 -1.717387569550691
1.692634623058669 1.776752976393212 0.003523110648343325
1.736335249643454 -1.73323771977717 -0.03064072454837325
-1.746819530021491 1.736235611491109 0.03472747177632123
-1.71517902838268 -1.787583104432005 0.01389364934635084
0.9684142103592482 0.7885904358723831 2.402737179269367
0.8620565316699712 0.8890436323683318 -2.387286627464819
0.8543031597802145 -0.9140281636385117 2.403701894711985
0.8800862146514167 -0.7777849164845396 -2.424020499248315
-0.9760534782066825 0.8137072044674816 2.369947501527968
-0.8027023895142366 0.9537132081634924 -2.485586789391401
-0.8497281281231106 -0.9343300135125254 2.409422963373241
-0.8388785295874307 -0.7280242236064167 -2.49489373681295
0.9071707163262793 2.385925127618537 0.9133488142876747
0.7509496948262465 -2.43095712696747 0.8478626715197901
0.8910179168846114 2.447210464268348 -0.9050949412363553
0.8568757389348624 -2.420517462159997 -0.8604400669537366
-0.809597563363443 2.40710021570901 0.8866352220945231
-0.9331709257348629 -2.402157471920034 0.931445937598545
-0.8054225717959808 2.453925738246409 -0.7816800373360867
-0.9925091437315235 -2.404218587522978 -0.9178011659125647
2.435561742800981 0.8019302817715226 0.8627833041532055
-2.421555823948082 0.8924465714560049 0.9043068564650255
2.410508321923248 0.8592327410731825 -0.7596692647985552
-2.437768219116526 1.002719495370141 -0.8318553826804538
2.406139047859185 -0.8733128124611651 0.8095392659350018
-2.425639988170142 -0.7984060304705743 0.8979583227265058
2.360038965655544 -0.9027506631197806 -0.9361979471747
-2.459465578110017 -0.9351664615519738 -0.8125247941509475
3.082532850310207 -0.1203238828359792 -0.05750722581651876
-3.107253268536115 -0.01131205078021847 -0.05807972741280481
0.1135764644348343 3.079795090399772 0.1070560496806424
-0.1385583294144882 -3.067231090902717 -0.06160748451460557
-0.07380092486568221 0.1798286258329374 3.044698038799518
0.06198231026380104 -0.07478044571100308 -3.08763173956532
1.761254139179608 1.740771242855378 1.735152685664676
1.789395524145385 1.678615195270101 -1.710283468066464
1.712189799890385 -1.78629795067836 1.571631477416907
1.673815718445861 -1.712086803792582 -1.820362391849908
-1.647477809069718 1.815831571082342 1.773052753068952
-1.625058446052678 1.951627519850029 -1.690482487527591
-1.888453419688517 -1.678668601499091 1.667515573125945
-1.806463378931258 -1.673674136643302 -1.844852850483363
0.08511295568642073 2.21055719722874 2.267782883314487
0.1652540215040197 2.297832004602716 -2.190297941342414
-0.04773550156478406 -2.246328073713182 2.199597302141724
-0.08399746133089844 -2.248577487308353 -2.224909371729854
2.236384028895352 -0.04437750930218941 2.161080008741106
2.268556985142672 0.006523693093211441 -2.091339214487643
-2.240526370419328 0.07807618517638309 2.217322897593275
-2.27037030479619 0.1317759090314372 -2.225154123742041
2.271941185133812 2.159012842228775 -0.006388845588799016
2.155027016738237 -2.300004629529281 -0.1159427652087407
-2.116807589982089 2.371602989746085 0.03129737135999593
-2.346073181571036 -2.213366012144633 0.0003914146905339361
1.249126210506032 1.045892776260886 3.141185302723122
1.216095613544904 1.042926967164061 -3.054698027891605
1.214700529792194 -1.240923105169095 3.020217151069246
1.178957976589089 -1.260729857812755 -3.052416644156271
-1.296076798045823 1.09281758067022 3.10256962132407
-1.034649226479128 1.330497873562759 -3.160503772502996
-1.167608012249957 -1.217047943660264 3.058125924055012
-1.177763500566096 -1.128965530594728 -3.145992030776307
1.390040308529945 3.064154768239309 1.132241502768831
1.125954026847308 -3.077223539424071 1.225924943131798
1.377121795869225 3.10044799838449 -1.123427305188565
1.085519348289752 -3.145846088415339 -1.215990831815469
-1.061429042726447 3.155871156161718 1.234231652385945
-1.242521655112037 -3.11299012218118 1.196931301620577
-0.8821032121787182 3.22768482385203 -1.195959364230443
-1.265340599604178 -3.130739185701632 -1.247176450698224
3.108911448585448 1.096501517398997 1.271418390488484
-3.076136675020632 1.309262070299455 1.129884609315139
3.117332786634198 1.251843722554578 -1.053684689597828
-3.085968464688862 1.335319891937464 -1.17733717360648
2.964603802644238 -1.346117988171273 1.254139837551234
-3.151834616788386 -1.010831932670341 1.371899772016269
3.051840856849829 -1.274373794566588 -1.18175464281487
-3.212302217372859 -1.159493521487605 -1.196728709853125
4.061091624675114 -0.2436680585322658 0.06363001713783543
-4.079024281979919 0.1217984872841947 0.01519479206701714
0.1174729807072486 4.126968691085049 0.1270477427329376
0.001617790516715204 -4.086355694981681 0.09864292482625769
-0.05353424985378871 -0.08471179500487452 4.065676773837936
0.2009649895237034 -0.09551471809015295 -4.058578311017639
2.292277710893183 2.344740142413108 2.349626967351255
1.957047803804365 2.306289780591467 -2.514599309629657
2.258693174077032 -2.501699776083897 2.314995825973407
2.318902508305682 -2.286417381362045 -2.375562318038277
-2.528249048085908 2.096068999438168 2.394049134214288
-2.414335593152804 2.535472088044903 -1.973553099337699
-2.290320021303972 -2.279273756916197 2.446555996882624
-2.192956749666151 -2.417076349438751 -2.45394298993129
-0.1781559051227661 2.823987571792587 2.957596002405121
-0.2648613520406292 2.924988203899062 -3.078523565533151
-0.08473217128309726 -2.883671326636987 2.98777783146637
0.07623965193127287 -2.916799787646506 -3.061886121749819
2.980769339113012 -0.1576658842529114 2.866684433339866
2.921274919027757 0.0006531278218608078 -2.687133263654318
-2.8975504768707 -0.004845273972262357 3.125100045821336
-2.769244406941215 0.1212744392730417 -3.053002009215985
3.244521717265471 2.749823324962438 -0.1163982263920262
2.894472602010117 -2.987871782929648 -0.001610723942143438
-2.640650613213333 3.221846673836899 0.2207383637580163
-3.076977274236533 -2.933026819236955 0.1637996073486461
1.603070406435634 1.525932214863603 4.149407667230129
1.706068248640126 1.343887190206282 -4.090367493447065
1.792354292361088 -1.585252158755888 4.10672927997569
2.102395267679051 -1.437048372704605 -4.061573658997673
-1.413389285811258 1.94386051061803 4.234164381162876
-1.721445429426937 1.492903617451286 -4.247431580643743
-1.499635144981784 -1.511398704487916 4.366571251526009
-1.36307677800346 -1.593878774450829 -4.281876295787921
1.716544315831322 4.093276596143733 1.706923952468481
1.764748891835061 -4.218724272855078 1.607886498839421
1.443614807880144 4.044232954845663 -1.802153158859177
1.646144905344356 -4.084996974526517 -1.682368849314716
-1.507270469275194 4.27378333738001 1.873789631108356
-1.304530985305678 -4.148141579635606 2.051013376859494
-1.890870284809648 4.163805979241491 -1.471458576574168
-1.617411048580469 -4.320679309932177 -1.338763961613655
4.181381538865564 1.475467233173836 1.930373883659364
-4.219955000402589 1.809197235483515 1.003733203940027
4.028674703405096 1.455167743535571 -1.922240480327683
-4.090191812441792 1.416263707637615 -1.852460772439144
4.361231597953267 -1.642687583707884 1.277030564780015
-4.330152606962962 -1.353512125801347 1.642317121052146
4.07285266139695 -1.575413663438097 -1.969701719257999
-4.050296901349177 -1.582077492551507 -1.905783269273747
5.592735733117602 0.2542343989542453 -0.4168275451781727
-5.578567796657177 0.06322407632288472 -0.4319304632582652
0.1698117469483557 5.549302650541707 -0.2863439633651844
0.008483145460031786 -5.624383799715757 -0.2180590254836329
0.02861738494650081 -0.2226334641894194 5.641074224678567
0.2722770147116719 0.141733706446469 -5.58101223485753
2.66139465809901 3.121815380662435 3.797806980758406
2.891035491793747 3.246257612926874 -3.276491022340786
3.26597800007657 -3.039874399118173 3.290215261559269
3.019538982753385 -3.542214696931419 -3.137054786775697
-3.731773519731787 2.38337042542035 3.065769010427246
-3.317878449729476 3.340447426559916 -2.861385329656023
-3.147231216713911 -3.226322300107771 3.109443746399651
-2.975633115570891 -3.14182810220745 -3.404943775552889
-0.4075065697991082 4.365266968403049 4.171024186762197
-0.03141867812714407 3.951457968868407 -4.351959947377868
0.0980637827443967 -4.34523019236588 4.137097337606582
0.02751535502882901 -3.836053411556058 -4.439712506580332
4.289199874224536 -0.05577352534989068 4.182053525473134
4.072540244783729 0.08972237932615727 -4.398515461796243
-4.319065446556188 0.04018358848686711 4.265723452949597
-4.060651301914096 0.119213558432656 -4.38853868048083
4.109379938060187 4.133677045068706 0.08018922889150713
4.174408598948225 -4.155066888166652 -0.04617560028345681
-4.135589008134581 4.253193359466407 0.2256283008234534
-4.276285748290213 -4.083828574873013 -0.05185163064431285
6.873582596496579 -0.1722264789131077 -0.2099334091178646
-6.886324747508655 0.3624932250837942 -0.03722127734125465
-0.1198363178805218 6.871093885830199 -0.2504640719616987
0.04227772424762698 -6.940689962352528 -0.1652243162342961
-0.003953796890311495 -0.03216275399339327 6.95576180201162
-0.08047333629105577 -0.1304572169073699 -7.103739814172358
4.473143143096384 4.434094477491207 4.141784097228127
4.283146692052787 4.442679471637654 -4.272219878852028
4.486869551283455 -4.4116541144505 4.212710879685057
4.294446353400315 -4.461074722952544 -4.371364597716525
-4.217232541338113 4.501935718780886 4.225773285874829
-4.156248064410683 4.373015455657502 -4.39184466516779
-4.269422245638227 -4.435170529443972 4.22304545431041
-4.2962246850156 -4.424861411018489 -4.213707489401276
9.881617304505552 0.1096290459802189 -0.1597715640385621
-9.320235200320191 0.006620344702026264 -0.1235043017626722
-0.8748234657380359 9.731509965422907 0.1968830530281339
-0.8025392254951842 -10.05362479560246 0.1740061116353501
-0.8022675441540574 0.08729754925328012 9.501513742105358
-0.4633524614641597 0.1732135624346463 -10.15683771906364
</grid_points>
)"

View file

@ -1,207 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
cc-pVTZ realspace grid (Bohr) for species H
n points : 167
</preamble>
<grid_points>
0.000000000000000 0.000000000000000 0.000000000000000
0.255049569202816 0.000000000000000 0.000000000000000
-0.255049569202816 0.000000000000000 0.000000000000000
0.000000000000000 0.255049569202816 0.000000000000000
0.000000000000000 -0.255049569202816 0.000000000000000
0.000000000000000 0.000000000000000 0.255049569202816
0.000000000000000 0.000000000000000 -0.255049569202816
0.254871502332001 0.254871502332001 0.254871502332001
0.254871502332001 0.254871502332001 -0.254871502332001
0.254871502332001 -0.254871502332001 0.254871502332001
0.254871502332001 -0.254871502332001 -0.254871502332001
-0.254871502332001 0.254871502332001 0.254871502332001
-0.254871502332001 0.254871502332001 -0.254871502332001
-0.254871502332001 -0.254871502332001 0.254871502332001
-0.254871502332001 -0.254871502332001 -0.254871502332001
0.000000000000000 0.415490938800401 0.415490938800401
0.000000000000000 0.415490938800401 -0.415490938800401
0.000000000000000 -0.415490938800401 0.415490938800401
0.000000000000000 -0.415490938800401 -0.415490938800401
0.415490938800401 0.000000000000000 0.415490938800401
0.415490938800401 0.000000000000000 -0.415490938800401
-0.415490938800401 0.000000000000000 0.415490938800401
-0.415490938800401 0.000000000000000 -0.415490938800401
0.415490938800401 0.415490938800401 0.000000000000000
0.415490938800401 -0.415490938800401 0.000000000000000
-0.415490938800401 0.415490938800401 0.000000000000000
-0.415490938800401 -0.415490938800401 0.000000000000000
0.850088185818147 0.000000000000000 0.000000000000000
-0.850088185818147 0.000000000000000 0.000000000000000
0.000000000000000 0.850088185818147 0.000000000000000
0.000000000000000 -0.850088185818147 0.000000000000000
0.000000000000000 0.000000000000000 0.850088185818147
0.000000000000000 0.000000000000000 -0.850088185818147
0.506216092999745 0.506216092999745 0.506216092999745
0.506216092999745 0.506216092999745 -0.506216092999745
0.506216092999745 -0.506216092999745 0.506216092999745
0.506216092999745 -0.506216092999745 -0.506216092999745
-0.506216092999745 0.506216092999745 0.506216092999745
-0.506216092999745 0.506216092999745 -0.506216092999745
-0.506216092999745 -0.506216092999745 0.506216092999745
-0.506216092999745 -0.506216092999745 -0.506216092999745
0.000000000000000 0.804465184352038 0.804465184352038
0.000000000000000 0.804465184352038 -0.804465184352038
0.000000000000000 -0.804465184352038 0.804465184352038
0.000000000000000 -0.804465184352038 -0.804465184352038
0.804465184352038 0.000000000000000 0.804465184352038
0.804465184352038 0.000000000000000 -0.804465184352038
-0.804465184352038 0.000000000000000 0.804465184352038
-0.804465184352038 0.000000000000000 -0.804465184352038
0.804465184352038 0.804465184352038 0.000000000000000
0.804465184352038 -0.804465184352038 0.000000000000000
-0.804465184352038 0.804465184352038 0.000000000000000
-0.804465184352038 -0.804465184352038 0.000000000000000
1.402056107290620 0.000000000000000 0.000000000000000
-1.402056107290620 0.000000000000000 0.000000000000000
0.000000000000000 1.402056107290620 0.000000000000000
0.000000000000000 -1.402056107290620 0.000000000000000
0.000000000000000 0.000000000000000 1.402056107290620
0.000000000000000 0.000000000000000 -1.402056107290620
0.810119093865044 0.810119093865044 0.810119093865044
0.810119093865044 0.810119093865044 -0.810119093865044
0.810119093865044 -0.810119093865044 0.810119093865044
0.810119093865044 -0.810119093865044 -0.810119093865044
-0.810119093865044 0.810119093865044 0.810119093865044
-0.810119093865044 0.810119093865044 -0.810119093865044
-0.810119093865044 -0.810119093865044 0.810119093865044
-0.810119093865044 -0.810119093865044 -0.810119093865044
0.000000000000000 1.198430191839230 1.198430191839230
0.000000000000000 1.198430191839230 -1.198430191839230
0.000000000000000 -1.198430191839230 1.198430191839230
0.000000000000000 -1.198430191839230 -1.198430191839230
1.198430191839230 0.000000000000000 1.198430191839230
1.198430191839230 0.000000000000000 -1.198430191839230
-1.198430191839230 0.000000000000000 1.198430191839230
-1.198430191839230 0.000000000000000 -1.198430191839230
1.198430191839230 1.198430191839230 0.000000000000000
1.198430191839230 -1.198430191839230 0.000000000000000
-1.198430191839230 1.198430191839230 0.000000000000000
-1.198430191839230 -1.198430191839230 0.000000000000000
0.618360054053585 0.618360054053584 1.855080162160750
0.618360054053585 0.618360054053585 -1.855080162160750
0.618360054053585 -0.618360054053584 1.855080162160750
0.618360054053585 -0.618360054053585 -1.855080162160750
-0.618360054053584 0.618360054053585 1.855080162160750
-0.618360054053585 0.618360054053585 -1.855080162160750
-0.618360054053584 -0.618360054053585 1.855080162160750
-0.618360054053585 -0.618360054053585 -1.855080162160750
0.618360054053585 1.855080162160750 0.618360054053585
0.618360054053585 -1.855080162160750 0.618360054053585
0.618360054053585 1.855080162160750 -0.618360054053584
0.618360054053585 -1.855080162160750 -0.618360054053584
-0.618360054053584 1.855080162160750 0.618360054053585
-0.618360054053584 -1.855080162160750 0.618360054053585
-0.618360054053584 1.855080162160750 -0.618360054053584
-0.618360054053584 -1.855080162160750 -0.618360054053584
1.855080162160750 0.618360054053585 0.618360054053585
-1.855080162160750 0.618360054053585 0.618360054053585
1.855080162160750 0.618360054053585 -0.618360054053584
-1.855080162160750 0.618360054053585 -0.618360054053584
1.855080162160750 -0.618360054053585 0.618360054053585
-1.855080162160750 -0.618360054053585 0.618360054053585
1.855080162160750 -0.618360054053585 -0.618360054053584
-1.855080162160750 -0.618360054053585 -0.618360054053584
2.308424056016580 0.000000000000000 0.000000000000000
-2.308424056016580 0.000000000000000 0.000000000000000
0.000000000000000 2.308424056016580 0.000000000000000
0.000000000000000 -2.308424056016580 0.000000000000000
0.000000000000000 0.000000000000000 2.308424056016580
0.000000000000000 0.000000000000000 -2.308424056016580
1.434889432386890 1.434889432386890 1.434889432386890
1.434889432386890 1.434889432386890 -1.434889432386890
1.434889432386890 -1.434889432386890 1.434889432386890
1.434889432386890 -1.434889432386890 -1.434889432386890
-1.434889432386890 1.434889432386890 1.434889432386890
-1.434889432386890 1.434889432386890 -1.434889432386890
-1.434889432386890 -1.434889432386890 1.434889432386890
-1.434889432386890 -1.434889432386890 -1.434889432386890
0.830417724439672 0.830417724439671 2.491253173319020
0.830417724439672 0.830417724439672 -2.491253173319020
0.830417724439672 -0.830417724439671 2.491253173319020
0.830417724439672 -0.830417724439672 -2.491253173319020
-0.830417724439671 0.830417724439672 2.491253173319020
-0.830417724439672 0.830417724439672 -2.491253173319020
-0.830417724439671 -0.830417724439672 2.491253173319020
-0.830417724439672 -0.830417724439672 -2.491253173319020
0.830417724439672 2.491253173319020 0.830417724439672
0.830417724439672 -2.491253173319020 0.830417724439672
0.830417724439672 2.491253173319020 -0.830417724439671
0.830417724439672 -2.491253173319020 -0.830417724439671
-0.830417724439671 2.491253173319020 0.830417724439672
-0.830417724439671 -2.491253173319020 0.830417724439672
-0.830417724439671 2.491253173319020 -0.830417724439671
-0.830417724439671 -2.491253173319020 -0.830417724439671
2.491253173319020 0.830417724439672 0.830417724439672
-2.491253173319020 0.830417724439672 0.830417724439672
2.491253173319020 0.830417724439672 -0.830417724439671
-2.491253173319020 0.830417724439672 -0.830417724439671
2.491253173319020 -0.830417724439672 0.830417724439672
-2.491253173319020 -0.830417724439672 0.830417724439672
2.491253173319020 -0.830417724439672 -0.830417724439671
-2.491253173319020 -0.830417724439672 -0.830417724439671
0.000000000000000 2.388922031609990 2.388922031609990
0.000000000000000 2.388922031609990 -2.388922031609990
0.000000000000000 -2.388922031609990 2.388922031609990
0.000000000000000 -2.388922031609990 -2.388922031609990
2.388922031609990 0.000000000000000 2.388922031609990
2.388922031609990 0.000000000000000 -2.388922031609990
-2.388922031609990 0.000000000000000 2.388922031609990
-2.388922031609990 0.000000000000000 -2.388922031609990
2.388922031609990 2.388922031609990 0.000000000000000
2.388922031609990 -2.388922031609990 0.000000000000000
-2.388922031609990 2.388922031609990 0.000000000000000
-2.388922031609990 -2.388922031609990 0.000000000000000
3.908561216614170 0.000000000000000 0.000000000000000
-3.908561216614170 0.000000000000000 0.000000000000000
0.000000000000000 3.908561216614170 0.000000000000000
0.000000000000000 -3.908561216614170 0.000000000000000
0.000000000000000 0.000000000000000 3.908561216614170
0.000000000000000 0.000000000000000 -3.908561216614170
2.628952106496930 2.628952106496930 2.628952106496930
2.628952106496930 2.628952106496930 -2.628952106496930
2.628952106496930 -2.628952106496930 2.628952106496930
2.628952106496930 -2.628952106496930 -2.628952106496930
-2.628952106496930 2.628952106496930 2.628952106496930
-2.628952106496930 2.628952106496930 -2.628952106496930
-2.628952106496930 -2.628952106496930 2.628952106496930
-2.628952106496930 -2.628952106496930 -2.628952106496930
</grid_points>
)"

View file

@ -1,178 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
Def2-TZVP realspace grid (Bohr) for species H
sqr error : 6.239134422007024e-07
penalty : 9.830708520256151e-23
n points : 136
</preamble>
<grid_points>
-0.2954148854501534 -0.1335642491691153 0.05068066035374287
0.1816380973401107 0.1859817433782612 -0.1386401349055483
-0.01597099546061177 0.1287618520530735 -0.07001358047206471
-0.02613587467036126 0.08932538392091835 -0.002838074440176907
-0.06842058257872188 -0.08566817521093061 0.08522166521479257
-0.08225046126705603 -0.169501604718487 0.2549724944661679
0.2566196514993097 0.02211931854806932 0.142291062832903
-0.07432372098974464 0.3223691064275651 0.06297929572928379
0.5074128993367629 -0.1791359313809102 -0.0781260060975192
0.06377427096181078 -0.07385931271461051 -0.08061937700991234
-0.2969263564043537 0.1835711887428562 0.2067556007423259
-0.06453055224680186 -0.1031342172240359 -0.317980395159791
0.2576605683435805 -0.3838479590546792 0.2673057038155396
0.09375518435061178 -0.2976176406243511 -0.01906421437674757
0.4771926409809089 0.2922163830521363 0.02153261927022125
-0.4636605785871395 0.08499757183189958 -0.299276732604827
-0.2595208082744394 0.3547958371317465 -0.2665160678781763
-0.2749286409788823 -0.7369205695678908 -0.1188292257217835
0.2549566965223938 0.2120087894499723 0.4875937267111851
0.01263024634950976 -0.1496465158019567 -0.5863211366757152
0.6092984024971327 0.3363041511085897 0.2956918277854952
0.3077528660372704 0.5702771675995133 -0.2667627149719398
0.5706572867358498 -0.4028291070114693 0.472261566923234
-0.08732410746681919 -0.4695925942855174 -0.3312453981989941
-0.3194955737060983 0.388255706300542 0.3606322363101925
-0.3882238756537889 0.6148729513757498 -0.4588421906704931
-0.3721076445655269 -0.3664319169266803 0.3063240634272202
-0.6578182898786117 -0.3587293855625903 -0.7454097305649954
0.2676857645955618 0.4058854962776672 0.7737880094680426
0.07786322505044226 0.1290359974109117 -0.9514045020997184
-0.171803174335231 -0.3514768864368197 0.9180878015565798
-0.1216269833072627 -0.663968496194337 -0.437608991253138
1.012027349643134 0.04280907557983676 0.2504232797717886
0.6772643299868553 -0.05966251142429058 -0.5493110674680531
-0.7879285661487034 0.04593973450695941 0.4364578161879538
-0.8810944194566616 -0.0586058830290971 0.02493812429096716
0.5525404551554352 0.8899610424197217 0.1927159540384068
0.1973548327951684 -0.8948327022491742 -0.06779905589808827
-0.2428330945547142 0.9520180594383421 0.1505703767119264
-0.4300348963260354 -1.145077902046179 -0.0398244407094291
1.493438328940796 0.2234522049017941 0.1586963181828461
-1.420009391972234 0.04880012290290694 -0.01272030194773821
0.370336777038307 1.393696713926728 0.3563309933622616
0.03596820161388265 -1.620511020943682 -0.04600475745536303
-0.246857987452724 -0.254489864657869 1.447543723337624
0.1515831369116101 0.2103434357956588 -1.425970826722582
0.5884837125283602 0.4569762186942013 1.197638705723065
0.7261001342742653 0.8048720160671126 -0.645947568921209
0.780454043312149 -0.8455753384329407 0.6924299536886032
0.8454815993828603 -0.6930452376567066 -0.6702792306271542
-0.7367507994895405 0.7132600395780444 0.8222503783520255
-0.7061861646621481 0.8709347860404515 -0.6603936233806971
-0.8405660361591353 -0.891974044265645 0.5812665168699227
-0.5406958934351653 -0.7741565343905341 -0.879371590600466
-0.04548167809185187 1.328634312426442 1.444513633533263
0.1267532093088906 1.536874286263144 -0.8919445946021033
-0.08177892219767004 -1.208436585686179 1.363775012098787
0.1437908993059976 -1.162347310971533 -1.291252673238762
1.43168773682342 -0.3485929236252875 1.240293116262541
1.434079597048868 0.1767576291709002 -1.137212145662909
-0.8906442592741174 0.06769573466985666 1.616646445018519
-1.138118774959164 -0.03600675055748099 -1.185744552241386
1.306639353413664 1.316794577063328 0.224362958316805
1.520294807606466 -1.151999919916459 -0.1434617308954618
-1.135535335000177 1.429764541411139 0.149348319835903
-1.379588940939161 -1.287164087706267 -0.3638664692790708
1.135901397318623 0.1164378869420764 1.799986052433409
-0.06092809947094797 0.5389792920119644 -2.052407126379629
0.8659069822457162 -0.5287669302210813 2.414973249952283
0.3238969383288228 -1.044403158358488 -2.027041699385781
-0.7037365637682088 0.8007355576793537 2.401823446659314
-0.7616261348246457 0.6822675550175186 -2.179171422197027
-0.1613395649287358 -0.9544031371217349 2.332941541520295
-0.9849325312503632 -0.4611837408212853 -1.698183184336927
0.8834930082403905 2.30834534846518 0.5072986264034914
0.7063601403425823 -1.8308093618429 0.791920808794972
0.02660907542483082 2.84206894177436 -0.3816015304498044
0.4146911264218839 -2.325133341064756 0.02467211535352986
-0.823973467966634 2.122340559500701 1.235262821894633
-0.9941744716000603 -2.305186376110722 0.5349649701821696
-0.1469993861343339 2.393974399194733 -0.5076019482686613
-1.75385290980192 -1.693186218488545 -1.177983394672746
1.777130165290716 1.243627909267864 0.4352899633443738
-2.20543349423593 0.1720157402311745 1.646799368363265
1.890217127261714 0.8626024039832499 -1.451653838111088
-1.806305643277792 0.8447557607714012 -0.8733043427285732
2.461476664832692 -0.977192553258759 0.5771483890078972
-1.755389316642568 -0.298415913288883 0.9493476710191535
2.511342716444165 -0.7826761918361477 -0.443419672763977
-2.613500382250666 0.4571764429841054 0.3654228625968752
3.842093941989271 -0.5596712038126999 -0.0830152301203563
-3.303808201144906 1.186546058824115 0.1729525823189399
0.1019292209756146 3.870289021315343 -0.4844977826791424
0.9993214038771049 -3.210427913736408 0.1050620773165616
-0.2710547188512861 0.2947295399751631 3.504255324959454
-0.3212853050950602 0.4715566184738518 -3.124664646376012
2.240578993085218 1.539951611266878 1.712946236910111
1.954624736966228 1.532501952028746 -2.33502122460108
1.162348391446048 -2.189889361989135 2.287333621015383
0.9791446568748993 -1.35083126368944 -2.776056099800358
-1.032916704381661 2.018895928939019 2.748827790004297
-1.886613895569877 1.141411050846112 -2.3239627239242
-2.276817534392566 -2.256243245291318 1.519695792432714
-2.296605293421468 -2.279528689561137 -2.407061522713857
-0.5378515610262312 2.995190087826248 3.727450480799551
0.2788971834667044 3.062743170796157 -3.300175415509675
1.044201127141902 -3.245015083631762 3.07482403498685
0.8221329095371132 -2.533798671359024 -3.830096168310633
2.85074581995006 0.9766206224297082 3.363494378292772
2.679732587825186 1.31493423638742 -3.419274916029694
-2.714504415966226 -1.069699222760358 3.465556406006018
-3.019087366940264 0.9393774611356079 -3.154465162712406
3.242058878301219 2.758076700812236 1.674383894974962
3.120878533637019 -3.117430400439883 -0.09370439952600086
-4.024724316009742 2.201322471341542 0.4236906588617514
-3.26725678044431 -3.223955401278664 1.908196283114998
5.24849087715614 -0.7868672527375579 -0.06904248353174197
-5.067328822546462 1.461410994380679 0.009568493557033262
0.1462143140361931 5.193500216986119 -0.8478591823519535
0.923645755665048 -4.869913641848457 0.6379341843324277
-0.4358916800240319 0.6259140461626954 4.852631981153478
0.6322734786742126 -0.447993089774717 -4.889202076375438
3.073392322443376 3.449251893752574 4.264280316578882
3.367702599071051 3.549969446242695 -4.017012277611613
3.978591646756478 -3.745470275474244 3.854364927815283
3.5027874861621 -2.382325362877358 -5.15555162474973
-3.107356934525352 3.285834949451149 5.178688546831546
-4.418757220935039 2.870176264845758 -4.004471425971643
-3.159785277198654 -4.027783912332535 3.91687587720759
-2.973196995468781 -3.6629085247764 -3.677276218708017
7.023557063449501 -1.268441622108083 0.7327315371929585
-7.276487313381022 1.505075264128465 0.1725678662932084
0.03872733113535301 6.604561443953888 -0.8430874770179861
1.165180385948926 -6.725095131329835 0.32860753596807
-0.9198921590452458 0.6273748722982888 6.746196815020086
0.5074704985894842 -0.1886430394326983 -7.11743012671049
</grid_points>
)"

View file

@ -1,142 +0,0 @@
R"(
<license>
beDeft - a general framework for molecular all electron calculation.
Copyright (C) 2018 Ivan Duchemin.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
</license>
<citations>
Please consider citing the following works upon use of these data:
1) "Separable resolution-of-the-identity with all-electron Gaussian bases: Application to cubic-scaling RPA",
J. Chem. Phys. 150, 174120 (2019); https://doi.org/10.1063/1.5090605;
2) "Cubic-scaling all-electron GW calculations with a separable density-fitting space-time approach",
J. Chem. Theory Comput. 2021, 17, 23832393; https://doi.org/10.1021/acs.jctc.1c00101
</citations>
<preamble>
Def2-TZVP realspace grid (Bohr) for species He
sqr error : 7.129826117273749e-11
penalty : 1.24523219212567e-24
n points : 100
</preamble>
<grid_points>
-0.001670009413897497 0.0001232793791388136 -0.001126615121325596
-0.001663931516142279 0.0001223141133949328 -0.001127005871408942
-0.001663470331571468 0.0001249990161239064 -0.00113026472445575
-0.001664540110362237 0.0001206487385602854 -0.001130555877846806
-0.001664385286222802 0.0001289451515355106 -0.001125664952089337
-0.001664002361651139 0.0001210020478655444 -0.00113174804218285
0.06274239970506201 0.2537866234129409 -0.1505263474684428
0.169803393323063 -0.07958968015070615 0.02643232146079861
-0.01126949541663059 0.04058748071362449 0.1875534693758538
0.1736447930499883 -0.2072377826164436 -0.1019248789891394
0.006094779335003469 0.1182711545916063 -0.1857499418685118
0.03200150236904568 0.1741304420821195 -0.0544588313673651
-0.1811849134952729 -0.02851510425945984 0.04138119233456872
-0.0259431555914386 -0.1622625334859146 -0.08977477614566598
0.2066765208213297 -0.1466510455993988 0.1355000806035765
-0.2470749839421619 -0.0264065981860262 0.1475763148253166
-0.01032713143554442 0.4409654679714724 0.04048009069904206
-0.4168841066212357 -0.08871117303871154 0.1129689861992134
0.02370213003527169 0.1390199047422876 0.2550217698282775
-0.2171119792295147 -0.09242480813845848 -0.167274890136741
0.272536038020701 0.009511962691706498 0.3707783523403838
0.1768764496940514 0.2893329067490802 -0.2632162959266521
0.05792529057114337 -0.4445581023360213 -0.005280170681792121
0.2364844876318216 -0.3843874583968691 0.01628830228273944
-0.3272248628855446 -0.1045124955277333 0.2773086336062047
-0.2720322739933894 0.1618096953816391 -0.3132652956541365
-0.01334437991361071 0.1879249333378299 0.4044488224734316
-0.1454529138639165 -0.1354551397755602 -0.3980144974808216
0.2252556681341041 0.355184723768241 0.5343082162510244
0.3085373226442092 0.3046931776194 -0.5187508727624002
0.1379546890680876 -0.4071253078745414 0.8411094087091088
0.09647969868420428 -0.1509103859875439 -0.6064578884661547
0.03751362231558143 -0.3328661083017381 0.5649280858897046
0.4302396291311443 -0.0230218655032898 -0.1481891923979171
-0.3261480600244481 -0.455489997762359 0.3382163176883556
-0.5221417196624915 0.3971445830998636 0.02638338881025184
0.5900098962888606 0.2243824210444832 0.1055138123808967
0.4132351845519419 -0.5461883796397399 -0.1169726989518244
-0.4013827581535323 0.492458373176444 -0.008053508849910551
-0.4675673333088196 -0.369409552592024 -0.3040292804101786
0.8774065878482499 -0.1710437399072684 0.1360633437772168
-1.083328681198437 0.4585456497563759 0.3768529085572193
-0.2563289672097229 1.114689469556895 -0.4461884398241351
-0.5127049620182107 -1.103304783562008 -0.3359089032832018
0.325796617518023 0.6731900673000395 0.5756197816949826
0.4410455120460257 0.02874709546525488 -1.240865316928354
0.9322849692316764 0.5522244760273988 0.4270288638578039
0.3217305401815264 0.7657086869402783 -0.3882058523904231
0.04528686998991958 -0.9553611777683675 0.01026516229030356
0.5176302364116556 -0.2183622936389553 -0.7909218013068368
-0.6328910272663345 0.1847534665017779 0.6425786282085526
-0.5783054579157195 0.6611918758673834 -0.2970790666617978
-0.8384787063250877 -0.4241873607799524 -0.03076654240247649
-0.3679322920793042 -0.3219251862236137 -0.780338723132018
0.176617968161583 0.7018577388953833 1.121332958592249
0.1767536644923293 1.389279279939383 -0.1944263697909299
-0.3049800936375301 -0.9432002372383187 1.595108901724397
0.3234780545829408 -0.3610470779142189 -1.558421078588988
0.5607672611464061 -0.8943868413304022 0.6055961580708247
0.8037590137627066 -0.3174735276698954 -0.8647195650772115
-0.177799911590111 -0.4681296090704526 1.19837476224414
-1.11798559385611 -0.2960241498597473 -0.5371333468999762
0.5861478612208167 1.605540183546502 -0.02179495142507946
0.5081952098888968 -1.431558466411818 0.13761078016623
-1.404956121700724 -0.2433631485431837 -0.201620643592077
-1.369488785147552 -1.013715305786492 0.01631356598353714
1.481663377763928 -0.1007545215047204 0.09117588313267734
-1.556454001328298 0.8103052691737714 -0.5268933184431239
-1.057613471926055 1.394675562213204 0.4731685259834578
-0.07039042154055108 -1.98420770398273 -0.4396566591508518
0.1916200039981634 -0.1414290350077792 1.64238810401243
0.1992227867288699 -0.09511425499211718 -1.84918706029589
1.756686437484382 1.259570242062795 0.3403845159857218
-0.9012199554871292 0.8468667187087394 -1.913132133837951
1.917752383256893 -0.1195223507692737 0.2026181784926903
1.404858282886762 -2.360177793986638 0.4699345508543673
-0.9062853099718386 0.6651551849550125 1.983649741280911
-0.8484012454973319 1.372227569988558 -1.797391439884563
-1.305573626303562 0.8821188567836545 1.939850307595451
-1.201980237807062 1.04120855479256 -1.971523857459224
-1.812671648022567 0.09072111839541426 1.580141017592722
-0.4302091380092546 0.7751582915838168 -3.230521561974375
-0.3029330103194032 -1.002438216021573 3.020861514857781
-1.481610602659573 0.02832407281426037 -2.774004623804956
-0.3498655670344292 -1.511388646718361 3.226909649022086
0.7882965025519276 0.005169920701535444 -3.301525260729174
-2.073769980362142 -0.197351797140747 2.241917842778074
0.3132372339140089 -0.2104314308328873 -2.554452770067715
1.872151206493249 2.05138738898466 0.9438547334114058
3.737604933791019 -1.489932662331737 -1.25067152372266
-1.113465637618543 3.177140605471426 0.3260412663463478
-0.5568728792841461 -2.316980379777331 -0.1727990501078725
-0.4428100613471803 0.9138665669713542 3.820388713854467
-1.085625265160621 2.533368827880321 -3.977549538379709
2.434023932544092 -0.297818945452927 0.6620294327060412
-2.299936692196501 -0.4832278558088103 -3.526216871761576
-1.107127303594021 -0.5720338652254248 4.642307932114599
0.477698576443443 1.136800575659921 -3.068609434083234
-0.7590551484257523 0.3613275942866436 3.006510376852883
-1.640458223100842 -0.552461676310504 -2.719887553795781
</grid_points>
)"

Some files were not shown because too many files have changed in this diff Show more