/*------------------------------- 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 "grainParticles.hpp" #include "systemControl.hpp" #include "vocabs.hpp" #include "grainParticlesKernels.hpp" bool pFlow::grainParticles::initializeParticles() { using exeSpace = typename realPointField_D::execution_space; using policy = Kokkos::RangePolicy< exeSpace, Kokkos::IndexType>; auto [minIndex, maxIndex] = minMax(shapeIndex().internal()); if( !grains_.indexValid(maxIndex) ) { fatalErrorInFunction<< "the maximum value of shapeIndex is "<< maxIndex << " which is not valid."<(shapeNames.size()); propIds.clear(); propIds.reserve(numNew); diams.clear(); diams.reserve(numNew); coarseGrainFactors.clear(); coarseGrainFactors.reserve(numNew); m.clear(); m.reserve(numNew); Is.clear(); Is.reserve(numNew); shIndex.clear(); shIndex.reserve(numNew); for(const auto& name:shapeNames) { uint32 indx; if(grains_.shapeNameToIndex(name,indx)) { shIndex.push_back(indx); Is.push_back( grains_.Inertia(indx)); m.push_back(grains_.mass(indx)); diams.push_back(grains_.boundingDiameter(indx)); coarseGrainFactors.push_back(grains_.coarseGrainFactor(indx)); propIds.push_back( grains_.propertyId(indx)); } else { fatalErrorInFunction<<"Shape name "<< name << "does not exist. The list is "<(0.0000000001) ), rVelocity_ ( objectFile ( "rVelocity", "", objectFile::READ_IF_PRESENT, objectFile::WRITE_ALWAYS ), dynPointStruct(), zero3 ), rAcceleration_ ( objectFile( "rAcceleration", "", objectFile::READ_IF_PRESENT, objectFile::WRITE_ALWAYS ), dynPointStruct(), zero3 ), boundaryGrainParticles_ ( dynPointStruct().boundaries(), *this ), accelerationTimer_( "Acceleration", &this->timers() ), intPredictTimer_( "Integration-predict", &this->timers() ), intCorrectTimer_( "Integration-correct", &this->timers() ), fieldUpdateTimer_( "fieldUpdate", &this->timers() ) { auto intMethod = control.settingsDict().getVal("integrationMethod"); REPORT(1)<<"Creating integration method "<dt(); dynPointStruct().predict(dt, accelertion()); rVelIntegration_().predict(dt,rVelocity_, rAcceleration_); intPredictTimer_.end(); fieldUpdateTimer_.start(); propertyId_.updateBoundariesSlaveToMasterIfRequested(); grainDiameter_.updateBoundariesSlaveToMasterIfRequested(); coarseGrainFactor_.updateBoundariesSlaveToMasterIfRequested(); mass_.updateBoundariesSlaveToMasterIfRequested(); I_.updateBoundariesSlaveToMasterIfRequested(); rVelocity_.updateBoundariesSlaveToMasterIfRequested(); rAcceleration_.updateBoundariesSlaveToMasterIfRequested(); rVelIntegration_().updateBoundariesSlaveToMasterIfRequested(); fieldUpdateTimer_.end(); return true; } bool pFlow::grainParticles::iterate() { timeInfo ti = TimeInfo(); realx3 g = control().g(); particles::iterate(); accelerationTimer_.start(); pFlow::grainParticlesKernels::acceleration( g, mass().deviceViewAll(), contactForce().deviceViewAll(), I().deviceViewAll(), contactTorque().deviceViewAll(), dynPointStruct().activePointsMaskDevice(), accelertion().deviceViewAll(), rAcceleration().deviceViewAll() ); ForAllActiveBoundaries(i,boundaryGrainParticles_) { boundaryGrainParticles_[i].acceleration(ti, g); } accelerationTimer_.end(); intCorrectTimer_.start(); if(!dynPointStruct().correct(dt(), accelertion())) { return false; } if(!rVelIntegration_().correct( dt(), rVelocity_, rAcceleration_)) { return false; } intCorrectTimer_.end(); return true; } bool pFlow::grainParticles::insertParticles ( const realx3Vector &position, const wordVector &shapesNames, const anyList &setVarList ) { anyList newVarList(setVarList); realVector mass("mass"); realVector I("I"); realVector diameter("diameter"); realVector coarseGrainFactor("coarseGrainFactor"); uint32Vector propId("propId"); uint32Vector shapeIdx("shapeIdx"); if(!getParticlesInfoFromShape( shapesNames, propId, diameter, coarseGrainFactor, mass, I, shapeIdx)) { return false; } newVarList.emplaceBack( mass_.name()+"Vector", std::move(mass)); newVarList.emplaceBack( I_.name()+"Vector", std::move(I)); newVarList.emplaceBack( grainDiameter_.name()+"Vector", std::move(diameter)); newVarList.emplaceBack( coarseGrainFactor_.name()+"Vector", std::move(coarseGrainFactor)); newVarList.emplaceBack( propertyId_.name()+"Vector", std::move(propId)); newVarList.emplaceBack( shapeIndex().name()+"Vector", std::move(shapeIdx)); if(!dynPointStruct().insertPoints(position, newVarList)) { return false; } return true; } pFlow::word pFlow::grainParticles::shapeTypeName()const { return "grain"; } const pFlow::shape &pFlow::grainParticles::getShapes() const { return grains_; } void pFlow::grainParticles::boundingSphereMinMax ( real & minDiam, real& maxDiam )const { minDiam = grains_.minBoundingSphere(); maxDiam = grains_.maxBoundingSphere(); }