/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2017 OpenFOAM Foundation Copyright (C) 2015-2020 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenFOAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . \*---------------------------------------------------------------------------*/ #include "FieldActivatedInjection.H" #include "volFields.H" #include "mathematicalConstants.H" using namespace Foam::constant::mathematical; // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template Foam::FieldActivatedInjection::FieldActivatedInjection ( const dictionary& dict, CloudType& owner, const word& modelName ) : InjectionModel(dict, owner, modelName, typeName), factor_(this->coeffDict().getScalar("factor")), referenceField_ ( owner.db().objectRegistry::template lookupObject ( this->coeffDict().getWord("referenceField") ) ), thresholdField_ ( owner.db().objectRegistry::template lookupObject ( this->coeffDict().getWord("thresholdField") ) ), positionsFile_(this->coeffDict().getWord("positionsFile")), positions_ ( IOobject ( positionsFile_, owner.db().time().constant(), owner.mesh(), IOobject::MUST_READ, IOobject::NO_WRITE ) ), injectorCells_(positions_.size()), injectorTetFaces_(positions_.size()), injectorTetPts_(positions_.size()), nParcelsPerInjector_ ( this->coeffDict().getLabel("parcelsPerInjector") ), nParcelsInjected_(), U0_ ( this->coeffDict().template get("U0") ), diameters_(), sizeDistribution_ ( distributionModel::New ( this->coeffDict().subDict("sizeDistribution"), owner.rndGen() ) ) { updateMesh(); nParcelsInjected_.setSize(positions_.size(), Zero); // Construct parcel diameters - one per injector cell diameters_.setSize(positions_.size()); forAll(diameters_, i) { diameters_[i] = sizeDistribution_->sample(); } // Determine total volume of particles to inject this->volumeTotal_ = nParcelsPerInjector_*sum(pow3(diameters_))*pi/6.0; } template Foam::FieldActivatedInjection::FieldActivatedInjection ( const FieldActivatedInjection& im ) : InjectionModel(im), factor_(im.factor_), referenceField_(im.referenceField_), thresholdField_(im.thresholdField_), positionsFile_(im.positionsFile_), positions_(im.positions_), injectorCells_(im.injectorCells_), injectorTetFaces_(im.injectorTetFaces_), injectorTetPts_(im.injectorTetPts_), nParcelsPerInjector_(im.nParcelsPerInjector_), nParcelsInjected_(im.nParcelsInjected_), U0_(im.U0_), diameters_(im.diameters_), sizeDistribution_(im.sizeDistribution_.clone()) {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template void Foam::FieldActivatedInjection::updateMesh() { bitSet reject(positions_.size()); // Set/cache the injector cells forAll(positions_, i) { if ( !this->findCellAtPosition ( injectorCells_[i], injectorTetFaces_[i], injectorTetPts_[i], positions_[i], !this->ignoreOutOfBounds_ ) ) { reject.set(i); } } const label nRejected = reject.count(); if (nRejected) { reject.flip(); inplaceSubset(reject, injectorCells_); inplaceSubset(reject, injectorTetFaces_); inplaceSubset(reject, injectorTetPts_); inplaceSubset(reject, positions_); Info<< " " << nRejected << " positions rejected, out of bounds" << endl; } } template Foam::scalar Foam::FieldActivatedInjection::timeEnd() const { return GREAT; } template Foam::label Foam::FieldActivatedInjection::parcelsToInject ( const scalar time0, const scalar time1 ) { if (sum(nParcelsInjected_) < nParcelsPerInjector_*positions_.size()) { return positions_.size(); } return 0; } template Foam::scalar Foam::FieldActivatedInjection::volumeToInject ( const scalar time0, const scalar time1 ) { if (sum(nParcelsInjected_) < nParcelsPerInjector_*positions_.size()) { return this->volumeTotal_/nParcelsPerInjector_; } return 0.0; } template void Foam::FieldActivatedInjection::setPositionAndCell ( const label parcelI, const label, const scalar, vector& position, label& cellOwner, label& tetFacei, label& tetPti ) { position = positions_[parcelI]; cellOwner = injectorCells_[parcelI]; tetFacei = injectorTetFaces_[parcelI]; tetPti = injectorTetPts_[parcelI]; } template void Foam::FieldActivatedInjection::setProperties ( const label parcelI, const label, const scalar, typename CloudType::parcelType& parcel ) { // set particle velocity parcel.U() = U0_; // set particle diameter parcel.d() = diameters_[parcelI]; } template bool Foam::FieldActivatedInjection::fullyDescribed() const { return false; } template bool Foam::FieldActivatedInjection::validInjection ( const label parcelI ) { const label celli = injectorCells_[parcelI]; if ( nParcelsInjected_[parcelI] < nParcelsPerInjector_ && factor_*referenceField_[celli] > thresholdField_[celli] ) { nParcelsInjected_[parcelI]++; return true; } return false; } // ************************************************************************* //