ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/development/src/applications/dynamicProps/LegendreCorrFunc.cpp
Revision: 1665
Committed: Tue Nov 22 20:38:56 2011 UTC (13 years, 6 months ago) by gezelter
File size: 6512 byte(s)
Log Message:
updated copyright notices

File Contents

# User Rev Content
1 tim 876 /*
2     * Copyright (c) 2005 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 gezelter 1390 * 1. Redistributions of source code must retain the above copyright
10 tim 876 * notice, this list of conditions and the following disclaimer.
11     *
12 gezelter 1390 * 2. Redistributions in binary form must reproduce the above copyright
13 tim 876 * 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 gezelter 1390 *
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 gezelter 1665 * [4] Kuang & Gezelter, J. Chem. Phys. 133, 164101 (2010).
40     * [5] Vardeman, Stocker & Gezelter, J. Chem. Theory Comput. 7, 834 (2011).
41 tim 876 */
42    
43     #include "applications/dynamicProps/LegendreCorrFunc.hpp"
44     #include "math/LegendrePolynomial.hpp"
45     #include "utils/simError.h"
46    
47 gezelter 1390 namespace OpenMD {
48 gezelter 1629 LegendreCorrFunc::LegendreCorrFunc(SimInfo* info, const std::string& filename, const std::string& sele1, const std::string& sele2, int order, long long int memSize)
49     : ParticleTimeCorrFunc(info, filename, sele1, sele2, DataStorage::dslAmat | DataStorage::dslElectroFrame, memSize){
50 tim 876
51     setCorrFuncType("Legendre Correlation Function");
52     setOutputName(getPrefix(dumpFilename_) + ".lcorr");
53 xsun 1183 histogram_.resize(nTimeBins_);
54     count_.resize(nTimeBins_);
55     nSelected_ = seleMan1_.getSelectionCount();
56     std::cout << "sele1 = " << sele1 << "\n";
57     std::cout << "sele2 = " << sele2 << "\n";
58     std::cout << "nSelected = " << nSelected_ << "\n";
59     assert( nSelected_ == seleMan2_.getSelectionCount());
60    
61 tim 876 LegendrePolynomial polynomial(order);
62     legendre_ = polynomial.getLegendrePolynomial(order);
63 xsun 1183 }
64 tim 876
65 xsun 1183 void LegendreCorrFunc::correlateFrames(int frame1, int frame2) {
66     Snapshot* snapshot1 = bsMan_->getSnapshot(frame1);
67     Snapshot* snapshot2 = bsMan_->getSnapshot(frame2);
68     assert(snapshot1 && snapshot2);
69    
70     RealType time1 = snapshot1->getTime();
71     RealType time2 = snapshot2->getTime();
72    
73     int timeBin = int ((time2 - time1) /deltaTime_ + 0.5);
74     count_[timeBin] += nSelected_;
75    
76     int i;
77     int j;
78     StuntDouble* sd1;
79     StuntDouble* sd2;
80    
81     for (sd1 = seleMan1_.beginSelected(i), sd2 = seleMan2_.beginSelected(j);
82     sd1 != NULL && sd2 != NULL;
83     sd1 = seleMan1_.nextSelected(i), sd2 = seleMan2_.nextSelected(j)) {
84    
85     Vector3d corrVals = calcCorrVals(frame1, frame2, sd1, sd2);
86     histogram_[timeBin] += corrVals;
87 tim 876 }
88 xsun 1183
89     }
90 tim 876
91 xsun 1183 void LegendreCorrFunc::postCorrelate() {
92     for (int i =0 ; i < nTimeBins_; ++i) {
93     if (count_[i] > 0) {
94     histogram_[i] /= count_[i];
95     }
96     }
97     }
98 tim 876
99 xsun 1183 void LegendreCorrFunc::preCorrelate() {
100     // Fill the histogram with empty Vector3d:
101     std::fill(histogram_.begin(), histogram_.end(), Vector3d(0.0));
102     // count array set to zero
103     std::fill(count_.begin(), count_.end(), 0);
104 tim 876 }
105    
106    
107 xsun 1183
108     Vector3d LegendreCorrFunc::calcCorrVals(int frame1, int frame2, StuntDouble* sd1, StuntDouble* sd2) {
109 xsun 1213
110     // The lab frame vector corresponding to the body-fixed
111     // z-axis is simply the second column of A.transpose()
112     // or, identically, the second row of A itself.
113     // Similar identites give the 0th and 1st rows of A for
114     // the lab vectors associated with body-fixed x- and y- axes.
115 xsun 1183
116 xsun 1213 Vector3d v1x = sd1->getA(frame1).getRow(0);
117     Vector3d v2x = sd2->getA(frame2).getRow(0);
118     Vector3d v1y = sd1->getA(frame1).getRow(1);
119     Vector3d v2y = sd2->getA(frame2).getRow(1);
120     Vector3d v1z = sd1->getA(frame1).getRow(2);
121     Vector3d v2z = sd2->getA(frame2).getRow(2);
122    
123 xsun 1183 RealType uxprod = legendre_.evaluate(dot(v1x, v2x)/(v1x.length()*v2x.length()));
124     RealType uyprod = legendre_.evaluate(dot(v1y, v2y)/(v1y.length()*v2y.length()));
125     RealType uzprod = legendre_.evaluate(dot(v1z, v2z)/(v1z.length()*v2z.length()));
126    
127     return Vector3d(uxprod, uyprod, uzprod);
128    
129     }
130    
131    
132 tim 876 void LegendreCorrFunc::validateSelection(const SelectionManager& seleMan) {
133     StuntDouble* sd;
134     int i;
135     for (sd = seleMan1_.beginSelected(i); sd != NULL; sd = seleMan1_.nextSelected(i)) {
136     if (!sd->isDirectionalAtom()) {
137     sprintf(painCave.errMsg,
138 xsun 1183 "LegendreCorrFunc::validateSelection Error: selected atoms are not Directional\n");
139 tim 876 painCave.isFatal = 1;
140     simError();
141     }
142     }
143    
144     }
145    
146 xsun 1183 void LegendreCorrFunc::writeCorrelate() {
147     std::ofstream ofs(getOutputFileName().c_str());
148 tim 876
149 xsun 1183 if (ofs.is_open()) {
150 tim 876
151 xsun 1183 ofs << "#" << getCorrFuncType() << "\n";
152     ofs << "#time\tPn(costheta_x)\tPn(costheta_y)\tPn(costheta_z)\n";
153 tim 876
154 xsun 1183 for (int i = 0; i < nTimeBins_; ++i) {
155     ofs << time_[i] << "\t" <<
156     histogram_[i](0) << "\t" <<
157     histogram_[i](1) << "\t" <<
158     histogram_[i](2) << "\t" << "\n";
159     }
160    
161     } else {
162     sprintf(painCave.errMsg,
163     "LegendreCorrFunc::writeCorrelate Error: fail to open %s\n", getOutputFileName().c_str());
164     painCave.isFatal = 1;
165     simError();
166     }
167     ofs.close();
168     }
169     }

Properties

Name Value
svn:executable *
svn:keywords Author Id Revision Date