ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/applications/simpleBuilder/simpleBuilder.cpp
(Generate patch)

Comparing trunk/OOPSE-4/src/applications/simpleBuilder/simpleBuilder.cpp (file contents):
Revision 1674 by tim, Thu Oct 28 19:06:59 2004 UTC vs.
Revision 1930 by gezelter, Wed Jan 12 22:41:40 2005 UTC

# Line 1 | Line 1
1 + /*
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 + * 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   #include <cstdlib>
43   #include <cstdio>
44   #include <cstring>
# Line 7 | Line 48
48   #include <map>
49   #include <fstream>
50  
10 #include "io/Globals.hpp"
11 #include "brains/SimInfo.hpp"
12 #include "brains/SimSetup.hpp"
51   #include "applications/simpleBuilder/simpleBuilderCmd.h"
14 #include "utils/StringUtils.hpp"
52   #include "applications/simpleBuilder/LatticeFactory.hpp"
16 #include "math/Vector3.hpp"
53   #include "applications/simpleBuilder/MoLocator.hpp"
54   #include "applications/simpleBuilder/Lattice.hpp"
55 + #include "brains/Register.hpp"
56 + #include "brains/SimInfo.hpp"
57 + #include "brains/SimCreator.hpp"
58 + #include "io/DumpWriter.hpp"
59 + #include "math/Vector3.hpp"
60 + #include "math/SquareMatrix3.hpp"
61 + #include "utils/StringUtils.hpp"
62  
63   using namespace std;
64 + using namespace oopse;
65 + void createMdFile(const std::string&oldMdFileName, const std::string&newMdFileName,
66 +                  int numMol);
67  
68 < void createMdFile(const string& oldMdFileName, const string& newMdFileName, int numMol);
23 < double getMolMass(MoleculeStamp* molStamp, ForceFields* myFF);
68 > int main(int argc, char *argv []) {
69  
70 < int main( int argc, char* argv[]){
70 >    //register force fields
71 >    registerForceFields();
72 >    
73 >    gengetopt_args_info args_info;
74 >    std::string latticeType;
75 >    std::string inputFileName;
76 >    std::string outPrefix;
77 >    std::string outMdFileName;
78 >    std::string outInitFileName;
79 >    BaseLattice *simpleLat;
80 >    int numMol;
81 >    double latticeConstant;
82 >    std::vector<double> lc;
83 >    double mass;
84 >    const double rhoConvertConst = 1.661;
85 >    double density;
86 >    int nx,
87 >    ny,
88 >    nz;
89 >    Mat3x3d hmat;
90 >    MoLocator *locator;
91 >    std::vector<Vector3d> latticePos;
92 >    std::vector<Vector3d> latticeOrt;
93 >    int numMolPerCell;
94 >    int curMolIndex;
95 >    DumpWriter *writer;
96  
97 <  gengetopt_args_info args_info;
98 <  string latticeType;
99 <  string inputFileName;
30 <  string outPrefix;
31 <  string outMdFileName;
32 <  string outInitFileName;
33 <  SimInfo* oldInfo;
34 <  SimSetup* oldSimSetup;
35 <  BaseLattice* simpleLat;
36 <  int numMol;
37 <  double latticeConstant;
38 <  vector<double> lc;
39 <  double mass;
40 <  const double rhoConvertConst = 1.661;
41 <  double density;
42 <  int nx, ny, nz;
43 <  double Hmat[3][3];
44 <  MoLocator *locator;
45 <  vector<Vector3d> latticePos;
46 <  vector<Vector3d> latticeOrt;
47 <  int numMolPerCell;
48 <  int curMolIndex;
49 <  DumpWriter* writer;
50 <  
51 <  // parse command line arguments
52 <  if (cmdline_parser (argc, argv, &args_info) != 0)
53 <    exit(1) ;
54 <  
55 <  density = args_info.density_arg;
97 >    // parse command line arguments
98 >    if (cmdline_parser(argc, argv, &args_info) != 0)
99 >        exit(1);
100  
101 <  //get lattice type
58 <  latticeType = UpperCase(args_info.latticetype_arg);
59 <  if(!LatticeFactory::getInstance()->hasLatticeCreator(latticeType)){
60 <    cerr << latticeType << " is an invalid lattice type" << endl;
61 <    cerr << LatticeFactory::getInstance()->toString() << endl;
62 <    exit(1);
63 <  }
101 >    density = args_info.density_arg;
102  
103 <  //get the number of unit cell
104 <  nx = args_info.nx_arg;
67 <  if(nx <= 0){
68 <    cerr << "The number of unit cell in h direction must be greater than 0" << endl;
69 <    exit(1);
70 <  }
103 >    //get lattice type
104 >    latticeType = UpperCase(args_info.latticetype_arg);
105  
106 <  ny = args_info.ny_arg;
107 <  if(ny <= 0){
108 <    cerr << "The number of unit cell in l direction must be greater than 0" << endl;
109 <    exit(1);
110 <  }
106 >    if (!LatticeFactory::getInstance()->hasLatticeCreator(latticeType)) {
107 >        std::cerr << latticeType << " is an invalid lattice type" << std::endl;
108 >        std::cerr << LatticeFactory::getInstance()->toString() << std::endl;
109 >        exit(1);
110 >    }
111  
112 <  nz = args_info.nz_arg;
113 <  if(nz <= 0){
80 <    cerr << "The number of unit cell in k direction must be greater than 0" << endl;
81 <    exit(1);
82 <  }
83 <        
84 <  //get input file name
85 <  if (args_info.inputs_num)
86 <    inputFileName = args_info.inputs[0];
87 <  else {                
88 <    cerr <<"You must specify a input file name.\n" << endl;
89 <    cmdline_parser_print_help();
90 <    exit(1);
91 <  }
112 >    //get the number of unit cell
113 >    nx = args_info.nx_arg;
114  
115 <  
116 <  //parse md file and set up the system
117 <  oldInfo = new SimInfo;
118 <  if(oldInfo == NULL){
97 <     cerr << "error in creating SimInfo" << endl;
98 <     exit(1);
99 <  }
115 >    if (nx <= 0) {
116 >        std::cerr << "The number of unit cell in h direction must be greater than 0" << std::endl;
117 >        exit(1);
118 >    }
119  
120 <  oldSimSetup = new SimSetup();  
102 <  if(oldSimSetup == NULL){
103 <     cerr << "error in creating SimSetup" << endl;
104 <     exit(1);
105 <  }
120 >    ny = args_info.ny_arg;
121  
122 <  oldSimSetup->suspendInit();
123 <  oldSimSetup->setSimInfo(oldInfo );
124 <  oldSimSetup->parseFile(&inputFileName[0] );
125 <  oldSimSetup->createSim();
111 <  
112 <  if(oldInfo->nComponents >=2){
113 <      cerr << "can not build the system with more than two components" << endl;
114 <      exit(1);
115 <  }
116 <  
117 <  //get mass of molecule.
118 <  //Due to the design of OOPSE, given atom type, we have to query forcefiled to get the mass
119 <  mass = getMolMass(oldInfo->compStamps[0], oldSimSetup->getForceField());
120 <  
121 <  //creat lattice
122 <        simpleLat = LatticeFactory::getInstance()->createLattice(latticeType);
123 <        if(simpleLat == NULL){
124 <                cerr << "Error in creating lattice" << endl;
125 <                exit(1);
126 <        }
122 >    if (ny <= 0) {
123 >        std::cerr << "The number of unit cell in l direction must be greater than 0" << std::endl;
124 >        exit(1);
125 >    }
126  
127 <  numMolPerCell = simpleLat->getNumSitesPerCell();
129 <  
130 <  //calculate lattice constant (in Angstrom)
131 <  latticeConstant = pow(rhoConvertConst * numMolPerCell * mass /density, 1.0/3.0);
132 <  
133 <  //set lattice constant
134 <  lc.push_back(latticeConstant);
135 <  simpleLat->setLatticeConstant(lc);
136 <  
137 <  //calculate the total number of molecules
138 <  numMol = nx * ny * nz * numMolPerCell;
127 >    nz = args_info.nz_arg;
128  
129 <  if (oldInfo->n_mol != numMol){
129 >    if (nz <= 0) {
130 >        std::cerr << "The number of unit cell in k direction must be greater than 0" << std::endl;
131 >        exit(1);
132 >    }
133  
134 <    outPrefix = getPrefix(inputFileName.c_str()) + "_" + latticeType;
135 <    outMdFileName = outPrefix + ".md";
134 >    //get input file name
135 >    if (args_info.inputs_num)
136 >        inputFileName = args_info.inputs[0];
137 >    else {
138 >        std::cerr << "You must specify a input file name.\n" << std::endl;
139 >        cmdline_parser_print_help();
140 >        exit(1);
141 >    }
142  
143 <    //creat new .md file on fly which corrects the number of molecule    
144 <    createMdFile(inputFileName, outMdFileName, numMol);
145 <    cerr << "SimpleBuilder Error: the number of molecule and the density are not matched" <<endl;
148 <    cerr << "A new .md file: " << outMdFileName << " is generated, use it to rerun the simpleBuilder" << endl;
149 <    exit(1);
150 <  }
151 <  
152 <  //determine the output file names  
153 <  if (args_info.output_given)
154 <    outInitFileName = args_info.output_arg;
155 <  else
156 <    outInitFileName = getPrefix(inputFileName.c_str())  + ".in";
157 <  
158 <  
159 <  //allocat memory for storing pos, vel and etc
160 <  oldInfo->getConfiguration()->createArrays(oldInfo->n_atoms);
161 <  for (int i = 0; i < oldInfo->n_atoms; i++)
162 <    oldInfo->atoms[i]->setCoords();  
143 >    //parse md file and set up the system
144 >    SimCreator oldCreator;
145 >    SimInfo* oldInfo = oldCreator.createSim(inputFileName, false);
146  
147 <  //creat Molocator
148 <  locator = new MoLocator(oldInfo->compStamps[0], oldSimSetup->getForceField());
147 >    if (oldInfo->getNMoleculeStamp()>= 2) {
148 >        std::cerr << "can not build the system with more than two components"
149 >            << std::endl;
150 >        exit(1);
151 >    }
152  
153 <  //fill Hmat
168 <  Hmat[0][0] = nx * latticeConstant;
169 <  Hmat[0][1] = 0.0;
170 <  Hmat[0][2] = 0.0;
153 >    //get mass of molecule.
154  
155 <  Hmat[1][0] = 0.0;
173 <  Hmat[1][1] = ny * latticeConstant;
174 <  Hmat[1][2] = 0.0;
155 >    mass = getMolMass(oldInfo->getMoleculeStamp(0), oldInfo->getForceField());
156  
157 <  Hmat[2][0] = 0.0;
158 <  Hmat[2][1] = 0.0;
178 <  Hmat[2][2] = nz * latticeConstant ;
157 >    //creat lattice
158 >    simpleLat = LatticeFactory::getInstance()->createLattice(latticeType);
159  
160 <  //set Hmat
161 <  oldInfo->setBoxM(Hmat);
162 <  
163 <  //place the molecules
160 >    if (simpleLat == NULL) {
161 >        std::cerr << "Error in creating lattice" << std::endl;
162 >        exit(1);
163 >    }
164  
165 <  curMolIndex = 0;
165 >    numMolPerCell = simpleLat->getNumSitesPerCell();
166  
167 <  //get the orientation of the cell sites
168 <  //for the same type of molecule in same lattice, it will not change
169 <  latticeOrt = simpleLat->getLatticePointsOrt();
167 >    //calculate lattice constant (in Angstrom)
168 >    latticeConstant = pow(rhoConvertConst * numMolPerCell * mass / density,
169 >                          1.0 / 3.0);
170  
171 <  for(int i =0; i < nx; i++){
172 <    for(int j=0; j < ny; j++){
173 <       for(int k = 0; k < nz; k++){
171 >    //set lattice constant
172 >    lc.push_back(latticeConstant);
173 >    simpleLat->setLatticeConstant(lc);
174  
175 <          //get the position of the cell sites
176 <          simpleLat->getLatticePointsPos(latticePos, i, j, k);
175 >    //calculate the total number of molecules
176 >    numMol = nx * ny * nz * numMolPerCell;
177  
178 <          for(int l = 0; l < numMolPerCell; l++)
179 <            locator->placeMol(latticePos[l], latticeOrt[l], &(oldInfo->molecules[curMolIndex++]));
180 <       }
178 >    if (oldInfo->getNGlobalMolecules() != numMol) {
179 >        outPrefix = getPrefix(inputFileName.c_str()) + "_" + latticeType;
180 >        outMdFileName = outPrefix + ".md";
181 >
182 >        //creat new .md file on fly which corrects the number of molecule    
183 >        createMdFile(inputFileName, outMdFileName, numMol);
184 >        std::cerr
185 >            << "SimpleBuilder Error: the number of molecule and the density are not matched"
186 >            << std::endl;
187 >        std::cerr << "A new .md file: " << outMdFileName
188 >            << " is generated, use it to rerun the simpleBuilder" << std::endl;
189 >        exit(1);
190      }
202  }
191  
192 <  //create dumpwriter and write out the coordinates
193 <  oldInfo->finalName = outInitFileName;
194 <  writer = new DumpWriter( oldInfo );
195 <  if(writer == NULL){
196 <    cerr << "error in creating DumpWriter" << endl;
197 <    exit(1);    
198 <  }
199 <  writer->writeFinal(0);
212 <  cout << "new initial configuration file: " << outInitFileName <<" is generated." << endl;
213 <  //delete objects
192 >    //determine the output file names  
193 >    if (args_info.output_given)
194 >        outInitFileName = args_info.output_arg;
195 >    else
196 >        outInitFileName = getPrefix(inputFileName.c_str()) + ".in";
197 >    
198 >    //creat Molocator
199 >    locator = new MoLocator(oldInfo->getMoleculeStamp(0), oldInfo->getForceField());
200  
201 <  //delete oldInfo and oldSimSetup
202 <  if(oldInfo != NULL)
203 <     delete oldInfo;
204 <  
219 <  if(oldSimSetup != NULL)
220 <     delete oldSimSetup;
221 <  
222 <  if (writer != NULL)
223 <    delete writer;
224 <  return 0;
225 < }
201 >    //fill Hmat
202 >    hmat(0, 0)= nx * latticeConstant;
203 >    hmat(0, 1) = 0.0;
204 >    hmat(0, 2) = 0.0;
205  
206 < void createMdFile(const string& oldMdFileName, const string& newMdFileName, int numMol){
207 <  ifstream oldMdFile;
208 <  ofstream newMdFile;
230 <  const int MAXLEN = 65535;
231 <  char buffer[MAXLEN];
206 >    hmat(1, 0) = 0.0;
207 >    hmat(1, 1) = ny * latticeConstant;
208 >    hmat(1, 2) = 0.0;
209  
210 <  //create new .md file based on old .md file
211 <  oldMdFile.open(oldMdFileName.c_str());
212 <  newMdFile.open(newMdFileName.c_str());
210 >    hmat(2, 0) = 0.0;
211 >    hmat(2, 1) = 0.0;
212 >    hmat(2, 2) = nz * latticeConstant;
213  
214 <  oldMdFile.getline(buffer, MAXLEN);
215 <  while(!oldMdFile.eof()){
214 >    //set Hmat
215 >    oldInfo->getSnapshotManager()->getCurrentSnapshot()->setHmat(hmat);
216  
217 <    //correct molecule number
218 <    if(strstr(buffer, "nMol") !=NULL){      
219 <      sprintf(buffer, "\t\tnMol = %d;", numMol);
220 <      newMdFile << buffer << endl;
217 >    //place the molecules
218 >
219 >    curMolIndex = 0;
220 >
221 >    //get the orientation of the cell sites
222 >    //for the same type of molecule in same lattice, it will not change
223 >    latticeOrt = simpleLat->getLatticePointsOrt();
224 >
225 >    Molecule* mol;
226 >    SimInfo::MoleculeIterator mi;
227 >    mol = oldInfo->beginMolecule(mi);
228 >    for(int i = 0; i < nx; i++) {
229 >        for(int j = 0; j < ny; j++) {
230 >            for(int k = 0; k < nz; k++) {
231 >
232 >                //get the position of the cell sites
233 >                simpleLat->getLatticePointsPos(latticePos, i, j, k);
234 >
235 >                for(int l = 0; l < numMolPerCell; l++) {
236 >                    if (mol != NULL) {
237 >                        locator->placeMol(latticePos[l], latticeOrt[l], mol);
238 >                    } else {
239 >                        std::cerr << std::endl;                    
240 >                    }
241 >                    mol = oldInfo->nextMolecule(mi);
242 >                }
243 >            }
244 >        }
245      }
245    else
246      newMdFile << buffer << endl;
246  
247 <    oldMdFile.getline(buffer, MAXLEN);
248 <  }
247 >    //create dumpwriter and write out the coordinates
248 >    oldInfo->setFinalConfigFileName(outInitFileName);
249 >    writer = new DumpWriter(oldInfo, oldInfo->getDumpFileName());
250  
251 <  oldMdFile.close();
252 <  newMdFile.close();
251 >    if (writer == NULL) {
252 >        std::cerr << "error in creating DumpWriter" << std::endl;
253 >        exit(1);
254 >    }
255  
256 +    writer->writeDump();
257 +    std::cout << "new initial configuration file: " << outInitFileName
258 +        << " is generated." << std::endl;
259 +
260 +    //delete objects
261 +
262 +    //delete oldInfo and oldSimSetup
263 +    if (oldInfo != NULL)
264 +        delete oldInfo;
265 +
266 +    if (writer != NULL)
267 +        delete writer;
268 +
269 +    return 0;
270   }
271  
272 < double getMolMass(MoleculeStamp* molStamp, ForceFields* myFF){
273 <  int nAtoms;
274 <  AtomStamp* currAtomStamp;
275 <  double totMass;
276 <  
277 <  totMass = 0;
262 <  nAtoms = molStamp->getNAtoms();
272 > void createMdFile(const std::string&oldMdFileName, const std::string&newMdFileName,
273 >                  int numMol) {
274 >    ifstream oldMdFile;
275 >    ofstream newMdFile;
276 >    const int MAXLEN = 65535;
277 >    char buffer[MAXLEN];
278  
279 <  for(size_t i=0; i<nAtoms; i++){
280 <    currAtomStamp = molStamp->getAtom(i);
281 <    totMass += myFF->getAtomTypeMass(currAtomStamp->getType());
267 <  }
279 >    //create new .md file based on old .md file
280 >    oldMdFile.open(oldMdFileName.c_str());
281 >    newMdFile.open(newMdFileName.c_str());
282  
283 <  return totMass;
283 >    oldMdFile.getline(buffer, MAXLEN);
284 >
285 >    while (!oldMdFile.eof()) {
286 >
287 >        //correct molecule number
288 >        if (strstr(buffer, "nMol") != NULL) {
289 >            sprintf(buffer, "\t\tnMol = %d;", numMol);
290 >            newMdFile << buffer << std::endl;
291 >        } else
292 >            newMdFile << buffer << std::endl;
293 >
294 >        oldMdFile.getline(buffer, MAXLEN);
295 >    }
296 >
297 >    oldMdFile.close();
298 >    newMdFile.close();
299   }
300 +

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines