diff --git a/applications/utilities/miscellaneous/foamDebugSwitches/Make/options b/applications/utilities/miscellaneous/foamDebugSwitches/Make/options index 43615129c9..6fe40ed9f1 100644 --- a/applications/utilities/miscellaneous/foamDebugSwitches/Make/options +++ b/applications/utilities/miscellaneous/foamDebugSwitches/Make/options @@ -56,7 +56,6 @@ EXE_LIBS = \ -lsolidMixtureProperties \ -lsolidParticle \ -lsolidProperties \ - -lsolid \ -lspecie \ -lsurfaceFilmModels \ -lsurfMesh \ diff --git a/applications/utilities/postProcessing/wall/wallHeatFlux/Make/options b/applications/utilities/postProcessing/wall/wallHeatFlux/Make/options index 38f94e13c7..444af26ce0 100644 --- a/applications/utilities/postProcessing/wall/wallHeatFlux/Make/options +++ b/applications/utilities/postProcessing/wall/wallHeatFlux/Make/options @@ -13,6 +13,5 @@ EXE_LIBS = \ -lfiniteVolume \ -lgenericPatchFields \ -lspecie \ - -lsolid \ -lfluidThermophysicalModels \ -lsolidThermo diff --git a/src/OpenFOAM/db/runTimeSelection/construction/runTimeSelectionTables.H b/src/OpenFOAM/db/runTimeSelection/construction/runTimeSelectionTables.H index 4576661137..b49ab8ccb9 100644 --- a/src/OpenFOAM/db/runTimeSelection/construction/runTimeSelectionTables.H +++ b/src/OpenFOAM/db/runTimeSelection/construction/runTimeSelectionTables.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -82,7 +82,13 @@ Description ) \ { \ construct##argNames##ConstructorTables(); \ - argNames##ConstructorTablePtr_->insert(lookup, New); \ + if (!argNames##ConstructorTablePtr_->insert(lookup, New)) \ + { \ + std::cerr<< "Duplicate entry " << lookup \ + << " in runtime selection table " << #baseType \ + << std::endl; \ + error::safePrintStack(std::cerr); \ + } \ } \ \ ~add##argNames##ConstructorToTable() \ @@ -167,11 +173,20 @@ Description ) \ { \ construct##argNames##ConstructorTables(); \ - argNames##ConstructorTablePtr_->insert \ + if \ ( \ - lookup, \ - New##baseType \ - ); \ + !argNames##ConstructorTablePtr_->insert \ + ( \ + lookup, \ + New##baseType \ + ) \ + ) \ + { \ + std::cerr<< "Duplicate entry " << lookup \ + << " in runtime selection table " << #baseType \ + << std::endl; \ + error::safePrintStack(std::cerr); \ + } \ } \ \ ~add##argNames##ConstructorToTable() \ diff --git a/src/finiteVolume/Make/files b/src/finiteVolume/Make/files index 6e19f299f0..58c0b57673 100644 --- a/src/finiteVolume/Make/files +++ b/src/finiteVolume/Make/files @@ -84,7 +84,6 @@ fvPatchFields = fields/fvPatchFields $(fvPatchFields)/fvPatchField/fvPatchFields.C basicFvPatchFields = $(fvPatchFields)/basic -$(basicFvPatchFields)/basicSymmetry/basicSymmetryFvPatchFields.C $(basicFvPatchFields)/basicSymmetry/basicSymmetryFvPatchScalarField.C $(basicFvPatchFields)/calculated/calculatedFvPatchFields.C $(basicFvPatchFields)/coupled/coupledFvPatchFields.C diff --git a/src/finiteVolume/fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchField.H index 2e19ff1d2c..c6caad802e 100644 --- a/src/finiteVolume/fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchField.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -58,10 +58,6 @@ class basicSymmetryFvPatchField public: - //- Runtime type information - TypeName(symmetryFvPatch::typeName_()); - - // Constructors //- Construct from patch and internal field diff --git a/src/finiteVolume/interpolation/surfaceInterpolation/limitedSchemes/MUSCL/MUSCL.C b/src/finiteVolume/interpolation/surfaceInterpolation/limitedSchemes/MUSCL/MUSCL.C index 2b23afdabd..f58b91238e 100644 --- a/src/finiteVolume/interpolation/surfaceInterpolation/limitedSchemes/MUSCL/MUSCL.C +++ b/src/finiteVolume/interpolation/surfaceInterpolation/limitedSchemes/MUSCL/MUSCL.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -54,6 +54,7 @@ namespace Foam scalar ) +/* makeLimitedSurfaceInterpolationTypeScheme ( MUSCL, @@ -71,6 +72,7 @@ namespace Foam rhoMagSqr, vector ) +*/ } // ************************************************************************* // diff --git a/src/mesh/autoMesh/autoHexMesh/autoHexMeshDriver/autoSnapDriverFeature.C b/src/mesh/autoMesh/autoHexMesh/autoHexMeshDriver/autoSnapDriverFeature.C index 7124875465..828ee0e710 100644 --- a/src/mesh/autoMesh/autoHexMesh/autoHexMeshDriver/autoSnapDriverFeature.C +++ b/src/mesh/autoMesh/autoHexMesh/autoHexMeshDriver/autoSnapDriverFeature.C @@ -1323,7 +1323,7 @@ Foam::labelPair Foam::autoSnapDriver::findNearFeaturePoint patchConstraints[oldPointI] = pointConstraint(); label edgeFeatI; - const pointIndexHit nearInfo = findNearFeatureEdge + findNearFeatureEdge ( pp, snapDist, @@ -1919,7 +1919,7 @@ void Foam::autoSnapDriver::featureAttractionUsingFeatureEdges // the old point to attract to nearest edge // instead. label edgeFeatI; - const pointIndexHit nearInfo = findNearFeatureEdge + findNearFeatureEdge ( pp, snapDist, @@ -1950,7 +1950,7 @@ void Foam::autoSnapDriver::featureAttractionUsingFeatureEdges // << endl; label featI; - const pointIndexHit nearInfo = findNearFeatureEdge + findNearFeatureEdge ( pp, snapDist, diff --git a/src/turbulenceModels/LES/LESdeltas/LESdelta/LESdelta.C b/src/turbulenceModels/LES/LESdeltas/LESdelta/LESdelta.C index c329bcc692..5a8ff1c3fb 100644 --- a/src/turbulenceModels/LES/LESdeltas/LESdelta/LESdelta.C +++ b/src/turbulenceModels/LES/LESdeltas/LESdelta/LESdelta.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -67,6 +67,8 @@ Foam::autoPtr Foam::LESdelta::New { const word deltaType(dict.lookup("delta")); + Info<< "Selecting LES delta type " << deltaType << endl; + dictionaryConstructorTable::iterator cstrIter = dictionaryConstructorTablePtr_->find(deltaType); @@ -86,4 +88,51 @@ Foam::autoPtr Foam::LESdelta::New } +Foam::autoPtr Foam::LESdelta::New +( + const word& name, + const fvMesh& mesh, + const dictionary& dict, + const dictionaryConstructorTable& additionalConstructors +) +{ + const word deltaType(dict.lookup("delta")); + + Info<< "Selecting LES delta type " << deltaType << endl; + + // First on additional ones + dictionaryConstructorTable::const_iterator cstrIter = + additionalConstructors.find(deltaType); + + if (cstrIter != additionalConstructors.end()) + { + return autoPtr(cstrIter()(name, mesh, dict)); + } + else + { + dictionaryConstructorTable::const_iterator cstrIter = + dictionaryConstructorTablePtr_->find(deltaType); + + if (cstrIter == dictionaryConstructorTablePtr_->end()) + { + FatalErrorIn + ( + "LESdelta::New(const fvMesh&, const dictionary&)" + ) << "Unknown LESdelta type " + << deltaType << nl << nl + << "Valid LESdelta types are :" << endl + << additionalConstructors.sortedToc() + << " and " + << dictionaryConstructorTablePtr_->sortedToc() + << exit(FatalError); + return autoPtr(); + } + else + { + return autoPtr(cstrIter()(name, mesh, dict)); + } + } +} + + // ************************************************************************* // diff --git a/src/turbulenceModels/LES/LESdeltas/LESdelta/LESdelta.H b/src/turbulenceModels/LES/LESdeltas/LESdelta/LESdelta.H index 9cd15b507b..c84ae74c3b 100644 --- a/src/turbulenceModels/LES/LESdeltas/LESdelta/LESdelta.H +++ b/src/turbulenceModels/LES/LESdeltas/LESdelta/LESdelta.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -29,7 +29,6 @@ Description SourceFiles LESdelta.C - newDelta.C \*---------------------------------------------------------------------------*/ @@ -111,6 +110,15 @@ public: const dictionary& ); + //- Return a reference to the selected LES delta + static autoPtr New + ( + const word& name, + const fvMesh&, + const dictionary&, + const dictionaryConstructorTable& + ); + //- Destructor virtual ~LESdelta() diff --git a/src/turbulenceModels/compressible/LES/LESModel/LESModel.H b/src/turbulenceModels/compressible/LES/LESModel/LESModel.H index f33a1681dc..b7d3c45c0c 100644 --- a/src/turbulenceModels/compressible/LES/LESModel/LESModel.H +++ b/src/turbulenceModels/compressible/LES/LESModel/LESModel.H @@ -51,7 +51,7 @@ SourceFiles #define compressibleLESModel_H #include "compressible/turbulenceModel/turbulenceModel.H" -#include "LESdelta.H" +#include "compressibleLESdelta.H" #include "fvm.H" #include "fvc.H" #include "fvMatrices.H" @@ -86,7 +86,7 @@ protected: dimensionedScalar kMin_; - autoPtr delta_; + autoPtr delta_; // Protected Member Functions diff --git a/src/turbulenceModels/compressible/LES/Make/files b/src/turbulenceModels/compressible/LES/Make/files index 1ed6bd6b4b..58e7485772 100644 --- a/src/turbulenceModels/compressible/LES/Make/files +++ b/src/turbulenceModels/compressible/LES/Make/files @@ -10,6 +10,7 @@ homogeneousDynOneEqEddy/homogeneousDynOneEqEddy.C DeardorffDiffStress/DeardorffDiffStress.C SpalartAllmaras/SpalartAllmaras.C +compressibleLESdelta/compressibleLESdelta.C vanDriestDelta/vanDriestDelta.C LIB = $(FOAM_LIBBIN)/libcompressibleLESModels diff --git a/src/finiteVolume/fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchFields.C b/src/turbulenceModels/compressible/LES/compressibleLESdelta/compressibleLESdelta.C similarity index 65% rename from src/finiteVolume/fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchFields.C rename to src/turbulenceModels/compressible/LES/compressibleLESdelta/compressibleLESdelta.C index 9401581934..4b8fbbc44a 100644 --- a/src/finiteVolume/fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchFields.C +++ b/src/turbulenceModels/compressible/LES/compressibleLESdelta/compressibleLESdelta.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2012 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -23,22 +23,44 @@ License \*---------------------------------------------------------------------------*/ -#include "basicSymmetryFvPatchFields.H" -#include "fvPatchFields.H" -#include "volMesh.H" -#include "addToRunTimeSelectionTable.H" +#include "compressibleLESdelta.H" -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // namespace Foam { +namespace compressible +{ // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // -makePatchFields(basicSymmetry); +defineRunTimeSelectionTable(LESdelta, dictionary); + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +LESdelta::LESdelta(const word& name, const fvMesh& mesh) +: + foamLESdelta(name, mesh) +{} + + +// * * * * * * * * * * * * * * * * Selectors * * * * * * * * * * * * * * * * // + +Foam::autoPtr LESdelta::New +( + const word& name, + const fvMesh& mesh, + const dictionary& dict +) +{ + return foamLESdelta::New(name, mesh, dict, *dictionaryConstructorTablePtr_); +} + // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // +} // End namespace compressible } // End namespace Foam // ************************************************************************* // diff --git a/src/turbulenceModels/compressible/LES/compressibleLESdelta/compressibleLESdelta.H b/src/turbulenceModels/compressible/LES/compressibleLESdelta/compressibleLESdelta.H new file mode 100644 index 0000000000..56d1437cc2 --- /dev/null +++ b/src/turbulenceModels/compressible/LES/compressibleLESdelta/compressibleLESdelta.H @@ -0,0 +1,109 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | Copyright (C) 2011-2012 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 . + +Class + Foam::compressible::LESdelta + +Description + Abstract base class for compressible LES deltas + +SourceFiles + compressibleLESdelta.C + +\*---------------------------------------------------------------------------*/ + +#ifndef compressibleLESdelta_H +#define compressibleLESdelta_H + +#include "LESdelta.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +// To avoid macro problems typedef scoped class +typedef Foam::LESdelta foamLESdelta; + +namespace compressible +{ + +/*---------------------------------------------------------------------------*\ + Class LESdelta Declaration +\*---------------------------------------------------------------------------*/ + +class LESdelta +: + public foamLESdelta +{ + +public: + + // Declare run-time constructor selection table + + declareRunTimeSelectionTable + ( + autoPtr, + foamLESdelta, + dictionary, + ( + const word& name, + const fvMesh& mesh, + const dictionary& LESdeltaDict + ), + (name, mesh, LESdeltaDict) + ); + + // Constructors + + //- Construct from name and mesh + LESdelta(const word& name, const fvMesh& mesh); + + + // Selectors + + //- Return a reference to the selected LES delta + static autoPtr New + ( + const word& name, + const fvMesh& mesh, + const dictionary& dict + ); + + + //- Destructor + virtual ~LESdelta() + {} +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace compressible +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/turbulenceModels/compressible/LES/vanDriestDelta/vanDriestDelta.H b/src/turbulenceModels/compressible/LES/vanDriestDelta/vanDriestDelta.H index cc8158cb07..88e26c7554 100644 --- a/src/turbulenceModels/compressible/LES/vanDriestDelta/vanDriestDelta.H +++ b/src/turbulenceModels/compressible/LES/vanDriestDelta/vanDriestDelta.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -35,7 +35,7 @@ SourceFiles #ifndef vanDriestDelta_H #define vanDriestDelta_H -#include "LESdelta.H" +#include "compressibleLESdelta.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -56,7 +56,7 @@ class vanDriestDelta { // Private data - autoPtr geometricDelta_; + autoPtr geometricDelta_; scalar kappa_; scalar Aplus_; scalar Cdelta_; diff --git a/src/turbulenceModels/compressible/RAS/LRR/LRR.C b/src/turbulenceModels/compressible/RAS/LRR/LRR.C index 175cb8b463..e115680164 100644 --- a/src/turbulenceModels/compressible/RAS/LRR/LRR.C +++ b/src/turbulenceModels/compressible/RAS/LRR/LRR.C @@ -224,7 +224,8 @@ LRR::LRR ( "LRR::LRR" "( const volScalarField&, const volVectorField&" - ", const surfaceScalarField&, incompressibleTransportModel&)" + ", const surfaceScalarField&, fluidThermo&, const word&" + ", const word&)" ) << "couplingFactor = " << couplingFactor_ << " is not in range 0 - 1" << nl << exit(FatalError); diff --git a/src/turbulenceModels/compressible/turbulenceModel/laminar/laminar.C b/src/turbulenceModels/compressible/turbulenceModel/laminar/laminar.C index 4424aaa88f..aa56d7cfdd 100644 --- a/src/turbulenceModels/compressible/turbulenceModel/laminar/laminar.C +++ b/src/turbulenceModels/compressible/turbulenceModel/laminar/laminar.C @@ -234,7 +234,7 @@ bool laminar::read() // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -} // End namespace incompressible +} // End namespace compressible } // End namespace Foam // ************************************************************************* // diff --git a/src/turbulenceModels/compressible/turbulenceModel/laminar/laminar.H b/src/turbulenceModels/compressible/turbulenceModel/laminar/laminar.H index 3b7802b6c5..bead5d06de 100644 --- a/src/turbulenceModels/compressible/turbulenceModel/laminar/laminar.H +++ b/src/turbulenceModels/compressible/turbulenceModel/laminar/laminar.H @@ -164,7 +164,7 @@ public: // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -} // End namespace incompressible +} // End namespace compressible } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // diff --git a/src/turbulenceModels/incompressible/LES/LESModel/LESModel.H b/src/turbulenceModels/incompressible/LES/LESModel/LESModel.H index 3a9af24df8..090644855f 100644 --- a/src/turbulenceModels/incompressible/LES/LESModel/LESModel.H +++ b/src/turbulenceModels/incompressible/LES/LESModel/LESModel.H @@ -51,7 +51,7 @@ SourceFiles #define incompressibleLESModel_H #include "incompressible/turbulenceModel/turbulenceModel.H" -#include "LESdelta.H" +#include "incompressibleLESdelta.H" #include "fvm.H" #include "fvc.H" #include "fvMatrices.H" @@ -86,7 +86,7 @@ protected: dimensionedScalar kMin_; - autoPtr delta_; + autoPtr delta_; // Protected Member Functions diff --git a/src/turbulenceModels/incompressible/LES/Make/files b/src/turbulenceModels/incompressible/LES/Make/files index c41aefe994..6d4e3cb4d7 100644 --- a/src/turbulenceModels/incompressible/LES/Make/files +++ b/src/turbulenceModels/incompressible/LES/Make/files @@ -1,3 +1,4 @@ +incompressibleLESdelta/incompressibleLESdelta.C vanDriestDelta/vanDriestDelta.C LESModel/LESModel.C diff --git a/src/turbulenceModels/incompressible/LES/SpalartAllmarasIDDES/IDDESDelta/IDDESDelta.H b/src/turbulenceModels/incompressible/LES/SpalartAllmarasIDDES/IDDESDelta/IDDESDelta.H index 4c8302de7d..0274a192f9 100644 --- a/src/turbulenceModels/incompressible/LES/SpalartAllmarasIDDES/IDDESDelta/IDDESDelta.H +++ b/src/turbulenceModels/incompressible/LES/SpalartAllmarasIDDES/IDDESDelta/IDDESDelta.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -37,7 +37,7 @@ SourceFiles #ifndef IDDESDeltaDelta_H #define IDDESDeltaDelta_H -#include "LESdelta.H" +#include "incompressibleLESdelta.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -54,7 +54,7 @@ class IDDESDelta { // Private data - autoPtr hmax_; + autoPtr hmax_; scalar deltaCoeff_; scalar cw_; diff --git a/src/turbulenceModels/incompressible/LES/SpalartAllmarasIDDES/SpalartAllmarasIDDES.H b/src/turbulenceModels/incompressible/LES/SpalartAllmarasIDDES/SpalartAllmarasIDDES.H index fc31252782..c2565efb50 100644 --- a/src/turbulenceModels/incompressible/LES/SpalartAllmarasIDDES/SpalartAllmarasIDDES.H +++ b/src/turbulenceModels/incompressible/LES/SpalartAllmarasIDDES/SpalartAllmarasIDDES.H @@ -61,8 +61,8 @@ class SpalartAllmarasIDDES // Model constants - autoPtr hmax_; - autoPtr IDDESDelta_; + autoPtr hmax_; + autoPtr IDDESDelta_; dimensionedScalar fwStar_; dimensionedScalar cl_; dimensionedScalar ct_; diff --git a/src/turbulenceModels/incompressible/LES/incompressibleLESdelta/incompressibleLESdelta.C b/src/turbulenceModels/incompressible/LES/incompressibleLESdelta/incompressibleLESdelta.C new file mode 100644 index 0000000000..daa17b6406 --- /dev/null +++ b/src/turbulenceModels/incompressible/LES/incompressibleLESdelta/incompressibleLESdelta.C @@ -0,0 +1,66 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | Copyright (C) 2012 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 . + +\*---------------------------------------------------------------------------*/ + +#include "incompressibleLESdelta.H" + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +namespace Foam +{ +namespace incompressible +{ + +// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +defineRunTimeSelectionTable(LESdelta, dictionary); + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +LESdelta::LESdelta(const word& name, const fvMesh& mesh) +: + foamLESdelta(name, mesh) +{} + + +// * * * * * * * * * * * * * * * * Selectors * * * * * * * * * * * * * * * * // + +Foam::autoPtr LESdelta::New +( + const word& name, + const fvMesh& mesh, + const dictionary& dict +) +{ + return foamLESdelta::New(name, mesh, dict, *dictionaryConstructorTablePtr_); +} + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace incompressible +} // End namespace Foam + +// ************************************************************************* // diff --git a/src/turbulenceModels/incompressible/LES/incompressibleLESdelta/incompressibleLESdelta.H b/src/turbulenceModels/incompressible/LES/incompressibleLESdelta/incompressibleLESdelta.H new file mode 100644 index 0000000000..ca1d5240f3 --- /dev/null +++ b/src/turbulenceModels/incompressible/LES/incompressibleLESdelta/incompressibleLESdelta.H @@ -0,0 +1,109 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | Copyright (C) 2012 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 . + +Class + Foam::incompressible::LESdelta + +Description + Abstract base class for incompressible LES deltas + +SourceFiles + incompressibleLESdelta.C + +\*---------------------------------------------------------------------------*/ + +#ifndef incompressibleLESdelta_H +#define incompressibleLESdelta_H + +#include "LESdelta.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +// To avoid macro problems typedef scoped class +typedef Foam::LESdelta foamLESdelta; + +namespace incompressible +{ + +/*---------------------------------------------------------------------------*\ + Class LESdelta Declaration +\*---------------------------------------------------------------------------*/ + +class LESdelta +: + public foamLESdelta +{ + +public: + + // Declare run-time constructor selection table + + declareRunTimeSelectionTable + ( + autoPtr, + foamLESdelta, + dictionary, + ( + const word& name, + const fvMesh& mesh, + const dictionary& LESdeltaDict + ), + (name, mesh, LESdeltaDict) + ); + + // Constructors + + //- Construct from name and mesh + LESdelta(const word& name, const fvMesh& mesh); + + + // Selectors + + //- Return a reference to the selected LES delta + static autoPtr New + ( + const word& name, + const fvMesh& mesh, + const dictionary& dict + ); + + + //- Destructor + virtual ~LESdelta() + {} +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace incompressible +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/turbulenceModels/incompressible/LES/vanDriestDelta/vanDriestDelta.H b/src/turbulenceModels/incompressible/LES/vanDriestDelta/vanDriestDelta.H index 2e465b8851..217f86e9de 100644 --- a/src/turbulenceModels/incompressible/LES/vanDriestDelta/vanDriestDelta.H +++ b/src/turbulenceModels/incompressible/LES/vanDriestDelta/vanDriestDelta.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -35,7 +35,7 @@ SourceFiles #ifndef vanDriestDelta_H #define vanDriestDelta_H -#include "LESdelta.H" +#include "incompressibleLESdelta.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -56,7 +56,7 @@ class vanDriestDelta { // Private data - autoPtr geometricDelta_; + autoPtr geometricDelta_; scalar kappa_; scalar Aplus_; scalar Cdelta_;