264 lines
6.4 KiB
C
264 lines
6.4 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation
|
|
\\/ M anipulation | Copyright (C) 2015 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 <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "FieldActivatedInjection.H"
|
|
#include "volFields.H"
|
|
#include "mathematicalConstants.H"
|
|
|
|
using namespace Foam::constant::mathematical;
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class CloudType>
|
|
Foam::FieldActivatedInjection<CloudType>::FieldActivatedInjection
|
|
(
|
|
const dictionary& dict,
|
|
CloudType& owner,
|
|
const word& modelName
|
|
)
|
|
:
|
|
InjectionModel<CloudType>(dict, owner, modelName, typeName),
|
|
factor_(this->coeffDict().getScalar("factor")),
|
|
referenceField_
|
|
(
|
|
owner.db().objectRegistry::template lookupObject<volScalarField>
|
|
(
|
|
this->coeffDict().getWord("referenceField")
|
|
)
|
|
),
|
|
thresholdField_
|
|
(
|
|
owner.db().objectRegistry::template lookupObject<volScalarField>
|
|
(
|
|
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_(positions_.size(), Zero),
|
|
U0_
|
|
(
|
|
this->coeffDict().template get<vector>("U0")
|
|
),
|
|
diameters_(positions_.size()),
|
|
sizeDistribution_
|
|
(
|
|
distributionModel::New
|
|
(
|
|
this->coeffDict().subDict("sizeDistribution"),
|
|
owner.rndGen()
|
|
)
|
|
)
|
|
{
|
|
// Construct parcel diameters - one per injector cell
|
|
forAll(diameters_, i)
|
|
{
|
|
diameters_[i] = sizeDistribution_->sample();
|
|
}
|
|
|
|
// Determine total volume of particles to inject
|
|
this->volumeTotal_ =
|
|
nParcelsPerInjector_*sum(pow3(diameters_))*pi/6.0;
|
|
|
|
updateMesh();
|
|
}
|
|
|
|
|
|
template<class CloudType>
|
|
Foam::FieldActivatedInjection<CloudType>::FieldActivatedInjection
|
|
(
|
|
const FieldActivatedInjection<CloudType>& im
|
|
)
|
|
:
|
|
InjectionModel<CloudType>(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())
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
template<class CloudType>
|
|
Foam::FieldActivatedInjection<CloudType>::~FieldActivatedInjection()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class CloudType>
|
|
void Foam::FieldActivatedInjection<CloudType>::updateMesh()
|
|
{
|
|
// Set/cache the injector cells
|
|
forAll(positions_, i)
|
|
{
|
|
this->findCellAtPosition
|
|
(
|
|
injectorCells_[i],
|
|
injectorTetFaces_[i],
|
|
injectorTetPts_[i],
|
|
positions_[i]
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
template<class CloudType>
|
|
Foam::scalar Foam::FieldActivatedInjection<CloudType>::timeEnd() const
|
|
{
|
|
return GREAT;
|
|
}
|
|
|
|
|
|
template<class CloudType>
|
|
Foam::label Foam::FieldActivatedInjection<CloudType>::parcelsToInject
|
|
(
|
|
const scalar time0,
|
|
const scalar time1
|
|
)
|
|
{
|
|
if (sum(nParcelsInjected_) < nParcelsPerInjector_*positions_.size())
|
|
{
|
|
return positions_.size();
|
|
}
|
|
else
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
template<class CloudType>
|
|
Foam::scalar Foam::FieldActivatedInjection<CloudType>::volumeToInject
|
|
(
|
|
const scalar time0,
|
|
const scalar time1
|
|
)
|
|
{
|
|
if (sum(nParcelsInjected_) < nParcelsPerInjector_*positions_.size())
|
|
{
|
|
return this->volumeTotal_/nParcelsPerInjector_;
|
|
}
|
|
else
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
template<class CloudType>
|
|
void Foam::FieldActivatedInjection<CloudType>::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<class CloudType>
|
|
void Foam::FieldActivatedInjection<CloudType>::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<class CloudType>
|
|
bool Foam::FieldActivatedInjection<CloudType>::fullyDescribed() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
|
|
template<class CloudType>
|
|
bool Foam::FieldActivatedInjection<CloudType>::validInjection
|
|
(
|
|
const label parcelI
|
|
)
|
|
{
|
|
const label celli = injectorCells_[parcelI];
|
|
|
|
if
|
|
(
|
|
nParcelsInjected_[parcelI] < nParcelsPerInjector_
|
|
&& factor_*referenceField_[celli] > thresholdField_[celli]
|
|
)
|
|
{
|
|
nParcelsInjected_[parcelI]++;
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|