source: ThirdParty/mpqc_open/src/lib/chemistry/qc/intcca/obintcca.cc@ 00f983

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_levmar Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 00f983 was 860145, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '0b990dfaa8c6007a996d030163a25f7f5fc8a7e7' as 'ThirdParty/mpqc_open'

  • Property mode set to 100644
File size: 5.1 KB
Line 
1//
2// obintcca.cc
3//
4// Copyright (C) 2004 Sandia National Laboratories
5//
6// Author: Joe Kenny <jpkenny@sandia.gov>
7// Maintainer: Joe Kenny
8//
9// This file is part of the SC Toolkit.
10//
11// The SC Toolkit is free software; you can redistribute it and/or modify
12// it under the terms of the GNU Library General Public License as published by
13// the Free Software Foundation; either version 2, or (at your option)
14// any later version.
15//
16// The SC Toolkit is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19// GNU Library General Public License for more details.
20//
21// You should have received a copy of the GNU Library General Public License
22// along with the SC Toolkit; see the file COPYING.LIB. If not, write to
23// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24//
25// The U.S. Government is granted a limited license as per AL 91-7.
26//
27
28#ifdef __GNUG__
29#pragma implementation
30#endif
31
32#include <chemistry/qc/intcca/obintcca.h>
33#include <util/class/scexception.h>
34#include <Chemistry_Chemistry_QC_GaussianBasis_DerivCenters.hh>
35
36using namespace std;
37using namespace Chemistry;
38using namespace Chemistry::QC::GaussianBasis;
39using namespace sc;
40
41////////////////////////////////////////////////////////////////////////////
42// OneBodyIntCCA
43
44OneBodyIntCCA::OneBodyIntCCA(Integral* integral,
45 const Ref<GaussianBasisSet>&bs1,
46 const Ref<GaussianBasisSet>&bs2,
47 IntegralEvaluatorFactory eval_factory,
48 IntegralFunction ifunc,
49 bool use_opaque ):
50 OneBodyInt(integral,bs1,bs2), intfunc_(ifunc), eval_factory_(eval_factory),
51 use_opaque_(use_opaque)
52{
53 std::string int_type;
54 if( ifunc == &Int1eCCA::overlap ) int_type = "overlap";
55 else if (ifunc == &Int1eCCA::kinetic ) int_type = "kinetic";
56 else if (ifunc == &Int1eCCA::nuclear ) int_type = "nuclear";
57 else if (ifunc == &Int1eCCA::hcore ) int_type = "1eham";
58 int1ecca_ = new Int1eCCA(integral,bs1,bs2,0,eval_factory,int_type,use_opaque);
59 buffer_ = int1ecca_->buffer();
60}
61
62OneBodyIntCCA::~OneBodyIntCCA()
63{
64}
65
66void
67OneBodyIntCCA::compute_shell(int i, int j)
68{
69 (int1ecca_.pointer()->*intfunc_)(i, j);
70}
71
72bool
73OneBodyIntCCA::cloneable()
74{
75 return true;
76}
77
78Ref<OneBodyInt>
79OneBodyIntCCA::clone()
80{
81 return new OneBodyIntCCA(integral_, bs1_, bs2_,
82 eval_factory_, intfunc_, use_opaque_ );
83}
84
85// ////////////////////////////////////////////////////////////////////////////
86// // OneBodyDerivIntCCA
87
88OneBodyDerivIntCCA::OneBodyDerivIntCCA(Integral *integral,
89 const Ref<GaussianBasisSet>&bs1,
90 const Ref<GaussianBasisSet>&bs2,
91 IntegralEvaluatorFactory eval_factory,
92 bool use_opaque,
93 string eval_type ):
94 OneBodyDerivInt(integral,bs1,bs2), eval_factory_(eval_factory),
95 use_opaque_(use_opaque), eval_type_(eval_type)
96{
97 int1ecca_ = new Int1eCCA(integral,bs1,bs2,1,eval_factory,eval_type,use_opaque);
98 buffer_ = int1ecca_->buffer();
99}
100
101OneBodyDerivIntCCA::~OneBodyDerivIntCCA()
102{
103}
104
105void
106OneBodyDerivIntCCA::compute_shell(int i, int j, DerivCenters& c)
107{
108 c.clear();
109 c.add_center(0,basis1(),i);
110 c.add_omitted(1,basis2(),j);
111 Chemistry_QC_GaussianBasis_DerivCenters cca_dc;
112 cca_dc = Chemistry_QC_GaussianBasis_DerivCenters::_create();
113 for( int id=0; id<c.n(); ++id ) {
114 if( id == c.omitted_center() )
115 cca_dc.add_omitted(c.center(id),c.atom(id));
116 else
117 cca_dc.add_center(c.center(id),c.atom(id));
118 }
119
120 if( eval_type_ == "overlap_1der" )
121 int1ecca_->overlap_1der(i,j,cca_dc);
122 else if( eval_type_ == "kinetic_1der" )
123 int1ecca_->kinetic_1der(i,j,cca_dc);
124 else if( eval_type_ == "nuclear_1der" )
125 int1ecca_->nuclear_1der(i,j,cca_dc);
126 else if( eval_type_ == "hcore_1der" )
127 int1ecca_->hcore_1der(i,j,cca_dc);
128}
129
130void
131OneBodyDerivIntCCA::compute_shell(int i, int j, int c) {
132
133 Chemistry_QC_GaussianBasis_DerivCenters cca_dc;
134 cca_dc = Chemistry_QC_GaussianBasis_DerivCenters::_create();
135 if( basis1()->shell_to_center(i) == basis2()->shell_to_center(j) ) {
136 cca_dc.add_center(0,c);
137 cca_dc.add_omitted(1,c);
138 }
139 else if( basis1()->shell_to_center(i) == c ) {
140 cca_dc.add_center(0,c);
141 cca_dc.add_omitted( 1, basis2()->shell_to_center(j) );
142 }
143 else {
144 cca_dc.add_center(1,c);
145 cca_dc.add_omitted( 0, basis1()->shell_to_center(i) );
146 }
147
148 std::cerr << "setting omitted atom to " << basis2()->shell_to_center(j) << std::endl;
149 cca_dc.add_omitted(1,basis2()->shell_to_center(j));
150
151 if( eval_type_ == "overlap_1der" )
152 int1ecca_->overlap_1der(i,j,cca_dc);
153 else if( eval_type_ == "kinetic_1der" )
154 int1ecca_->kinetic_1der(i,j,cca_dc);
155 else if( eval_type_ == "nuclear_1der" )
156 int1ecca_->nuclear_1der(i,j,cca_dc);
157 else if( eval_type_ == "hcore_1der" )
158 int1ecca_->hcore_1der(i,j,cca_dc);
159}
160
161/////////////////////////////////////////////////////////////////////////////
162
163// Local Variables:
164// mode: c++
165// c-file-style: "CLJ"
166// End:
Note: See TracBrowser for help on using the repository browser.