ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/applications/oopse/oopse.cpp
Revision: 2403
Committed: Tue Nov 1 19:13:23 2005 UTC (18 years, 8 months ago) by chrisfen
File size: 6845 byte(s)
Log Message:
nothing

File Contents

# User Rev Content
1 gezelter 2204 /*
2 gezelter 1930 * 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     * 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 1501 #ifdef IS_MPI
43     #include <mpi.h>
44     #endif
45    
46     #include "utils/simError.h"
47 chrisfen 2390 #include "utils/CaseConversion.hpp"
48 gezelter 1930 #include "brains/Register.hpp"
49     #include "brains/SimCreator.hpp"
50 tim 1501 #include "brains/SimInfo.hpp"
51 gezelter 1930 #include "constraints/ZconstraintForceManager.hpp"
52     #include "integrators/IntegratorFactory.hpp"
53 tim 1501 #include "integrators/Integrator.hpp"
54 gezelter 1930 #include "minimizers/MinimizerFactory.hpp"
55     #include "minimizers/Minimizer.hpp"
56     using namespace oopse;
57 tim 1501
58     int main(int argc,char* argv[]){
59    
60     // first things first, all of the initializations
61    
62     #ifdef IS_MPI
63     MPI_Init( &argc, &argv ); // the MPI communicators
64     #endif
65    
66     initSimError(); // the error handler
67     srand48( 1337 ); // the random number generator.
68    
69     #ifdef IS_MPI
70     if( worldRank == 0 ){
71     #endif
72     std::cerr <<
73     " +----------------------------------------------------------------------+\n" <<
74     " | ____ ____ ____ _____ ______ The OpenSource, Object-oriented |\n" <<
75     " | / __ \\/ __ \\/ __ \\/ ___// ____/ Parallel Simulation Engine. |\n" <<
76     " | / / / / / / / /_/ /\\__ \\/ __/ |\n" <<
77 gezelter 2051 " | / /_/ / /_/ / ____/___/ / /___ Copyright 2004-2005 by the |\n" <<
78 tim 1501 " | \\____/\\____/_/ /____/_____/ University of Notre Dame. |\n" <<
79 gezelter 2207 " | |\n" <<
80 gezelter 2206 " | version " <<
81     OOPSE_VERSION_MAJOR << "." << OOPSE_VERSION_MINOR << "." << OOPSE_VERSION_TINY <<
82     " http://www.oopse.org |\n" <<
83 tim 1501 " | |\n" <<
84     " | OOPSE is an OpenScience project. All source code is available for |\n" <<
85     " | any use subject to only one condition: |\n" <<
86     " | |\n" <<
87     " | Any published work resulting from the use of this code must cite the |\n" <<
88     " | following paper: M. A. Meineke, C. F. Vardeman II, T. Lin, |\n" <<
89     " | C. J. Fennell, and J. D. Gezelter, |\n" <<
90 gezelter 1950 " | J. Comput. Chem. 26, pp. 252-271 (2005). |\n" <<
91 tim 1501 " +----------------------------------------------------------------------+\n" <<
92     "\n";
93    
94     if( argc < 2 ){
95     strcpy( painCave.errMsg, "Error, a meta-data file is needed to run.\n" );
96     painCave.isFatal = 1;
97     simError();
98     }
99     #ifdef IS_MPI
100     }
101     #endif
102    
103     #ifdef IS_MPI
104     strcpy( checkPointMsg, "Successful number of arguments" );
105     MPIcheckPoint();
106     #endif
107 gezelter 1930
108    
109    
110 gezelter 2204 //register forcefields, integrators and minimizers
111     registerAll();
112 gezelter 1930
113 gezelter 2204 //create simulation model
114     SimCreator creator;
115     SimInfo* info = creator.createSim(argv[1]);
116     Globals* simParams = info->getSimParams();
117 gezelter 1930
118 gezelter 2204 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 1501
124 gezelter 2204 if (simParams->haveMinimizer()) {
125     //create minimizer
126 chrisfen 2390 Minimizer* myMinimizer = MinimizerFactory::getInstance()->createMinimizer(toUpperCopy(simParams->getMinimizer()), info);
127 tim 1501
128 gezelter 2204 if (myMinimizer == NULL) {
129     sprintf(painCave.errMsg, "Minimizer Factory can not create %s Minimizer\n",
130 tim 2364 simParams->getMinimizer().c_str());
131 gezelter 2204 painCave.isFatal = 1;
132     simError();
133     }
134 tim 1501
135 gezelter 2204 myMinimizer->minimize();
136     delete myMinimizer;
137     } else if (simParams->haveEnsemble()) {
138     //create Integrator
139 tim 1501
140 chrisfen 2390 Integrator* myIntegrator = IntegratorFactory::getInstance()->createIntegrator(toUpperCopy(simParams->getEnsemble()), info);
141 chrisfen 2403
142 gezelter 2204 if (myIntegrator == NULL) {
143     sprintf(painCave.errMsg, "Integrator Factory can not create %s Integrator\n",
144 tim 2364 simParams->getEnsemble().c_str());
145 gezelter 2204 painCave.isFatal = 1;
146     simError();
147     }
148 gezelter 1930
149 gezelter 2204 //Thermodynamic Integration Method
150     //ForceManager* fman = new ThermodynamicForceManager(info);
151     //myIntegrator->setForceManager(fman);
152 tim 1501
153    
154 gezelter 2204 //Zconstraint-Method
155 tim 2364 if (simParams->haveNZconstraints()) {
156     info->setNZconstraint(simParams->getNZconstraints());
157 gezelter 2204 ForceManager* fman = new ZconstraintForceManager(info);
158     myIntegrator->setForceManager(fman);
159     }
160 gezelter 1930
161 gezelter 2204 myIntegrator->integrate();
162     delete myIntegrator;
163     }else {
164     sprintf(painCave.errMsg, "Integrator Factory can not create %s Integrator\n",
165 tim 2364 simParams->getEnsemble().c_str());
166 gezelter 2204 painCave.isFatal = 1;
167     simError();
168     }
169 tim 1501
170    
171 gezelter 1930
172 gezelter 2204 delete info;
173 tim 1501
174     #ifdef IS_MPI
175 chrisfen 2390 strcpy( checkPointMsg, "Yoikes! It worked!" );
176 tim 1501 MPIcheckPoint();
177    
178 gezelter 1930 MPI_Finalize();
179 tim 1501 #endif
180    
181     return 0 ;
182     }