Compare commits

...

1 Commits

Author SHA1 Message Date
742d1dc604 WIP: duplicate constructor entries (#2538)
WIP: Updated multiphaseEuler runtime constructor table names

WIP: Updated multiphaseInter runtime constructor table names

WIP: Updated reactingEuler runtime constructor table names

WIP: Updated twoPhaseEuler runtime constructor table names
2022-08-19 11:01:42 +02:00
334 changed files with 469 additions and 468 deletions

View File

@ -43,7 +43,7 @@ namespace diameterModels
(
diameterModel,
constant,
dictionary
multiphaseEuler
);
}
}

View File

@ -35,7 +35,7 @@ namespace Foam
namespace multiphaseEuler
{
defineTypeNameAndDebug(diameterModel, 0);
defineRunTimeSelectionTable(diameterModel, dictionary);
defineRunTimeSelectionTable(diameterModel, multiphaseEuler);
}
}
@ -69,7 +69,7 @@ Foam::multiphaseEuler::diameterModel::New
<< ": "
<< modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = multiphaseEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -78,7 +78,7 @@ Foam::multiphaseEuler::diameterModel::New
dict,
"diameterModel",
modelType,
*dictionaryConstructorTablePtr_
*multiphaseEulerConstructorTablePtr_
) << exit(FatalIOError);
}

View File

@ -76,7 +76,7 @@ public:
(
autoPtr,
diameterModel,
dictionary,
multiphaseEuler,
(
const dictionary& dict,
const phaseModel& phase

View File

@ -43,7 +43,7 @@ namespace diameterModels
(
diameterModel,
isothermal,
dictionary
multiphaseEuler
);
}
}

View File

@ -43,7 +43,7 @@ namespace dragModels
(
dragModel,
Ergun,
dictionary
multiphaseEuler
);
}
}

View File

@ -43,7 +43,7 @@ namespace dragModels
(
dragModel,
Gibilaro,
dictionary
multiphaseEuler
);
}
}

View File

@ -43,7 +43,7 @@ namespace dragModels
(
dragModel,
GidaspowErgunWenYu,
dictionary
multiphaseEuler
);
}
}

View File

@ -43,7 +43,7 @@ namespace dragModels
(
dragModel,
GidaspowSchillerNaumann,
dictionary
multiphaseEuler
);
}
}

View File

@ -43,7 +43,7 @@ namespace dragModels
(
dragModel,
SchillerNaumann,
dictionary
multiphaseEuler
);
}
}

View File

@ -43,7 +43,7 @@ namespace dragModels
(
dragModel,
SyamlalOBrien,
dictionary
multiphaseEuler
);
}
}

View File

@ -43,7 +43,7 @@ namespace dragModels
(
dragModel,
WenYu,
dictionary
multiphaseEuler
);
}
}

View File

@ -43,7 +43,7 @@ namespace dragModels
(
dragModel,
blended,
dictionary
multiphaseEuler
);
}
}

View File

@ -35,7 +35,7 @@ namespace Foam
namespace multiphaseEuler
{
defineTypeNameAndDebug(dragModel, 0);
defineRunTimeSelectionTable(dragModel, dictionary);
defineRunTimeSelectionTable(dragModel, multiphaseEuler);
}
}
@ -74,7 +74,7 @@ Foam::multiphaseEuler::dragModel::New
<< ": "
<< modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = multiphaseEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -83,7 +83,7 @@ Foam::multiphaseEuler::dragModel::New
dict,
"dragModel",
modelType,
*dictionaryConstructorTablePtr_
*multiphaseEulerConstructorTablePtr_
) << exit(FatalIOError);
}

View File

@ -76,7 +76,7 @@ public:
(
autoPtr,
dragModel,
dictionary,
multiphaseEuler,
(
const dictionary& interfaceDict,
const phaseModel& phase1,

View File

@ -43,7 +43,7 @@ namespace dragModels
(
dragModel,
interface,
dictionary
multiphaseEuler
);
}
}

View File

