ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/trunk/src/flucq/FluctuatingChargeObjectiveFunction.cpp
Revision: 1760
Committed: Thu Jun 21 19:26:46 2012 UTC (12 years, 10 months ago) by gezelter
Original Path: branches/development/src/flucq/FluctuatingChargeObjectiveFunction.cpp
File size: 6053 byte(s)
Log Message:
Some bugfixes (CholeskyDecomposition), more work on fluctuating charges,
migrating stats stuff into frameData

File Contents

# User Rev Content
1 gezelter 1740 /*
2     * Copyright (c) 2012 The University of Notre Dame. All Rights Reserved.
3     *
4     * The University of Notre Dame grants you ("Licensee") a
5     * non-exclusive, royalty free, license to use, modify and
6     * redistribute this software in source and binary code form, provided
7     * that the following conditions are met:
8     *
9     * 1. Redistributions of source code must retain the above copyright
10     * notice, this list of conditions and the following disclaimer.
11     *
12     * 2. Redistributions in binary form must reproduce the above copyright
13     * notice, this list of conditions and the following disclaimer in the
14     * documentation and/or other materials provided with the
15     * distribution.
16     *
17     * This software is provided "AS IS," without a warranty of any
18     * kind. All express or implied conditions, representations and
19     * warranties, including any implied warranty of merchantability,
20     * fitness for a particular purpose or non-infringement, are hereby
21     * excluded. The University of Notre Dame and its licensors shall not
22     * be liable for any damages suffered by licensee as a result of
23     * using, modifying or distributing the software or its
24     * derivatives. In no event will the University of Notre Dame or its
25     * licensors be liable for any lost revenue, profit or data, or for
26     * direct, indirect, special, consequential, incidental or punitive
27     * damages, however caused and regardless of the theory of liability,
28     * arising out of the use of or inability to use software, even if the
29     * University of Notre Dame has been advised of the possibility of
30     * such damages.
31     *
32     * SUPPORT OPEN SCIENCE! If you use OpenMD or its source code in your
33     * research, please cite the appropriate papers when you publish your
34     * work. Good starting points are:
35     *
36     * [1] Meineke, et al., J. Comp. Chem. 26, 252-271 (2005).
37     * [2] Fennell & Gezelter, J. Chem. Phys. 124, 234104 (2006).
38     * [3] Sun, Lin & Gezelter, J. Chem. Phys. 128, 24107 (2008).
39     * [4] Kuang & Gezelter, J. Chem. Phys. 133, 164101 (2010).
40     * [5] Vardeman, Stocker & Gezelter, J. Chem. Theory Comput. 7, 834 (2011).
41     */
42    
43     #include "flucq/FluctuatingChargeObjectiveFunction.hpp"
44    
45     namespace OpenMD{
46    
47     FluctuatingChargeObjectiveFunction::FluctuatingChargeObjectiveFunction(SimInfo* info, ForceManager* forceMan, FluctuatingChargeConstraints* fqConstraints)
48     : info_(info), forceMan_(forceMan), fqConstraints_(fqConstraints),
49     thermo(info) {
50     }
51    
52     RealType FluctuatingChargeObjectiveFunction::value(const DynamicVector<RealType>& x) {
53     setCoor(x);
54     forceMan_->calcForces();
55 gezelter 1760
56 gezelter 1740 Snapshot* curSnapshot = info_->getSnapshotManager()->getCurrentSnapshot();
57 gezelter 1760 potVec pot = curSnapshot->getLongRangePotentials();
58     potVec exPot = curSnapshot->getExcludedPotentials();
59     cerr << "val p= " << pot[ELECTROSTATIC_FAMILY] << "\n";
60     cerr << "val e= " << exPot[ELECTROSTATIC_FAMILY] << "\n";
61    
62     return pot[ELECTROSTATIC_FAMILY] + exPot[ELECTROSTATIC_FAMILY];
63 gezelter 1740 }
64    
65     void FluctuatingChargeObjectiveFunction::gradient(DynamicVector<RealType>& grad, const DynamicVector<RealType>& x) {
66     int shakeStatus;
67    
68     setCoor(x);
69    
70     forceMan_->calcForces();
71     fqConstraints_->applyConstraints();
72 gezelter 1760 cerr << "grad\n";
73 gezelter 1740 getGrad(grad);
74     }
75    
76     RealType FluctuatingChargeObjectiveFunction::valueAndGradient(DynamicVector<RealType>& grad,
77     const DynamicVector<RealType>& x) {
78    
79     setCoor(x);
80    
81     forceMan_->calcForces();
82     fqConstraints_->applyConstraints();
83    
84     getGrad(grad);
85    
86     Snapshot* curSnapshot = info_->getSnapshotManager()->getCurrentSnapshot();
87 gezelter 1760 potVec pot = curSnapshot->getLongRangePotentials();
88     potVec exPot = curSnapshot->getExcludedPotentials();
89     cerr << "vang p= " << pot[ELECTROSTATIC_FAMILY] << "\n";
90     cerr << "vang e= " << exPot[ELECTROSTATIC_FAMILY] << "\n";
91    
92     return pot[ELECTROSTATIC_FAMILY] + exPot[ELECTROSTATIC_FAMILY];
93 gezelter 1740 }
94    
95     void FluctuatingChargeObjectiveFunction::setCoor(const DynamicVector<RealType> &x) const {
96     SimInfo::MoleculeIterator i;
97     Molecule::FluctuatingChargeIterator j;
98     Molecule* mol;
99     Atom* atom;
100     int index = 0;
101    
102     for (mol = info_->beginMolecule(i); mol != NULL;
103     mol = info_->nextMolecule(i)) {
104    
105     for (atom = mol->beginFluctuatingCharge(j); atom != NULL;
106     atom = mol->nextFluctuatingCharge(j)) {
107 gezelter 1756
108 gezelter 1740 atom->setFlucQPos(x[index++]);
109 gezelter 1760 cerr << "setting charge = " << x[index -1] << "\n";
110 gezelter 1740 }
111     }
112     }
113    
114     void FluctuatingChargeObjectiveFunction::getGrad(DynamicVector<RealType> &grad) {
115     SimInfo::MoleculeIterator i;
116     Molecule::FluctuatingChargeIterator j;
117     Molecule* mol;
118     Atom* atom;
119    
120     int index = 0;
121    
122     for (mol = info_->beginMolecule(i); mol != NULL;
123     mol = info_->nextMolecule(i)) {
124    
125     for (atom = mol->beginFluctuatingCharge(j); atom != NULL;
126     atom = mol->nextFluctuatingCharge(j)) {
127 gezelter 1756
128 gezelter 1760 grad[index++] = atom->getFlucQFrc();
129     cerr << "getting grad = " << grad[index -1] << "\n";
130 gezelter 1740 }
131     }
132     }
133    
134     DynamicVector<RealType> FluctuatingChargeObjectiveFunction::setInitialCoords() {
135     SimInfo::MoleculeIterator i;
136     Molecule::FluctuatingChargeIterator j;
137     Molecule* mol;
138     Atom* atom;
139    
140     int index = 0;
141     for (mol = info_->beginMolecule(i); mol != NULL;
142     mol = info_->nextMolecule(i)) {
143    
144     for (atom = mol->beginFluctuatingCharge(j); atom != NULL;
145     atom = mol->nextFluctuatingCharge(j)) {
146    
147     index++;
148     }
149     }
150    
151     DynamicVector<RealType> initCoords(index);
152     index = 0;
153     for (mol = info_->beginMolecule(i); mol != NULL;
154     mol = info_->nextMolecule(i)) {
155    
156     for (atom = mol->beginFluctuatingCharge(j); atom != NULL;
157     atom = mol->nextFluctuatingCharge(j)) {
158    
159     initCoords[index++] = atom->getFlucQPos();
160     }
161     }
162     return initCoords;
163     }
164     }

Properties

Name Value
svn:eol-style native