Skip to content

Commit

Permalink
Split bases (#84)
Browse files Browse the repository at this point in the history
* starts splitting basis sets

* getting there

* backup

* revert

* mirror CI instructions for testing

* backup

* adds changes

* shorten number to download

* makes sto-3g consistent with new layout

* Committing clang-format changes

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
ryanmrichard and github-actions[bot] authored Nov 22, 2024
1 parent ec03357 commit 98235bc
Show file tree
Hide file tree
Showing 75 changed files with 28,599 additions and 158 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,7 @@ install/

# Users commonly store their specific CMake settings in a toolchain file
toolchain.cmake

# Recommended directory for downloading basis sets
reference_data/basis_sets
!reference_data/basis_set/defaults
1,665 changes: 1,665 additions & 0 deletions experimental/src/chemcache/atomic_densities/3-21g.cpp

Large diffs are not rendered by default.

723 changes: 723 additions & 0 deletions experimental/src/chemcache/atomic_densities/6-31g.cpp

Large diffs are not rendered by default.

931 changes: 931 additions & 0 deletions experimental/src/chemcache/atomic_densities/6-31g_star.cpp

Large diffs are not rendered by default.

21 changes: 18 additions & 3 deletions experimental/src/chemcache/atomic_densities/atomic_densities.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
*/

/*
* This file is autogenerated by: generate_densities.py
*
* NOTE: Any modifications made in this file will be lost next time
* This file is autogenerated by: generate_densities.py
*
* NOTE: Any modifications made in this file will be lost next time
* generate_densities.py is run.
*/

Expand All @@ -27,17 +27,32 @@
namespace chemcache {

// Module declarations will go here
DECLARE_MODULE(three_dash_21g_atom_dm);
DECLARE_MODULE(six_dash_31g_atom_dm);
DECLARE_MODULE(six_dash_31g_star_atom_dm);
DECLARE_MODULE(aug_dash_cc_dash_pvtz_atom_dm);
DECLARE_MODULE(mini_atom_dm);
DECLARE_MODULE(sto_dash_3g_atom_dm);

namespace atom_dm_mods {

inline void set_defaults(pluginplay::ModuleManager& mm) {
// Default submodules within this subcollection will be set here
mm.change_submod("3-21g atomic dm", "AO Basis", "3-21g atomic basis");
mm.change_submod("6-31g atomic dm", "AO Basis", "6-31g atomic basis");
mm.change_submod("6-31g* atomic dm", "AO Basis", "6-31g* atomic basis");
mm.change_submod("aug-cc-pvtz atomic dm", "AO Basis", "aug-cc-pvtz atomic basis");
mm.change_submod("mini atomic dm", "AO Basis", "mini atomic basis");
mm.change_submod("sto-3g atomic dm", "AO Basis", "sto-3g atomic basis");
}

inline void load_modules(pluginplay::ModuleManager& mm) {
// Modules will be added to the ModuleManager here
mm.add_module<three_dash_21g_atom_dm>("3-21g atomic dm");
mm.add_module<six_dash_31g_atom_dm>("6-31g atomic dm");
mm.add_module<six_dash_31g_star_atom_dm>("6-31g* atomic dm");
mm.add_module<aug_dash_cc_dash_pvtz_atom_dm>("aug-cc-pvtz atomic dm");
mm.add_module<mini_atom_dm>("mini atomic dm");
mm.add_module<sto_dash_3g_atom_dm>("sto-3g atomic dm");

set_defaults(mm);
Expand Down
2,337 changes: 2,337 additions & 0 deletions experimental/src/chemcache/atomic_densities/aug-cc-pvtz.cpp

Large diffs are not rendered by default.

2,521 changes: 2,521 additions & 0 deletions experimental/src/chemcache/atomic_densities/mini.cpp

Large diffs are not rendered by default.

1,192 changes: 1,183 additions & 9 deletions experimental/src/chemcache/atomic_densities/sto-3g.cpp

Large diffs are not rendered by default.

Loading

0 comments on commit 98235bc

Please sign in to comment.