mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Abstracted and made run-time selectable the lift models in twoPhaseEulerFoam
This commit is contained in:
@ -12,4 +12,8 @@ heatTransferModels/heatTransferModel/heatTransferModel.C
|
||||
heatTransferModels/heatTransferModel/newHeatTransferModel.C
|
||||
heatTransferModels/RanzMarshall/RanzMarshall.C
|
||||
|
||||
liftModels/liftModel/liftModel.C
|
||||
liftModels/liftModel/newLiftModel.C
|
||||
liftModels/constantCoefficient/constantCoefficient.C
|
||||
|
||||
LIB = $(FOAM_LIBBIN)/libcompressibleEulerianInterfacialModels
|
||||
|
||||
@ -0,0 +1,86 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2014 OpenFOAM Foundation
|
||||
\\/ 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 "constantCoefficient.H"
|
||||
#include "addToRunTimeSelectionTable.H"
|
||||
#include "fvc.H"
|
||||
|
||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
namespace liftModels
|
||||
{
|
||||
defineTypeNameAndDebug(constantCoefficient, 0);
|
||||
|
||||
addToRunTimeSelectionTable
|
||||
(
|
||||
liftModel,
|
||||
constantCoefficient,
|
||||
dictionary
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
||||
|
||||
Foam::liftModels::constantCoefficient::constantCoefficient
|
||||
(
|
||||
const dictionary& dict,
|
||||
const volScalarField& alpha1,
|
||||
const phaseModel& phase1,
|
||||
const phaseModel& phase2
|
||||
)
|
||||
:
|
||||
liftModel(dict, alpha1, phase1, phase2),
|
||||
Cl_("Cl", dimless, dict.lookup("Cl"))
|
||||
{}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
||||
|
||||
Foam::liftModels::constantCoefficient::~constantCoefficient()
|
||||
{}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
||||
|
||||
Foam::tmp<Foam::volVectorField> Foam::liftModels::constantCoefficient::F
|
||||
(
|
||||
const volVectorField& U
|
||||
) const
|
||||
{
|
||||
return
|
||||
Cl_
|
||||
*(phase1_*phase1_.rho() + phase2_*phase2_.rho())
|
||||
*(
|
||||
(phase1_.U() - phase2_.U())
|
||||
^ fvc::curl(U)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,98 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2014 OpenFOAM Foundation
|
||||
\\/ 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::liftModels::constantCoefficient
|
||||
|
||||
Description
|
||||
|
||||
SourceFiles
|
||||
constantCoefficient.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
#ifndef constantCoefficient_H
|
||||
#define constantCoefficient_H
|
||||
|
||||
#include "liftModel.H"
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
namespace liftModels
|
||||
{
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class constantCoefficient Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
class constantCoefficient
|
||||
:
|
||||
public liftModel
|
||||
{
|
||||
// Private data
|
||||
|
||||
//- Constant lift coefficient
|
||||
dimensionedScalar Cl_;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("constantCoefficient");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
||||
//- Construct from components
|
||||
constantCoefficient
|
||||
(
|
||||
const dictionary& dict,
|
||||
const volScalarField& alpha1,
|
||||
const phaseModel& phase1,
|
||||
const phaseModel& phase2
|
||||
);
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~constantCoefficient();
|
||||
|
||||
|
||||
// Member Functions
|
||||
|
||||
//- Lift force
|
||||
tmp<volVectorField> F(const volVectorField& U) const;
|
||||
};
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
} // End namespace liftModels
|
||||
} // End namespace Foam
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#endif
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,60 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2014 OpenFOAM Foundation
|
||||
\\/ 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 "liftModel.H"
|
||||
|
||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
defineTypeNameAndDebug(liftModel, 0);
|
||||
defineRunTimeSelectionTable(liftModel, dictionary);
|
||||
}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
||||
|
||||
Foam::liftModel::liftModel
|
||||
(
|
||||
const dictionary& dict,
|
||||
const volScalarField& alpha1,
|
||||
const phaseModel& phase1,
|
||||
const phaseModel& phase2
|
||||
)
|
||||
:
|
||||
dict_(dict),
|
||||
alpha1_(alpha1),
|
||||
phase1_(phase1),
|
||||
phase2_(phase2)
|
||||
{}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
||||
|
||||
Foam::liftModel::~liftModel()
|
||||
{}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,127 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2014 OpenFOAM Foundation
|
||||
\\/ 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::liftModel
|
||||
|
||||
Description
|
||||
|
||||
SourceFiles
|
||||
liftModel.C
|
||||
newLiftModel.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
#ifndef liftModel_H
|
||||
#define liftModel_H
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#include "dictionary.H"
|
||||
#include "phaseModel.H"
|
||||
#include "runTimeSelectionTables.H"
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class liftModel Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
class liftModel
|
||||
{
|
||||
protected:
|
||||
|
||||
// Protected data
|
||||
|
||||
const dictionary& dict_;
|
||||
const volScalarField& alpha1_;
|
||||
const phaseModel& phase1_;
|
||||
const phaseModel& phase2_;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("liftModel");
|
||||
|
||||
|
||||
// Declare runtime construction
|
||||
|
||||
declareRunTimeSelectionTable
|
||||
(
|
||||
autoPtr,
|
||||
liftModel,
|
||||
dictionary,
|
||||
(
|
||||
const dictionary& dict,
|
||||
const volScalarField& alpha1,
|
||||
const phaseModel& phase1,
|
||||
const phaseModel& phase2
|
||||
),
|
||||
(dict, alpha1, phase1, phase2)
|
||||
);
|
||||
|
||||
|
||||
// Constructors
|
||||
|
||||
liftModel
|
||||
(
|
||||
const dictionary& dict,
|
||||
const volScalarField& alpha1,
|
||||
const phaseModel& phase1,
|
||||
const phaseModel& phase2
|
||||
);
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~liftModel();
|
||||
|
||||
|
||||
// Selectors
|
||||
|
||||
static autoPtr<liftModel> New
|
||||
(
|
||||
const dictionary& dict,
|
||||
const volScalarField& alpha1,
|
||||
const phaseModel& phase1,
|
||||
const phaseModel& phase2
|
||||
);
|
||||
|
||||
|
||||
// Member Functions
|
||||
|
||||
//- Lift force
|
||||
virtual tmp<volVectorField> F(const volVectorField& U) const = 0;
|
||||
};
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
} // End namespace Foam
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#endif
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,72 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2014 OpenFOAM Foundation
|
||||
\\/ 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 "liftModel.H"
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
Foam::autoPtr<Foam::liftModel> Foam::liftModel::New
|
||||
(
|
||||
const dictionary& dict,
|
||||
const volScalarField& alpha1,
|
||||
const phaseModel& phase1,
|
||||
const phaseModel& phase2
|
||||
)
|
||||
{
|
||||
word liftModelType
|
||||
(
|
||||
dict.subDict(phase1.name()).lookup("type")
|
||||
);
|
||||
|
||||
Info << "Selecting liftModel for phase "
|
||||
<< phase1.name()
|
||||
<< ": "
|
||||
<< liftModelType << endl;
|
||||
|
||||
dictionaryConstructorTable::iterator cstrIter =
|
||||
dictionaryConstructorTablePtr_->find(liftModelType);
|
||||
|
||||
if (cstrIter == dictionaryConstructorTablePtr_->end())
|
||||
{
|
||||
FatalErrorIn("liftModel::New")
|
||||
<< "Unknown liftModelType type "
|
||||
<< liftModelType << endl << endl
|
||||
<< "Valid liftModel types are : " << endl
|
||||
<< dictionaryConstructorTablePtr_->sortedToc()
|
||||
<< exit(FatalError);
|
||||
}
|
||||
|
||||
return
|
||||
cstrIter()
|
||||
(
|
||||
dict.subDict(phase1.name()).subDict(liftModelType + "Coeffs"),
|
||||
alpha1,
|
||||
phase1,
|
||||
phase2
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2013-2014 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -111,13 +111,6 @@ Foam::twoPhaseSystem::twoPhaseSystem
|
||||
lookup("Cvm")
|
||||
),
|
||||
|
||||
Cl_
|
||||
(
|
||||
"Cl",
|
||||
dimless,
|
||||
lookup("Cl")
|
||||
),
|
||||
|
||||
drag1_
|
||||
(
|
||||
dragModel::New
|
||||
@ -162,6 +155,28 @@ Foam::twoPhaseSystem::twoPhaseSystem
|
||||
)
|
||||
),
|
||||
|
||||
lift1_
|
||||
(
|
||||
liftModel::New
|
||||
(
|
||||
subDict("lift"),
|
||||
phase1_,
|
||||
phase1_,
|
||||
phase2_
|
||||
)
|
||||
),
|
||||
|
||||
lift2_
|
||||
(
|
||||
liftModel::New
|
||||
(
|
||||
subDict("lift"),
|
||||
phase2_,
|
||||
phase2_,
|
||||
phase1_
|
||||
)
|
||||
),
|
||||
|
||||
dispersedPhase_(lookup("dispersedPhase")),
|
||||
|
||||
residualPhaseFraction_
|
||||
@ -311,11 +326,28 @@ Foam::tmp<Foam::volVectorField> Foam::twoPhaseSystem::liftForce
|
||||
);
|
||||
volVectorField& liftForce = tliftForce();
|
||||
|
||||
volVectorField Ur(phase1_.U() - phase2_.U());
|
||||
|
||||
if (dispersedPhase_ == phase1_.name())
|
||||
{
|
||||
liftForce = lift1().F(U);
|
||||
}
|
||||
else if (dispersedPhase_ == phase2_.name())
|
||||
{
|
||||
liftForce = lift2().F(U);
|
||||
}
|
||||
else if (dispersedPhase_ == "both")
|
||||
{
|
||||
liftForce =
|
||||
Cl_*(phase1_*phase1_.rho() + phase2_*phase2_.rho())
|
||||
*(Ur ^ fvc::curl(U));
|
||||
(
|
||||
phase2_*lift1().F(U)
|
||||
+ phase1_*lift2().F(U)
|
||||
);
|
||||
}
|
||||
else
|
||||
{
|
||||
FatalErrorIn("twoPhaseSystem::liftForce()")
|
||||
<< "dispersedPhase: " << dispersedPhase_ << " is incorrect"
|
||||
<< exit(FatalError);
|
||||
}
|
||||
|
||||
// Remove lift at fixed-flux boundaries
|
||||
forAll(phase1_.phi().boundaryField(), patchi)
|
||||
@ -631,7 +663,6 @@ bool Foam::twoPhaseSystem::read()
|
||||
|
||||
lookup("sigma") >> sigma_;
|
||||
lookup("Cvm") >> Cvm_;
|
||||
lookup("Cl") >> Cl_;
|
||||
|
||||
// drag1_->read(*this);
|
||||
// drag2_->read(*this);
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2013-2014 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -45,6 +45,7 @@ SourceFiles
|
||||
#include "IOdictionary.H"
|
||||
#include "phaseModel.H"
|
||||
#include "dragModel.H"
|
||||
#include "liftModel.H"
|
||||
#include "heatTransferModel.H"
|
||||
#include "volFields.H"
|
||||
#include "surfaceFields.H"
|
||||
@ -57,7 +58,7 @@ namespace Foam
|
||||
// Forward declarations
|
||||
class dragModel;
|
||||
class heatTransferModel;
|
||||
|
||||
class liftModel;
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class twoPhaseSystem Declaration
|
||||
@ -69,31 +70,57 @@ class twoPhaseSystem
|
||||
{
|
||||
// Private data
|
||||
|
||||
//- Reference to the mesh
|
||||
const fvMesh& mesh_;
|
||||
|
||||
//- Phase model 1
|
||||
phaseModel phase1_;
|
||||
|
||||
//- Phase model 2
|
||||
phaseModel phase2_;
|
||||
|
||||
//- Total volumetric flux
|
||||
surfaceScalarField phi_;
|
||||
|
||||
//-
|
||||
volScalarField dgdt_;
|
||||
|
||||
//- Surface tension coefficient
|
||||
dimensionedScalar sigma_;
|
||||
|
||||
//- Virtual mass coefficient
|
||||
dimensionedScalar Cvm_;
|
||||
dimensionedScalar Cl_;
|
||||
|
||||
//- Drag model for phase 1
|
||||
autoPtr<dragModel> drag1_;
|
||||
|
||||
//- Drag model for phase 2
|
||||
autoPtr<dragModel> drag2_;
|
||||
|
||||
//- Heat transfer model for phase 1
|
||||
autoPtr<heatTransferModel> heatTransfer1_;
|
||||
|
||||
//- Heat transfer model for phase 2
|
||||
autoPtr<heatTransferModel> heatTransfer2_;
|
||||
|
||||
//- Lift model for phase 1
|
||||
autoPtr<liftModel> lift1_;
|
||||
|
||||
//- Lift model for phase 2
|
||||
autoPtr<liftModel> lift2_;
|
||||
|
||||
//- Name of the dispersed phase, or "both"
|
||||
word dispersedPhase_;
|
||||
|
||||
//- Residual phase fraction
|
||||
scalar residualPhaseFraction_;
|
||||
|
||||
//- Redisual slip
|
||||
dimensionedScalar residualSlip_;
|
||||
|
||||
|
||||
// Private member functions
|
||||
|
||||
//- Return the mixture flux
|
||||
tmp<surfaceScalarField> calcPhi() const;
|
||||
|
||||
@ -113,136 +140,21 @@ public:
|
||||
|
||||
// Member Functions
|
||||
|
||||
const fvMesh& mesh() const
|
||||
{
|
||||
return mesh_;
|
||||
}
|
||||
|
||||
const phaseModel& phase1() const
|
||||
{
|
||||
return phase1_;
|
||||
}
|
||||
|
||||
const phaseModel& phase2() const
|
||||
{
|
||||
return phase2_;
|
||||
}
|
||||
|
||||
const phaseModel& otherPhase(const phaseModel& phase) const
|
||||
{
|
||||
if (&phase == &phase1_)
|
||||
{
|
||||
return phase2_;
|
||||
}
|
||||
else
|
||||
{
|
||||
return phase1_;
|
||||
}
|
||||
}
|
||||
|
||||
phaseModel& phase1()
|
||||
{
|
||||
return phase1_;
|
||||
}
|
||||
|
||||
phaseModel& phase2()
|
||||
{
|
||||
return phase2_;
|
||||
}
|
||||
|
||||
//- Return the mixture flux
|
||||
const surfaceScalarField& phi() const
|
||||
{
|
||||
return phi_;
|
||||
}
|
||||
|
||||
//- Return the mixture flux
|
||||
surfaceScalarField& phi()
|
||||
{
|
||||
return phi_;
|
||||
}
|
||||
|
||||
const volScalarField& dgdt() const
|
||||
{
|
||||
return dgdt_;
|
||||
}
|
||||
|
||||
volScalarField& dgdt()
|
||||
{
|
||||
return dgdt_;
|
||||
}
|
||||
|
||||
const dragModel& drag1() const
|
||||
{
|
||||
return drag1_();
|
||||
}
|
||||
|
||||
const dragModel& drag2() const
|
||||
{
|
||||
return drag2_();
|
||||
}
|
||||
|
||||
const dragModel& drag(const phaseModel& phase) const
|
||||
{
|
||||
if (&phase == &phase1_)
|
||||
{
|
||||
return drag1_();
|
||||
}
|
||||
else
|
||||
{
|
||||
return drag2_();
|
||||
}
|
||||
}
|
||||
|
||||
scalar residualPhaseFraction() const
|
||||
{
|
||||
return residualPhaseFraction_;
|
||||
}
|
||||
|
||||
const dimensionedScalar& residualSlip() const
|
||||
{
|
||||
return residualSlip_;
|
||||
}
|
||||
|
||||
//- Return the drag coefficient
|
||||
tmp<volScalarField> dragCoeff() const;
|
||||
tmp<volVectorField> liftForce(const volVectorField& U) const;
|
||||
|
||||
const heatTransferModel& heatTransfer1() const
|
||||
{
|
||||
return heatTransfer1_();
|
||||
}
|
||||
|
||||
const heatTransferModel& heatTransfer2() const
|
||||
{
|
||||
return heatTransfer2_();
|
||||
}
|
||||
|
||||
//- Return the heat transfer coefficient
|
||||
tmp<volScalarField> heatTransferCoeff() const;
|
||||
|
||||
//- Return the lift force
|
||||
tmp<volVectorField> liftForce(const volVectorField& U) const;
|
||||
|
||||
//- Return the mixture density
|
||||
tmp<volScalarField> rho() const;
|
||||
|
||||
//- Return the mixture velocity
|
||||
tmp<volVectorField> U() const;
|
||||
|
||||
//- Return the surface tension coefficient
|
||||
dimensionedScalar sigma() const
|
||||
{
|
||||
return sigma_;
|
||||
}
|
||||
|
||||
//- Return the virtual-mass coefficient
|
||||
dimensionedScalar Cvm() const
|
||||
{
|
||||
return Cvm_;
|
||||
}
|
||||
|
||||
//- Return the lift coefficient
|
||||
dimensionedScalar Cl() const
|
||||
{
|
||||
return Cl_;
|
||||
}
|
||||
|
||||
//- Solve for the two-phase-fractions
|
||||
void solve();
|
||||
|
||||
@ -254,6 +166,148 @@ public:
|
||||
|
||||
//- Read base phaseProperties dictionary
|
||||
bool read();
|
||||
|
||||
// Access
|
||||
|
||||
//- Return the mesh
|
||||
const fvMesh& mesh() const
|
||||
{
|
||||
return mesh_;
|
||||
}
|
||||
|
||||
//- Return phase model 1
|
||||
const phaseModel& phase1() const
|
||||
{
|
||||
return phase1_;
|
||||
}
|
||||
|
||||
//- Return non-const access to phase model 1
|
||||
phaseModel& phase1()
|
||||
{
|
||||
return phase1_;
|
||||
}
|
||||
|
||||
//- Return phase model 2
|
||||
const phaseModel& phase2() const
|
||||
{
|
||||
return phase2_;
|
||||
}
|
||||
|
||||
//- Return non-const access to phase model 2
|
||||
phaseModel& phase2()
|
||||
{
|
||||
return phase2_;
|
||||
}
|
||||
|
||||
//- Return the phase not given as an argument
|
||||
const phaseModel& otherPhase(const phaseModel& phase) const
|
||||
{
|
||||
if (&phase == &phase1_)
|
||||
{
|
||||
return phase2_;
|
||||
}
|
||||
else
|
||||
{
|
||||
return phase1_;
|
||||
}
|
||||
}
|
||||
|
||||
//- Return the mixture flux
|
||||
const surfaceScalarField& phi() const
|
||||
{
|
||||
return phi_;
|
||||
}
|
||||
|
||||
//- Return non-const access to the the mixture flux
|
||||
surfaceScalarField& phi()
|
||||
{
|
||||
return phi_;
|
||||
}
|
||||
|
||||
//- Return
|
||||
const volScalarField& dgdt() const
|
||||
{
|
||||
return dgdt_;
|
||||
}
|
||||
|
||||
//- Return non-const access to the
|
||||
volScalarField& dgdt()
|
||||
{
|
||||
return dgdt_;
|
||||
}
|
||||
|
||||
//- Return the drag model for phase 1
|
||||
const dragModel& drag1() const
|
||||
{
|
||||
return drag1_();
|
||||
}
|
||||
|
||||
//- Return the drag model for phase 2
|
||||
const dragModel& drag2() const
|
||||
{
|
||||
return drag2_();
|
||||
}
|
||||
|
||||
//- Return the drag model for the supplied phase
|
||||
const dragModel& drag(const phaseModel& phase) const
|
||||
{
|
||||
if (&phase == &phase1_)
|
||||
{
|
||||
return drag1_();
|
||||
}
|
||||
else
|
||||
{
|
||||
return drag2_();
|
||||
}
|
||||
}
|
||||
|
||||
//- Return non-const access to the residual phase fraction
|
||||
scalar residualPhaseFraction() const
|
||||
{
|
||||
return residualPhaseFraction_;
|
||||
}
|
||||
|
||||
//- Return the residual slip
|
||||
const dimensionedScalar& residualSlip() const
|
||||
{
|
||||
return residualSlip_;
|
||||
}
|
||||
|
||||
//- Return the heat transfer model for phase 1
|
||||
const heatTransferModel& heatTransfer1() const
|
||||
{
|
||||
return heatTransfer1_();
|
||||
}
|
||||
|
||||
//- Return the heat transfer model for phase 2
|
||||
const heatTransferModel& heatTransfer2() const
|
||||
{
|
||||
return heatTransfer2_();
|
||||
}
|
||||
|
||||
//- Return the lift model for phase 1
|
||||
const liftModel& lift1() const
|
||||
{
|
||||
return lift1_();
|
||||
}
|
||||
|
||||
//- Return the lift model for phase 2
|
||||
const liftModel& lift2() const
|
||||
{
|
||||
return lift2_();
|
||||
}
|
||||
|
||||
//- Return the surface tension coefficient
|
||||
dimensionedScalar sigma() const
|
||||
{
|
||||
return sigma_;
|
||||
}
|
||||
|
||||
//- Return the virtual-mass coefficient
|
||||
dimensionedScalar Cvm() const
|
||||
{
|
||||
return Cvm_;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -51,6 +51,26 @@ heatTransfer
|
||||
water RanzMarshall;
|
||||
}
|
||||
|
||||
lift
|
||||
{
|
||||
air
|
||||
{
|
||||
type constantCoefficient;
|
||||
constantCoefficientCoeffs
|
||||
{
|
||||
Cl 0;
|
||||
}
|
||||
}
|
||||
water
|
||||
{
|
||||
type constantCoefficient;
|
||||
constantCoefficientCoeffs
|
||||
{
|
||||
Cl 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dispersedPhase both;
|
||||
|
||||
residualPhaseFraction 1e-3;
|
||||
@ -59,9 +79,6 @@ residualSlip 1e-2;
|
||||
// Virtual-mass coefficient
|
||||
Cvm 0.5;
|
||||
|
||||
// Lift coefficient
|
||||
Cl 0;
|
||||
|
||||
// Dispersed-phase turbulence coefficient
|
||||
Ct 1;
|
||||
|
||||
|
||||
@ -51,6 +51,26 @@ heatTransfer
|
||||
water RanzMarshall;
|
||||
}
|
||||
|
||||
lift
|
||||
{
|
||||
air
|
||||
{
|
||||
type constantCoefficient;
|
||||
constantCoefficientCoeffs
|
||||
{
|
||||
Cl 0;
|
||||
}
|
||||
}
|
||||
water
|
||||
{
|
||||
type constantCoefficient;
|
||||
constantCoefficientCoeffs
|
||||
{
|
||||
Cl 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dispersedPhase both;
|
||||
|
||||
residualPhaseFraction 1e-3;
|
||||
@ -59,9 +79,6 @@ residualSlip 1e-2;
|
||||
// Virtual-mass coefficient
|
||||
Cvm 0.5;
|
||||
|
||||
// Lift coefficient
|
||||
Cl 0;
|
||||
|
||||
// Dispersed-phase turbulence coefficient
|
||||
Ct 1;
|
||||
|
||||
|
||||
@ -50,6 +50,26 @@ heatTransfer
|
||||
air RanzMarshall;
|
||||
}
|
||||
|
||||
lift
|
||||
{
|
||||
particles
|
||||
{
|
||||
type constantCoefficient;
|
||||
constantCoefficientCoeffs
|
||||
{
|
||||
Cl 0;
|
||||
}
|
||||
}
|
||||
air
|
||||
{
|
||||
type constantCoefficient;
|
||||
constantCoefficientCoeffs
|
||||
{
|
||||
Cl 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dispersedPhase particles;
|
||||
|
||||
residualPhaseFraction 1e-3;
|
||||
@ -58,9 +78,6 @@ residualSlip 1e-2;
|
||||
// Virtual-mass coefficient
|
||||
Cvm 0;
|
||||
|
||||
// Lift coefficient
|
||||
Cl 0;
|
||||
|
||||
// Minimum allowable pressure
|
||||
pMin 10000;
|
||||
|
||||
|
||||
@ -51,6 +51,26 @@ heatTransfer
|
||||
water RanzMarshall;
|
||||
}
|
||||
|
||||
lift
|
||||
{
|
||||
air
|
||||
{
|
||||
type constantCoefficient;
|
||||
constantCoefficientCoeffs
|
||||
{
|
||||
Cl 0;
|
||||
}
|
||||
}
|
||||
water
|
||||
{
|
||||
type constantCoefficient;
|
||||
constantCoefficientCoeffs
|
||||
{
|
||||
Cl 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dispersedPhase both;
|
||||
|
||||
residualPhaseFraction 1e-3;
|
||||
@ -59,9 +79,6 @@ residualSlip 1e-2;
|
||||
// Virtual-mass ceofficient
|
||||
Cvm 0.5;
|
||||
|
||||
// Lift coefficient
|
||||
Cl 0;
|
||||
|
||||
// Minimum allowable pressure
|
||||
pMin 10000;
|
||||
|
||||
|
||||
@ -71,6 +71,26 @@ heatTransfer
|
||||
water RanzMarshall;
|
||||
}
|
||||
|
||||
lift
|
||||
{
|
||||
air
|
||||
{
|
||||
type constantCoefficient;
|
||||
constantCoefficientCoeffs
|
||||
{
|
||||
Cl 0;
|
||||
}
|
||||
}
|
||||
water
|
||||
{
|
||||
type constantCoefficient;
|
||||
constantCoefficientCoeffs
|
||||
{
|
||||
Cl 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dispersedPhase both;
|
||||
|
||||
residualPhaseFraction 1e-3;
|
||||
@ -79,9 +99,6 @@ residualSlip 1e-2;
|
||||
// Virtual-mass ceofficient
|
||||
Cvm 0.5;
|
||||
|
||||
// Lift coefficient
|
||||
Cl 0;
|
||||
|
||||
// Minimum allowable pressure
|
||||
pMin 10000;
|
||||
|
||||
|
||||
@ -50,6 +50,26 @@ heatTransfer
|
||||
air RanzMarshall;
|
||||
}
|
||||
|
||||
lift
|
||||
{
|
||||
particles
|
||||
{
|
||||
type constantCoefficient;
|
||||
constantCoefficientCoeffs
|
||||
{
|
||||
Cl 0;
|
||||
}
|
||||
}
|
||||
air
|
||||
{
|
||||
type constantCoefficient;
|
||||
constantCoefficientCoeffs
|
||||
{
|
||||
Cl 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dispersedPhase particles;
|
||||
|
||||
residualPhaseFraction 1e-3;
|
||||
@ -58,9 +78,6 @@ residualSlip 1e-2;
|
||||
// Virtual-mass ceofficient
|
||||
Cvm 0;
|
||||
|
||||
// Lift coefficient
|
||||
Cl 0;
|
||||
|
||||
// Minimum allowable pressure
|
||||
pMin 10000;
|
||||
|
||||
|
||||
@ -51,6 +51,26 @@ heatTransfer
|
||||
water RanzMarshall;
|
||||
}
|
||||
|
||||
lift
|
||||
{
|
||||
air
|
||||
{
|
||||
type constantCoefficient;
|
||||
constantCoefficientCoeffs
|
||||
{
|
||||
Cl 0;
|
||||
}
|
||||
}
|
||||
water
|
||||
{
|
||||
type constantCoefficient;
|
||||
constantCoefficientCoeffs
|
||||
{
|
||||
Cl 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dispersedPhase both;
|
||||
|
||||
residualPhaseFraction 1e-3;
|
||||
@ -59,9 +79,6 @@ residualSlip 1e-2;
|
||||
// Virtual-mass coefficient
|
||||
Cvm 0.5;
|
||||
|
||||
// Lift coefficient
|
||||
Cl 0;
|
||||
|
||||
// Minimum allowable pressure
|
||||
pMin 10000;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user