@ -43,7 +43,7 @@ namespace heatTransferModels
(
heatTransferModel,
RanzMarshall,
dictionary
multiphaseEuler
);
}
}

View File

@ -35,7 +35,7 @@ namespace Foam
namespace multiphaseEuler
{
defineTypeNameAndDebug(heatTransferModel, 0);
defineRunTimeSelectionTable(heatTransferModel, dictionary);
defineRunTimeSelectionTable(heatTransferModel, multiphaseEuler);
}
}
@ -78,7 +78,7 @@ Foam::multiphaseEuler::heatTransferModel::New
<< ": "
<< modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = multiphaseEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -87,7 +87,7 @@ Foam::multiphaseEuler::heatTransferModel::New
dict,
"heatTransferModel",
modelType,
*dictionaryConstructorTablePtr_
*multiphaseEulerConstructorTablePtr_
) << exit(FatalIOError);
}

View File

@ -77,7 +77,7 @@ public:
(
autoPtr,
heatTransferModel,
dictionary,
multiphaseEuler,
(
const dictionary& dict,
const volScalarField& alpha1,

View File

@ -269,7 +269,7 @@ public:
( \
interfaceCompositionModel, \
Type##Thermo##OtherThermo, \
dictionary \
multiphaseInter \
)
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -36,7 +36,7 @@ namespace Foam
namespace multiphaseInter
{
defineTypeNameAndDebug(interfaceCompositionModel, 0);
defineRunTimeSelectionTable(interfaceCompositionModel, dictionary);
defineRunTimeSelectionTable(interfaceCompositionModel, multiphaseInter);
}
}
@ -99,7 +99,7 @@ Foam::multiphaseInter::interfaceCompositionModel::New
Info<< "Selecting interfaceCompositionModel for "
<< pair << ": " << modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = multiphaseInterConstructorTable(modelType);
if (!ctorPtr)
{
@ -108,7 +108,7 @@ Foam::multiphaseInter::interfaceCompositionModel::New
dict,
"interfaceCompositionModel",
modelType,
*dictionaryConstructorTablePtr_
*multiphaseInterConstructorTablePtr_
) << exit(FatalIOError);
}

View File

@ -113,7 +113,7 @@ public:
(
autoPtr,
interfaceCompositionModel,
dictionary,
multiphaseInter,
(
const dictionary& dict,
const phasePair& pair

View File

@ -40,7 +40,7 @@ namespace porousModels
(
porousModel,
VollerPrakash,
dictionary
multiphaseInter
);
}
}

View File

@ -33,7 +33,7 @@ License
namespace Foam
{
defineTypeNameAndDebug(porousModel, 0);
defineRunTimeSelectionTable(porousModel, dictionary);
defineRunTimeSelectionTable(porousModel, multiphaseInter);
}
@ -74,7 +74,7 @@ Foam::porousModel::New
Info<< "Selecting porousModel for "
<< ": " << modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = multiphaseInterConstructorTable(modelType);
if (!ctorPtr)
{
@ -83,7 +83,7 @@ Foam::porousModel::New
dict,
"porousModel",
modelType,
*dictionaryConstructorTablePtr_
*multiphaseInterConstructorTablePtr_
) << exit(FatalIOError);
}

View File

@ -75,7 +75,7 @@ public:
(
autoPtr,
porousModel,
dictionary,
multiphaseInter,
(
const dictionary& dict,
const fvMesh& mesh

View File

@ -42,7 +42,7 @@ namespace surfaceTensionModels
(
surfaceTensionModel,
constantSurfaceTensionCoefficient,
dictionary
multiphaseInter
);
}
}

View File

@ -35,7 +35,7 @@ namespace Foam
namespace multiphaseInter
{
defineTypeNameAndDebug(surfaceTensionModel, 0);
defineRunTimeSelectionTable(surfaceTensionModel, dictionary);
defineRunTimeSelectionTable(surfaceTensionModel, multiphaseInter);
}
}
@ -79,7 +79,7 @@ Foam::multiphaseInter::surfaceTensionModel::New
Info<< "Selecting surfaceTensionModel for "
<< pair << ": " << modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = multiphaseInterConstructorTable(modelType);
if (!ctorPtr)
{
@ -88,7 +88,7 @@ Foam::multiphaseInter::surfaceTensionModel::New
dict,
"surfaceTensionModel",
modelType,
*dictionaryConstructorTablePtr_
*multiphaseInterConstructorTablePtr_
) << exit(FatalIOError);
}

View File

@ -78,7 +78,7 @@ public:
(
autoPtr,
surfaceTensionModel,
dictionary,
multiphaseInter,
(
const dictionary& dict,
const phasePair& pair,

View File

@ -51,7 +51,7 @@ namespace Foam
namespace multiphaseInter
{
defineTypeNameAndDebug(multiphaseSystem, 0);
defineRunTimeSelectionTable(multiphaseSystem, dictionary);
defineRunTimeSelectionTable(multiphaseSystem, multiphaseInter);
}
}

View File

@ -106,7 +106,7 @@ public:
(
autoPtr,
multiphaseSystem,
dictionary,
multiphaseInter,
(
const fvMesh& mesh
),

View File

@ -52,7 +52,7 @@ Foam::multiphaseInter::multiphaseSystem::New
Info<< "Selecting multiphaseSystem " << systemType << endl;
auto* ctorPtr = dictionaryConstructorTable(systemType);
auto* ctorPtr = multiphaseInterConstructorTable(systemType);
if (!ctorPtr)
{
@ -61,7 +61,7 @@ Foam::multiphaseInter::multiphaseSystem::New
dict,
"multiphaseSystem",
systemType,
*dictionaryConstructorTablePtr_
*multiphaseInterConstructorTablePtr_
) << exit(FatalIOError);
}

View File

@ -43,7 +43,7 @@ namespace Foam
(
multiphaseSystem,
massTransferMultiphaseSystem,
dictionary,
multiphaseInter,
massTransferMultiphaseSystem
);

View File

@ -33,7 +33,7 @@ License
namespace Foam
{
defineTypeNameAndDebug(blendingMethod, 0);
defineRunTimeSelectionTable(blendingMethod, dictionary);
defineRunTimeSelectionTable(blendingMethod, reactingEuler);
}
@ -61,7 +61,7 @@ Foam::blendingMethod::New
Info<< "Selecting " << modelName << " blending method: "
<< modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = reactingEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -70,7 +70,7 @@ Foam::blendingMethod::New
dict,
"blendingMethod",
modelType,
*dictionaryConstructorTablePtr_
*reactingEulerConstructorTablePtr_
) << abort(FatalIOError);
}

View File

@ -63,7 +63,7 @@ public:
(
autoPtr,
blendingMethod,
dictionary,
reactingEuler,
(
const dictionary& dict,
const wordList& phaseNames

View File

@ -40,7 +40,7 @@ namespace blendingMethods
(
blendingMethod,
hyperbolic,
dictionary
reactingEuler
);
}
}

View File

@ -40,7 +40,7 @@ namespace blendingMethods
(
blendingMethod,
linear,
dictionary
reactingEuler
);
}
}

View File

@ -41,7 +41,7 @@ namespace blendingMethods
(
blendingMethod,
noBlending,
dictionary
reactingEuler
);
}
}

View File

@ -34,7 +34,7 @@ namespace Foam
namespace wallBoilingModels
{
defineTypeNameAndDebug(CHFModel, 0);
defineRunTimeSelectionTable(CHFModel, dictionary);
defineRunTimeSelectionTable(CHFModel, reactingEuler);
}
}
@ -51,7 +51,7 @@ Foam::wallBoilingModels::CHFModel::New
Info<< "Selecting CHFModel: " << modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = reactingEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -60,7 +60,7 @@ Foam::wallBoilingModels::CHFModel::New
dict,
"CHFModel",
modelType,
*dictionaryConstructorTablePtr_
*reactingEulerConstructorTablePtr_
) << abort(FatalIOError);
}

View File

