ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/trunk/src/applications/oopse/oopse.cpp
Revision: 1290
Committed: Wed Sep 10 19:51:45 2008 UTC (16 years, 7 months ago) by cli2
File size: 7077 byte(s)
Log Message:
Inversion fixes and amber mostly working

File Contents

# User Rev Content
1 gezelter 507 /*
2 gezelter 861 * Copyright (c) 2006 The University of Notre Dame. All Rights Reserved.
3 gezelter 246 *
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. Acknowledgement of the program authors must be made in any
10     * publication of scientific results based in part on use of the
11     * program. An acceptable form of acknowledgement is citation of
12     * the article in which the program was described (Matthew
13     * A. Meineke, Charles F. Vardeman II, Teng Lin, Christopher
14     * J. Fennell and J. Daniel Gezelter, "OOPSE: An Object-Oriented
15     * Parallel Simulation Engine for Molecular Dynamics,"
16     * J. Comput. Chem. 26, pp. 252-271 (2005))
17     *
18     * 2. Redistributions of source code must retain the above copyright
19     * notice, this list of conditions and the following disclaimer.
20     *
21     * 3. Redistributions in binary form must reproduce the above copyright
22     * notice, this list of conditions and the following disclaimer in the
23     * documentation and/or other materials provided with the
24     * distribution.
25     *
26     * This software is provided "AS IS," without a warranty of any
27     * kind. All express or implied conditions, representations and
28     * warranties, including any implied warranty of merchantability,
29     * fitness for a particular purpose or non-infringement, are hereby
30     * excluded. The University of Notre Dame and its licensors shall not
31     * be liable for any damages suffered by licensee as a result of
32     * using, modifying or distributing the software or its
33     * derivatives. In no event will the University of Notre Dame or its
34     * licensors be liable for any lost revenue, profit or data, or for
35     * direct, indirect, special, consequential, incidental or punitive
36     * damages, however caused and regardless of the theory of liability,
37     * arising out of the use of or inability to use software, even if the
38     * University of Notre Dame has been advised of the possibility of
39     * such damages.
40     */
41    
42 tim 12 #ifdef IS_MPI
43     #include <mpi.h>
44     #endif
45    
46 cli2 1290 #include <fstream>
47 tim 12 #include "utils/simError.h"
48 chrisfen 691 #include "utils/CaseConversion.hpp"
49 gezelter 246 #include "brains/Register.hpp"
50     #include "brains/SimCreator.hpp"
51 tim 12 #include "brains/SimInfo.hpp"
52 gezelter 246 #include "constraints/ZconstraintForceManager.hpp"
53     #include "integrators/IntegratorFactory.hpp"
54 tim 12 #include "integrators/Integrator.hpp"
55 gezelter 246 #include "minimizers/MinimizerFactory.hpp"
56     #include "minimizers/Minimizer.hpp"
57 chrisfen 993 #include "restraints/ThermoIntegrationForceManager.hpp"
58    
59 gezelter 246 using namespace oopse;
60 tim 12
61 cli2 1290
62 tim 12 int main(int argc,char* argv[]){
63 cli2 1290
64 tim 12 // first things first, all of the initializations
65    
66     #ifdef IS_MPI
67     MPI_Init( &argc, &argv ); // the MPI communicators
68     #endif
69    
70     initSimError(); // the error handler
71     srand48( 1337 ); // the random number generator.
72    
73     #ifdef IS_MPI
74     if( worldRank == 0 ){
75     #endif
76     std::cerr <<
77     " +----------------------------------------------------------------------+\n" <<
78     " | ____ ____ ____ _____ ______ The OpenSource, Object-oriented |\n" <<
79     " | / __ \\/ __ \\/ __ \\/ ___// ____/ Parallel Simulation Engine. |\n" <<
80     " | / / / / / / / /_/ /\\__ \\/ __/ |\n" <<
81 gezelter 1249 " | / /_/ / /_/ / ____/___/ / /___ Copyright 2004-2008 by the |\n" <<
82 tim 12 " | \\____/\\____/_/ /____/_____/ University of Notre Dame. |\n" <<
83 gezelter 510 " | |\n" <<
84 gezelter 509 " | version " <<
85     OOPSE_VERSION_MAJOR << "." << OOPSE_VERSION_MINOR << "." << OOPSE_VERSION_TINY <<
86     " http://www.oopse.org |\n" <<
87 tim 12 " | |\n" <<
88     " | OOPSE is an OpenScience project. All source code is available for |\n" <<
89     " | any use subject to only one condition: |\n" <<
90     " | |\n" <<
91     " | Any published work resulting from the use of this code must cite the |\n" <<
92     " | following paper: M. A. Meineke, C. F. Vardeman II, T. Lin, |\n" <<
93     " | C. J. Fennell, and J. D. Gezelter, |\n" <<
94 gezelter 266 " | J. Comput. Chem. 26, pp. 252-271 (2005). |\n" <<
95 tim 12 " +----------------------------------------------------------------------+\n" <<
96     "\n";
97    
98     if( argc < 2 ){
99     strcpy( painCave.errMsg, "Error, a meta-data file is needed to run.\n" );
100     painCave.isFatal = 1;
101     simError();
102     }
103     #ifdef IS_MPI
104     }
105     #endif
106    
107     strcpy( checkPointMsg, "Successful number of arguments" );
108 gezelter 1241 errorCheckPoint();
109 gezelter 246
110 gezelter 507 //register forcefields, integrators and minimizers
111     registerAll();
112 gezelter 246
113 gezelter 507 //create simulation model
114     SimCreator creator;
115     SimInfo* info = creator.createSim(argv[1]);
116     Globals* simParams = info->getSimParams();
117 gezelter 246
118 gezelter 507 if (simParams->haveMinimizer() && simParams->haveEnsemble()) {
119     sprintf(painCave.errMsg, "Minimizer keyword and Ensemble keyword can not exist together\n");
120     painCave.isFatal = 1;
121     simError();
122     }
123 tim 12
124 gezelter 507 if (simParams->haveMinimizer()) {
125     //create minimizer
126 chrisfen 691 Minimizer* myMinimizer = MinimizerFactory::getInstance()->createMinimizer(toUpperCopy(simParams->getMinimizer()), info);
127 tim 12
128 gezelter 507 if (myMinimizer == NULL) {
129     sprintf(painCave.errMsg, "Minimizer Factory can not create %s Minimizer\n",
130 tim 665 simParams->getMinimizer().c_str());
131 gezelter 507 painCave.isFatal = 1;
132     simError();
133     }
134 tim 12
135 gezelter 507 myMinimizer->minimize();
136     delete myMinimizer;
137     } else if (simParams->haveEnsemble()) {
138     //create Integrator
139 tim 12
140 chrisfen 691 Integrator* myIntegrator = IntegratorFactory::getInstance()->createIntegrator(toUpperCopy(simParams->getEnsemble()), info);
141 chrisfen 704
142 gezelter 507 if (myIntegrator == NULL) {
143     sprintf(painCave.errMsg, "Integrator Factory can not create %s Integrator\n",
144 tim 665 simParams->getEnsemble().c_str());
145 gezelter 507 painCave.isFatal = 1;
146     simError();
147     }
148 gezelter 246
149 gezelter 507 //Thermodynamic Integration Method
150 chrisfen 993 //set the force manager for thermodynamic integration if specified
151     if (simParams->getUseSolidThermInt() || simParams->getUseLiquidThermInt()){
152     ForceManager* fman = new ThermoIntegrationForceManager(info);
153     myIntegrator->setForceManager(fman);
154     }
155 tim 12
156 gezelter 507 //Zconstraint-Method
157 tim 770 if (simParams->getNZconsStamps() > 0) {
158     info->setNZconstraint(simParams->getNZconsStamps());
159 gezelter 507 ForceManager* fman = new ZconstraintForceManager(info);
160     myIntegrator->setForceManager(fman);
161     }
162 gezelter 246
163 gezelter 507 myIntegrator->integrate();
164     delete myIntegrator;
165     }else {
166     sprintf(painCave.errMsg, "Integrator Factory can not create %s Integrator\n",
167 tim 665 simParams->getEnsemble().c_str());
168 gezelter 507 painCave.isFatal = 1;
169     simError();
170     }
171 tim 12
172    
173 gezelter 246
174 gezelter 507 delete info;
175 tim 12
176 gezelter 1241
177     strcpy( checkPointMsg, "Great googly moogly! It worked!" );
178     errorCheckPoint();
179    
180     #ifdef IS_MPI
181 gezelter 246 MPI_Finalize();
182 tim 12 #endif
183    
184     return 0 ;
185     }