mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
created incompressible namespace for incompressible LES models
This commit is contained in:
@ -37,7 +37,7 @@
|
|||||||
|
|
||||||
singlePhaseTransportModel laminarTransport(U, phi);
|
singlePhaseTransportModel laminarTransport(U, phi);
|
||||||
|
|
||||||
autoPtr<LESmodel> sgsModel
|
autoPtr<incompressible::LESmodel> sgsModel
|
||||||
(
|
(
|
||||||
LESmodel::New(U, phi, laminarTransport)
|
incompressible::LESmodel::New(U, phi, laminarTransport)
|
||||||
);
|
);
|
||||||
|
|||||||
@ -37,7 +37,7 @@
|
|||||||
|
|
||||||
singlePhaseTransportModel laminarTransport(U, phi);
|
singlePhaseTransportModel laminarTransport(U, phi);
|
||||||
|
|
||||||
autoPtr<LESmodel> sgsModel
|
autoPtr<incompressible::LESmodel> sgsModel
|
||||||
(
|
(
|
||||||
LESmodel::New(U, phi, laminarTransport)
|
incompressible::LESmodel::New(U, phi, laminarTransport)
|
||||||
);
|
);
|
||||||
|
|||||||
@ -146,7 +146,7 @@
|
|||||||
interfaceProperties interface(alpha1, U, twoPhaseProperties);
|
interfaceProperties interface(alpha1, U, twoPhaseProperties);
|
||||||
|
|
||||||
// Construct LES model
|
// Construct LES model
|
||||||
autoPtr<LESmodel> turbulence
|
autoPtr<incompressible::LESmodel> turbulence
|
||||||
(
|
(
|
||||||
LESmodel::New(U, phi, twoPhaseProperties)
|
incompressible::LESmodel::New(U, phi, twoPhaseProperties)
|
||||||
);
|
);
|
||||||
|
|||||||
@ -92,7 +92,7 @@
|
|||||||
interfaceProperties interface(gamma, U, twoPhaseProperties());
|
interfaceProperties interface(gamma, U, twoPhaseProperties());
|
||||||
|
|
||||||
// Construct LES model
|
// Construct LES model
|
||||||
autoPtr<LESmodel> turbulence
|
autoPtr<incompressible::LESmodel> turbulence
|
||||||
(
|
(
|
||||||
LESmodel::New(U, phi, twoPhaseProperties())
|
incompressible::LESmodel::New(U, phi, twoPhaseProperties())
|
||||||
);
|
);
|
||||||
|
|||||||
@ -79,7 +79,7 @@
|
|||||||
twoPhaseMixture twoPhaseProperties(U, phiv, "gamma");
|
twoPhaseMixture twoPhaseProperties(U, phiv, "gamma");
|
||||||
|
|
||||||
// Create LES model
|
// Create LES model
|
||||||
autoPtr<LESmodel> turbulence
|
autoPtr<incompressible::LESmodel> turbulence
|
||||||
(
|
(
|
||||||
LESmodel::New(U, phiv, twoPhaseProperties)
|
incompressible::LESmodel::New(U, phiv, twoPhaseProperties)
|
||||||
);
|
);
|
||||||
|
|||||||
@ -31,6 +31,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -115,6 +117,7 @@ bool devOneEqEddy::read()
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -61,6 +61,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -136,6 +138,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LESmodels
|
} // End namespace LESmodels
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -109,7 +109,7 @@
|
|||||||
interfaceProperties interface(gamma, U, twoPhaseProperties);
|
interfaceProperties interface(gamma, U, twoPhaseProperties);
|
||||||
|
|
||||||
// Construct LES model
|
// Construct LES model
|
||||||
autoPtr<LESmodel> turbulence
|
autoPtr<incompressible::LESmodel> turbulence
|
||||||
(
|
(
|
||||||
LESmodel::New(U, phi, twoPhaseProperties)
|
incompressible::LESmodel::New(U, phi, twoPhaseProperties)
|
||||||
);
|
);
|
||||||
|
|||||||
@ -162,9 +162,9 @@ void Foam::calc(const argList& args, const Time& runTime, const fvMesh& mesh)
|
|||||||
}
|
}
|
||||||
else if (turbulenceProperties.found("LESmodel"))
|
else if (turbulenceProperties.found("LESmodel"))
|
||||||
{
|
{
|
||||||
autoPtr<LESmodel> sgsModel
|
autoPtr<incompressible::LESmodel> sgsModel
|
||||||
(
|
(
|
||||||
LESmodel::New(U, phi, laminarTransport)
|
incompressible::LESmodel::New(U, phi, laminarTransport)
|
||||||
);
|
);
|
||||||
|
|
||||||
execFlowFunctionObjects(args, runTime);
|
execFlowFunctionObjects(args, runTime);
|
||||||
|
|||||||
@ -132,9 +132,9 @@ void Foam::calc(const argList& args, const Time& runTime, const fvMesh& mesh)
|
|||||||
}
|
}
|
||||||
else if (turbulenceProperties.found("LESmodel"))
|
else if (turbulenceProperties.found("LESmodel"))
|
||||||
{
|
{
|
||||||
autoPtr<LESmodel> sgsModel
|
autoPtr<incompressible::LESmodel> sgsModel
|
||||||
(
|
(
|
||||||
LESmodel::New(U, phi, laminarTransport)
|
incompressible::LESmodel::New(U, phi, laminarTransport)
|
||||||
);
|
);
|
||||||
|
|
||||||
PePtr.set
|
PePtr.set
|
||||||
|
|||||||
@ -16,9 +16,9 @@ volVectorField U
|
|||||||
|
|
||||||
singlePhaseTransportModel laminarTransport(U, phi);
|
singlePhaseTransportModel laminarTransport(U, phi);
|
||||||
|
|
||||||
autoPtr<LESmodel> sgsModel
|
autoPtr<incompressible::LESmodel> sgsModel
|
||||||
(
|
(
|
||||||
LESmodel::New(U, phi, laminarTransport)
|
incompressible::LESmodel::New(U, phi, laminarTransport)
|
||||||
);
|
);
|
||||||
|
|
||||||
volScalarField::GeometricBoundaryField d = nearWallDist(mesh).y();
|
volScalarField::GeometricBoundaryField d = nearWallDist(mesh).y();
|
||||||
|
|||||||
@ -83,9 +83,9 @@ int main(int argc, char *argv[])
|
|||||||
|
|
||||||
singlePhaseTransportModel laminarTransport(U, phi);
|
singlePhaseTransportModel laminarTransport(U, phi);
|
||||||
|
|
||||||
autoPtr<LESmodel> sgsModel
|
autoPtr<incompressible::LESmodel> sgsModel
|
||||||
(
|
(
|
||||||
LESmodel::New(U, phi, laminarTransport)
|
incompressible::LESmodel::New(U, phi, laminarTransport)
|
||||||
);
|
);
|
||||||
|
|
||||||
volScalarField::GeometricBoundaryField d = nearWallDist(mesh).y();
|
volScalarField::GeometricBoundaryField d = nearWallDist(mesh).y();
|
||||||
|
|||||||
@ -75,10 +75,10 @@ Foam::tmp<Foam::volSymmTensorField> Foam::forces::devRhoReff() const
|
|||||||
|
|
||||||
return les.devRhoBeff();
|
return les.devRhoBeff();
|
||||||
}
|
}
|
||||||
else if (obr_.foundObject<LESmodel>("turbulenceProperties"))
|
else if (obr_.foundObject<incompressible::LESmodel>("turbulenceProperties"))
|
||||||
{
|
{
|
||||||
const LESmodel& les
|
const incompressible::LESmodel& les
|
||||||
= obr_.lookupObject<LESmodel>("turbulenceProperties");
|
= obr_.lookupObject<incompressible::LESmodel>("turbulenceProperties");
|
||||||
|
|
||||||
return rhoRef_*les.devBeff();
|
return rhoRef_*les.devBeff();
|
||||||
}
|
}
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Namespace
|
Namespace
|
||||||
Foam::compressible::LESmodels
|
Foam::compressible
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Namespace for compressible LES models.
|
Namespace for compressible LES models.
|
||||||
|
|||||||
@ -31,6 +31,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -126,6 +128,7 @@ bool DeardorffDiffStress::read()
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodels::DeardorffDiffStress
|
Foam::incompressible::LES::DeardorffDiffStress
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Differential SGS Stress Equation Model for incompressible flows
|
Differential SGS Stress Equation Model for incompressible flows
|
||||||
@ -60,6 +60,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -128,6 +130,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -30,6 +30,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -110,6 +112,7 @@ bool GenEddyVisc::read()
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodels::GenEddyVisc
|
Foam::incompressible::LES::GenEddyVisc
|
||||||
|
|
||||||
Description
|
Description
|
||||||
General base class for all incompressible models that can be implemented
|
General base class for all incompressible models that can be implemented
|
||||||
@ -46,6 +46,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -129,6 +131,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -30,6 +30,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -174,6 +176,7 @@ bool GenSGSStress::read()
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodels::GenSGSStress
|
Foam::incompressible::LES::GenSGSStress
|
||||||
|
|
||||||
Description
|
Description
|
||||||
General base class for all incompressible models that directly
|
General base class for all incompressible models that directly
|
||||||
@ -47,6 +47,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -137,6 +139,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -31,6 +31,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
||||||
|
|
||||||
@ -132,6 +134,7 @@ bool LESmodel::read()
|
|||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,14 +23,14 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Namespace
|
Namespace
|
||||||
Foam::LESmodels
|
Foam::incompressible
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Namespace for incompressible LES models.
|
Namespace for incompressible LES models.
|
||||||
|
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodel
|
Foam::incompressible::LESmodel
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Base class for all incompressible flow LES SGS models.
|
Base class for all incompressible flow LES SGS models.
|
||||||
@ -64,6 +64,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*\
|
/*---------------------------------------------------------------------------*\
|
||||||
Class LESmodel Declaration
|
Class LESmodel Declaration
|
||||||
@ -263,6 +265,7 @@ public:
|
|||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -30,6 +30,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
@ -83,6 +85,7 @@ autoPtr<LESmodel> LESmodel::New
|
|||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -31,6 +31,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -129,6 +131,7 @@ bool LRRDiffStress::read()
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodels::LRRDiffStress
|
Foam::incompressible::LES::LRRDiffStress
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Differential SGS Stress Equation Model for incompressible flows.
|
Differential SGS Stress Equation Model for incompressible flows.
|
||||||
@ -58,6 +58,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -127,6 +129,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -31,6 +31,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -84,6 +86,7 @@ bool Smagorinsky::read()
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodels::Smagorinsky
|
Foam::incompressible::LES::Smagorinsky
|
||||||
|
|
||||||
Description
|
Description
|
||||||
The Isochoric Smagorinsky Model for incompressible flows.
|
The Isochoric Smagorinsky Model for incompressible flows.
|
||||||
@ -57,6 +57,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -129,6 +131,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -31,6 +31,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -108,6 +110,7 @@ bool Smagorinsky2::read()
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodels::Smagorinsky2
|
Foam::incompressible::LES::Smagorinsky2
|
||||||
|
|
||||||
Description
|
Description
|
||||||
The Isochoric Smagorinsky Model for incompressible flows
|
The Isochoric Smagorinsky Model for incompressible flows
|
||||||
@ -56,6 +56,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -119,6 +121,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -32,6 +32,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -238,6 +240,7 @@ bool SpalartAllmaras::read()
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodels::SpalartAllmaras
|
Foam::incompressible::LES::SpalartAllmaras
|
||||||
|
|
||||||
Description
|
Description
|
||||||
SpalartAllmaras for incompressible flows
|
SpalartAllmaras for incompressible flows
|
||||||
@ -43,6 +43,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -153,6 +155,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -31,6 +31,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -134,6 +136,7 @@ bool dynMixedSmagorinsky::read()
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodels::dynMixedSmagorinsky
|
Foam::incompressible::LES::dynMixedSmagorinsky
|
||||||
|
|
||||||
Description
|
Description
|
||||||
The Mixed Isochoric Smagorinsky Model for incompressible flows.
|
The Mixed Isochoric Smagorinsky Model for incompressible flows.
|
||||||
@ -68,6 +68,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -138,6 +140,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -31,6 +31,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -173,6 +175,7 @@ bool dynOneEqEddy::read()
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodels::dynOneEqEddy
|
Foam::incompressible::LES::dynOneEqEddy
|
||||||
|
|
||||||
Description
|
Description
|
||||||
One Equation Eddy Viscosity Model for incompressible flows.
|
One Equation Eddy Viscosity Model for incompressible flows.
|
||||||
@ -64,6 +64,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -143,6 +145,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -31,6 +31,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -153,6 +155,7 @@ bool dynSmagorinsky::read()
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodels::dynSmagorinsky
|
Foam::incompressible::LES::dynSmagorinsky
|
||||||
|
|
||||||
Description
|
Description
|
||||||
The Isochoric dynamic Smagorinsky Model for incompressible flows.
|
The Isochoric dynamic Smagorinsky Model for incompressible flows.
|
||||||
@ -73,6 +73,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -143,6 +145,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -32,6 +32,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -158,6 +160,7 @@ bool laminar::read()
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodels::laminar
|
Foam::incompressible::LES::laminar
|
||||||
|
|
||||||
Description
|
Description
|
||||||
LES model for laminar incompressible flow.
|
LES model for laminar incompressible flow.
|
||||||
@ -44,6 +44,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -118,6 +120,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -31,6 +31,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -164,6 +166,7 @@ bool locDynOneEqEddy::read()
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodels::locDynOneEqEddy
|
Foam::incompressible::LES::locDynOneEqEddy
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Localised Dynamic One Equation Eddy Viscosity Model for incompressible
|
Localised Dynamic One Equation Eddy Viscosity Model for incompressible
|
||||||
@ -72,6 +72,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -161,6 +163,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -31,6 +31,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -137,6 +139,7 @@ bool mixedSmagorinsky::read()
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodels::mixedSmagorinsky
|
Foam::incompressible::LES::mixedSmagorinsky
|
||||||
|
|
||||||
Description
|
Description
|
||||||
The mixed Isochoric Smagorinsky Model for incompressible flows.
|
The mixed Isochoric Smagorinsky Model for incompressible flows.
|
||||||
@ -67,6 +67,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -144,6 +146,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -31,6 +31,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -113,6 +115,7 @@ bool oneEqEddy::read()
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodels::oneEqEddy
|
Foam::incompressible::LES::oneEqEddy
|
||||||
|
|
||||||
Description
|
Description
|
||||||
One Equation Eddy Viscosity Model for incompressible flows
|
One Equation Eddy Viscosity Model for incompressible flows
|
||||||
@ -61,6 +61,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -136,6 +138,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -30,6 +30,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -116,6 +118,7 @@ bool scaleSimilarity::read()
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodels::scaleSimilarity
|
Foam::incompressible::LES::scaleSimilarity
|
||||||
|
|
||||||
Description
|
Description
|
||||||
General base class for all scale similarity models
|
General base class for all scale similarity models
|
||||||
@ -47,6 +47,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -122,6 +124,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -31,6 +31,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -118,6 +120,7 @@ bool spectEddyVisc::read()
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodels::spectEddyVisc
|
Foam::incompressible::LES::spectEddyVisc
|
||||||
|
|
||||||
Description
|
Description
|
||||||
The Isochoric spectral Eddy Viscosity Model for incompressible flows.
|
The Isochoric spectral Eddy Viscosity Model for incompressible flows.
|
||||||
@ -61,6 +61,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -126,6 +128,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -35,6 +35,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -143,6 +145,7 @@ void vanDriestDelta::correct()
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodels::vanDriestDelta
|
Foam::incompressible::LES::vanDriestDelta
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Simple cube-root of cell volume delta used in incompressible LES models.
|
Simple cube-root of cell volume delta used in incompressible LES models.
|
||||||
@ -42,6 +42,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -102,6 +104,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -34,6 +34,8 @@ License
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -172,6 +174,7 @@ makePatchTypeField(fvPatchScalarField, nuSgsWallFunctionFvPatchScalarField);
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -23,7 +23,7 @@ License
|
|||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::LESmodels::nuSgsWallFunctionFvPatchScalarField
|
Foam::incompressible::LES::nuSgsWallFunctionFvPatchScalarField
|
||||||
|
|
||||||
Description
|
Description
|
||||||
wall function boundary condition for incompressible flows
|
wall function boundary condition for incompressible flows
|
||||||
@ -42,6 +42,8 @@ SourceFiles
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
namespace incompressible
|
||||||
|
{
|
||||||
namespace LES
|
namespace LES
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -139,6 +141,7 @@ public:
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace LES
|
} // End namespace LES
|
||||||
|
} // End namespace incompressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
Reference in New Issue
Block a user