1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685
|
/////////////////////////////////////////////////////////////
// //
// Copyright (c) 2003-2014 by The University of Queensland //
// Centre for Geoscience Computing //
// http://earth.uq.edu.au/centre-geoscience-computing //
// //
// Primary Business: Brisbane, Queensland, Australia //
// Licensed under the Open Software License version 3.0 //
// http://www.apache.org/licenses/LICENSE-2.0 //
// //
/////////////////////////////////////////////////////////////
#include "Parallel/SubLatticeControler.h"
// -- project includes --
#include "Parallel/mpi_tag_defs.h"
#include "Parallel/sublattice_cmd.h"
#include "Parallel/mpicmdbuf.h"
#include "Parallel/mpibarrier.h"
#include "Foundation/console.h"
#include "Model/Particle.h"
#include "Model/RotParticle.h"
#include "Model/RotParticleVi.h"
#include "Model/RotThermParticle.h"
#include "Parallel/CheckPointer.h"
#include "Parallel/RotSubLattice.h"
#include "Parallel/MpiWrap.h"
#include <stdexcept>
CSubLatticeControler::CSubLatticeControler()
: m_lattice(NULL),
m_pCheckPointer(NULL),
m_pSnapShooter(NULL),
m_timingFileName(),
m_timersPtr(new MpiWTimers())
{
// console.Debug() << "CSubLatticeControler::CSubLatticeControler()" << "\n";
m_pCheckPointer = new CheckPointer(*this);
m_pSnapShooter = new CheckPointer(*this);
m_timersPtr->zeroise("RebuildParticleArray");
m_timersPtr->zeroise("RebuildInteractions");
m_timersPtr->zeroise("NeighbourSearch");
m_timersPtr->zeroise("CheckNeighbours");
m_timersPtr->zeroise("CheckPoint");
m_timersPtr->zeroise("BoundaryDataExchange");
m_timersPtr->zeroise("ForceCalculation");
m_timersPtr->zeroise("UpdateInteractions");
m_timersPtr->zeroise("UpdateBondedInteractions");
m_timersPtr->zeroise("UpdateDynamicInteractions");
}
CSubLatticeControler::~CSubLatticeControler()
{
console.Debug()
<< "CSubLatticeControler::~CSubLatticeControler(): slave "
<< m_global_rank << " finalizing...\n";
console.Debug()
<< "CSubLatticeControler::~CSubLatticeControler():"
<< "deleting checkpointer...\n";
delete m_pCheckPointer;
delete m_pSnapShooter;
console.Debug()
<< "CSubLatticeControler::~CSubLatticeControler():"
<< "deleting sublattice...\n";
delete m_lattice;
// cleanup MPI Groups & Communicators
MPI_Group_free(&m_global_group);
MPI_Group_free(&m_local_group);
MPI_Comm_free(&m_local_comm);
console.Debug()
<< "CSubLatticeControler::~CSubLatticeControler(): exit.\n";
}
/*!
Initialize MPI communicators
*/
void CSubLatticeControler::initMPI()
{
std::cout << "CSubLatticeControler::initMPI()\n";
// global communicator = MPI_COMM_WORLD
m_global_comm=MPI_COMM_WORLD;
m_tml_global_comm.setComm(m_global_comm);
// -- local communicator = global comm - proc(0)
// get global MPI_Group
MPI_Comm_group(MPI_COMM_WORLD,&m_global_group);
// subtract id 0 from global group
int id0=0;
MPI_Group_excl(m_global_group,1,&id0,&m_local_group);
// create communicator
MPI_Comm_create(MPI_COMM_WORLD,m_local_group,&m_local_comm);
m_tml_local_comm.setComm(m_local_comm);
m_tml_global_comm.barrier("CSubLatticeControler::initMPI");
// get size of the global communicator and my rank in it
m_global_size=m_tml_global_comm.size();
m_global_rank=m_tml_global_comm.rank();
// get size of the local (i.e. workers only) communicator and my rank in it
m_local_size=m_tml_local_comm.size();
m_local_rank=m_tml_local_comm.rank();
// tell checkpointers about the mpi communicators
m_pCheckPointer->setMpiComm(m_global_comm);
m_pSnapShooter->setMpiComm(m_global_comm);
std::cout << "slave started at local/global rank " << m_local_rank << " / " << m_global_rank << "\n";
}
/*!
make a new Lattice of the correct type
\todo make it throw an exeption if it fails
*/
void CSubLatticeControler::makeLattice()
{
console.Debug() << "CSubLatticeControler::makeLattice()\n" ;
CVarMPIBuffer param_buffer(m_global_comm);
// get lattice parameters
param_buffer.receiveBroadcast(0);
console.Debug() << "got params " << "\n";
CLatticeParam clp = CLatticeParam::extractLatticeParam(¶m_buffer);
// make the lattice, depending of the type
if (clp.particle_type()=="Basic") {
console.Debug() << "making lattice with basic particles\n";
m_lattice=new TSubLattice<CParticle>(clp,m_global_rank,m_global_comm,m_local_comm);
} else if (clp.particle_type()=="Rot") {
console.Debug() << "making lattice with simple rotational particles\n";
m_lattice=new TRotSubLattice<CRotParticle>(clp,m_global_rank,m_global_comm,m_local_comm);
} else if (clp.particle_type()=="RotVi") {
console.Debug() << "making lattice with simple Verlet-integration rotational particles\n";
m_lattice = new TRotSubLattice<CRotParticleVi>(clp,m_global_rank,m_global_comm,m_local_comm);
} else if (clp.particle_type()=="RotTherm") {
console.Debug() << "making lattice with thermal Verlet-integration rotational particles\n";
m_lattice = new TRotSubLattice<CRotThermParticle>(clp,m_global_rank,m_global_comm,m_local_comm);
} else {
std::stringstream msg;
msg
<< "ERROR! Trying to make lattice from unknown particles: "
<< clp.particle_type();
throw std::runtime_error(msg.str());
}
m_lattice->setTimer(*m_timersPtr);
console.Debug() << "end CSubLatticeControler::makeLattice()\n" ;
}
void CSubLatticeControler::saveCheckPointData(std::ostream &oStream)
{
if (m_lattice != NULL) {
m_lattice->saveCheckPointData(oStream);
}
}
void CSubLatticeControler::saveSnapShotData(std::ostream &oStream)
{
if (m_lattice != NULL) {
m_lattice->saveSnapShotData(oStream);
}
}
void CSubLatticeControler::loadCheckPointData(std::istream &iStream)
{
if (m_lattice != NULL) {
m_lattice->loadCheckPointData(iStream);
}
}
/*!
Initialize lattice. All boundaries are assumed to be open, i.e. not circular.
Recieves all necessary data from Master
*/
void CSubLatticeControler::initLattice()
{
console.XDebug() << "CSubLatticeControler::initLattice: enter\n";
// get corners
vector<Vec3> bbox;
console.XDebug()
<< "CSubLatticeControler::initLattice: receiving bbox\n";
m_tml_global_comm.recv_broadcast_cont_packed(bbox,0);
if(bbox.size()!=2){
console.Critical()<<"CRITICAL ERROR: bbox.size()!=2\n";
}
console.XDebug()
<< "CSubLatticeControler::initLattice: initialising ntable,"
<< "bbox = " << bbox[0] << ", " << bbox[1] << "\n";
// init neighbbor table
m_lattice->initNeighborTable(bbox[0],bbox[1]);
// send back ppa dims and coords
console.XDebug()
<< "CSubLatticeControler::initLattice: sending dims\n";
vector<int> commdims=m_lattice->getCommDims();
m_tml_global_comm.send_gather(commdims,0);
vector<int> commcoords=m_lattice->getCommCoords();
console.XDebug()
<< "CSubLatticeControler::initLattice: sending coords\n";
m_tml_global_comm.send_gather(commcoords,0);
console.XDebug() << "CSubLatticeControler::initLattice: exit\n";
}
void CSubLatticeControler::setTimeStepSize()
{
console.Debug() << "enter CSubLatticeControler::setTimeStepSize()\n" ;
CVarMPIBuffer buffer(m_global_comm);
// get double parameter
console.Debug()
<< "CSubLatticeControler::setTimeStepSize: receiving data...\n";
buffer.receiveBroadcast(0);
console.Debug()
<< "CSubLatticeControler::setTimeStepSize: broadcast received\n";
console.Debug()
<< "CSubLatticeControler::setTimeStepSize: popping double...\n";
const double dt = buffer.pop_double();
console.Debug()
<< "CSubLatticeControler::setTimeStepSize: popped double = " << dt << "\n";
console.Debug()
<< "CSubLatticeControler::setTimeStepSize: setting time step size\n";
m_lattice->setTimeStepSize(dt);
console.Debug()
<< "CSubLatticeControler::setTimeStepSize: done setting time step size.\n";
console.Debug() << "end CSubLatticeControler::setTimeStepSize()\n" ;
}
/*!
Initialize lattice with at least one circular boundary condition.
Receives all necessary data from Master
*/
void CSubLatticeControler::initLatticeCirc()
{
console.Debug() << "CSubLatticeControler::initLatticeCirc: enter\n";
// get corners
vector<Vec3> bbox;
console.Debug()
<< "CSubLatticeControler::initLatticeCirc:"
<< " receiving bounding box...\n";
m_tml_global_comm.recv_broadcast_cont_packed(bbox,0);
if(bbox.size()!=2){
console.Error()<<"CRITICAL ERROR: bbox.size()!=2\n";
}
// get circular/non-circular boundary conditions
vector<int> cv;
vector<bool> circ;
console.Debug()
<< "CSubLatticeControler::initLatticeCirc:"
<< " circular boundary prms...\n";
m_tml_global_comm.recv_broadcast_cont(cv,0);
for(vector<int>::iterator iter=cv.begin();
iter!=cv.end();
iter++){
bool c=(*iter==1);
console.XDebug() << "circ " << c << "\n";
circ.push_back(c);
}
console.Debug()
<< "CSubLatticeControler::initLatticeCirc:"
<< " initialising neighbour table...\n";
m_lattice->initNeighborTable(bbox[0],bbox[1],circ);
console.Debug()
<< "CSubLatticeControler::initLatticeCirc:"
<< " sending mpi-comm dimensions...\n";
vector<int> commdims=m_lattice->getCommDims();
m_tml_global_comm.send_gather(commdims,0);
console.Debug()
<< "CSubLatticeControler::initLatticeCirc:"
<< " sending mpi-comm coordinates...\n";
vector<int> commcoords=m_lattice->getCommCoords();
m_tml_global_comm.send_gather(commcoords,0);
console.Debug() << "CSubLatticeControler::initLatticeCirc: exit\n";
}
void CSubLatticeControler::performTiming()
{
CVarMPIBuffer buffer(m_global_comm);
// get check-point parameters
buffer.receiveBroadcast(0);
std::string fileNamePrefix = buffer.pop_string();
std::stringstream sStream;
sStream << fileNamePrefix << MpiInfo(m_global_comm).rank() << ".csv";
setTimingFileName(sStream.str());
}
void CSubLatticeControler::saveTimingData()
{
if (getTimingFileName() != "") {
m_timersPtr->appendData(getTimingFileName());
m_timersPtr->zeroise();
}
}
void CSubLatticeControler::searchNeighbors()
{
m_lattice->searchNeighbors();
return;
}
void CSubLatticeControler::do2dCalculations()
{
console.Debug() << "enter CSubLatticeControler::do2dCalculations()\n" ;
CVarMPIBuffer buffer(m_global_comm);
CMPIBarrier barrier(m_global_comm);
// get boolean parameter
console.Debug()
<< "CSubLatticeControler::do2dCalculations: receiving data...\n";
buffer.receiveBroadcast(0);
console.Debug()
<< "CSubLatticeControler::do2dCalculations: broadcast received\n";
console.Debug()
<< "CSubLatticeControler::do2dCalculations: popping bool...\n";
const bool do2d = static_cast<bool>(buffer.pop_int());
console.Debug()
<< "CSubLatticeControler::do2dCalculations: popped bool\n";
console.Debug()
<< "CSubLatticeControler::do2dCalculations: setting bool\n";
m_lattice->do2dCalculations(do2d);
console.Debug()
<< "CSubLatticeControler::do2dCalculations: done setting bool.\n";
console.Debug() << "end CSubLatticeControler::do2dCalculations()\n" ;
}
void CSubLatticeControler::getNumParticles()
{
int numParticles = m_lattice->getNumParticles();
vector<int> numParticlesVector(1, numParticles);
m_tml_global_comm.send_gather(numParticlesVector, 0);
}
void CSubLatticeControler::findParticleNearestToPoint()
{
console.Debug()
<< "CSubLatticeControler::findParticleNearestToPoint: enter\n";
CVarMPIBuffer buffer(m_global_comm);
// get boolean parameter
console.Debug()
<< "CSubLatticeControler::findParticleNearestToPoint: receiving point...\n";
buffer.receiveBroadcast(0);
const Vec3 pt = buffer.pop_vector();
vector<std::pair<double,int> >
distIdVector(1, m_lattice->findParticleNearestTo(pt));
console.Debug()
<< "CSubLatticeControler::findParticleNearestToPoint: "
<< "sending distance data...\n";
m_tml_global_comm.send_gather(distIdVector, 0);
console.Debug()
<< "CSubLatticeControler::findParticleNearestToPoint: exit\n";
}
void CSubLatticeControler::getParticlePosn()
{
console.Debug()
<< "CSubLatticeControler::getParticlePosn: enter\n";
CVarMPIBuffer buffer(m_global_comm);
// get boolean parameter
console.Debug()
<< "CSubLatticeControler::getParticlePosn: receiving particle id...\n";
buffer.receiveBroadcast(0);
const int particleId = buffer.pop_int();
vector<std::pair<int,Vec3> >
idPosnVector(1, m_lattice->getParticlePosn(particleId));
console.Debug()
<< "CSubLatticeControler::getParticlePosn: sending posn data...\n";
m_tml_global_comm.send_gather(idPosnVector, 0);
console.Debug()
<< "CSubLatticeControler::getParticlePosn: exit\n";
}
void CSubLatticeControler::getIdParticleData()
{
console.Debug()
<< "CSubLatticeControler::getIdParticleData: enter\n";
ASubLattice::IdVector particleIdVector;
console.Debug()
<< "CSubLatticeControler::getIdParticleData: receiving particle id's\n";
m_tml_global_comm.recv_broadcast_cont(particleIdVector, 0);
console.Debug()
<< "CSubLatticeControler::getIdParticleData:"
<< " received " << particleIdVector.size() << " particle id's\n";
m_lattice->getParticleData(particleIdVector);
console.Debug()
<< "CSubLatticeControler::getIdParticleData: exit\n";
}
void CSubLatticeControler::moveSingleParticle()
{
console.Debug() << "CSubLatticeControler::moveSingleParticle: enter\n";
CVarMPIBuffer buffer(m_global_comm);
console.Debug()
<< "CSubLatticeControler::moveSingleParticle:"
" receiving id and position\n";
buffer.receiveBroadcast(0); // get data from master
const int particleId = buffer.pop_int();
const Vec3 posn = buffer.pop_vector();
console.Debug()
<< "CSubLatticeControler::moveSingleParticle:"
<< " received id=" << particleId << " and position=" << posn << "\n";
m_lattice->moveSingleParticleTo(particleId, posn);
console.Debug() << "CSubLatticeControler::moveSingleParticle: exit\n";
}
/*!
Translate mesh by given amount. Receive data from master
and call function in SubLattice with the received parameters
*/
void CSubLatticeControler::translateMeshBy()
{
console.Debug() << "CSubLatticeControler::translateMeshBy: enter\n";
CVarMPIBuffer buffer(m_global_comm);
console.Debug()
<< "CSubLatticeControler::translateMeshBy:"
" receiving mesh-name and translation\n";
buffer.receiveBroadcast(0); // get data from master
const std::string meshName(buffer.pop_string());
const Vec3 translation(buffer.pop_vector());
console.Debug()
<< "CSubLatticeControler::translateMeshBy:"
<< " received name=\"" << meshName
<< "\" and translation=(" << translation << ")\n";
m_lattice->translateMeshBy(meshName, translation);
console.Debug() << "CSubLatticeControler::translateMeshBy: exit\n";
}
/*!
Set console verbosity. level recieved from master.
*/
void CSubLatticeControler::setVerbosity()
{
CVarMPIBuffer buffer(m_global_comm);
buffer.receiveBroadcast(0);
const int verbose = buffer.pop_int();
console.SetVerbose(verbose);
}
/*!
Initialize console. Parameters recieved from master.
*/
void CSubLatticeControler::initializeConsole()
{
CVarMPIBuffer buffer(m_global_comm);
buffer.receiveBroadcast(0);
const std::string filename(buffer.pop_string());
const int bufflen = buffer.pop_int();
console.Initialize(filename);
console.SetBuffered(bufflen);
}
/*!
Set console filename. filename recieved from master.
*/
void CSubLatticeControler::setConsoleFilename()
{
CVarMPIBuffer buffer(m_global_comm);
buffer.receiveBroadcast(0);
const std::string filename(buffer.pop_string());
console.SetFilename(filename);
}
/*!
Set buffer size & mode filename. parameters recieved from master.
*/
void CSubLatticeControler::setConsoleBuffered()
{
CVarMPIBuffer buffer(m_global_comm);
buffer.receiveBroadcast(0);
const int bsize = buffer.pop_int();
console.SetBuffered(bsize);
}
/*!
gets command messages from master and calls the functions of SubLattice
*/
void CSubLatticeControler::run()
{
CMPILCmdBuffer cmd_buffer(m_global_comm,0);
int command=0;
bool is_error=false;
#ifdef _ENABLE_DEBUG_FILE
console.SetVerbose();
#endif
do{
command=cmd_buffer.receive();
console.Debug()
<< "CSubLatticeControler::run:"
<< "rank=" << m_global_rank
<< "->Received command=" << command << "\n";
switch(command){
case CMD_PRINT : m_lattice->printData(); break;
case CMD_CALC :
{
m_timersPtr->start("ForceCalculation");
m_lattice->oneStep();
m_timersPtr->stop("ForceCalculation");
break;
}
case CMD_XCHANGE :
{
m_timersPtr->start("BoundaryDataExchange");
m_lattice->exchangePos();
m_timersPtr->stop("BoundaryDataExchange");
break;
}
case CMD_NSEARCH : searchNeighbors(); break;
case CMD_CHECKNEIGHBORS :
{
m_timersPtr->start("CheckNeighbours");
m_lattice->checkNeighbors();
m_timersPtr->stop("CheckNeighbours");
break;
}
case CMD_UPDATE :
{
m_timersPtr->start("UpdateInteractions");
m_lattice->updateInteractions();
m_timersPtr->stop("UpdateInteractions");
break;
}
case CMD_PMOVE : m_lattice->moveParticleTo(); break;
case CMD_PMOVETAGGEDBY : m_lattice->moveTaggedParticlesBy(); break;
case CMD_PSETND : m_lattice->setParticleNonDynamic(); break;
case CMD_PSETNR : m_lattice->setParticleNonRot(); break;
case CMD_PVEL : m_lattice->setParticleVelocity(); break;
case CMD_PANGVEL : m_lattice->setParticleAngularVelocity(); break;
case CMD_PDENS : m_lattice->setParticleDensity(); break;
case CMD_PTVEL : m_lattice->setTaggedParticleVel(); break;
case CMD_WMOVE : m_lattice->moveWallBy(); break;
case CMD_SPHEREBODYMOVE : m_lattice->moveSphereBodyBy(); break;
case CMD_WNORM : m_lattice->setWallNormal(); break;
case CMD_WFORCE : m_lattice->applyForceToWall(); break;
case CMD_COUNT : m_lattice->countParticles(); break;
case CMD_ADDBONDEDIG : m_lattice->addBondedIG(); break;
case CMD_ADDSHORTBONDEDIG : m_lattice->addShortBondedIG(); break;
case CMD_ADDCAPPEDBONDEDIG : m_lattice->addCappedBondedIG(); break;
case CMD_ADDROTBONDEDIG : m_lattice->addRotBondedIG(); break;
case CMD_ADDROTTHERMBONDEDIG : m_lattice->addRotThermBondedIG(); break;
case CMD_ADDPIG : m_lattice->addPairIG(); break;
case CMD_ADDTAGPIG : m_lattice->addTaggedPairIG(); break;
case CMD_GETNUMPARTICLES : getNumParticles();break;
case CMD_ADDSIG : m_lattice->addSingleIG(); break;
case CMD_ADDDAMP : m_lattice->addDamping(); break;
case CMD_ADDTRIMESHIG : m_lattice->addTriMeshIG(); break;
case CMD_ADDTRIMESH : m_lattice->addTriMesh(); break;
case CMD_ADDMESH2D : m_lattice->addMesh2D(); break;
case CMD_ADDMESH2DIG : m_lattice->addMesh2DIG(); break;
case CMD_MAKELATTICE : makeLattice(); break;
case CMD_INITLATTICE : initLattice(); break;
case CMD_INITLATTICECIRC : initLatticeCirc(); break;
case CMD_INITCOMPLEX : m_lattice->initComplex(); break;
case CMD_ADDWALL : m_lattice->addWall(); break;
case CMD_ADDEWALLIG : m_lattice->addElasticWIG(); break;
case CMD_ADDBWALLIG : m_lattice->addBondedWIG(); break;
case CMD_ADDVWALLIG : m_lattice->addViscWIG(); break;
case CMD_ADDBBWALLIG : m_lattice->addDirBondedWIG(); break;
case CMD_ADDTAGGEDEWALLIG : m_lattice->addTaggedElasticWIG(); break;
case CMD_EXIG : m_lattice->setExIG(); break;
case CMD_ADD_SPF : m_lattice->addScalarParticleField(); break;
case CMD_ADD_VPF : m_lattice->addVectorParticleField(); break;
case CMD_ADD_SIF : m_lattice->addScalarInteractionField(); break;
case CMD_ADD_HIF : m_lattice->addScalarHistoryInteractionField(); break;
case CMD_ADD_VIF : m_lattice->addVectorInteractionField(); break;
case CMD_ADD_VTF : m_lattice->addVectorTriangleField(); break;
case CMD_ADD_STF : m_lattice->addScalarTriangleField(); break;
case CMD_ADD_VWF : m_lattice->addVectorWallField(); break;
case CMD_SEND_FIELDS : m_lattice->sendFieldData(); break;
case CMD_RECEIVEPARTICLES : m_lattice->receiveParticles();break;
case CMD_RECEIVECONNECTIONS : m_lattice->receiveConnections();break;
case CMD_ADDSPHEREBODY : m_lattice->addSphereBody();break;
case CMD_ADDESPHEREBODYIG : m_lattice->addESphereBodyIG();break;
case CMD_GETSPHEREBODYPOS : m_lattice->getSphereBodyPos();break;
case CMD_GETSPHEREBODYFORCE : m_lattice->getSphereBodyForce();break;
case CMD_SAVECHECKPOINT :
{
m_timersPtr->start("CheckPoint");
m_pCheckPointer->saveRestartable();
m_timersPtr->stop("CheckPoint");
break;
}
case CMD_SAVESNAPSHOT :
{
m_timersPtr->start("SnapShot");
m_pSnapShooter->saveDump();
m_timersPtr->stop("SnapShot");
break;
}
case CMD_SAVECHECKPOINTWTM :
{
m_timersPtr->start("CheckPointWTM");
m_pCheckPointer->saveThroughMaster(m_tml_global_comm);
m_timersPtr->stop("CheckPointWTM");
break;
}
case CMD_LOADCHECKPOINT :
{
m_timersPtr->start("LoadCheckPoint");
m_pCheckPointer->loadCheckPoint();
m_timersPtr->stop("LoadCheckPoint");
break;
}
case CMD_PTAG : m_lattice->tagParticleNearestTo();break;
case CMD_FINDNEARESTPARTICLE: findParticleNearestToPoint();break;
case CMD_GETPARTICLEPOSN: getParticlePosn();break;
case CMD_GETWALLPOS: m_lattice->getWallPos();break;
case CMD_GETWALLFORCE: m_lattice->getWallForce();break;
case CMD_DO2DCALCULATIONS : do2dCalculations();break;
case CMD_PERFORMTIMING : performTiming();break;
case CMD_SAVETIMINGDATA : saveTimingData();break;
case CMD_MOVENODE : m_lattice->moveSingleNode();break;
case CMD_MOVETAGGEDNODES : m_lattice->moveTaggedNodes();break;
case CMD_TRANSLATEMESHBY : translateMeshBy();break;
case CMD_ADDBONDEDTRIMESHIG : m_lattice->addBondedTriMeshIG(); break;
case CMD_ADDBONDEDMESH2DIG : m_lattice->addBondedMesh2DIG() ; break;
case CMD_REMOVEIG : m_lattice->removeIG() ; break;
case CMD_GETMESHNODEREF : m_lattice->getMeshNodeRef() ; break;
case CMD_GETMESHFACEREF : m_lattice->getMeshFaceRef() ; break;
case CMD_GETMESH2DSTRESS : m_lattice->getMesh2DStress() ; break;
case CMD_GETTRIMESHFORCE : m_lattice->getTriMeshForce() ; break;
case CMD_GETIDPARTICLEDATA : getIdParticleData(); break;
case CMD_IDPARTICLEMOVE : moveSingleParticle(); break;
case CMD_SETTIMESTEPSIZE: setTimeStepSize(); break;
case CMD_SETVERBOSITY : setVerbosity(); break;
case CMD_INITCONSOLE : initializeConsole(); break;
case CMD_SETCONSOLEFNAME : setConsoleFilename(); break;
case CMD_SETCONSOLEBUFF : setConsoleBuffered(); break;
case CMD_FINISH : break;
default:
{
console.Error()
<< m_global_rank << " got unknown command : "
<< command << "\n";
is_error=true;
}
}
std::stringstream msg;
msg << "cmd=" << command;
m_tml_global_comm.barrier(msg.str().c_str());
//m_tml_global_comm.barrier();
} while ((command!=CMD_FINISH)&&(!is_error));
#ifdef __TIMING
m_lattice->printTimes();
#endif //__TIMING
m_timersPtr->clear();
m_tml_global_comm.barrier("Final");
#ifdef HAVE_MPI_COMM_SPAWN
MPI_Comm_disconnect(&m_global_comm);
#endif
}
|