@ -68,7 +68,7 @@ public:
(
autoPtr,
CHFModel,
dictionary,
reactingEuler,
(
const dictionary& dict
),

View File

@ -44,7 +44,7 @@ namespace CHFModels
(
CHFModel,
Zuber,
dictionary
reactingEuler
);
}
}

View File

@ -34,7 +34,7 @@ namespace Foam
namespace wallBoilingModels
{
defineTypeNameAndDebug(CHFSubCoolModel, 0);
defineRunTimeSelectionTable(CHFSubCoolModel, dictionary);
defineRunTimeSelectionTable(CHFSubCoolModel, reactingEuler);
}
}
@ -51,7 +51,7 @@ Foam::wallBoilingModels::CHFSubCoolModel::New
Info<< "Selecting CHFSubCoolModel: " << modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = reactingEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -60,7 +60,7 @@ Foam::wallBoilingModels::CHFSubCoolModel::New
dict,
"CHFSubCoolModel",
modelType,
*dictionaryConstructorTablePtr_
*reactingEulerConstructorTablePtr_
) << abort(FatalIOError);
}

View File

@ -68,7 +68,7 @@ public:
(
autoPtr,
CHFSubCoolModel,
dictionary,
reactingEuler,
(
const dictionary& dict
),

View File

@ -44,7 +44,7 @@ namespace CHFModels
(
CHFSubCoolModel,
HuaXu,
dictionary
reactingEuler
);
}
}

View File

@ -44,7 +44,7 @@ namespace CHFModels
(
CHFSubCoolModel,
Tatsumoto,
dictionary
reactingEuler
);
}
}

View File

@ -34,7 +34,7 @@ namespace Foam
namespace wallBoilingModels
{
defineTypeNameAndDebug(LeidenfrostModel, 0);
defineRunTimeSelectionTable(LeidenfrostModel, dictionary);
defineRunTimeSelectionTable(LeidenfrostModel, reactingEuler);
}
}
@ -51,7 +51,7 @@ Foam::wallBoilingModels::LeidenfrostModel::New
Info<< "Selecting LeidenfrostModel: " << modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = reactingEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -60,7 +60,7 @@ Foam::wallBoilingModels::LeidenfrostModel::New
dict,
"LeidenfrostModel",
modelType,
*dictionaryConstructorTablePtr_
*reactingEulerConstructorTablePtr_
) << abort(FatalIOError);
}

View File

@ -67,7 +67,7 @@ public:
(
autoPtr,
LeidenfrostModel,
dictionary,
reactingEuler,
(
const dictionary& dict
),

View File

@ -42,7 +42,7 @@ namespace LeidenfrostModels
(
LeidenfrostModel,
Spiegler,
dictionary
reactingEuler
);
}
}

View File

@ -44,7 +44,7 @@ namespace CHFModels
(
MHFModel,
Jeschar,
dictionary
reactingEuler
);
}
}

View File

@ -34,7 +34,7 @@ namespace Foam
namespace wallBoilingModels
{
defineTypeNameAndDebug(MHFModel, 0);
defineRunTimeSelectionTable(MHFModel, dictionary);
defineRunTimeSelectionTable(MHFModel, reactingEuler);
}
}
@ -51,7 +51,7 @@ Foam::wallBoilingModels::MHFModel::New
Info<< "Selecting MHFModel: " << modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = reactingEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -60,7 +60,7 @@ Foam::wallBoilingModels::MHFModel::New
dict,
"MHFModel",
modelType,
*dictionaryConstructorTablePtr_
*reactingEulerConstructorTablePtr_
) << abort(FatalIOError);
}

View File

@ -67,7 +67,7 @@ public:
(
autoPtr,
MHFModel,
dictionary,
reactingEuler,
(
const dictionary& dict
),

View File

@ -44,7 +44,7 @@ namespace TDNBModels
(
TDNBModel,
Schroeder,
dictionary
reactingEuler
);
}
}

View File

@ -41,7 +41,7 @@ namespace TDNBModels
(
TDNBModel,
Shirai,
dictionary
reactingEuler
);
}
}

View File

