/*------------------------------- phasicFlow --------------------------------- O C enter of O O E ngineering and O O M ultiscale modeling of OOOOOOO F luid flow ------------------------------------------------------------------------------ Copyright (C): www.cemf.ir email: hamid.r.norouzi AT gmail.com ------------------------------------------------------------------------------ Licence: This file is part of phasicFlow code. It is a free software for simulating granular and multiphase flows. You can redistribute it and/or modify it under the terms of GNU General Public License v3 or any other later versions. phasicFlow is distributed to help others in their research in the field of granular and multiphase flows, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -----------------------------------------------------------------------------*/ #include "sphereDEMSystem.hpp" pFlow::coupling::sphereDEMSystem::sphereDEMSystem( word demSystemName, int32 numDomains, const std::vector& domains, int argc, char* argv[]) : DEMSystem(demSystemName, numDomains, domains, argc, argv) { REPORT(0)<<"Initializing host/device execution spaces . . . \n"; REPORT(1)<<"Host execution space is "<< greenText(DefaultHostExecutionSpace::name())<( Control().caseSetup().path()+propertyFile__); REPORT(0)<< "\nCreating surface geometry for sphereDEMSystem . . . "<(Control(), Property()); //REPORT(0)<<"\nCreating particle insertion for spheres. . ."<( objectFile( insertionFile__, "", objectFile::READ_ALWAYS, objectFile::WRITE_ALWAYS ), sphParticles, sphParticles.shapes() );*/ REPORT(0)<<"\nCreating interaction model for sphere-sphere contact and sphere-wall contact . . ."<boundingSphereMinMax(minD, maxD); particleDistribution_ = makeUnique(numDomains, domains, maxD); } pFlow::coupling::sphereDEMSystem::~sphereDEMSystem() { interaction_.reset(); insertion_.reset(); particles_.reset(); geometry_.reset(); property_.reset(); Control_.reset(); output<< "\nFinalizing host/device execution space ...."< pFlow::coupling::sphereDEMSystem::numParInDomain()const { const auto& distribute = particleDistribution_(); int32 numDomains = distribute.numDomains(); std::vector nums(numDomains); for(int32 i=0; iboundingSphereMinMax(minD, maxD); return maxD; }