mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
241 lines
6.3 KiB
C++
241 lines
6.3 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2010 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/>.
|
|
|
|
Class
|
|
Foam::definedInjector
|
|
|
|
Description
|
|
User specified MFR vs time and velocity vs time
|
|
|
|
SourceFiles
|
|
definedInjectorI.H
|
|
definedInjector.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef definedInjector_H
|
|
#define definedInjector_H
|
|
|
|
#include "injectorType.H"
|
|
#include "vector.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class definedInjector Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class definedInjector
|
|
:
|
|
public injectorType
|
|
{
|
|
|
|
private:
|
|
|
|
// Private data
|
|
|
|
typedef VectorSpace<Vector<scalar>, scalar, 2> pair;
|
|
|
|
dictionary propsDict_;
|
|
|
|
vector position_;
|
|
vector direction_;
|
|
scalar d_;
|
|
scalar mass_;
|
|
scalar T_;
|
|
label nParcels_;
|
|
scalarField X_;
|
|
List<pair> massFlowRateProfile_;
|
|
List<pair> velocityProfile_;
|
|
List<pair> injectionPressureProfile_;
|
|
List<pair> CdProfile_;
|
|
List<pair> TProfile_;
|
|
scalar averageParcelMass_;
|
|
|
|
bool pressureIndependentVelocity_;
|
|
|
|
//- two orthogonal vectors that are also orthogonal
|
|
// to the injection direction
|
|
vector tangentialInjectionVector1_, tangentialInjectionVector2_;
|
|
|
|
|
|
// Private Member Functions
|
|
|
|
//- Disallow default bitwise copy construct
|
|
definedInjector(const definedInjector&);
|
|
|
|
//- Disallow default bitwise assignment
|
|
void operator=(const definedInjector&);
|
|
|
|
//- Create two vectors orthonoal to each other
|
|
// and the injection vector
|
|
void setTangentialVectors();
|
|
|
|
//- Return the fraction of the total injected liquid
|
|
scalar fractionOfInjection(const scalar time) const;
|
|
|
|
//- Return the instantaneous injection velocity
|
|
scalar injectionVelocity(const scalar) const;
|
|
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("definedInjector");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from components
|
|
definedInjector(const Time& t, const dictionary& dict);
|
|
|
|
|
|
//- Destructor
|
|
virtual ~definedInjector();
|
|
|
|
|
|
// Member Functions
|
|
|
|
//- Return number of particles to inject
|
|
label nParcelsToInject
|
|
(
|
|
const scalar t0,
|
|
const scalar t1
|
|
) const;
|
|
|
|
//- Return the injection position
|
|
const vector position(const label n) const;
|
|
|
|
//- Return the injection position
|
|
vector position
|
|
(
|
|
const label n,
|
|
const scalar time,
|
|
const bool twoD,
|
|
const scalar angleOfWedge,
|
|
const vector& axisOfSymmetry,
|
|
const vector& axisOfWedge,
|
|
const vector& axisOfWedgeNormal,
|
|
cachedRandom& rndGen
|
|
) const;
|
|
|
|
//- Return the number of holes
|
|
label nHoles() const;
|
|
|
|
//- Return the injector diameter
|
|
scalar d() const;
|
|
|
|
//- Return the injection direction
|
|
const vector& direction
|
|
(
|
|
const label i,
|
|
const scalar time
|
|
) const;
|
|
|
|
//- Return the mass of the injected particle
|
|
scalar mass
|
|
(
|
|
const scalar t0,
|
|
const scalar t1,
|
|
const bool twoD,
|
|
const scalar angleOfWedge
|
|
) const;
|
|
|
|
//- Return the mass injected by the injector
|
|
scalar mass() const;
|
|
|
|
//- Return the fuel mass fractions of the injected particle
|
|
const scalarField& X() const;
|
|
|
|
//- Return the temperature profile of the injected particle
|
|
List<pair> T() const;
|
|
|
|
//- Return the temperature of the injected particle
|
|
scalar T(const scalar time) const;
|
|
|
|
//- Return the start-of-injection time
|
|
scalar tsoi() const;
|
|
|
|
//- Return the end-of-injection time
|
|
scalar teoi() const;
|
|
|
|
//- Return the injected liquid mass
|
|
scalar injectedMass(const scalar t) const;
|
|
|
|
List<pair> massFlowRateProfile() const
|
|
{
|
|
return massFlowRateProfile_;
|
|
}
|
|
|
|
scalar massFlowRate(const scalar time) const;
|
|
|
|
List<pair> injectionPressureProfile() const
|
|
{
|
|
return injectionPressureProfile_;
|
|
}
|
|
|
|
scalar injectionPressure(const scalar time) const;
|
|
|
|
List<pair> velocityProfile() const
|
|
{
|
|
return velocityProfile_;
|
|
}
|
|
|
|
scalar velocity(const scalar time) const;
|
|
|
|
List<pair> CdProfile() const
|
|
{
|
|
return CdProfile_;
|
|
}
|
|
|
|
scalar Cd(const scalar time) const;
|
|
|
|
vector tan1(const label n) const;
|
|
vector tan2(const label n) const;
|
|
|
|
void correctProfiles
|
|
(
|
|
const liquidMixture& fuel,
|
|
const scalar referencePressure
|
|
);
|
|
|
|
bool pressureIndependentVelocity() const
|
|
{
|
|
return pressureIndependentVelocity_;
|
|
}
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|