@ -34,7 +34,7 @@ namespace Foam
namespace wallBoilingModels
{
defineTypeNameAndDebug(TDNBModel, 0);
defineRunTimeSelectionTable(TDNBModel, dictionary);
defineRunTimeSelectionTable(TDNBModel, reactingEuler);
}
}
@ -51,7 +51,7 @@ Foam::wallBoilingModels::TDNBModel::New
Info<< "Selecting TDNBModel: " << modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = reactingEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -60,7 +60,7 @@ Foam::wallBoilingModels::TDNBModel::New
dict,
"TDNBModelType",
modelType,
*dictionaryConstructorTablePtr_
*reactingEulerConstructorTablePtr_
) << abort(FatalIOError);
}

View File

@ -67,7 +67,7 @@ public:
(
autoPtr,
TDNBModel,
dictionary,
reactingEuler,
(
const dictionary& dict
),

View File

@ -47,7 +47,7 @@ namespace departureDiameterModels
(
departureDiameterModel,
KocamustafaogullariIshii,
dictionary
reactingEuler
);
}
}

View File

@ -42,7 +42,7 @@ namespace departureDiameterModels
(
departureDiameterModel,
TolubinskiKostanchuk,
dictionary
reactingEuler
);
}
}

View File

@ -35,7 +35,7 @@ namespace Foam
namespace wallBoilingModels
{
defineTypeNameAndDebug(departureDiameterModel, 0);
defineRunTimeSelectionTable(departureDiameterModel, dictionary);
defineRunTimeSelectionTable(departureDiameterModel, reactingEuler);
}
}
@ -52,7 +52,7 @@ Foam::wallBoilingModels::departureDiameterModel::New
Info<< "Selecting departureDiameterModel: " << modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = reactingEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -61,7 +61,7 @@ Foam::wallBoilingModels::departureDiameterModel::New
dict,
"departureDiameterModel",
modelType,
*dictionaryConstructorTablePtr_
*reactingEulerConstructorTablePtr_
) << abort(FatalIOError);
}

View File

@ -68,7 +68,7 @@ public:
(
autoPtr,
departureDiameterModel,
dictionary,
reactingEuler,
(
const dictionary& dict
),

View File

@ -46,7 +46,7 @@ namespace departureFrequencyModels
(
departureFrequencyModel,
Cole,
dictionary
reactingEuler
);
}
}

View File

@ -35,7 +35,7 @@ namespace Foam
namespace wallBoilingModels
{
defineTypeNameAndDebug(departureFrequencyModel, 0);
defineRunTimeSelectionTable(departureFrequencyModel, dictionary);
defineRunTimeSelectionTable(departureFrequencyModel, reactingEuler);
}
}
@ -52,7 +52,7 @@ Foam::wallBoilingModels::departureFrequencyModel::New
Info<< "Selecting departureFrequencyModel: " << modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = reactingEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -61,7 +61,7 @@ Foam::wallBoilingModels::departureFrequencyModel::New
dict,
"departureFrequencyModel",
modelType,
*dictionaryConstructorTablePtr_
*reactingEulerConstructorTablePtr_
) << abort(FatalIOError);
}

View File

@ -68,7 +68,7 @@ public:
(
autoPtr,
departureFrequencyModel,
dictionary,
reactingEuler,
(
const dictionary& dict
),

View File

@ -44,7 +44,7 @@ namespace filmBoilingModels
(
filmBoilingModel,
BreenWestwater,
dictionary
reactingEuler
);
}
}

View File

@ -45,7 +45,7 @@ namespace filmBoilingModels
(
filmBoilingModel,
Bromley,
dictionary
reactingEuler
);
}
}

View File

@ -34,7 +34,7 @@ namespace Foam
namespace wallBoilingModels
{
defineTypeNameAndDebug(filmBoilingModel, 0);
defineRunTimeSelectionTable(filmBoilingModel, dictionary);
defineRunTimeSelectionTable(filmBoilingModel, reactingEuler);
}
}
@ -51,7 +51,7 @@ Foam::wallBoilingModels::filmBoilingModel::New
Info<< "Selecting filmBoilingModel: " << modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = reactingEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -60,7 +60,7 @@ Foam::wallBoilingModels::filmBoilingModel::New
dict,
"filmBoilingModel",
modelType,
*dictionaryConstructorTablePtr_
*reactingEulerConstructorTablePtr_
) << abort(FatalIOError);
}

View File

@ -67,7 +67,7 @@ public:
(
autoPtr,
filmBoilingModel,
dictionary,
reactingEuler,
(
const dictionary& dict
),

View File

@ -44,7 +44,7 @@ namespace nucleateFluxModels
(
nucleateFluxModel,
Kutadeladze,
dictionary
reactingEuler
);
}
}

View File

@ -44,7 +44,7 @@ namespace nucleateFluxModels
(
nucleateFluxModel,
exponential,
dictionary
reactingEuler
);
}
}

View File

@ -34,7 +34,7 @@ namespace Foam
namespace wallBoilingModels
{
defineTypeNameAndDebug(nucleateFluxModel, 0);
defineRunTimeSelectionTable(nucleateFluxModel, dictionary);
defineRunTimeSelectionTable(nucleateFluxModel, reactingEuler);
}
}
@ -50,7 +50,7 @@ Foam::wallBoilingModels::nucleateFluxModel::New
Info<< "Selecting nucleateFluxModel: " << modelType << endl;
auto cstrIter = dictionaryConstructorTablePtr_->cfind(modelType);
auto cstrIter = reactingEulerConstructorTablePtr_->cfind(modelType);
if (!cstrIter.found())
{
@ -59,7 +59,7 @@ Foam::wallBoilingModels::nucleateFluxModel::New
dict,
"nucleateFluxModel",
modelType,
*dictionaryConstructorTablePtr_
*reactingEulerConstructorTablePtr_
) << abort(FatalIOError);
}

View File

@ -65,7 +65,7 @@ public:
(
autoPtr,
nucleateFluxModel,
dictionary,
reactingEuler,
(
const dictionary& dict
),

View File

@ -42,7 +42,7 @@ namespace nucleationSiteModels
(
nucleationSiteModel,
LemmertChawla,
dictionary
reactingEuler
);
}
}

View File

@ -35,7 +35,7 @@ namespace Foam
namespace wallBoilingModels
{
defineTypeNameAndDebug(nucleationSiteModel, 0);
defineRunTimeSelectionTable(nucleationSiteModel, dictionary);
defineRunTimeSelectionTable(nucleationSiteModel, reactingEuler);
}
}
@ -52,7 +52,7 @@ Foam::wallBoilingModels::nucleationSiteModel::New
Info<< "Selecting nucleationSiteModel: " << modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = reactingEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -61,7 +61,7 @@ Foam::wallBoilingModels::nucleationSiteModel::New
dict,
"nucleationSiteModel",
modelType,
*dictionaryConstructorTablePtr_
*reactingEulerConstructorTablePtr_
) << abort(FatalIOError);
}

View File

@ -69,7 +69,7 @@ public:
(
autoPtr,
nucleationSiteModel,
dictionary,
reactingEuler,
(
const dictionary& dict
),

View File

@ -42,7 +42,7 @@ namespace partitioningModels
(
partitioningModel,
Lavieville,
dictionary
reactingEuler
);
}
}

View File

@ -42,7 +42,7 @@ namespace partitioningModels
(
partitioningModel,
cosine,
dictionary
reactingEuler
);
}
}

View File

@ -42,7 +42,7 @@ namespace partitioningModels
(
partitioningModel,
linear,
dictionary
reactingEuler
);
}
}

View File

@ -35,7 +35,7 @@ namespace Foam
namespace wallBoilingModels
{
defineTypeNameAndDebug(partitioningModel, 0);
defineRunTimeSelectionTable(partitioningModel, dictionary);
defineRunTimeSelectionTable(partitioningModel, reactingEuler);
}
}
@ -53,7 +53,7 @@ Foam::wallBoilingModels::partitioningModel::New
Info<< "Selecting partitioningModel: "
<< modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = reactingEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -62,7 +62,7 @@ Foam::wallBoilingModels::partitioningModel::New
dict,
"partitioningModel",
modelType,
*dictionaryConstructorTablePtr_
*reactingEulerConstructorTablePtr_
) << abort(FatalIOError);
}

