mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
221 lines
5.6 KiB
C
221 lines
5.6 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2008-2011 OpenCFD Ltd.
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
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 "ThermoLookupTableInjection.H"
|
|
#include "scalarIOList.H"
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class CloudType>
|
|
Foam::ThermoLookupTableInjection<CloudType>::ThermoLookupTableInjection
|
|
(
|
|
const dictionary& dict,
|
|
CloudType& owner
|
|
)
|
|
:
|
|
InjectionModel<CloudType>(dict, owner, typeName),
|
|
inputFileName_(this->coeffDict().lookup("inputFile")),
|
|
duration_(readScalar(this->coeffDict().lookup("duration"))),
|
|
parcelsPerSecond_
|
|
(
|
|
readScalar(this->coeffDict().lookup("parcelsPerSecond"))
|
|
),
|
|
injectors_
|
|
(
|
|
IOobject
|
|
(
|
|
inputFileName_,
|
|
owner.db().time().constant(),
|
|
owner.db(),
|
|
IOobject::MUST_READ,
|
|
IOobject::NO_WRITE
|
|
)
|
|
),
|
|
injectorCells_(0),
|
|
injectorTetFaces_(0),
|
|
injectorTetPts_(0)
|
|
{
|
|
// Set/cache the injector cells
|
|
injectorCells_.setSize(injectors_.size());
|
|
injectorTetFaces_.setSize(injectors_.size());
|
|
injectorTetPts_.setSize(injectors_.size());
|
|
|
|
forAll(injectors_, i)
|
|
{
|
|
this->findCellAtPosition
|
|
(
|
|
injectorCells_[i],
|
|
injectorTetFaces_[i],
|
|
injectorTetPts_[i],
|
|
injectors_[i].x()
|
|
);
|
|
}
|
|
|
|
// Determine volume of particles to inject
|
|
this->volumeTotal_ = 0.0;
|
|
forAll(injectors_, i)
|
|
{
|
|
this->volumeTotal_ += injectors_[i].mDot()/injectors_[i].rho();
|
|
}
|
|
this->volumeTotal_ *= duration_;
|
|
}
|
|
|
|
|
|
template<class CloudType>
|
|
Foam::ThermoLookupTableInjection<CloudType>::ThermoLookupTableInjection
|
|
(
|
|
const ThermoLookupTableInjection<CloudType>& im
|
|
)
|
|
:
|
|
InjectionModel<CloudType>(im),
|
|
inputFileName_(im.inputFileName_),
|
|
duration_(im.duration_),
|
|
parcelsPerSecond_(im.parcelsPerSecond_),
|
|
injectors_(im.injectors_),
|
|
injectorCells_(im.injectorCells_),
|
|
injectorTetFaces_(im.injectorTetFaces_),
|
|
injectorTetPts_(im.injectorTetPts_)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
template<class CloudType>
|
|
Foam::ThermoLookupTableInjection<CloudType>::~ThermoLookupTableInjection()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class CloudType>
|
|
Foam::scalar Foam::ThermoLookupTableInjection<CloudType>::timeEnd() const
|
|
{
|
|
return this->SOI_ + duration_;
|
|
}
|
|
|
|
|
|
template<class CloudType>
|
|
Foam::label Foam::ThermoLookupTableInjection<CloudType>::parcelsToInject
|
|
(
|
|
const scalar time0,
|
|
const scalar time1
|
|
)
|
|
{
|
|
if ((time0 >= 0.0) && (time0 < duration_))
|
|
{
|
|
return floor(injectorCells_.size()*(time1 - time0)*parcelsPerSecond_);
|
|
}
|
|
else
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
template<class CloudType>
|
|
Foam::scalar Foam::ThermoLookupTableInjection<CloudType>::volumeToInject
|
|
(
|
|
const scalar time0,
|
|
const scalar time1
|
|
)
|
|
{
|
|
scalar volume = 0.0;
|
|
if ((time0 >= 0.0) && (time0 < duration_))
|
|
{
|
|
forAll(injectors_, i)
|
|
{
|
|
volume += injectors_[i].mDot()/injectors_[i].rho()*(time1 - time0);
|
|
}
|
|
}
|
|
|
|
return volume;
|
|
}
|
|
|
|
|
|
template<class CloudType>
|
|
void Foam::ThermoLookupTableInjection<CloudType>::setPositionAndCell
|
|
(
|
|
const label parcelI,
|
|
const label nParcels,
|
|
const scalar time,
|
|
vector& position,
|
|
label& cellOwner,
|
|
label& tetFaceI,
|
|
label& tetPtI
|
|
)
|
|
{
|
|
label injectorI = parcelI*injectorCells_.size()/nParcels;
|
|
|
|
position = injectors_[injectorI].x();
|
|
cellOwner = injectorCells_[injectorI];
|
|
tetFaceI = injectorTetFaces_[injectorI];
|
|
tetPtI = injectorTetPts_[injectorI];
|
|
}
|
|
|
|
|
|
template<class CloudType>
|
|
void Foam::ThermoLookupTableInjection<CloudType>::setProperties
|
|
(
|
|
const label parcelI,
|
|
const label nParcels,
|
|
const scalar,
|
|
typename CloudType::parcelType* pPtr
|
|
)
|
|
{
|
|
label injectorI = parcelI*injectorCells_.size()/nParcels;
|
|
|
|
// set particle velocity
|
|
parcel.U() = injectors_[injectorI].U();
|
|
|
|
// set particle diameter
|
|
parcel.d() = injectors_[injectorI].d();
|
|
|
|
// set particle density
|
|
parcel.rho() = injectors_[injectorI].rho();
|
|
|
|
// set particle temperature
|
|
parcel.T() = injectors_[injectorI].T();
|
|
|
|
// set particle specific heat capacity
|
|
parcel.cp() = injectors_[injectorI].cp();
|
|
}
|
|
|
|
|
|
template<class CloudType>
|
|
bool Foam::ThermoLookupTableInjection<CloudType>::fullyDescribed() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
template<class CloudType>
|
|
bool Foam::ThermoLookupTableInjection<CloudType>::validInjection(const label)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|