1 |
/* |
2 |
* Copyright (c) 2010 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 |
#ifdef IS_MPI |
44 |
#include <mpi.h> |
45 |
#endif |
46 |
|
47 |
#include <fstream> |
48 |
#include "utils/simError.h" |
49 |
#include "utils/CaseConversion.hpp" |
50 |
#include "brains/Register.hpp" |
51 |
#include "brains/SimCreator.hpp" |
52 |
#include "brains/SimInfo.hpp" |
53 |
#include "constraints/ZconstraintForceManager.hpp" |
54 |
#include "restraints/RestraintForceManager.hpp" |
55 |
#include "integrators/IntegratorFactory.hpp" |
56 |
#include "integrators/Integrator.hpp" |
57 |
#include "minimizers/MinimizerFactory.hpp" |
58 |
#include "minimizers/Minimizer.hpp" |
59 |
#include "restraints/ThermoIntegrationForceManager.hpp" |
60 |
|
61 |
using namespace OpenMD; |
62 |
|
63 |
int main(int argc,char* argv[]){ |
64 |
|
65 |
// first things first, all of the initializations |
66 |
|
67 |
#ifdef IS_MPI |
68 |
MPI_Init( &argc, &argv ); // the MPI communicators |
69 |
#endif |
70 |
|
71 |
initSimError(); // the error handler |
72 |
srand48( 1337 ); // the random number generator. |
73 |
|
74 |
std::string svnrev; |
75 |
//convert a macro from compiler to a string in c++ |
76 |
STR_DEFINE(svnrev, SVN_REV ); |
77 |
|
78 |
std::string revision; |
79 |
|
80 |
if (!svnrev.empty()) { |
81 |
revision.assign(" Revision: " + svnrev); |
82 |
} |
83 |
|
84 |
revision.resize(19,' '); |
85 |
|
86 |
#ifdef IS_MPI |
87 |
if( worldRank == 0 ){ |
88 |
#endif |
89 |
std::cerr << |
90 |
" +--------------------------------------------------------------------------+\n"<< |
91 |
" | ____ __ ___ ____ |\n"<< |
92 |
" | / __ \\____ ___ ____ / |/ // __ \\ The Open Molecular Dynamics |\n"<< |
93 |
" | / / / / __ \\/ _ \\/ __ \\ / /|_/ // / / / Engine (formerly OOPSE). |\n"<< |
94 |
" | / /_/ / /_/ / __/ / / // / / // /_/ / |\n"<< |
95 |
" | \\____/ .___/\\___/_/ /_//_/ /_//_____/ Copyright 2004-2012 by the |\n"<< |
96 |
" | /_/ University of Notre Dame. |\n"<< |
97 |
" | |\n"<< |
98 |
" | version " << |
99 |
OPENMD_VERSION_MAJOR << "." << OPENMD_VERSION_MINOR << revision << |
100 |
" http://www.openmd.net |\n"<< |
101 |
" | |\n"<< |
102 |
" | OpenMD is an OpenScience project. All source code is available for any |\n"<< |
103 |
" | use whatsoever under a BSD-style license. |\n"<< |
104 |
" | |\n"<< |
105 |
" | Support OpenScience! If you use OpenMD or its source code in your |\n"<< |
106 |
" | research, please cite the appropriate papers when you publish your work |\n"<< |
107 |
" | Good starting points are: |\n"<< |
108 |
" | |\n"<< |
109 |
" | [1] Meineke, et al., J. Comp. Chem. 26, 252-271 (2005). |\n"<< |
110 |
" | [2] Fennell & Gezelter, J. Chem. Phys. 124, 234104 (2006). |\n"<< |
111 |
" | [3] Sun, Lin & Gezelter, J. Chem. Phys. 128, 24107 (2008). |\n"<< |
112 |
" | [4] Kuang & Gezelter, J. Chem. Phys. 133, 164101 (2010). |\n"<< |
113 |
" | [5] Vardeman, Stocker & Gezelter, J. Chem. Theory Comput. 7, 834 (2011). |\n"<< |
114 |
" | [6] Kuang & Gezelter, Mol. Phys., in press (2012). |\n"<< |
115 |
" +--------------------------------------------------------------------------+\n"<< |
116 |
"\n"; |
117 |
|
118 |
if( argc < 2 ){ |
119 |
strcpy( painCave.errMsg, "Error, a meta-data file is needed to run.\n" ); |
120 |
painCave.isFatal = 1; |
121 |
simError(); |
122 |
} |
123 |
#ifdef IS_MPI |
124 |
} |
125 |
#endif |
126 |
|
127 |
strcpy( checkPointMsg, "Successful number of arguments" ); |
128 |
errorCheckPoint(); |
129 |
|
130 |
//register forcefields, integrators and minimizers |
131 |
registerAll(); |
132 |
|
133 |
//create simulation model |
134 |
SimCreator creator; |
135 |
SimInfo* info = creator.createSim(argv[1]); |
136 |
|
137 |
Globals* simParams = info->getSimParams(); |
138 |
|
139 |
if (simParams->haveMinimizer() && simParams->haveEnsemble()) { |
140 |
sprintf(painCave.errMsg, "Minimizer keyword and Ensemble keyword can not exist together\n"); |
141 |
painCave.isFatal = 1; |
142 |
simError(); |
143 |
} |
144 |
|
145 |
|
146 |
if (simParams->haveMinimizer()) { |
147 |
//create minimizer |
148 |
Minimizer* myMinimizer = MinimizerFactory::getInstance()->createMinimizer(toUpperCopy(simParams->getMinimizer()), info); |
149 |
|
150 |
if (myMinimizer == NULL) { |
151 |
sprintf(painCave.errMsg, "Minimizer Factory can not create %s Minimizer\n", |
152 |
simParams->getMinimizer().c_str()); |
153 |
painCave.isFatal = 1; |
154 |
simError(); |
155 |
} |
156 |
|
157 |
myMinimizer->minimize(); |
158 |
delete myMinimizer; |
159 |
} else if (simParams->haveEnsemble()) { |
160 |
//create Integrator |
161 |
|
162 |
Integrator* myIntegrator = IntegratorFactory::getInstance()->createIntegrator(toUpperCopy(simParams->getEnsemble()), info); |
163 |
|
164 |
if (myIntegrator == NULL) { |
165 |
sprintf(painCave.errMsg, "Integrator Factory can not create %s Integrator\n", |
166 |
simParams->getEnsemble().c_str()); |
167 |
painCave.isFatal = 1; |
168 |
simError(); |
169 |
} |
170 |
|
171 |
//Thermodynamic Integration Method |
172 |
//set the force manager for thermodynamic integration if specified |
173 |
if (simParams->getUseThermodynamicIntegration()){ |
174 |
ForceManager* fman = new ThermoIntegrationForceManager(info); |
175 |
myIntegrator->setForceManager(fman); |
176 |
} |
177 |
|
178 |
// Restraints |
179 |
if (simParams->getUseRestraints() && !simParams->getUseThermodynamicIntegration()) { |
180 |
ForceManager* fman = new RestraintForceManager(info); |
181 |
myIntegrator->setForceManager(fman); |
182 |
} |
183 |
|
184 |
//Zconstraint-Method |
185 |
if (simParams->getNZconsStamps() > 0) { |
186 |
info->setNZconstraint(simParams->getNZconsStamps()); |
187 |
ForceManager* fman = new ZconstraintForceManager(info); |
188 |
myIntegrator->setForceManager(fman); |
189 |
} |
190 |
|
191 |
myIntegrator->integrate(); |
192 |
delete myIntegrator; |
193 |
}else { |
194 |
sprintf(painCave.errMsg, "Integrator Factory can not create %s Integrator\n", |
195 |
simParams->getEnsemble().c_str()); |
196 |
painCave.isFatal = 1; |
197 |
simError(); |
198 |
} |
199 |
|
200 |
delete info; |
201 |
|
202 |
|
203 |
strcpy( checkPointMsg, "Great googly moogly! It worked!" ); |
204 |
errorCheckPoint(); |
205 |
|
206 |
#ifdef IS_MPI |
207 |
MPI_Finalize(); |
208 |
#endif |
209 |
|
210 |
return 0 ; |
211 |
} |