View File

@ -66,7 +66,7 @@ public:
(
autoPtr,
partitioningModel,
dictionary,
reactingEuler,
(
const dictionary& dict
),

View File

@ -42,7 +42,7 @@ namespace partitioningModels
(
partitioningModel,
phaseFraction,
dictionary
reactingEuler
);
}
}

View File

@ -41,7 +41,7 @@ namespace diameterModels
(
diameterModel,
constant,
dictionary
reactingEuler
);
}
}

View File

@ -33,7 +33,7 @@ License
namespace Foam
{
defineTypeNameAndDebug(diameterModel, 0);
defineRunTimeSelectionTable(diameterModel, dictionary);
defineRunTimeSelectionTable(diameterModel, reactingEuler);
}
@ -66,7 +66,7 @@ Foam::diameterModel::New
<< ": "
<< modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = reactingEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -75,7 +75,7 @@ Foam::diameterModel::New
dict,
"diameterModel",
modelType,
*dictionaryConstructorTablePtr_
*reactingEulerConstructorTablePtr_
) << abort(FatalIOError);
}

View File

@ -74,7 +74,7 @@ public:
(
autoPtr,
diameterModel,
dictionary,
reactingEuler,
(
const dictionary& dict,
const phaseModel& phase

View File

@ -41,7 +41,7 @@ namespace diameterModels
(
diameterModel,
isothermal,
dictionary
reactingEuler
);
}
}

View File

@ -43,7 +43,7 @@ namespace diameterModels
(
diameterModel,
linearTsub,
dictionary
reactingEuler
);
}
}

View File

@ -44,7 +44,7 @@ namespace diameterModels
(
diameterModel,
velocityGroup,
dictionary
reactingEuler
);
}
}

View File

@ -203,7 +203,7 @@ public:
( \
interfaceCompositionModel, \
Type##Thermo##OtherThermo, \
dictionary \
reactingEuler \
)
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -35,7 +35,7 @@ License
namespace Foam
{
defineTypeNameAndDebug(interfaceCompositionModel, 0);
defineRunTimeSelectionTable(interfaceCompositionModel, dictionary);
defineRunTimeSelectionTable(interfaceCompositionModel, reactingEuler);
}
@ -74,7 +74,7 @@ Foam::interfaceCompositionModel::New
Info<< "Selecting interfaceCompositionModel for "
<< pair << ": " << modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = reactingEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -83,7 +83,7 @@ Foam::interfaceCompositionModel::New
dict,
"interfaceCompositionModel",
modelType,
*dictionaryConstructorTablePtr_
*reactingEulerConstructorTablePtr_
) << abort(FatalIOError);
}

View File

@ -83,7 +83,7 @@ public:
(
autoPtr,
interfaceCompositionModel,
dictionary,
reactingEuler,
(
const dictionary& dict,
const phasePair& pair

View File

@ -36,7 +36,7 @@ namespace Foam
namespace massTransferModels
{
defineTypeNameAndDebug(Frossling, 0);
addToRunTimeSelectionTable(massTransferModel, Frossling, dictionary);
addToRunTimeSelectionTable(massTransferModel, Frossling, reactingEuler);
}
}

View File

@ -36,7 +36,7 @@ namespace Foam
{
defineTypeNameAndDebug(massTransferModel, 0);
defineBlendedInterfacialModelTypeNameAndDebug(massTransferModel, 0);
defineRunTimeSelectionTable(massTransferModel, dictionary);
defineRunTimeSelectionTable(massTransferModel, reactingEuler);
}
const Foam::dimensionSet Foam::massTransferModel::dimK(0, -2, 0, 0, 0);
@ -68,7 +68,7 @@ Foam::massTransferModel::New
Info<< "Selecting massTransferModel for "
<< pair << ": " << modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = reactingEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -77,7 +77,7 @@ Foam::massTransferModel::New
dict,
"massTransferModel",
modelType,
*dictionaryConstructorTablePtr_
*reactingEulerConstructorTablePtr_
) << abort(FatalIOError);
}

View File

@ -75,7 +75,7 @@ public:
(
autoPtr,
massTransferModel,
dictionary,
reactingEuler,
(
const dictionary& dict,
const phasePair& pair

View File

@ -40,7 +40,7 @@ namespace massTransferModels
(
massTransferModel,
sphericalMassTransfer,
dictionary
reactingEuler
);
}
}

View File

@ -43,7 +43,7 @@ namespace surfaceTensionModels
(
surfaceTensionModel,
constantSurfaceTensionCoefficient,
dictionary
reactingEuler
);
}
}

View File

@ -36,7 +36,7 @@ namespace Foam
namespace reactingMultiphaseEuler
{
defineTypeNameAndDebug(surfaceTensionModel, 0);
defineRunTimeSelectionTable(surfaceTensionModel, dictionary);
defineRunTimeSelectionTable(surfaceTensionModel, reactingEuler);
}
}
@ -83,7 +83,7 @@ Foam::reactingMultiphaseEuler::surfaceTensionModel::New
Info<< "Selecting surfaceTensionModel for "
<< pair << ": " << modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = reactingEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -92,7 +92,7 @@ Foam::reactingMultiphaseEuler::surfaceTensionModel::New
dict,
"surfaceTensionModel",
modelType,
*dictionaryConstructorTablePtr_
*reactingEulerConstructorTablePtr_
) << abort(FatalIOError);
}

View File

@ -79,7 +79,7 @@ public:
(
autoPtr,
surfaceTensionModel,
dictionary,
reactingEuler,
(
const dictionary& dict,
const phasePair& pair,

View File

@ -40,7 +40,7 @@ namespace aspectRatioModels
(
aspectRatioModel,
TomiyamaAspectRatio,
dictionary
reactingEuler
);
}
}

View File

@ -40,7 +40,7 @@ namespace aspectRatioModels
(
aspectRatioModel,
VakhrushevEfremov,
dictionary
reactingEuler
);
}
}

View File

@ -40,7 +40,7 @@ namespace aspectRatioModels
(
aspectRatioModel,
Wellek,
dictionary
reactingEuler
);
}
}

View File

@ -34,7 +34,7 @@ License
namespace Foam
{
defineTypeNameAndDebug(aspectRatioModel, 0);
defineRunTimeSelectionTable(aspectRatioModel, dictionary);
defineRunTimeSelectionTable(aspectRatioModel, reactingEuler);
}
@ -64,7 +64,7 @@ Foam::aspectRatioModel::New
Info<< "Selecting aspectRatioModel for "
<< pair << ": " << modelType << endl;
auto* ctorPtr = dictionaryConstructorTable(modelType);
auto* ctorPtr = reactingEulerConstructorTable(modelType);
if (!ctorPtr)
{
@ -73,7 +73,7 @@ Foam::aspectRatioModel::New
dict,
"swarmCorrection",
modelType,
*dictionaryConstructorTablePtr_
*reactingEulerConstructorTablePtr_
) << abort(FatalIOError);
}

View File

@ -74,7 +74,7 @@ public:
(
autoPtr,
aspectRatioModel,
dictionary,
reactingEuler,
(
const dictionary& dict,
const phasePair& pair

View File

@ -40,7 +40,7 @@ namespace aspectRatioModels
(
aspectRatioModel,
constantAspectRatio,
dictionary
reactingEuler
);
}
}

View File

@ -37,7 +37,7 @@ namespace Foam
namespace dragModels
{
defineTypeNameAndDebug(AttouFerschneider, 0);
addToRunTimeSelectionTable(dragModel, AttouFerschneider, dictionary);
addToRunTimeSelectionTable(dragModel, AttouFerschneider, reactingEuler);
}
}

Some files were not shown because too many files have changed in this diff Show More