Files
openfoam/src/lagrangian/dieselSpray/injector/swirlInjector/swirlInjector.H
andy 497b4f0bed ENH: Code refactoring to avoing ambiguities + clean-up
- pointSolid->solidProperties
- pointSolidMixure->solidMixtureProperties
- liquids->liquidProperties
- liquidMixture->liquidMoxtureProperties
2011-01-28 13:09:10 +00:00

255 lines
6.8 KiB
C++

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2004-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/>.
Class
Foam::swirlInjector
Description
The swirl injector
SourceFiles
swirlInjectorI.H
swirlInjector.C
swirlInjectorIO.C
\*---------------------------------------------------------------------------*/
#ifndef swirlInjector_H
#define swirlInjector_H
#include "injectorType.H"
#include "vector.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class swirlInjector Declaration
\*---------------------------------------------------------------------------*/
class swirlInjector
:
public injectorType
{
private:
// Private data
typedef VectorSpace<Vector<scalar>, scalar, 2> pair;
dictionary propsDict_;
vector position_;
vector direction_;
scalar d_;
scalar mass_;
scalar injectionPressure_;
scalar T_;
label nParcels_;
scalarField X_;
List<pair> massFlowRateProfile_;
List<pair> injectionPressureProfile_;
List<pair> velocityProfile_;
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
swirlInjector(const swirlInjector&);
//- Disallow default bitwise assignment
void operator=(const swirlInjector&);
//- Integrate the mass-flow profile and set
// the integral value
void setIntegralProfileValue();
//- 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 average injection velocity
// scalar averageInjectionVelocityTime
// (
// const scalar liquidDensity
// ) const;
// //- Return the instantaneous injection velocity
// scalar injectionVelocity
// (
// const scalar,
// const scalar liquidDensity
// ) const;
public:
//- Runtime type information
TypeName("swirlInjector");
// Constructors
//- Construct from components
swirlInjector(const Time& t, const dictionary& dict);
//- Destructor
virtual ~swirlInjector();
// 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 mass flow rate profile
List<pair> massFlowRateProfile() const;
//- Return the instantaneous mass flow rate profile
scalar massFlowRate(const scalar time) const;
//- Return the pressure injection profile
List<pair> injectionPressureProfile() const;
//- Return the instantaneous injection pressure
scalar injectionPressure(const scalar time) const;
//- Return the velocity injection profile
List<pair> velocityProfile() const;
//- Return the instantaneous velocity
scalar velocity(const scalar time) const;
//- Return the discharge coefficient
List<pair> CdProfile() const;
//- Return the instantaneous discharge coefficient
scalar Cd(const scalar time) const;
//- Return the fuel mass fractions of the injected particle
const scalarField& X() const;
//- Return the temperatue profile of the injected parcel
List<pair> T() const;
//- Return the temperatue of the injected parcel
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;
vector tan1(const label n) const;
vector tan2(const label n) const;
void correctProfiles
(
const liquidMixtureProperties& fuel,
const scalar referencePressure
);
bool pressureIndependentVelocity() const
{
return pressureIndependentVelocity_;
}
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //