source: ThirdParty/mpqc_open/src/lib/chemistry/molecule/cartcoor.cc@ 7516f6

Action_Thermostats Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.1 ChemicalSpaceEvaluator Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Exclude_Hydrogens_annealWithBondGraph Fix_Verbose_Codepatterns ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion Gui_displays_atomic_force_velocity JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool PythonUI_with_named_parameters Recreated_GuiChecks StoppableMakroAction TremoloParser_IncreasedPrecision
Last change on this file since 7516f6 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: 4.6 KB
Line 
1//
2// cartcoor.cc
3//
4// Copyright (C) 1996 Limit Point Systems, Inc.
5//
6// Author: Edward Seidl <seidl@janed.com>
7// Maintainer: LPS
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#include <math.h>
29
30#include <util/state/stateio.h>
31#include <math/scmat/matrix.h>
32#include <chemistry/molecule/molecule.h>
33#include <chemistry/molecule/coor.h>
34#include <chemistry/molecule/simple.h>
35
36using namespace std;
37using namespace sc;
38
39///////////////////////////////////////////////////////////////////////////
40// members of CartMolecularCoor
41
42static ClassDesc CartMolecularCoor_cd(
43 typeid(CartMolecularCoor),"CartMolecularCoor",1,"public MolecularCoor",
44 0, create<CartMolecularCoor>, create<CartMolecularCoor>);
45
46CartMolecularCoor::CartMolecularCoor(Ref<Molecule>&mol):
47 MolecularCoor(mol)
48{
49 init();
50}
51
52CartMolecularCoor::CartMolecularCoor(const Ref<KeyVal>& keyval):
53 MolecularCoor(keyval)
54{
55 init();
56}
57
58CartMolecularCoor::CartMolecularCoor(StateIn& s):
59 MolecularCoor(s)
60{
61 dim_ << SavableState::restore_state(s);
62}
63
64void
65CartMolecularCoor::init()
66{
67 // compute needed dimensions
68 dim_ = dnatom3_;
69}
70
71CartMolecularCoor::~CartMolecularCoor()
72{
73}
74
75void
76CartMolecularCoor::save_data_state(StateOut&s)
77{
78 MolecularCoor::save_data_state(s);
79
80 SavableState::save_state(dim_.pointer(),s);
81}
82
83RefSCDimension
84CartMolecularCoor::dim()
85{
86 return dim_;
87}
88
89
90// presumably this will actually be passed the new cartesian coords in
91// new_internal, so do almost nothing
92int
93CartMolecularCoor::to_cartesian(const Ref<Molecule>&mol,
94 const RefSCVector&new_internal)
95{
96 // get a reference to Molecule for convenience
97 Molecule& molecule = *(mol.pointer());
98
99 // update the geometry
100 for(int i=0; i < dim_.n(); i++) {
101 molecule.r(i/3,i%3) = new_internal(i);
102 }
103
104 return 0;
105}
106
107// again, the coordinates we want to use are cartesian, so just copy
108// the cartesian coords into internal
109int
110CartMolecularCoor::to_internal(RefSCVector&internal)
111{
112 // get a reference to Molecule for convenience
113 Molecule& molecule = *(molecule_.pointer());
114
115 int n = dim_.n();
116 for (int i=0; i < n; i++) {
117 internal(i) = molecule.r(i/3,i%3);
118 }
119
120 return 0;
121}
122
123int
124CartMolecularCoor::to_cartesian(RefSCVector&gradient,RefSCVector&internal)
125{
126 gradient->assign(internal.pointer());
127 return 0;
128}
129
130// converts the gradient in cartesian coordinates to internal coordinates
131int
132CartMolecularCoor::to_internal(RefSCVector&internal,RefSCVector&gradient)
133{
134 internal->assign(gradient.pointer());
135 return 0;
136}
137
138int
139CartMolecularCoor::to_cartesian(RefSymmSCMatrix&cart,RefSymmSCMatrix&internal)
140{
141 cart->assign(internal.pointer());
142 return 0;
143}
144
145int
146CartMolecularCoor::to_internal(RefSymmSCMatrix&internal,RefSymmSCMatrix&cart)
147{
148 internal->assign(cart.pointer());
149 return 0;
150}
151
152void
153CartMolecularCoor::print(ostream& os) const
154{
155 molecule_->print(os);
156}
157
158void
159CartMolecularCoor::print_simples(ostream& os) const
160{
161}
162
163void
164CartMolecularCoor::guess_hessian(RefSymmSCMatrix&hessian)
165{
166 SymmMolecularCoor imcoor(molecule_);
167 RefSymmSCMatrix ihessian(imcoor.dim(),matrixkit_);
168 imcoor.guess_hessian(ihessian);
169 imcoor.to_cartesian(hessian,ihessian);
170
171 RefSCMatrix evecs(hessian.dim(),hessian.dim(),matrixkit_);
172 RefDiagSCMatrix evals(hessian.dim(),matrixkit_);
173
174 hessian.diagonalize(evals,evecs);
175 hessian.assign(0.0);
176
177 // get rid of the 3 translations and 3 rotations
178 for (int i=0; i < evals.n(); i++) {
179 if (fabs(evals.get_element(i)) < 1.0e-6) {
180 for (int j=0; j < evals.n(); j++)
181 evecs.set_element(j,i,0.0);
182 evals.set_element(i,0.0);
183 }
184 }
185
186 hessian.accumulate_transform(evecs,evals);
187}
188
189RefSymmSCMatrix
190CartMolecularCoor::inverse_hessian(RefSymmSCMatrix& hessian)
191{
192 return hessian.gi();
193}
194
195/////////////////////////////////////////////////////////////////////////////
196
197// Local Variables:
198// mode: c++
199// c-file-style: "ETS"
200// End:
Note: See TracBrowser for help on using the repository browser.