ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/SimSetup.cpp
Revision: 558
Committed: Thu Jun 19 19:21:23 2003 UTC (21 years ago) by mmeineke
File size: 31983 byte(s)
Log Message:
finished the basics of the integrator and SimSetup.cpp

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 557 if( !strcasecmp( force_field, "DUFF" )) ffCase = FF_DUFF;
101     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 557 if( !strcasecmp( ensemble, "NVE" )) ffCase = NVE_ENS;
114     else if( !strcasecmp( ensemble, "NVT" )) ffCase = NVT_ENS;
115     else if( !strcasecmp( ensemble, "NPT" )) ffCase = NPT_ENS;
116     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     the_ff = LJFF();
197     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 377
772 mmeineke 558 switch( ensembleCase ){
773 mmeineke 377
774 mmeineke 558 case NVE_ENS:
775     new NVE( simnfo, the_ff );
776     break;
777    
778     default:
779     sprintf( painCave.errMsg,
780     "SimSetup Error. Unrecognized ensemble in case statement.\n");
781     painCave.isFatal = 1;
782     simError();
783 mmeineke 469 }
784 mmeineke 504
785 mmeineke 558
786 chuckv 432 #ifdef IS_MPI
787     mpiSim->mpiRefresh();
788     #endif
789 mmeineke 377
790 chuckv 432 // initialize the Fortran
791 mmeineke 377
792 chuckv 432
793 mmeineke 377 simnfo->refreshSim();
794    
795     if( !strcmp( simnfo->mixingRule, "standard") ){
796     the_ff->initForceField( LB_MIXING_RULE );
797     }
798     else if( !strcmp( simnfo->mixingRule, "explicit") ){
799     the_ff->initForceField( EXPLICIT_MIXING_RULE );
800     }
801     else{
802     sprintf( painCave.errMsg,
803     "SimSetup Error: unknown mixing rule -> \"%s\"\n",
804     simnfo->mixingRule );
805     painCave.isFatal = 1;
806     simError();
807     }
808    
809    
810     #ifdef IS_MPI
811     strcpy( checkPointMsg,
812     "Successfully intialized the mixingRule for Fortran." );
813     MPIcheckPoint();
814     #endif // is_mpi
815     }
816    
817 mmeineke 407
818     void SimSetup::makeMolecules( void ){
819    
820 mmeineke 412 int i, j, exI, exJ, tempEx, stampID, atomOffset, excludeOffset;
821 mmeineke 407 molInit info;
822     DirectionalAtom* dAtom;
823 mmeineke 412 LinkedAssign* extras;
824     LinkedAssign* current_extra;
825 mmeineke 407 AtomStamp* currentAtom;
826     BondStamp* currentBond;
827     BendStamp* currentBend;
828     TorsionStamp* currentTorsion;
829 mmeineke 427
830     bond_pair* theBonds;
831     bend_set* theBends;
832     torsion_set* theTorsions;
833    
834 mmeineke 407
835     //init the forceField paramters
836    
837     the_ff->readParams();
838    
839    
840 mmeineke 427 // init the atoms
841 mmeineke 407
842 mmeineke 427 double ux, uy, uz, u, uSqr;
843    
844 mmeineke 407 atomOffset = 0;
845 mmeineke 412 excludeOffset = 0;
846 mmeineke 407 for(i=0; i<simnfo->n_mol; i++){
847    
848     stampID = the_molecules[i].getStampID();
849    
850     info.nAtoms = comp_stamps[stampID]->getNAtoms();
851     info.nBonds = comp_stamps[stampID]->getNBonds();
852     info.nBends = comp_stamps[stampID]->getNBends();
853     info.nTorsions = comp_stamps[stampID]->getNTorsions();
854 mmeineke 412 info.nExcludes = info.nBonds + info.nBends + info.nTorsions;
855    
856 mmeineke 407 info.myAtoms = &the_atoms[atomOffset];
857 mmeineke 412 info.myExcludes = &the_excludes[excludeOffset];
858 mmeineke 407 info.myBonds = new Bond*[info.nBonds];
859     info.myBends = new Bend*[info.nBends];
860 mmeineke 427 info.myTorsions = new Torsion*[info.nTorsions];
861 mmeineke 407
862     theBonds = new bond_pair[info.nBonds];
863     theBends = new bend_set[info.nBends];
864     theTorsions = new torsion_set[info.nTorsions];
865    
866     // make the Atoms
867    
868     for(j=0; j<info.nAtoms; j++){
869    
870 mmeineke 427 currentAtom = comp_stamps[stampID]->getAtom( j );
871 mmeineke 407 if( currentAtom->haveOrientation() ){
872    
873     dAtom = new DirectionalAtom(j + atomOffset);
874     simnfo->n_oriented++;
875     info.myAtoms[j] = dAtom;
876    
877     ux = currentAtom->getOrntX();
878     uy = currentAtom->getOrntY();
879     uz = currentAtom->getOrntZ();
880    
881     uSqr = (ux * ux) + (uy * uy) + (uz * uz);
882    
883     u = sqrt( uSqr );
884     ux = ux / u;
885     uy = uy / u;
886     uz = uz / u;
887    
888     dAtom->setSUx( ux );
889     dAtom->setSUy( uy );
890     dAtom->setSUz( uz );
891     }
892     else{
893     info.myAtoms[j] = new GeneralAtom(j + atomOffset);
894     }
895     info.myAtoms[j]->setType( currentAtom->getType() );
896    
897     #ifdef IS_MPI
898    
899     info.myAtoms[j]->setGlobalIndex( globalIndex[j+atomOffset] );
900    
901     #endif // is_mpi
902     }
903    
904     // make the bonds
905 mmeineke 412 for(j=0; j<info.nBonds; j++){
906 mmeineke 407
907     currentBond = comp_stamps[stampID]->getBond( j );
908     theBonds[j].a = currentBond->getA() + atomOffset;
909     theBonds[j].b = currentBond->getB() + atomOffset;
910    
911 mmeineke 435 exI = theBonds[j].a;
912     exJ = theBonds[j].b;
913 mmeineke 407
914     // exclude_I must always be the smaller of the pair
915     if( exI > exJ ){
916     tempEx = exI;
917     exI = exJ;
918     exJ = tempEx;
919     }
920     #ifdef IS_MPI
921 mmeineke 412 tempEx = exI;
922     exI = the_atoms[tempEx]->getGlobalIndex() + 1;
923     tempEx = exJ;
924     exJ = the_atoms[tempEx]->getGlobalIndex() + 1;
925 mmeineke 407
926 mmeineke 412 the_excludes[j+excludeOffset]->setPair( exI, exJ );
927     #else // isn't MPI
928 mmeineke 435
929 mmeineke 412 the_excludes[j+excludeOffset]->setPair( (exI+1), (exJ+1) );
930     #endif //is_mpi
931     }
932     excludeOffset += info.nBonds;
933    
934     //make the bends
935     for(j=0; j<info.nBends; j++){
936 mmeineke 407
937 mmeineke 412 currentBend = comp_stamps[stampID]->getBend( j );
938     theBends[j].a = currentBend->getA() + atomOffset;
939     theBends[j].b = currentBend->getB() + atomOffset;
940     theBends[j].c = currentBend->getC() + atomOffset;
941    
942     if( currentBend->haveExtras() ){
943    
944 mmeineke 427 extras = currentBend->getExtras();
945 mmeineke 412 current_extra = extras;
946    
947     while( current_extra != NULL ){
948     if( !strcmp( current_extra->getlhs(), "ghostVectorSource" )){
949    
950     switch( current_extra->getType() ){
951    
952     case 0:
953     theBends[j].ghost =
954     current_extra->getInt() + atomOffset;
955     theBends[j].isGhost = 1;
956     break;
957    
958     case 1:
959     theBends[j].ghost =
960     (int)current_extra->getDouble() + atomOffset;
961     theBends[j].isGhost = 1;
962     break;
963    
964     default:
965     sprintf( painCave.errMsg,
966 chuckv 434 "SimSetup Error: ghostVectorSource was neither a "
967 mmeineke 412 "double nor an int.\n"
968     "-->Bend[%d] in %s\n",
969     j, comp_stamps[stampID]->getID() );
970     painCave.isFatal = 1;
971     simError();
972     }
973     }
974    
975     else{
976    
977     sprintf( painCave.errMsg,
978     "SimSetup Error: unhandled bend assignment:\n"
979     " -->%s in Bend[%d] in %s\n",
980     current_extra->getlhs(),
981     j, comp_stamps[stampID]->getID() );
982     painCave.isFatal = 1;
983     simError();
984     }
985    
986     current_extra = current_extra->getNext();
987     }
988     }
989    
990     if( !theBends[j].isGhost ){
991    
992     exI = theBends[j].a;
993     exJ = theBends[j].c;
994     }
995     else{
996    
997     exI = theBends[j].a;
998     exJ = theBends[j].b;
999     }
1000    
1001     // exclude_I must always be the smaller of the pair
1002     if( exI > exJ ){
1003     tempEx = exI;
1004     exI = exJ;
1005     exJ = tempEx;
1006     }
1007     #ifdef IS_MPI
1008     tempEx = exI;
1009     exI = the_atoms[tempEx]->getGlobalIndex() + 1;
1010     tempEx = exJ;
1011     exJ = the_atoms[tempEx]->getGlobalIndex() + 1;
1012    
1013     the_excludes[j+excludeOffset]->setPair( exI, exJ );
1014 mmeineke 407 #else // isn't MPI
1015 mmeineke 412 the_excludes[j+excludeOffset]->setPair( (exI+1), (exJ+1) );
1016     #endif //is_mpi
1017     }
1018     excludeOffset += info.nBends;
1019    
1020     for(j=0; j<info.nTorsions; j++){
1021 mmeineke 407
1022 mmeineke 412 currentTorsion = comp_stamps[stampID]->getTorsion( j );
1023     theTorsions[j].a = currentTorsion->getA() + atomOffset;
1024     theTorsions[j].b = currentTorsion->getB() + atomOffset;
1025     theTorsions[j].c = currentTorsion->getC() + atomOffset;
1026     theTorsions[j].d = currentTorsion->getD() + atomOffset;
1027    
1028     exI = theTorsions[j].a;
1029     exJ = theTorsions[j].d;
1030 mmeineke 407
1031 mmeineke 412 // exclude_I must always be the smaller of the pair
1032     if( exI > exJ ){
1033     tempEx = exI;
1034     exI = exJ;
1035     exJ = tempEx;
1036     }
1037     #ifdef IS_MPI
1038     tempEx = exI;
1039     exI = the_atoms[tempEx]->getGlobalIndex() + 1;
1040     tempEx = exJ;
1041     exJ = the_atoms[tempEx]->getGlobalIndex() + 1;
1042    
1043     the_excludes[j+excludeOffset]->setPair( exI, exJ );
1044     #else // isn't MPI
1045     the_excludes[j+excludeOffset]->setPair( (exI+1), (exJ+1) );
1046 mmeineke 407 #endif //is_mpi
1047 mmeineke 412 }
1048     excludeOffset += info.nTorsions;
1049    
1050 mmeineke 407
1051 mmeineke 414 // send the arrays off to the forceField for init.
1052 mmeineke 407
1053 mmeineke 414 the_ff->initializeAtoms( info.nAtoms, info.myAtoms );
1054     the_ff->initializeBonds( info.nBonds, info.myBonds, theBonds );
1055     the_ff->initializeBends( info.nBends, info.myBends, theBends );
1056     the_ff->initializeTorsions( info.nTorsions, info.myTorsions, theTorsions );
1057 mmeineke 407
1058    
1059 mmeineke 414 the_molecules[i].initialize( info );
1060 chuckv 438
1061    
1062 mmeineke 414 atomOffset += info.nAtoms;
1063 mmeineke 427 delete[] theBonds;
1064     delete[] theBends;
1065     delete[] theTorsions;
1066 mmeineke 414 }
1067 mmeineke 407
1068 chuckv 434 #ifdef IS_MPI
1069     sprintf( checkPointMsg, "all molecules initialized succesfully" );
1070     MPIcheckPoint();
1071     #endif // is_mpi
1072    
1073 mmeineke 414 // clean up the forcefield
1074 mmeineke 420 the_ff->calcRcut();
1075 mmeineke 414 the_ff->cleanMe();
1076 chuckv 434
1077 mmeineke 414 }
1078 mmeineke 407
1079 mmeineke 377 void SimSetup::initFromBass( void ){
1080    
1081     int i, j, k;
1082     int n_cells;
1083     double cellx, celly, cellz;
1084     double temp1, temp2, temp3;
1085     int n_per_extra;
1086     int n_extra;
1087     int have_extra, done;
1088    
1089     temp1 = (double)tot_nmol / 4.0;
1090     temp2 = pow( temp1, ( 1.0 / 3.0 ) );
1091     temp3 = ceil( temp2 );
1092    
1093     have_extra =0;
1094     if( temp2 < temp3 ){ // we have a non-complete lattice
1095     have_extra =1;
1096    
1097     n_cells = (int)temp3 - 1;
1098     cellx = simnfo->box_x / temp3;
1099     celly = simnfo->box_y / temp3;
1100     cellz = simnfo->box_z / temp3;
1101     n_extra = tot_nmol - ( 4 * n_cells * n_cells * n_cells );
1102     temp1 = ((double)n_extra) / ( pow( temp3, 3.0 ) - pow( n_cells, 3.0 ) );
1103     n_per_extra = (int)ceil( temp1 );
1104    
1105     if( n_per_extra > 4){
1106     sprintf( painCave.errMsg,
1107     "SimSetup error. There has been an error in constructing"
1108     " the non-complete lattice.\n" );
1109     painCave.isFatal = 1;
1110     simError();
1111     }
1112     }
1113     else{
1114     n_cells = (int)temp3;
1115     cellx = simnfo->box_x / temp3;
1116     celly = simnfo->box_y / temp3;
1117     cellz = simnfo->box_z / temp3;
1118     }
1119    
1120     current_mol = 0;
1121     current_comp_mol = 0;
1122     current_comp = 0;
1123     current_atom_ndx = 0;
1124    
1125     for( i=0; i < n_cells ; i++ ){
1126     for( j=0; j < n_cells; j++ ){
1127     for( k=0; k < n_cells; k++ ){
1128    
1129     makeElement( i * cellx,
1130     j * celly,
1131     k * cellz );
1132    
1133     makeElement( i * cellx + 0.5 * cellx,
1134     j * celly + 0.5 * celly,
1135     k * cellz );
1136    
1137     makeElement( i * cellx,
1138     j * celly + 0.5 * celly,
1139     k * cellz + 0.5 * cellz );
1140    
1141     makeElement( i * cellx + 0.5 * cellx,
1142     j * celly,
1143     k * cellz + 0.5 * cellz );
1144     }
1145     }
1146     }
1147    
1148     if( have_extra ){
1149     done = 0;
1150    
1151     int start_ndx;
1152     for( i=0; i < (n_cells+1) && !done; i++ ){
1153     for( j=0; j < (n_cells+1) && !done; j++ ){
1154    
1155     if( i < n_cells ){
1156    
1157     if( j < n_cells ){
1158     start_ndx = n_cells;
1159     }
1160     else start_ndx = 0;
1161     }
1162     else start_ndx = 0;
1163    
1164     for( k=start_ndx; k < (n_cells+1) && !done; k++ ){
1165    
1166     makeElement( i * cellx,
1167     j * celly,
1168     k * cellz );
1169     done = ( current_mol >= tot_nmol );
1170    
1171     if( !done && n_per_extra > 1 ){
1172     makeElement( i * cellx + 0.5 * cellx,
1173     j * celly + 0.5 * celly,
1174     k * cellz );
1175     done = ( current_mol >= tot_nmol );
1176     }
1177    
1178     if( !done && n_per_extra > 2){
1179     makeElement( i * cellx,
1180     j * celly + 0.5 * celly,
1181     k * cellz + 0.5 * cellz );
1182     done = ( current_mol >= tot_nmol );
1183     }
1184    
1185     if( !done && n_per_extra > 3){
1186     makeElement( i * cellx + 0.5 * cellx,
1187     j * celly,
1188     k * cellz + 0.5 * cellz );
1189     done = ( current_mol >= tot_nmol );
1190     }
1191     }
1192     }
1193     }
1194     }
1195    
1196    
1197     for( i=0; i<simnfo->n_atoms; i++ ){
1198     simnfo->atoms[i]->set_vx( 0.0 );
1199     simnfo->atoms[i]->set_vy( 0.0 );
1200     simnfo->atoms[i]->set_vz( 0.0 );
1201     }
1202     }
1203    
1204     void SimSetup::makeElement( double x, double y, double z ){
1205    
1206     int k;
1207     AtomStamp* current_atom;
1208     DirectionalAtom* dAtom;
1209     double rotMat[3][3];
1210    
1211     for( k=0; k<comp_stamps[current_comp]->getNAtoms(); k++ ){
1212    
1213     current_atom = comp_stamps[current_comp]->getAtom( k );
1214     if( !current_atom->havePosition() ){
1215     sprintf( painCave.errMsg,
1216     "SimSetup:initFromBass error.\n"
1217     "\tComponent %s, atom %s does not have a position specified.\n"
1218     "\tThe initialization routine is unable to give a start"
1219     " position.\n",
1220     comp_stamps[current_comp]->getID(),
1221     current_atom->getType() );
1222     painCave.isFatal = 1;
1223     simError();
1224     }
1225    
1226     the_atoms[current_atom_ndx]->setX( x + current_atom->getPosX() );
1227     the_atoms[current_atom_ndx]->setY( y + current_atom->getPosY() );
1228     the_atoms[current_atom_ndx]->setZ( z + current_atom->getPosZ() );
1229    
1230     if( the_atoms[current_atom_ndx]->isDirectional() ){
1231    
1232     dAtom = (DirectionalAtom *)the_atoms[current_atom_ndx];
1233    
1234     rotMat[0][0] = 1.0;
1235     rotMat[0][1] = 0.0;
1236     rotMat[0][2] = 0.0;
1237    
1238     rotMat[1][0] = 0.0;
1239     rotMat[1][1] = 1.0;
1240     rotMat[1][2] = 0.0;
1241    
1242     rotMat[2][0] = 0.0;
1243     rotMat[2][1] = 0.0;
1244     rotMat[2][2] = 1.0;
1245    
1246     dAtom->setA( rotMat );
1247     }
1248    
1249     current_atom_ndx++;
1250     }
1251    
1252     current_mol++;
1253     current_comp_mol++;
1254    
1255     if( current_comp_mol >= components_nmol[current_comp] ){
1256    
1257     current_comp_mol = 0;
1258     current_comp++;
1259     }
1260     }