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