STYLE: Updated capitalisation of cloud models
This commit is contained in:
parent
6084ef3346
commit
12909926c2
@ -51,7 +51,7 @@ class Analytical
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("Analytical");
|
||||
TypeName("analytical");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -128,7 +128,7 @@ private:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("IntegrationScheme");
|
||||
TypeName("integrationScheme");
|
||||
|
||||
|
||||
//- Declare runtime constructor selection table
|
||||
|
@ -38,7 +38,7 @@ Foam::IntegrationScheme<Type>::New
|
||||
{
|
||||
const word schemeName(dict.lookup(phiName));
|
||||
|
||||
Info<< "Selecting " << phiName << " IntegrationScheme "
|
||||
Info<< "Selecting " << phiName << " integration scheme "
|
||||
<< schemeName << endl;
|
||||
|
||||
typename dictionaryConstructorTable::iterator cstrIter =
|
||||
@ -49,9 +49,9 @@ Foam::IntegrationScheme<Type>::New
|
||||
FatalErrorIn
|
||||
(
|
||||
"IntegrationScheme::New(const dictionary&)"
|
||||
) << "Unknown IntegrationScheme type "
|
||||
) << "Unknown integration scheme type "
|
||||
<< schemeName << nl << nl
|
||||
<< "Valid IntegrationScheme types are:" << nl
|
||||
<< "Valid integration scheme types are:" << nl
|
||||
<< dictionaryConstructorTablePtr_->sortedToc() << nl
|
||||
<< exit(FatalError);
|
||||
}
|
||||
|
@ -64,7 +64,7 @@ class CollisionModel
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("CollisionModel");
|
||||
TypeName("collisionModel");
|
||||
|
||||
//- Declare runtime constructor selection table
|
||||
declareRunTimeSelectionTable
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2009-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2009-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -35,9 +35,9 @@ Foam::CollisionModel<CloudType>::New
|
||||
CloudType& owner
|
||||
)
|
||||
{
|
||||
word modelType(dict.lookup("CollisionModel"));
|
||||
word modelType(dict.lookup("collisionModel"));
|
||||
|
||||
Info<< "Selecting CollisionModel " << modelType << endl;
|
||||
Info<< "Selecting collision model " << modelType << endl;
|
||||
|
||||
typename dictionaryConstructorTable::iterator cstrIter =
|
||||
dictionaryConstructorTablePtr_->find(modelType);
|
||||
@ -51,9 +51,9 @@ Foam::CollisionModel<CloudType>::New
|
||||
"const dictionary&, "
|
||||
"CloudType&"
|
||||
")"
|
||||
) << "Unknown CollisionModelType type " << modelType
|
||||
) << "Unknown collision model type " << modelType
|
||||
<< ", constructor not in hash table" << nl << nl
|
||||
<< " Valid CollisionModel types are:" << nl
|
||||
<< " Valid collision model types are:" << nl
|
||||
<< dictionaryConstructorTablePtr_->sortedToc() << exit(FatalError);
|
||||
}
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2009-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2009-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -142,7 +142,7 @@ class PairCollision
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("PairCollision");
|
||||
TypeName("pairCollision");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -67,7 +67,7 @@ class PairModel
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("PairModel");
|
||||
TypeName("pairModel");
|
||||
|
||||
//- Declare runtime constructor selection table
|
||||
declareRunTimeSelectionTable
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2008-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -35,10 +35,9 @@ Foam::PairModel<CloudType>::New
|
||||
CloudType& owner
|
||||
)
|
||||
{
|
||||
word PairModelType(dict.lookup("PairModel"));
|
||||
word PairModelType(dict.lookup("pairModel"));
|
||||
|
||||
Info<< "Selecting PairModel " << PairModelType
|
||||
<< endl;
|
||||
Info<< "Selecting pair model " << PairModelType << endl;
|
||||
|
||||
typename dictionaryConstructorTable::iterator cstrIter =
|
||||
dictionaryConstructorTablePtr_->find(PairModelType);
|
||||
@ -52,10 +51,10 @@ Foam::PairModel<CloudType>::New
|
||||
"const dictionary&, "
|
||||
"CloudType&"
|
||||
")"
|
||||
) << "Unknown PairModelType type "
|
||||
) << "Unknown pair model type "
|
||||
<< PairModelType
|
||||
<< ", constructor not in hash table" << nl << nl
|
||||
<< " Valid PairModel types are:" << nl
|
||||
<< " Valid pair model types are:" << nl
|
||||
<< dictionaryConstructorTablePtr_->sortedToc() << exit(FatalError);
|
||||
}
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2008-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -108,7 +108,7 @@ class PairSpringSliderDashpot
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("PairSpringSliderDashpot");
|
||||
TypeName("pairSpringSliderDashpot");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2008-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -122,7 +122,7 @@ class WallLocalSpringSliderDashpot
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("WallLocalSpringSliderDashpot");
|
||||
TypeName("wallLocalSpringSliderDashpot");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -68,7 +68,7 @@ class WallModel
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("WallModel");
|
||||
TypeName("wallModel");
|
||||
|
||||
//- Declare runtime constructor selection table
|
||||
declareRunTimeSelectionTable
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2008-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -35,10 +35,9 @@ Foam::WallModel<CloudType>::New
|
||||
CloudType& owner
|
||||
)
|
||||
{
|
||||
word WallModelType(dict.lookup("WallModel"));
|
||||
word WallModelType(dict.lookup("wallModel"));
|
||||
|
||||
Info<< "Selecting WallModel " << WallModelType
|
||||
<< endl;
|
||||
Info<< "Selecting wall model " << WallModelType << endl;
|
||||
|
||||
typename dictionaryConstructorTable::iterator cstrIter =
|
||||
dictionaryConstructorTablePtr_->find(WallModelType);
|
||||
@ -52,10 +51,9 @@ Foam::WallModel<CloudType>::New
|
||||
"const dictionary&, "
|
||||
"CloudType&"
|
||||
")"
|
||||
) << "Unknown WallModelType type "
|
||||
<< WallModelType
|
||||
) << "Unknown wall model type type " << WallModelType
|
||||
<< ", constructor not in hash table" << nl << nl
|
||||
<< " Valid WallModel types are:" << nl
|
||||
<< " Valid wall model types are:" << nl
|
||||
<< dictionaryConstructorTablePtr_->sortedToc() << exit(FatalError);
|
||||
}
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2008-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -117,7 +117,7 @@ class WallSpringSliderDashpot
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("WallSpringSliderDashpot");
|
||||
TypeName("wallSpringSliderDashpot");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -53,7 +53,7 @@ class DispersionModel
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("DispersionModel");
|
||||
TypeName("dispersionModel");
|
||||
|
||||
|
||||
// Declare runtime constructor selection table
|
||||
@ -132,7 +132,7 @@ public:
|
||||
|
||||
#define makeDispersionModel(CloudType) \
|
||||
\
|
||||
defineNamedTemplateTypeNameAndDebug(DispersionModel<CloudType>, 0); \
|
||||
defineTemplateTypeNameAndDebug(DispersionModel<CloudType>, 0); \
|
||||
\
|
||||
defineTemplateRunTimeSelectionTable \
|
||||
( \
|
||||
|
@ -35,9 +35,9 @@ Foam::DispersionModel<CloudType>::New
|
||||
CloudType& owner
|
||||
)
|
||||
{
|
||||
const word modelType(dict.lookup("DispersionModel"));
|
||||
const word modelType(dict.lookup("dispersionModel"));
|
||||
|
||||
Info<< "Selecting DispersionModel " << modelType << endl;
|
||||
Info<< "Selecting dispersion model " << modelType << endl;
|
||||
|
||||
typename dictionaryConstructorTable::iterator cstrIter =
|
||||
dictionaryConstructorTablePtr_->find(modelType);
|
||||
@ -51,9 +51,9 @@ Foam::DispersionModel<CloudType>::New
|
||||
"const dictionary&, "
|
||||
"CloudType&"
|
||||
")"
|
||||
) << "Unknown DispersionModel type "
|
||||
) << "Unknown dispersion model type "
|
||||
<< modelType << nl << nl
|
||||
<< "Valid DispersionModel types are:" << nl
|
||||
<< "Valid dispersion model types are:" << nl
|
||||
<< dictionaryConstructorTablePtr_->sortedToc()
|
||||
<< exit(FatalError);
|
||||
}
|
||||
|
@ -74,7 +74,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("DispersionRASModel");
|
||||
TypeName("dispersionRASModel");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -66,7 +66,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("GradientDispersionRAS");
|
||||
TypeName("gradientDispersionRAS");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -53,7 +53,7 @@ class StochasticDispersionRAS
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("StochasticDispersionRAS");
|
||||
TypeName("stochasticDispersionRAS");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -127,7 +127,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("ConeInjection");
|
||||
TypeName("coneInjection");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -129,7 +129,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("FieldActivatedInjection");
|
||||
TypeName("fieldActivatedInjection");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -125,7 +125,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("InflationInjection");
|
||||
TypeName("inflationInjection");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -193,7 +193,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("InjectionModel");
|
||||
TypeName("injectionModel");
|
||||
|
||||
//- Declare runtime constructor selection table
|
||||
declareRunTimeSelectionTable
|
||||
|
@ -35,9 +35,9 @@ Foam::InjectionModel<CloudType>::New
|
||||
CloudType& owner
|
||||
)
|
||||
{
|
||||
const word modelType(dict.lookup("InjectionModel"));
|
||||
const word modelType(dict.lookup("injectionModel"));
|
||||
|
||||
Info<< "Selecting InjectionModel " << modelType << endl;
|
||||
Info<< "Selecting injection model " << modelType << endl;
|
||||
|
||||
typename dictionaryConstructorTable::iterator cstrIter =
|
||||
dictionaryConstructorTablePtr_->find(modelType);
|
||||
@ -51,9 +51,9 @@ Foam::InjectionModel<CloudType>::New
|
||||
"const dictionary&, "
|
||||
"CloudType&"
|
||||
")"
|
||||
) << "Unknown InjectionModel type "
|
||||
) << "Unknown injection model type "
|
||||
<< modelType << nl << nl
|
||||
<< "Valid InjectionModel types are:" << nl
|
||||
<< "Valid injection model types are:" << nl
|
||||
<< dictionaryConstructorTablePtr_->sortedToc() << exit(FatalError);
|
||||
}
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2008-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -105,7 +105,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("KinematicLookupTableInjection");
|
||||
TypeName("kinematicLookupTableInjection");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -99,7 +99,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("ManualInjection");
|
||||
TypeName("manualInjection");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -108,7 +108,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("PatchInjection");
|
||||
TypeName("patchInjection");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -108,7 +108,7 @@ class LocalInteraction
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("LocalInteraction");
|
||||
TypeName("localInteraction");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -85,7 +85,7 @@ private:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("PatchInteractionModel");
|
||||
TypeName("patchInteractionModel");
|
||||
|
||||
//- Declare runtime constructor selection table
|
||||
declareRunTimeSelectionTable
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2008-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -35,9 +35,9 @@ Foam::PatchInteractionModel<CloudType>::New
|
||||
CloudType& owner
|
||||
)
|
||||
{
|
||||
const word modelType(dict.lookup("PatchInteractionModel"));
|
||||
const word modelType(dict.lookup("patchInteractionModel"));
|
||||
|
||||
Info<< "Selecting PatchInteractionModel " << modelType << endl;
|
||||
Info<< "Selecting patch interaction model " << modelType << endl;
|
||||
|
||||
typename dictionaryConstructorTable::iterator cstrIter =
|
||||
dictionaryConstructorTablePtr_->find(modelType);
|
||||
@ -51,9 +51,9 @@ Foam::PatchInteractionModel<CloudType>::New
|
||||
"const dictionary&, "
|
||||
"CloudType&"
|
||||
")"
|
||||
) << "Unknown PatchInteractionModel type "
|
||||
) << "Unknown patch interaction model type "
|
||||
<< modelType << nl << nl
|
||||
<< "Valid PatchInteractionModel types are:" << nl
|
||||
<< "Valid patch interaction model types are:" << nl
|
||||
<< dictionaryConstructorTablePtr_->sortedToc()
|
||||
<< exit(FatalError);
|
||||
}
|
||||
|
@ -57,7 +57,7 @@ class Rebound
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("Rebound");
|
||||
TypeName("rebound");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -77,7 +77,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("StandardWallInteraction");
|
||||
TypeName("standardWallInteraction");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2010-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2010-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -89,7 +89,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("ParticleTracks");
|
||||
TypeName("particleTracks");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -85,7 +85,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("PatchPostProcessing");
|
||||
TypeName("patchPostProcessing");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -64,7 +64,7 @@ class PostProcessingModel
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("PostProcessingModel");
|
||||
TypeName("postProcessingModel");
|
||||
|
||||
//- Declare runtime constructor selection table
|
||||
declareRunTimeSelectionTable
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2008-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -35,9 +35,9 @@ Foam::PostProcessingModel<CloudType>::New
|
||||
CloudType& owner
|
||||
)
|
||||
{
|
||||
const word modelType(dict.lookup("PostProcessingModel"));
|
||||
const word modelType(dict.lookup("postProcessingModel"));
|
||||
|
||||
Info<< "Selecting PostProcessingModel " << modelType << endl;
|
||||
Info<< "Selecting post-processing model " << modelType << endl;
|
||||
|
||||
typename dictionaryConstructorTable::iterator cstrIter =
|
||||
dictionaryConstructorTablePtr_->find(modelType);
|
||||
@ -51,9 +51,9 @@ Foam::PostProcessingModel<CloudType>::New
|
||||
"const dictionary&, "
|
||||
"CloudType&"
|
||||
")"
|
||||
) << "Unknown PostProcessingModel type "
|
||||
) << "Unknown post-processing model type "
|
||||
<< modelType << nl << nl
|
||||
<< "Valid PostProcessingModel types are:" << nl
|
||||
<< "Valid post-processing model types are:" << nl
|
||||
<< dictionaryConstructorTablePtr_->sortedToc()
|
||||
<< exit(FatalError);
|
||||
}
|
||||
|
@ -128,7 +128,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("SurfaceFilmModel");
|
||||
TypeName("surfaceFilmModel");
|
||||
|
||||
//- Declare runtime constructor selection table
|
||||
declareRunTimeSelectionTable
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2009-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2009-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -36,9 +36,9 @@ Foam::SurfaceFilmModel<CloudType>::New
|
||||
const dimensionedVector& g
|
||||
)
|
||||
{
|
||||
const word modelType(dict.lookup("SurfaceFilmModel"));
|
||||
const word modelType(dict.lookup("surfaceFilmModel"));
|
||||
|
||||
Info<< "Selecting SurfaceFilmModel " << modelType << endl;
|
||||
Info<< "Selecting surface film model " << modelType << endl;
|
||||
|
||||
typename dictionaryConstructorTable::iterator cstrIter =
|
||||
dictionaryConstructorTablePtr_->find(modelType);
|
||||
@ -52,9 +52,9 @@ Foam::SurfaceFilmModel<CloudType>::New
|
||||
"const dictionary&, "
|
||||
"CloudType&"
|
||||
")"
|
||||
) << "Unknown SurfaceFilmModel type "
|
||||
) << "Unknown surface film model type "
|
||||
<< modelType << nl << nl
|
||||
<< "Valid SurfaceFilmModel types are:" << nl
|
||||
<< "Valid surface film model types are:" << nl
|
||||
<< dictionaryConstructorTablePtr_->sortedToc()
|
||||
<< exit(FatalError);
|
||||
}
|
||||
|
@ -72,7 +72,7 @@ class CompositionModel
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("CompositionModel");
|
||||
TypeName("compositionModel");
|
||||
|
||||
//- Declare runtime constructor selection table
|
||||
declareRunTimeSelectionTable
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2008-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -35,9 +35,9 @@ Foam::CompositionModel<CloudType>::New
|
||||
CloudType& owner
|
||||
)
|
||||
{
|
||||
const word modelType(dict.lookup("CompositionModel"));
|
||||
const word modelType(dict.lookup("compositionModel"));
|
||||
|
||||
Info<< "Selecting CompositionModel " << modelType << endl;
|
||||
Info<< "Selecting composition model " << modelType << endl;
|
||||
|
||||
typename dictionaryConstructorTable::iterator cstrIter =
|
||||
dictionaryConstructorTablePtr_->find(modelType);
|
||||
@ -51,9 +51,9 @@ Foam::CompositionModel<CloudType>::New
|
||||
"const dictionary&, "
|
||||
"CloudType&"
|
||||
")"
|
||||
) << "Unknown CompositionModel type "
|
||||
) << "Unknown composition model type "
|
||||
<< modelType << nl << nl
|
||||
<< "Valid CompositionModel types are:" << nl
|
||||
<< "Valid composition model types are:" << nl
|
||||
<< dictionaryConstructorTablePtr_->sortedToc() << nl
|
||||
<< exit(FatalError);
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2008-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -81,7 +81,7 @@ class SingleMixtureFraction
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("SingleMixtureFraction");
|
||||
TypeName("singleMixtureFraction");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2008-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -75,7 +75,7 @@ class SinglePhaseMixture
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("SinglePhaseMixture");
|
||||
TypeName("singlePhaseMixture");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2008-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -108,7 +108,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("ReactingLookupTableInjection");
|
||||
TypeName("reactingLookupTableInjection");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -78,7 +78,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("LiquidEvaporation");
|
||||
TypeName("liquidEvaporation");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -90,7 +90,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("PhaseChangeModel");
|
||||
TypeName("phaseChangeModel");
|
||||
|
||||
//- Declare runtime constructor selection table
|
||||
declareRunTimeSelectionTable
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2009-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2009-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -35,9 +35,9 @@ Foam::PhaseChangeModel<CloudType>::New
|
||||
CloudType& owner
|
||||
)
|
||||
{
|
||||
const word modelType(dict.lookup("PhaseChangeModel"));
|
||||
const word modelType(dict.lookup("phaseChangeModel"));
|
||||
|
||||
Info<< "Selecting PhaseChangeModel " << modelType << endl;
|
||||
Info<< "Selecting phase change model " << modelType << endl;
|
||||
|
||||
typename dictionaryConstructorTable::iterator cstrIter =
|
||||
dictionaryConstructorTablePtr_->find(modelType);
|
||||
@ -51,9 +51,9 @@ Foam::PhaseChangeModel<CloudType>::New
|
||||
"const dictionary&, "
|
||||
"CloudType&"
|
||||
")"
|
||||
) << "Unknown PhaseChangeModel type "
|
||||
) << "Unknown phase change model type "
|
||||
<< modelType << nl << nl
|
||||
<< "Valid PhaseChangeModel types are:" << nl
|
||||
<< "Valid phase change model types are:" << nl
|
||||
<< dictionaryConstructorTablePtr_->sortedToc()
|
||||
<< exit(FatalError);
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2008-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -70,7 +70,7 @@ class ConstantRateDevolatilisation
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("ConstantRateDevolatilisation");
|
||||
TypeName("constantRateDevolatilisation");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -58,7 +58,7 @@ class DevolatilisationModel
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("DevolatilisationModel");
|
||||
TypeName("devolatilisationModel");
|
||||
|
||||
//- Declare runtime constructor selection table
|
||||
declareRunTimeSelectionTable
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2008-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -35,9 +35,9 @@ Foam::DevolatilisationModel<CloudType>::New
|
||||
CloudType& owner
|
||||
)
|
||||
{
|
||||
const word modelType(dict.lookup("DevolatilisationModel"));
|
||||
const word modelType(dict.lookup("devolatilisationModel"));
|
||||
|
||||
Info<< "Selecting DevolatilisationModel " << modelType << endl;
|
||||
Info<< "Selecting devolatilisation model " << modelType << endl;
|
||||
|
||||
typename dictionaryConstructorTable::iterator cstrIter =
|
||||
dictionaryConstructorTablePtr_->find(modelType);
|
||||
@ -51,9 +51,9 @@ Foam::DevolatilisationModel<CloudType>::New
|
||||
"const dictionary&, "
|
||||
"CloudType&"
|
||||
")"
|
||||
) << "Unknown DevolatilisationModel type "
|
||||
) << "Unknown devolatilisation model type "
|
||||
<< modelType << nl << nl
|
||||
<< "Valid DevolatilisationModel types are:" << nl
|
||||
<< "Valid devolatilisation model types are:" << nl
|
||||
<< dictionaryConstructorTablePtr_->sortedToc()
|
||||
<< exit(FatalError);
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2008-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -191,7 +191,7 @@ class SingleKineticRateDevolatilisation
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("SingleKineticRateDevolatilisation");
|
||||
TypeName("singleKineticRateDevolatilisation");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2008-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -111,7 +111,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("ReactingMultiphaseLookupTableInjection");
|
||||
TypeName("reactingMultiphaseLookupTableInjection");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -59,7 +59,7 @@ class SurfaceReactionModel
|
||||
public:
|
||||
|
||||
//-Runtime type information
|
||||
TypeName("SurfaceReactionModel");
|
||||
TypeName("surfaceReactionModel");
|
||||
|
||||
|
||||
//- Declare runtime constructor selection table
|
||||
|
@ -35,9 +35,9 @@ Foam::SurfaceReactionModel<CloudType>::New
|
||||
CloudType& owner
|
||||
)
|
||||
{
|
||||
const word modelType(dict.lookup("SurfaceReactionModel"));
|
||||
const word modelType(dict.lookup("surfaceReactionModel"));
|
||||
|
||||
Info<< "Selecting SurfaceReactionModel " << modelType << endl;
|
||||
Info<< "Selecting surface reaction model " << modelType << endl;
|
||||
|
||||
typename dictionaryConstructorTable::iterator cstrIter =
|
||||
dictionaryConstructorTablePtr_->find(modelType);
|
||||
@ -51,9 +51,9 @@ Foam::SurfaceReactionModel<CloudType>::New
|
||||
"const dictionary&, "
|
||||
"CloudType&"
|
||||
")"
|
||||
) << "Unknown SurfaceReactionModel type "
|
||||
) << "Unknown surface reaction model type "
|
||||
<< modelType << nl << nl
|
||||
<< "Valid SurfaceReactionModel types are:" << nl
|
||||
<< "Valid surface reaction model types are:" << nl
|
||||
<< dictionaryConstructorTablePtr_->sortedToc()
|
||||
<< exit(FatalError);
|
||||
}
|
||||
|
@ -64,7 +64,7 @@ class HeatTransferModel
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("HeatTransferModel");
|
||||
TypeName("heatTransferModel");
|
||||
|
||||
//- Declare runtime constructor selection table
|
||||
declareRunTimeSelectionTable
|
||||
|
@ -35,9 +35,9 @@ Foam::HeatTransferModel<CloudType>::New
|
||||
CloudType& owner
|
||||
)
|
||||
{
|
||||
const word modelType(dict.lookup("HeatTransferModel"));
|
||||
const word modelType(dict.lookup("heatTransferModel"));
|
||||
|
||||
Info<< "Selecting HeatTransferModel " << modelType << endl;
|
||||
Info<< "Selecting heat transfer model " << modelType << endl;
|
||||
|
||||
typename dictionaryConstructorTable::iterator cstrIter =
|
||||
dictionaryConstructorTablePtr_->find(modelType);
|
||||
@ -51,9 +51,9 @@ Foam::HeatTransferModel<CloudType>::New
|
||||
"const dictionary&, "
|
||||
"CloudType&"
|
||||
")"
|
||||
) << "Unknown HeatTransferModel type "
|
||||
) << "Unknown heat transfer model type "
|
||||
<< modelType << nl << nl
|
||||
<< "Valid HeatTransferModel types are:" << nl
|
||||
<< "Valid heat transfer model types are:" << nl
|
||||
<< dictionaryConstructorTablePtr_->sortedToc()
|
||||
<< exit(FatalError);
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2008-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -107,7 +107,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("ThermoLookupTableInjection");
|
||||
TypeName("thermoLookupTableInjection");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2009-2010 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2009-2011 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -242,7 +242,7 @@ protected:
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("ThermoSurfaceFilm");
|
||||
TypeName("thermoSurfaceFilm");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
@ -56,7 +56,7 @@ solution
|
||||
integrationSchemes
|
||||
{
|
||||
U Euler;
|
||||
T Analytical;
|
||||
T analytical;
|
||||
}
|
||||
}
|
||||
|
||||
@ -99,31 +99,29 @@ subModels
|
||||
);
|
||||
}
|
||||
|
||||
InjectionModel ManualInjection;
|
||||
injectionModel manualInjection;
|
||||
|
||||
DispersionModel StochasticDispersionRAS;
|
||||
dispersionModel stochasticDispersionRAS;
|
||||
|
||||
PatchInteractionModel StandardWallInteraction;
|
||||
patchInteractionModel standardWallInteraction;
|
||||
|
||||
HeatTransferModel RanzMarshall;
|
||||
heatTransferModel RanzMarshall;
|
||||
|
||||
CompositionModel SingleMixtureFraction;
|
||||
compositionModel singleMixtureFraction;
|
||||
|
||||
PhaseChangeModel LiquidEvaporation;
|
||||
phaseChangeModel liquidEvaporation;
|
||||
|
||||
DevolatilisationModel ConstantRateDevolatilisation;
|
||||
devolatilisationModel constantRateDevolatilisation;
|
||||
|
||||
SurfaceReactionModel COxidationKineticDiffusionLimitedRate;
|
||||
surfaceReactionModel COxidationKineticDiffusionLimitedRate;
|
||||
|
||||
PostProcessingModel none;
|
||||
postProcessingModel none;
|
||||
|
||||
CollisionModel none;
|
||||
|
||||
SurfaceFilmModel none;
|
||||
surfaceFilmModel none;
|
||||
|
||||
radiation on;
|
||||
|
||||
ManualInjectionCoeffs
|
||||
manualInjectionCoeffs
|
||||
{
|
||||
massTotal 0.0001;
|
||||
parcelBasisType mass;
|
||||
@ -143,7 +141,7 @@ subModels
|
||||
}
|
||||
}
|
||||
|
||||
StandardWallInteractionCoeffs
|
||||
standardWallInteractionCoeffs
|
||||
{
|
||||
type rebound;
|
||||
e 1;
|
||||
@ -155,7 +153,7 @@ subModels
|
||||
BirdCorrection true;
|
||||
}
|
||||
|
||||
SingleMixtureFractionCoeffs
|
||||
singleMixtureFractionCoeffs
|
||||
{
|
||||
phases
|
||||
(
|
||||
@ -180,7 +178,7 @@ subModels
|
||||
YSolidTot0 0.763;
|
||||
}
|
||||
|
||||
LiquidEvaporationCoeffs
|
||||
liquidEvaporationCoeffs
|
||||
{
|
||||
enthalpyTransfer enthalpyDifference;
|
||||
|
||||
@ -190,7 +188,7 @@ subModels
|
||||
);
|
||||
}
|
||||
|
||||
ConstantRateDevolatilisationCoeffs
|
||||
constantRateDevolatilisationCoeffs
|
||||
{
|
||||
volatileData
|
||||
(
|
||||
|
@ -47,7 +47,7 @@ solution
|
||||
integrationSchemes
|
||||
{
|
||||
U Euler;
|
||||
T Analytical;
|
||||
T analytical;
|
||||
}
|
||||
}
|
||||
|
||||
@ -83,23 +83,21 @@ subModels
|
||||
);
|
||||
}
|
||||
|
||||
InjectionModel ManualInjection;
|
||||
injectionModel manualInjection;
|
||||
|
||||
DispersionModel StochasticDispersionRAS;
|
||||
dispersionModel stochasticDispersionRAS;
|
||||
|
||||
PatchInteractionModel StandardWallInteraction;
|
||||
patchInteractionModel standardWallInteraction;
|
||||
|
||||
HeatTransferModel RanzMarshall;
|
||||
heatTransferModel RanzMarshall;
|
||||
|
||||
PostProcessingModel none;
|
||||
postProcessingModel none;
|
||||
|
||||
CollisionModel none;
|
||||
|
||||
SurfaceFilmModel none;
|
||||
surfaceFilmModel none;
|
||||
|
||||
radiation on;
|
||||
|
||||
ManualInjectionCoeffs
|
||||
manualInjectionCoeffs
|
||||
{
|
||||
massTotal 0.0001;
|
||||
parcelBasisType mass;
|
||||
@ -119,7 +117,7 @@ subModels
|
||||
}
|
||||
}
|
||||
|
||||
StandardWallInteractionCoeffs
|
||||
standardWallInteractionCoeffs
|
||||
{
|
||||
type rebound;
|
||||
e 1;
|
||||
|
Loading…
Reference in New Issue
Block a user