⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 eri.cc

📁 大型并行量子化学软件;支持密度泛函(DFT)。可以进行各种量子化学计算。支持CHARMM并行计算。非常具有应用价值。
💻 CC
字号:
//// eri.cc//// Copyright (C) 2001 Edward Valeev//// Author: Edward Valeev <edward.valeev@chemistry.gatech.edu>// Maintainer: EV//// This file is part of the SC Toolkit.//// The SC Toolkit is free software; you can redistribute it and/or modify// it under the terms of the GNU Library General Public License as published by// the Free Software Foundation; either version 2, or (at your option)// any later version.//// The SC Toolkit 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 Library General Public License for more details.//// You should have received a copy of the GNU Library General Public License// along with the SC Toolkit; see the file COPYING.LIB.  If not, write to// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.//// The U.S. Government is granted a limited license as per AL 91-7.//#ifdef __GNUG__#pragma implementation#endif#include <util/misc/formio.h>#include <chemistry/qc/basis/integral.h>#include <chemistry/qc/cints/eri.h>#ifdef DMALLOC#include <dmalloc.h>#endif#define STORE_PAIR_DATA 1using namespace std;using namespace sc;// This global object initializes the static interface of libintLibintStaticInterface LibintStaticInitializer;inline int max(int a,int b) { return (a > b) ? a : b;}inline void fail(){  ExEnv::errn() << scprintf("failing module:\n%s",__FILE__) << endl;  abort();}EriCints::EriCints(Integral *integral,		   const Ref<GaussianBasisSet>& b1,		   const Ref<GaussianBasisSet>& b2,		   const Ref<GaussianBasisSet>& b3,		   const Ref<GaussianBasisSet>& b4,		   size_t storage) :  Int2eCints(integral,b1,b2,b3,b4,storage){  // The static part of Libint's interface is automatically initialized in libint.cc  int l1 = bs1_->max_angular_momentum();  int l2 = bs2_->max_angular_momentum();  int l3 = bs3_->max_angular_momentum();  int l4 = bs4_->max_angular_momentum();  int lmax = max(max(l1,l2),max(l3,l4));  if (lmax + 1 > LIBINT_MAX_AM) {    ExEnv::errn() << scprintf("libint: the maximum angular momentum of the basis\n");    ExEnv::errn() << scprintf("is too high - need to recompile libint\n");    fail();  }  /*--- Initialize storage ---*/  int max_num_prim_comb = bs1_->max_nprimitive_in_shell()*    bs2_->max_nprimitive_in_shell()*    bs3_->max_nprimitive_in_shell()*    bs4_->max_nprimitive_in_shell();  int max_cart_target_size = bs1_->max_ncartesian_in_shell()*bs2_->max_ncartesian_in_shell()*    bs3_->max_ncartesian_in_shell()*bs4_->max_ncartesian_in_shell();  int max_target_size = bs1_->max_nfunction_in_shell()*bs2_->max_nfunction_in_shell()*    bs3_->max_nfunction_in_shell()*bs4_->max_nfunction_in_shell();  size_t storage_needed = libint_storage_required(lmax,max_num_prim_comb)*sizeof(REALTYPE) +    (max_target_size+max_cart_target_size)*sizeof(double);  init_libint(&Libint_,lmax,max_num_prim_comb);  target_ints_buffer_ = new double[max_target_size];  cart_ints_ = new double[max_cart_target_size];  if (bs1_->max_nfunction_in_shell() != bs1_->max_ncartesian_in_shell() ||      bs2_->max_nfunction_in_shell() != bs2_->max_ncartesian_in_shell() ||      bs3_->max_nfunction_in_shell() != bs3_->max_ncartesian_in_shell() ||      bs4_->max_nfunction_in_shell() != bs4_->max_ncartesian_in_shell()) {    sphharm_ints_ = new double[max_target_size];    storage_needed += max_target_size*sizeof(double);  }  else {    sphharm_ints_ = 0;  }  if (l1 || l2 || l3 || l4) {    perm_ints_ = new double[max_target_size];    storage_needed += max_target_size*sizeof(double);  }  else    perm_ints_ = 0;  // See if can store primitive-pair data  size_t primitive_pair_storage_estimate = (bs1_->nprimitive()*bs2_->nprimitive() +     bs3_->nprimitive()*bs4_->nprimitive())*sizeof(prim_pair_t);  //  ExEnv::errn() << scprintf("need %d bytes to store primitive pair data\n",primitive_pair_storage_estimate);#if STORE_PAIR_DATA  shell_pairs12_ = new ShellPairsCints(bs1_,bs2_);  if ( (bs1_ == bs3_ && bs2_ == bs4_) ||       (bs1_ == bs4_ && bs2_ == bs3_) )    shell_pairs34_ = new ShellPairsCints(shell_pairs12_);  else    shell_pairs34_ = new ShellPairsCints(bs3_,bs4_);  storage_needed += primitive_pair_storage_estimate;#endif  storage_used_ = storage_needed;  // Check if storage_ > storage_needed  check_storage_();  int mmax = bs1_->max_angular_momentum() +    bs2_->max_angular_momentum() +    bs3_->max_angular_momentum() +    bs4_->max_angular_momentum();  Fm_Eval_ = new FJT(mmax);}EriCints::~EriCints(){   free_libint(&Libint_);  delete[] target_ints_buffer_;  delete[] cart_ints_;  if (sphharm_ints_)    delete[] sphharm_ints_;  if (perm_ints_)    delete[] perm_ints_;#ifdef DMALLOC  dmalloc_shutdown();#endif}size_tEriCints::storage_required(const Ref<GaussianBasisSet>& b1,			   const Ref<GaussianBasisSet>& b2,			   const Ref<GaussianBasisSet>& b3,			   const Ref<GaussianBasisSet>& b4){  Ref<GaussianBasisSet> bs1 = b1;  Ref<GaussianBasisSet> bs2 = b2;  Ref<GaussianBasisSet> bs3 = b3;  Ref<GaussianBasisSet> bs4 = b4;  if (bs2.null())    bs2 = bs1;  if (bs3.null())    bs3 = bs1;  if (bs4.null())    bs4 = bs1;  int l1 = bs1->max_angular_momentum();  int l2 = bs2->max_angular_momentum();  int l3 = bs3->max_angular_momentum();  int l4 = bs4->max_angular_momentum();  int lmax = max(max(l1,l2),max(l3,l4));  size_t storage_required = storage_required_(bs1,bs2,bs3,bs4);  int max_num_prim_comb = bs1->max_nprimitive_in_shell()*    bs2->max_nprimitive_in_shell()*    bs3->max_nprimitive_in_shell()*    bs4->max_nprimitive_in_shell();  int max_cart_target_size = bs1->max_ncartesian_in_shell()*bs2->max_ncartesian_in_shell()*    bs3->max_ncartesian_in_shell()*bs4->max_ncartesian_in_shell();  int max_target_size = bs1->max_nfunction_in_shell()*bs2->max_nfunction_in_shell()*    bs3->max_nfunction_in_shell()*bs4->max_nfunction_in_shell();  storage_required += libint_storage_required(lmax,max_num_prim_comb)*sizeof(REALTYPE) +    (max_target_size+max_cart_target_size)*sizeof(double);  if (bs1->max_nfunction_in_shell() != bs1->max_ncartesian_in_shell() ||      bs2->max_nfunction_in_shell() != bs2->max_ncartesian_in_shell() ||      bs3->max_nfunction_in_shell() != bs3->max_ncartesian_in_shell() ||      bs4->max_nfunction_in_shell() != bs4->max_ncartesian_in_shell()) {    storage_required += max_target_size*sizeof(double);  }  if (l1 || l2 || l3 || l4) {    storage_required += max_target_size*sizeof(double);  }  // See if can store primitive-pair data  size_t primitive_pair_storage_estimate = (bs1->nprimitive()*bs2->nprimitive() +     bs3->nprimitive()*bs4->nprimitive())*sizeof(prim_pair_t);#if STORE_PAIR_DATA  storage_required += primitive_pair_storage_estimate;#endif  return storage_required;}/////////////////////////////////////////////////////////////////////////////// Local Variables:// mode: c++// c-file-style: "CLJ-CONDENSED"// End:

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -