ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/SimSetup.cpp
Revision: 567
Committed: Wed Jun 25 21:12:14 2003 UTC (21 years ago) by mmeineke
File size: 32648 byte(s)
Log Message:
Changed over the bonds to Harmonic bonds in the DUFF frc file

fixed constraints.

File Contents

# User Rev Content
1 mmeineke 377 #include <cstdlib>
2     #include <iostream>
3     #include <cmath>
4    
5     #include "SimSetup.hpp"
6     #include "parse_me.h"
7     #include "Integrator.hpp"
8     #include "simError.h"
9    
10     #ifdef IS_MPI
11     #include "mpiBASS.h"
12     #include "mpiSimulation.hpp"
13     #endif
14    
15 mmeineke 557 // some defines for ensemble and Forcefield cases
16    
17     #define NVE_ENS 0
18     #define NVT_ENS 1
19     #define NPT_ENS 2
20    
21     #define FF_DUFF 0
22     #define FF_LJ 1
23    
24    
25 mmeineke 377 SimSetup::SimSetup(){
26     stamps = new MakeStamps();
27     globals = new Globals();
28    
29     #ifdef IS_MPI
30     strcpy( checkPointMsg, "SimSetup creation successful" );
31     MPIcheckPoint();
32     #endif // IS_MPI
33     }
34    
35     SimSetup::~SimSetup(){
36     delete stamps;
37     delete globals;
38     }
39    
40     void SimSetup::parseFile( char* fileName ){
41    
42     #ifdef IS_MPI
43     if( worldRank == 0 ){
44     #endif // is_mpi
45    
46     inFileName = fileName;
47     set_interface_stamps( stamps, globals );
48    
49     #ifdef IS_MPI
50     mpiEventInit();
51     #endif
52    
53     yacc_BASS( fileName );
54    
55     #ifdef IS_MPI
56     throwMPIEvent(NULL);
57     }
58     else receiveParse();
59     #endif
60    
61     }
62    
63     #ifdef IS_MPI
64     void SimSetup::receiveParse(void){
65    
66     set_interface_stamps( stamps, globals );
67     mpiEventInit();
68     MPIcheckPoint();
69     mpiEventLoop();
70    
71     }
72    
73     #endif // is_mpi
74    
75     void SimSetup::createSim( void ){
76    
77     MakeStamps *the_stamps;
78     Globals* the_globals;
79 gezelter 490 int i, j, k, globalAtomIndex;
80 mmeineke 557
81     int ensembleCase;
82     int ffCase;
83    
84     ensembleCase = -1;
85     ffCase = -1;
86 mmeineke 377
87     // get the stamps and globals;
88     the_stamps = stamps;
89     the_globals = globals;
90    
91     // set the easy ones first
92     simnfo->target_temp = the_globals->getTargetTemp();
93     simnfo->dt = the_globals->getDt();
94     simnfo->run_time = the_globals->getRunTime();
95    
96     // get the ones we know are there, yet still may need some work.
97     n_components = the_globals->getNComponents();
98     strcpy( force_field, the_globals->getForceField() );
99 gezelter 466
100 mmeineke 561 if( !strcasecmp( force_field, "DUFF" )) ffCase = FF_DUFF;
101 mmeineke 557 else if( !strcasecmp( force_field, "LJ" )) ffCase = FF_LJ;
102     else{
103     sprintf( painCave.errMsg,
104     "SimSetup Error. Unrecognized force field -> %s\n",
105     force_field );
106     painCave.isFatal = 1;
107     simError();
108     }
109    
110     // get the ensemble:
111 mmeineke 377 strcpy( ensemble, the_globals->getEnsemble() );
112 gezelter 481
113 mmeineke 561 if( !strcasecmp( ensemble, "NVE" )) ensembleCase = NVE_ENS;
114     else if( !strcasecmp( ensemble, "NVT" )) ensembleCase = NVT_ENS;
115     else if( !strcasecmp( ensemble, "NPT" )) ensembleCase = NPT_ENS;
116 mmeineke 557 else{
117 gezelter 466 sprintf( painCave.errMsg,
118     "SimSetup Warning. Unrecognized Ensemble -> %s, "
119     "reverting to NVE for this simulation.\n",
120     ensemble );
121     painCave.isFatal = 0;
122     simError();
123     strcpy( ensemble, "NVE" );
124 mmeineke 557 ensembleCase = NVE_ENS;
125 gezelter 466 }
126 mmeineke 377 strcpy( simnfo->ensemble, ensemble );
127    
128 mmeineke 557
129     // if( !strcasecmp( ensemble, "NPT" ) ) {
130     // the_extendedsystem = new ExtendedSystem( simnfo );
131     // the_extendedsystem->setTargetTemp(the_globals->getTargetTemp());
132     // if (the_globals->haveTargetPressure())
133     // the_extendedsystem->setTargetPressure(the_globals->getTargetPressure());
134     // else {
135     // sprintf( painCave.errMsg,
136     // "SimSetup error: If you use the constant pressure\n"
137     // " ensemble, you must set targetPressure.\n"
138     // " This was found in the BASS file.\n");
139     // painCave.isFatal = 1;
140     // simError();
141     // }
142    
143     // if (the_globals->haveTauThermostat())
144     // the_extendedsystem->setTauThermostat(the_globals->getTauThermostat());
145     // else if (the_globals->haveQmass())
146     // the_extendedsystem->setQmass(the_globals->getQmass());
147     // else {
148     // sprintf( painCave.errMsg,
149     // "SimSetup error: If you use one of the constant temperature\n"
150     // " ensembles, you must set either tauThermostat or qMass.\n"
151     // " Neither of these was found in the BASS file.\n");
152     // painCave.isFatal = 1;
153     // simError();
154     // }
155    
156     // if (the_globals->haveTauBarostat())
157     // the_extendedsystem->setTauBarostat(the_globals->getTauBarostat());
158     // else {
159     // sprintf( painCave.errMsg,
160     // "SimSetup error: If you use the constant pressure\n"
161     // " ensemble, you must set tauBarostat.\n"
162     // " This was found in the BASS file.\n");
163     // painCave.isFatal = 1;
164     // simError();
165     // }
166    
167     // } else if ( !strcasecmp( ensemble, "NVT") ) {
168     // the_extendedsystem = new ExtendedSystem( simnfo );
169     // the_extendedsystem->setTargetTemp(the_globals->getTargetTemp());
170    
171     // if (the_globals->haveTauThermostat())
172     // the_extendedsystem->setTauThermostat(the_globals->getTauThermostat());
173     // else if (the_globals->haveQmass())
174     // the_extendedsystem->setQmass(the_globals->getQmass());
175     // else {
176     // sprintf( painCave.errMsg,
177     // "SimSetup error: If you use one of the constant temperature\n"
178     // " ensembles, you must set either tauThermostat or qMass.\n"
179     // " Neither of these was found in the BASS file.\n");
180     // painCave.isFatal = 1;
181     // simError();
182     // }
183    
184 mmeineke 377 strcpy( simnfo->mixingRule, the_globals->getMixingRule() );
185     simnfo->usePBC = the_globals->getPBC();
186    
187 mmeineke 469 int usesDipoles = 0;
188 mmeineke 557 switch( ffCase ){
189    
190     case FF_DUFF:
191     the_ff = new DUFF();
192 mmeineke 469 usesDipoles = 1;
193 mmeineke 557 break;
194    
195     case FF_LJ:
196 mmeineke 561 the_ff = new LJFF();
197 mmeineke 557 break;
198    
199     default:
200 mmeineke 377 sprintf( painCave.errMsg,
201 mmeineke 557 "SimSetup Error. Unrecognized force field in case statement.\n");
202 mmeineke 377 painCave.isFatal = 1;
203     simError();
204     }
205    
206     #ifdef IS_MPI
207     strcpy( checkPointMsg, "ForceField creation successful" );
208     MPIcheckPoint();
209     #endif // is_mpi
210    
211     // get the components and calculate the tot_nMol and indvidual n_mol
212     the_components = the_globals->getComponents();
213     components_nmol = new int[n_components];
214     comp_stamps = new MoleculeStamp*[n_components];
215    
216     if( !the_globals->haveNMol() ){
217     // we don't have the total number of molecules, so we assume it is
218     // given in each component
219    
220     tot_nmol = 0;
221     for( i=0; i<n_components; i++ ){
222    
223     if( !the_components[i]->haveNMol() ){
224     // we have a problem
225     sprintf( painCave.errMsg,
226     "SimSetup Error. No global NMol or component NMol"
227     " given. Cannot calculate the number of atoms.\n" );
228     painCave.isFatal = 1;
229     simError();
230     }
231    
232     tot_nmol += the_components[i]->getNMol();
233     components_nmol[i] = the_components[i]->getNMol();
234     }
235     }
236     else{
237     sprintf( painCave.errMsg,
238     "SimSetup error.\n"
239     "\tSorry, the ability to specify total"
240     " nMols and then give molfractions in the components\n"
241     "\tis not currently supported."
242     " Please give nMol in the components.\n" );
243     painCave.isFatal = 1;
244     simError();
245    
246    
247     // tot_nmol = the_globals->getNMol();
248    
249     // //we have the total number of molecules, now we check for molfractions
250     // for( i=0; i<n_components; i++ ){
251    
252     // if( !the_components[i]->haveMolFraction() ){
253    
254     // if( !the_components[i]->haveNMol() ){
255     // //we have a problem
256     // std::cerr << "SimSetup error. Neither molFraction nor "
257     // << " nMol was given in component
258    
259     }
260    
261     #ifdef IS_MPI
262     strcpy( checkPointMsg, "Have the number of components" );
263     MPIcheckPoint();
264     #endif // is_mpi
265    
266     // make an array of molecule stamps that match the components used.
267     // also extract the used stamps out into a separate linked list
268    
269     simnfo->nComponents = n_components;
270     simnfo->componentsNmol = components_nmol;
271     simnfo->compStamps = comp_stamps;
272     simnfo->headStamp = new LinkedMolStamp();
273    
274     char* id;
275     LinkedMolStamp* headStamp = simnfo->headStamp;
276     LinkedMolStamp* currentStamp = NULL;
277     for( i=0; i<n_components; i++ ){
278    
279     id = the_components[i]->getType();
280     comp_stamps[i] = NULL;
281    
282     // check to make sure the component isn't already in the list
283    
284     comp_stamps[i] = headStamp->match( id );
285     if( comp_stamps[i] == NULL ){
286    
287     // extract the component from the list;
288    
289     currentStamp = the_stamps->extractMolStamp( id );
290     if( currentStamp == NULL ){
291     sprintf( painCave.errMsg,
292     "SimSetup error: Component \"%s\" was not found in the "
293     "list of declared molecules\n",
294     id );
295     painCave.isFatal = 1;
296     simError();
297     }
298    
299     headStamp->add( currentStamp );
300     comp_stamps[i] = headStamp->match( id );
301     }
302     }
303    
304     #ifdef IS_MPI
305     strcpy( checkPointMsg, "Component stamps successfully extracted\n" );
306     MPIcheckPoint();
307     #endif // is_mpi
308    
309    
310    
311    
312     // caclulate the number of atoms, bonds, bends and torsions
313    
314     tot_atoms = 0;
315     tot_bonds = 0;
316     tot_bends = 0;
317     tot_torsions = 0;
318     for( i=0; i<n_components; i++ ){
319    
320     tot_atoms += components_nmol[i] * comp_stamps[i]->getNAtoms();
321     tot_bonds += components_nmol[i] * comp_stamps[i]->getNBonds();
322     tot_bends += components_nmol[i] * comp_stamps[i]->getNBends();
323     tot_torsions += components_nmol[i] * comp_stamps[i]->getNTorsions();
324     }
325    
326     tot_SRI = tot_bonds + tot_bends + tot_torsions;
327    
328     simnfo->n_atoms = tot_atoms;
329     simnfo->n_bonds = tot_bonds;
330     simnfo->n_bends = tot_bends;
331     simnfo->n_torsions = tot_torsions;
332     simnfo->n_SRI = tot_SRI;
333     simnfo->n_mol = tot_nmol;
334 mmeineke 491
335 gezelter 490 simnfo->molMembershipArray = new int[tot_atoms];
336 mmeineke 377
337     #ifdef IS_MPI
338    
339     // divide the molecules among processors here.
340    
341     mpiSim = new mpiSimulation( simnfo );
342    
343     globalIndex = mpiSim->divideLabor();
344    
345     // set up the local variables
346    
347     int localMol, allMol;
348     int local_atoms, local_bonds, local_bends, local_torsions, local_SRI;
349 mmeineke 422
350     int* mol2proc = mpiSim->getMolToProcMap();
351     int* molCompType = mpiSim->getMolComponentType();
352 mmeineke 377
353     allMol = 0;
354     localMol = 0;
355     local_atoms = 0;
356     local_bonds = 0;
357     local_bends = 0;
358     local_torsions = 0;
359 gezelter 490 globalAtomIndex = 0;
360    
361    
362 mmeineke 377 for( i=0; i<n_components; i++ ){
363    
364     for( j=0; j<components_nmol[i]; j++ ){
365    
366 mmeineke 487 if( mol2proc[allMol] == worldRank ){
367 mmeineke 377
368     local_atoms += comp_stamps[i]->getNAtoms();
369     local_bonds += comp_stamps[i]->getNBonds();
370     local_bends += comp_stamps[i]->getNBends();
371     local_torsions += comp_stamps[i]->getNTorsions();
372     localMol++;
373     }
374 gezelter 490 for (k = 0; k < comp_stamps[i]->getNAtoms(); k++) {
375     simnfo->molMembershipArray[globalAtomIndex] = allMol;
376     globalAtomIndex++;
377     }
378    
379     allMol++;
380 mmeineke 377 }
381     }
382     local_SRI = local_bonds + local_bends + local_torsions;
383    
384     simnfo->n_atoms = mpiSim->getMyNlocal();
385    
386     if( local_atoms != simnfo->n_atoms ){
387     sprintf( painCave.errMsg,
388     "SimSetup error: mpiSim's localAtom (%d) and SimSetup's"
389 mmeineke 422 " localAtom (%d) are not equal.\n",
390 mmeineke 377 simnfo->n_atoms,
391     local_atoms );
392     painCave.isFatal = 1;
393     simError();
394     }
395    
396     simnfo->n_bonds = local_bonds;
397     simnfo->n_bends = local_bends;
398     simnfo->n_torsions = local_torsions;
399     simnfo->n_SRI = local_SRI;
400     simnfo->n_mol = localMol;
401    
402     strcpy( checkPointMsg, "Passed nlocal consistency check." );
403     MPIcheckPoint();
404    
405    
406     #endif // is_mpi
407    
408    
409     // create the atom and short range interaction arrays
410    
411     Atom::createArrays(simnfo->n_atoms);
412     the_atoms = new Atom*[simnfo->n_atoms];
413     the_molecules = new Molecule[simnfo->n_mol];
414 mmeineke 422 int molIndex;
415 mmeineke 377
416 mmeineke 422 // initialize the molecule's stampID's
417 mmeineke 377
418 mmeineke 422 #ifdef IS_MPI
419    
420    
421     molIndex = 0;
422     for(i=0; i<mpiSim->getTotNmol(); i++){
423    
424     if(mol2proc[i] == worldRank ){
425     the_molecules[molIndex].setStampID( molCompType[i] );
426 chuckv 438 the_molecules[molIndex].setMyIndex( molIndex );
427 mmeineke 489 the_molecules[molIndex].setGlobalIndex( i );
428 mmeineke 422 molIndex++;
429     }
430     }
431    
432     #else // is_mpi
433    
434     molIndex = 0;
435 gezelter 490 globalAtomIndex = 0;
436 mmeineke 422 for(i=0; i<n_components; i++){
437     for(j=0; j<components_nmol[i]; j++ ){
438     the_molecules[molIndex].setStampID( i );
439 chuckv 438 the_molecules[molIndex].setMyIndex( molIndex );
440 mmeineke 489 the_molecules[molIndex].setGlobalIndex( molIndex );
441 gezelter 490 for (k = 0; k < comp_stamps[i]->getNAtoms(); k++) {
442     simnfo->molMembershipArray[globalAtomIndex] = molIndex;
443     globalAtomIndex++;
444     }
445 mmeineke 422 molIndex++;
446     }
447     }
448    
449    
450     #endif // is_mpi
451    
452    
453 mmeineke 377 if( simnfo->n_SRI ){
454 mmeineke 431
455 mmeineke 412 Exclude::createArray(simnfo->n_SRI);
456     the_excludes = new Exclude*[simnfo->n_SRI];
457 mmeineke 431 for( int ex=0; ex<simnfo->n_SRI; ex++) the_excludes[ex] = new Exclude(ex);
458 mmeineke 377 simnfo->globalExcludes = new int;
459 chuckv 438 simnfo->n_exclude = simnfo->n_SRI;
460 mmeineke 377 }
461     else{
462    
463 mmeineke 412 Exclude::createArray( 1 );
464     the_excludes = new Exclude*;
465     the_excludes[0] = new Exclude(0);
466     the_excludes[0]->setPair( 0,0 );
467 mmeineke 377 simnfo->globalExcludes = new int;
468     simnfo->globalExcludes[0] = 0;
469 mmeineke 412 simnfo->n_exclude = 0;
470 mmeineke 377 }
471    
472     // set the arrays into the SimInfo object
473    
474     simnfo->atoms = the_atoms;
475 mmeineke 429 simnfo->molecules = the_molecules;
476 mmeineke 377 simnfo->nGlobalExcludes = 0;
477     simnfo->excludes = the_excludes;
478    
479    
480     // get some of the tricky things that may still be in the globals
481    
482    
483     if( the_globals->haveBox() ){
484     simnfo->box_x = the_globals->getBox();
485     simnfo->box_y = the_globals->getBox();
486     simnfo->box_z = the_globals->getBox();
487     }
488     else if( the_globals->haveDensity() ){
489    
490     double vol;
491     vol = (double)tot_nmol / the_globals->getDensity();
492     simnfo->box_x = pow( vol, ( 1.0 / 3.0 ) );
493     simnfo->box_y = simnfo->box_x;
494     simnfo->box_z = simnfo->box_x;
495     }
496     else{
497     if( !the_globals->haveBoxX() ){
498     sprintf( painCave.errMsg,
499     "SimSetup error, no periodic BoxX size given.\n" );
500     painCave.isFatal = 1;
501     simError();
502     }
503     simnfo->box_x = the_globals->getBoxX();
504    
505     if( !the_globals->haveBoxY() ){
506     sprintf( painCave.errMsg,
507     "SimSetup error, no periodic BoxY size given.\n" );
508     painCave.isFatal = 1;
509     simError();
510     }
511     simnfo->box_y = the_globals->getBoxY();
512    
513     if( !the_globals->haveBoxZ() ){
514     sprintf( painCave.errMsg,
515     "SimSetup error, no periodic BoxZ size given.\n" );
516     painCave.isFatal = 1;
517     simError();
518     }
519     simnfo->box_z = the_globals->getBoxZ();
520     }
521    
522     #ifdef IS_MPI
523     strcpy( checkPointMsg, "Box size set up" );
524     MPIcheckPoint();
525     #endif // is_mpi
526    
527    
528     // initialize the arrays
529    
530     the_ff->setSimInfo( simnfo );
531    
532 mmeineke 422 makeMolecules();
533 mmeineke 377 simnfo->identArray = new int[simnfo->n_atoms];
534     for(i=0; i<simnfo->n_atoms; i++){
535     simnfo->identArray[i] = the_atoms[i]->getIdent();
536     }
537    
538 gezelter 394 if (the_globals->getUseRF() ) {
539     simnfo->useReactionField = 1;
540    
541     if( !the_globals->haveECR() ){
542     sprintf( painCave.errMsg,
543     "SimSetup Warning: using default value of 1/2 the smallest "
544     "box length for the electrostaticCutoffRadius.\n"
545     "I hope you have a very fast processor!\n");
546     painCave.isFatal = 0;
547     simError();
548     double smallest;
549     smallest = simnfo->box_x;
550     if (simnfo->box_y <= smallest) smallest = simnfo->box_y;
551     if (simnfo->box_z <= smallest) smallest = simnfo->box_z;
552     simnfo->ecr = 0.5 * smallest;
553     } else {
554     simnfo->ecr = the_globals->getECR();
555     }
556 mmeineke 377
557 gezelter 394 if( !the_globals->haveEST() ){
558     sprintf( painCave.errMsg,
559     "SimSetup Warning: using default value of 0.05 * the "
560     "electrostaticCutoffRadius for the electrostaticSkinThickness\n"
561     );
562     painCave.isFatal = 0;
563     simError();
564     simnfo->est = 0.05 * simnfo->ecr;
565     } else {
566     simnfo->est = the_globals->getEST();
567     }
568    
569     if(!the_globals->haveDielectric() ){
570     sprintf( painCave.errMsg,
571     "SimSetup Error: You are trying to use Reaction Field without"
572     "setting a dielectric constant!\n"
573     );
574     painCave.isFatal = 1;
575     simError();
576     }
577     simnfo->dielectric = the_globals->getDielectric();
578     } else {
579 mmeineke 469 if (usesDipoles) {
580 gezelter 394
581     if( !the_globals->haveECR() ){
582     sprintf( painCave.errMsg,
583 mmeineke 469 "SimSetup Warning: using default value of 1/2 the smallest "
584 gezelter 394 "box length for the electrostaticCutoffRadius.\n"
585     "I hope you have a very fast processor!\n");
586     painCave.isFatal = 0;
587     simError();
588     double smallest;
589     smallest = simnfo->box_x;
590     if (simnfo->box_y <= smallest) smallest = simnfo->box_y;
591     if (simnfo->box_z <= smallest) smallest = simnfo->box_z;
592     simnfo->ecr = 0.5 * smallest;
593     } else {
594     simnfo->ecr = the_globals->getECR();
595     }
596    
597     if( !the_globals->haveEST() ){
598     sprintf( painCave.errMsg,
599 mmeineke 469 "SimSetup Warning: using default value of 5%% of the "
600 gezelter 394 "electrostaticCutoffRadius for the "
601     "electrostaticSkinThickness\n"
602     );
603     painCave.isFatal = 0;
604     simError();
605     simnfo->est = 0.05 * simnfo->ecr;
606     } else {
607     simnfo->est = the_globals->getEST();
608     }
609     }
610     }
611 mmeineke 377
612 gezelter 394 #ifdef IS_MPI
613     strcpy( checkPointMsg, "electrostatic parameters check out" );
614     MPIcheckPoint();
615     #endif // is_mpi
616 mmeineke 377
617     if( the_globals->haveInitialConfig() ){
618    
619     InitializeFromFile* fileInit;
620     #ifdef IS_MPI // is_mpi
621     if( worldRank == 0 ){
622     #endif //is_mpi
623     fileInit = new InitializeFromFile( the_globals->getInitialConfig() );
624     #ifdef IS_MPI
625     }else fileInit = new InitializeFromFile( NULL );
626     #endif
627     fileInit->read_xyz( simnfo ); // default velocities on
628    
629     delete fileInit;
630     }
631     else{
632    
633     #ifdef IS_MPI
634    
635     // no init from bass
636    
637     sprintf( painCave.errMsg,
638     "Cannot intialize a parallel simulation without an initial configuration file.\n" );
639     painCave.isFatal;
640     simError();
641    
642     #else
643    
644     initFromBass();
645    
646    
647     #endif
648     }
649    
650     #ifdef IS_MPI
651     strcpy( checkPointMsg, "Successfully read in the initial configuration" );
652     MPIcheckPoint();
653     #endif // is_mpi
654    
655    
656    
657    
658    
659    
660    
661     #ifdef IS_MPI
662     if( worldRank == 0 ){
663     #endif // is_mpi
664    
665     if( the_globals->haveFinalConfig() ){
666     strcpy( simnfo->finalName, the_globals->getFinalConfig() );
667     }
668     else{
669     strcpy( simnfo->finalName, inFileName );
670     char* endTest;
671     int nameLength = strlen( simnfo->finalName );
672     endTest = &(simnfo->finalName[nameLength - 5]);
673     if( !strcmp( endTest, ".bass" ) ){
674     strcpy( endTest, ".eor" );
675     }
676     else if( !strcmp( endTest, ".BASS" ) ){
677     strcpy( endTest, ".eor" );
678     }
679     else{
680     endTest = &(simnfo->finalName[nameLength - 4]);
681     if( !strcmp( endTest, ".bss" ) ){
682     strcpy( endTest, ".eor" );
683     }
684     else if( !strcmp( endTest, ".mdl" ) ){
685     strcpy( endTest, ".eor" );
686     }
687     else{
688     strcat( simnfo->finalName, ".eor" );
689     }
690     }
691     }
692    
693     // make the sample and status out names
694    
695     strcpy( simnfo->sampleName, inFileName );
696     char* endTest;
697     int nameLength = strlen( simnfo->sampleName );
698     endTest = &(simnfo->sampleName[nameLength - 5]);
699     if( !strcmp( endTest, ".bass" ) ){
700     strcpy( endTest, ".dump" );
701     }
702     else if( !strcmp( endTest, ".BASS" ) ){
703     strcpy( endTest, ".dump" );
704     }
705     else{
706     endTest = &(simnfo->sampleName[nameLength - 4]);
707     if( !strcmp( endTest, ".bss" ) ){
708     strcpy( endTest, ".dump" );
709     }
710     else if( !strcmp( endTest, ".mdl" ) ){
711     strcpy( endTest, ".dump" );
712     }
713     else{
714     strcat( simnfo->sampleName, ".dump" );
715     }
716     }
717    
718     strcpy( simnfo->statusName, inFileName );
719     nameLength = strlen( simnfo->statusName );
720     endTest = &(simnfo->statusName[nameLength - 5]);
721     if( !strcmp( endTest, ".bass" ) ){
722     strcpy( endTest, ".stat" );
723     }
724     else if( !strcmp( endTest, ".BASS" ) ){
725     strcpy( endTest, ".stat" );
726     }
727     else{
728     endTest = &(simnfo->statusName[nameLength - 4]);
729     if( !strcmp( endTest, ".bss" ) ){
730     strcpy( endTest, ".stat" );
731     }
732     else if( !strcmp( endTest, ".mdl" ) ){
733     strcpy( endTest, ".stat" );
734     }
735     else{
736     strcat( simnfo->statusName, ".stat" );
737     }
738     }
739    
740     #ifdef IS_MPI
741     }
742     #endif // is_mpi
743    
744     // set the status, sample, and themal kick times
745    
746     if( the_globals->haveSampleTime() ){
747     simnfo->sampleTime = the_globals->getSampleTime();
748     simnfo->statusTime = simnfo->sampleTime;
749     simnfo->thermalTime = simnfo->sampleTime;
750     }
751     else{
752     simnfo->sampleTime = the_globals->getRunTime();
753     simnfo->statusTime = simnfo->sampleTime;
754     simnfo->thermalTime = simnfo->sampleTime;
755     }
756    
757     if( the_globals->haveStatusTime() ){
758     simnfo->statusTime = the_globals->getStatusTime();
759     }
760    
761     if( the_globals->haveThermalTime() ){
762     simnfo->thermalTime = the_globals->getThermalTime();
763     }
764    
765     // check for the temperature set flag
766    
767     if( the_globals->haveTempSet() ) simnfo->setTemp = the_globals->getTempSet();
768    
769    
770 mmeineke 555 // make the integrator
771 mmeineke 561
772    
773     NVT* myNVT = NULL;
774 mmeineke 558 switch( ensembleCase ){
775 mmeineke 377
776 mmeineke 558 case NVE_ENS:
777     new NVE( simnfo, the_ff );
778     break;
779    
780 mmeineke 561 case NVT_ENS:
781     myNVT = new NVT( simnfo, the_ff );
782     myNVT->setTargetTemp(the_globals->getTargetTemp());
783    
784     if (the_globals->haveTauThermostat())
785     myNVT->setTauThermostat(the_globals->getTauThermostat());
786 mmeineke 567 // else if (the_globals->haveQmass())
787     // myNVT->setQmass(the_globals->getQmass());
788 mmeineke 561 else {
789     sprintf( painCave.errMsg,
790     "SimSetup error: If you use the NVT\n"
791     " ensemble, you must set either tauThermostat or qMass.\n"
792     " Neither of these was found in the BASS file.\n");
793     painCave.isFatal = 1;
794     simError();
795     }
796     break;
797    
798 mmeineke 558 default:
799     sprintf( painCave.errMsg,
800     "SimSetup Error. Unrecognized ensemble in case statement.\n");
801     painCave.isFatal = 1;
802     simError();
803 mmeineke 469 }
804 mmeineke 504
805 mmeineke 558
806 chuckv 432 #ifdef IS_MPI
807     mpiSim->mpiRefresh();
808     #endif
809 mmeineke 377
810 chuckv 432 // initialize the Fortran
811 mmeineke 377
812 chuckv 432
813 mmeineke 377 simnfo->refreshSim();
814    
815     if( !strcmp( simnfo->mixingRule, "standard") ){
816     the_ff->initForceField( LB_MIXING_RULE );
817     }
818     else if( !strcmp( simnfo->mixingRule, "explicit") ){
819     the_ff->initForceField( EXPLICIT_MIXING_RULE );
820     }
821     else{
822     sprintf( painCave.errMsg,
823     "SimSetup Error: unknown mixing rule -> \"%s\"\n",
824     simnfo->mixingRule );
825     painCave.isFatal = 1;
826     simError();
827     }
828    
829    
830     #ifdef IS_MPI
831     strcpy( checkPointMsg,
832     "Successfully intialized the mixingRule for Fortran." );
833     MPIcheckPoint();
834     #endif // is_mpi
835     }
836    
837 mmeineke 407
838     void SimSetup::makeMolecules( void ){
839    
840 mmeineke 412 int i, j, exI, exJ, tempEx, stampID, atomOffset, excludeOffset;
841 mmeineke 407 molInit info;
842     DirectionalAtom* dAtom;
843 mmeineke 412 LinkedAssign* extras;
844     LinkedAssign* current_extra;
845 mmeineke 407 AtomStamp* currentAtom;
846     BondStamp* currentBond;
847     BendStamp* currentBend;
848     TorsionStamp* currentTorsion;
849 mmeineke 427
850     bond_pair* theBonds;
851     bend_set* theBends;
852     torsion_set* theTorsions;
853    
854 mmeineke 407
855     //init the forceField paramters
856    
857     the_ff->readParams();
858    
859    
860 mmeineke 427 // init the atoms
861 mmeineke 407
862 mmeineke 427 double ux, uy, uz, u, uSqr;
863    
864 mmeineke 407 atomOffset = 0;
865 mmeineke 412 excludeOffset = 0;
866 mmeineke 407 for(i=0; i<simnfo->n_mol; i++){
867    
868     stampID = the_molecules[i].getStampID();
869    
870     info.nAtoms = comp_stamps[stampID]->getNAtoms();
871     info.nBonds = comp_stamps[stampID]->getNBonds();
872     info.nBends = comp_stamps[stampID]->getNBends();
873     info.nTorsions = comp_stamps[stampID]->getNTorsions();
874 mmeineke 412 info.nExcludes = info.nBonds + info.nBends + info.nTorsions;
875    
876 mmeineke 407 info.myAtoms = &the_atoms[atomOffset];
877 mmeineke 412 info.myExcludes = &the_excludes[excludeOffset];
878 mmeineke 407 info.myBonds = new Bond*[info.nBonds];
879     info.myBends = new Bend*[info.nBends];
880 mmeineke 427 info.myTorsions = new Torsion*[info.nTorsions];
881 mmeineke 407
882     theBonds = new bond_pair[info.nBonds];
883     theBends = new bend_set[info.nBends];
884     theTorsions = new torsion_set[info.nTorsions];
885    
886     // make the Atoms
887    
888     for(j=0; j<info.nAtoms; j++){
889    
890 mmeineke 427 currentAtom = comp_stamps[stampID]->getAtom( j );
891 mmeineke 407 if( currentAtom->haveOrientation() ){
892    
893     dAtom = new DirectionalAtom(j + atomOffset);
894     simnfo->n_oriented++;
895     info.myAtoms[j] = dAtom;
896    
897     ux = currentAtom->getOrntX();
898     uy = currentAtom->getOrntY();
899     uz = currentAtom->getOrntZ();
900    
901     uSqr = (ux * ux) + (uy * uy) + (uz * uz);
902    
903     u = sqrt( uSqr );
904     ux = ux / u;
905     uy = uy / u;
906     uz = uz / u;
907    
908     dAtom->setSUx( ux );
909     dAtom->setSUy( uy );
910     dAtom->setSUz( uz );
911     }
912     else{
913     info.myAtoms[j] = new GeneralAtom(j + atomOffset);
914     }
915     info.myAtoms[j]->setType( currentAtom->getType() );
916    
917     #ifdef IS_MPI
918    
919     info.myAtoms[j]->setGlobalIndex( globalIndex[j+atomOffset] );
920    
921     #endif // is_mpi
922     }
923    
924     // make the bonds
925 mmeineke 412 for(j=0; j<info.nBonds; j++){
926 mmeineke 407
927     currentBond = comp_stamps[stampID]->getBond( j );
928     theBonds[j].a = currentBond->getA() + atomOffset;
929     theBonds[j].b = currentBond->getB() + atomOffset;
930    
931 mmeineke 435 exI = theBonds[j].a;
932     exJ = theBonds[j].b;
933 mmeineke 407
934     // exclude_I must always be the smaller of the pair
935     if( exI > exJ ){
936     tempEx = exI;
937     exI = exJ;
938     exJ = tempEx;
939     }
940     #ifdef IS_MPI
941 mmeineke 412 tempEx = exI;
942     exI = the_atoms[tempEx]->getGlobalIndex() + 1;
943     tempEx = exJ;
944     exJ = the_atoms[tempEx]->getGlobalIndex() + 1;
945 mmeineke 407
946 mmeineke 412 the_excludes[j+excludeOffset]->setPair( exI, exJ );
947     #else // isn't MPI
948 mmeineke 435
949 mmeineke 412 the_excludes[j+excludeOffset]->setPair( (exI+1), (exJ+1) );
950     #endif //is_mpi
951     }
952     excludeOffset += info.nBonds;
953    
954     //make the bends
955     for(j=0; j<info.nBends; j++){
956 mmeineke 407
957 mmeineke 412 currentBend = comp_stamps[stampID]->getBend( j );
958     theBends[j].a = currentBend->getA() + atomOffset;
959     theBends[j].b = currentBend->getB() + atomOffset;
960     theBends[j].c = currentBend->getC() + atomOffset;
961    
962     if( currentBend->haveExtras() ){
963    
964 mmeineke 427 extras = currentBend->getExtras();
965 mmeineke 412 current_extra = extras;
966    
967     while( current_extra != NULL ){
968     if( !strcmp( current_extra->getlhs(), "ghostVectorSource" )){
969    
970     switch( current_extra->getType() ){
971    
972     case 0:
973     theBends[j].ghost =
974     current_extra->getInt() + atomOffset;
975     theBends[j].isGhost = 1;
976     break;
977    
978     case 1:
979     theBends[j].ghost =
980     (int)current_extra->getDouble() + atomOffset;
981     theBends[j].isGhost = 1;
982     break;
983    
984     default:
985     sprintf( painCave.errMsg,
986 chuckv 434 "SimSetup Error: ghostVectorSource was neither a "
987 mmeineke 412 "double nor an int.\n"
988     "-->Bend[%d] in %s\n",
989     j, comp_stamps[stampID]->getID() );
990     painCave.isFatal = 1;
991     simError();
992     }
993     }
994    
995     else{
996    
997     sprintf( painCave.errMsg,
998     "SimSetup Error: unhandled bend assignment:\n"
999     " -->%s in Bend[%d] in %s\n",
1000     current_extra->getlhs(),
1001     j, comp_stamps[stampID]->getID() );
1002     painCave.isFatal = 1;
1003     simError();
1004     }
1005    
1006     current_extra = current_extra->getNext();
1007     }
1008     }
1009    
1010     if( !theBends[j].isGhost ){
1011    
1012     exI = theBends[j].a;
1013     exJ = theBends[j].c;
1014     }
1015     else{
1016    
1017     exI = theBends[j].a;
1018     exJ = theBends[j].b;
1019     }
1020    
1021     // exclude_I must always be the smaller of the pair
1022     if( exI > exJ ){
1023     tempEx = exI;
1024     exI = exJ;
1025     exJ = tempEx;
1026     }
1027     #ifdef IS_MPI
1028     tempEx = exI;
1029     exI = the_atoms[tempEx]->getGlobalIndex() + 1;
1030     tempEx = exJ;
1031     exJ = the_atoms[tempEx]->getGlobalIndex() + 1;
1032    
1033     the_excludes[j+excludeOffset]->setPair( exI, exJ );
1034 mmeineke 407 #else // isn't MPI
1035 mmeineke 412 the_excludes[j+excludeOffset]->setPair( (exI+1), (exJ+1) );
1036     #endif //is_mpi
1037     }
1038     excludeOffset += info.nBends;
1039    
1040     for(j=0; j<info.nTorsions; j++){
1041 mmeineke 407
1042 mmeineke 412 currentTorsion = comp_stamps[stampID]->getTorsion( j );
1043     theTorsions[j].a = currentTorsion->getA() + atomOffset;
1044     theTorsions[j].b = currentTorsion->getB() + atomOffset;
1045     theTorsions[j].c = currentTorsion->getC() + atomOffset;
1046     theTorsions[j].d = currentTorsion->getD() + atomOffset;
1047    
1048     exI = theTorsions[j].a;
1049     exJ = theTorsions[j].d;
1050 mmeineke 407
1051 mmeineke 412 // exclude_I must always be the smaller of the pair
1052     if( exI > exJ ){
1053     tempEx = exI;
1054     exI = exJ;
1055     exJ = tempEx;
1056     }
1057     #ifdef IS_MPI
1058     tempEx = exI;
1059     exI = the_atoms[tempEx]->getGlobalIndex() + 1;
1060     tempEx = exJ;
1061     exJ = the_atoms[tempEx]->getGlobalIndex() + 1;
1062    
1063     the_excludes[j+excludeOffset]->setPair( exI, exJ );
1064     #else // isn't MPI
1065     the_excludes[j+excludeOffset]->setPair( (exI+1), (exJ+1) );
1066 mmeineke 407 #endif //is_mpi
1067 mmeineke 412 }
1068     excludeOffset += info.nTorsions;
1069    
1070 mmeineke 407
1071 mmeineke 414 // send the arrays off to the forceField for init.
1072 mmeineke 407
1073 mmeineke 414 the_ff->initializeAtoms( info.nAtoms, info.myAtoms );
1074     the_ff->initializeBonds( info.nBonds, info.myBonds, theBonds );
1075     the_ff->initializeBends( info.nBends, info.myBends, theBends );
1076     the_ff->initializeTorsions( info.nTorsions, info.myTorsions, theTorsions );
1077 mmeineke 407
1078    
1079 mmeineke 414 the_molecules[i].initialize( info );
1080 chuckv 438
1081    
1082 mmeineke 414 atomOffset += info.nAtoms;
1083 mmeineke 427 delete[] theBonds;
1084     delete[] theBends;
1085     delete[] theTorsions;
1086 mmeineke 414 }
1087 mmeineke 407
1088 chuckv 434 #ifdef IS_MPI
1089     sprintf( checkPointMsg, "all molecules initialized succesfully" );
1090     MPIcheckPoint();
1091     #endif // is_mpi
1092    
1093 mmeineke 414 // clean up the forcefield
1094 mmeineke 420 the_ff->calcRcut();
1095 mmeineke 414 the_ff->cleanMe();
1096 chuckv 434
1097 mmeineke 414 }
1098 mmeineke 407
1099 mmeineke 377 void SimSetup::initFromBass( void ){
1100    
1101     int i, j, k;
1102     int n_cells;
1103     double cellx, celly, cellz;
1104     double temp1, temp2, temp3;
1105     int n_per_extra;
1106     int n_extra;
1107     int have_extra, done;
1108    
1109     temp1 = (double)tot_nmol / 4.0;
1110     temp2 = pow( temp1, ( 1.0 / 3.0 ) );
1111     temp3 = ceil( temp2 );
1112    
1113     have_extra =0;
1114     if( temp2 < temp3 ){ // we have a non-complete lattice
1115     have_extra =1;
1116    
1117     n_cells = (int)temp3 - 1;
1118     cellx = simnfo->box_x / temp3;
1119     celly = simnfo->box_y / temp3;
1120     cellz = simnfo->box_z / temp3;
1121     n_extra = tot_nmol - ( 4 * n_cells * n_cells * n_cells );
1122     temp1 = ((double)n_extra) / ( pow( temp3, 3.0 ) - pow( n_cells, 3.0 ) );
1123     n_per_extra = (int)ceil( temp1 );
1124    
1125     if( n_per_extra > 4){
1126     sprintf( painCave.errMsg,
1127     "SimSetup error. There has been an error in constructing"
1128     " the non-complete lattice.\n" );
1129     painCave.isFatal = 1;
1130     simError();
1131     }
1132     }
1133     else{
1134     n_cells = (int)temp3;
1135     cellx = simnfo->box_x / temp3;
1136     celly = simnfo->box_y / temp3;
1137     cellz = simnfo->box_z / temp3;
1138     }
1139    
1140     current_mol = 0;
1141     current_comp_mol = 0;
1142     current_comp = 0;
1143     current_atom_ndx = 0;
1144    
1145     for( i=0; i < n_cells ; i++ ){
1146     for( j=0; j < n_cells; j++ ){
1147     for( k=0; k < n_cells; k++ ){
1148    
1149     makeElement( i * cellx,
1150     j * celly,
1151     k * cellz );
1152    
1153     makeElement( i * cellx + 0.5 * cellx,
1154     j * celly + 0.5 * celly,
1155     k * cellz );
1156    
1157     makeElement( i * cellx,
1158     j * celly + 0.5 * celly,
1159     k * cellz + 0.5 * cellz );
1160    
1161     makeElement( i * cellx + 0.5 * cellx,
1162     j * celly,
1163     k * cellz + 0.5 * cellz );
1164     }
1165     }
1166     }
1167    
1168     if( have_extra ){
1169     done = 0;
1170    
1171     int start_ndx;
1172     for( i=0; i < (n_cells+1) && !done; i++ ){
1173     for( j=0; j < (n_cells+1) && !done; j++ ){
1174    
1175     if( i < n_cells ){
1176    
1177     if( j < n_cells ){
1178     start_ndx = n_cells;
1179     }
1180     else start_ndx = 0;
1181     }
1182     else start_ndx = 0;
1183    
1184     for( k=start_ndx; k < (n_cells+1) && !done; k++ ){
1185    
1186     makeElement( i * cellx,
1187     j * celly,
1188     k * cellz );
1189     done = ( current_mol >= tot_nmol );
1190    
1191     if( !done && n_per_extra > 1 ){
1192     makeElement( i * cellx + 0.5 * cellx,
1193     j * celly + 0.5 * celly,
1194     k * cellz );
1195     done = ( current_mol >= tot_nmol );
1196     }
1197    
1198     if( !done && n_per_extra > 2){
1199     makeElement( i * cellx,
1200     j * celly + 0.5 * celly,
1201     k * cellz + 0.5 * cellz );
1202     done = ( current_mol >= tot_nmol );
1203     }
1204    
1205     if( !done && n_per_extra > 3){
1206     makeElement( i * cellx + 0.5 * cellx,
1207     j * celly,
1208     k * cellz + 0.5 * cellz );
1209     done = ( current_mol >= tot_nmol );
1210     }
1211     }
1212     }
1213     }
1214     }
1215    
1216    
1217     for( i=0; i<simnfo->n_atoms; i++ ){
1218     simnfo->atoms[i]->set_vx( 0.0 );
1219     simnfo->atoms[i]->set_vy( 0.0 );
1220     simnfo->atoms[i]->set_vz( 0.0 );
1221     }
1222     }
1223    
1224     void SimSetup::makeElement( double x, double y, double z ){
1225    
1226     int k;
1227     AtomStamp* current_atom;
1228     DirectionalAtom* dAtom;
1229     double rotMat[3][3];
1230    
1231     for( k=0; k<comp_stamps[current_comp]->getNAtoms(); k++ ){
1232    
1233     current_atom = comp_stamps[current_comp]->getAtom( k );
1234     if( !current_atom->havePosition() ){
1235     sprintf( painCave.errMsg,
1236     "SimSetup:initFromBass error.\n"
1237     "\tComponent %s, atom %s does not have a position specified.\n"
1238     "\tThe initialization routine is unable to give a start"
1239     " position.\n",
1240     comp_stamps[current_comp]->getID(),
1241     current_atom->getType() );
1242     painCave.isFatal = 1;
1243     simError();
1244     }
1245    
1246     the_atoms[current_atom_ndx]->setX( x + current_atom->getPosX() );
1247     the_atoms[current_atom_ndx]->setY( y + current_atom->getPosY() );
1248     the_atoms[current_atom_ndx]->setZ( z + current_atom->getPosZ() );
1249    
1250     if( the_atoms[current_atom_ndx]->isDirectional() ){
1251    
1252     dAtom = (DirectionalAtom *)the_atoms[current_atom_ndx];
1253    
1254     rotMat[0][0] = 1.0;
1255     rotMat[0][1] = 0.0;
1256     rotMat[0][2] = 0.0;
1257    
1258     rotMat[1][0] = 0.0;
1259     rotMat[1][1] = 1.0;
1260     rotMat[1][2] = 0.0;
1261    
1262     rotMat[2][0] = 0.0;
1263     rotMat[2][1] = 0.0;
1264     rotMat[2][2] = 1.0;
1265    
1266     dAtom->setA( rotMat );
1267     }
1268    
1269     current_atom_ndx++;
1270     }
1271    
1272     current_mol++;
1273     current_comp_mol++;
1274    
1275     if( current_comp_mol >= components_nmol[current_comp] ){
1276    
1277     current_comp_mol = 0;
1278     current_comp++;
1279     }
1280     }