Skip to content
Snippets Groups Projects
Commit 742d1dc6 authored by Andrew Heather's avatar Andrew Heather Committed by Mark OLESEN
Browse files

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
parent 1e02a4ae
No related tags found
No related merge requests found
Showing
with 30 additions and 30 deletions
......@@ -44,7 +44,7 @@ namespace filmBoilingModels
(
filmBoilingModel,
BreenWestwater,
dictionary
reactingEuler
);
}
}
......
......@@ -45,7 +45,7 @@ namespace filmBoilingModels
(
filmBoilingModel,
Bromley,
dictionary
reactingEuler
);
}
}
......
......@@ -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);
}
......
......@@ -67,7 +67,7 @@ public:
(
autoPtr,
filmBoilingModel,
dictionary,
reactingEuler,
(
const dictionary& dict
),
......
......@@ -44,7 +44,7 @@ namespace nucleateFluxModels
(
nucleateFluxModel,
Kutadeladze,
dictionary
reactingEuler
);
}
}
......
......@@ -44,7 +44,7 @@ namespace nucleateFluxModels
(
nucleateFluxModel,
exponential,
dictionary
reactingEuler
);
}
}
......
......@@ -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);
}
......
......@@ -65,7 +65,7 @@ public:
(
autoPtr,
nucleateFluxModel,
dictionary,
reactingEuler,
(
const dictionary& dict
),
......
......@@ -42,7 +42,7 @@ namespace nucleationSiteModels
(
nucleationSiteModel,
LemmertChawla,
dictionary
reactingEuler
);
}
}
......
......@@ -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);
}
......
......@@ -69,7 +69,7 @@ public:
(
autoPtr,
nucleationSiteModel,
dictionary,
reactingEuler,
(
const dictionary& dict
),
......
......@@ -42,7 +42,7 @@ namespace partitioningModels
(
partitioningModel,
Lavieville,
dictionary
reactingEuler
);
}
}
......
......@@ -42,7 +42,7 @@ namespace partitioningModels
(
partitioningModel,
cosine,
dictionary
reactingEuler
);
}
}
......
......@@ -42,7 +42,7 @@ namespace partitioningModels
(
partitioningModel,
linear,
dictionary
reactingEuler
);
}
}
......
......@@ -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);
}
......
......@@ -66,7 +66,7 @@ public:
(
autoPtr,
partitioningModel,
dictionary,
reactingEuler,
(
const dictionary& dict
),
......
......@@ -42,7 +42,7 @@ namespace partitioningModels
(
partitioningModel,
phaseFraction,
dictionary
reactingEuler
);
}
}
......
......@@ -41,7 +41,7 @@ namespace diameterModels
(
diameterModel,
constant,
dictionary
reactingEuler
);
}
}
......
......@@ -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);
}
......
......@@ -74,7 +74,7 @@ public:
(
autoPtr,
diameterModel,
dictionary,
reactingEuler,
(
const dictionary& dict,
const phaseModel& phase
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment