diff --git a/applications/solvers/combustion/chemFoam/chemFoam.C b/applications/solvers/combustion/chemFoam/chemFoam.C index 5633875c91..4fa56e8442 100644 --- a/applications/solvers/combustion/chemFoam/chemFoam.C +++ b/applications/solvers/combustion/chemFoam/chemFoam.C @@ -35,7 +35,7 @@ Description #include "zeroDimensionalFvMesh.H" #include "fluidMulticomponentThermo.H" #include "basicChemistryModel.H" -#include "multiComponentMixture.H" +#include "multicomponentMixture.H" #include "chemistrySolver.H" #include "OFstream.H" #include "basicSpecieMixture.H" diff --git a/applications/solvers/multiphase/multiphaseEulerFoam/multiphaseEulerFoam/YEqns.H b/applications/solvers/multiphase/multiphaseEulerFoam/multiphaseEulerFoam/YEqns.H index 23a633e573..92bca586c8 100644 --- a/applications/solvers/multiphase/multiphaseEulerFoam/multiphaseEulerFoam/YEqns.H +++ b/applications/solvers/multiphase/multiphaseEulerFoam/multiphaseEulerFoam/YEqns.H @@ -7,9 +7,9 @@ fluid.correctReactions(); - forAll(fluid.multiComponentPhases(), multiComponentPhasei) + forAll(fluid.multicomponentPhases(), multicomponentPhasei) { - phaseModel& phase = fluid.multiComponentPhases()[multiComponentPhasei]; + phaseModel& phase = fluid.multicomponentPhases()[multicomponentPhasei]; UPtrList& Y = phase.YActiveRef(); const volScalarField& alpha = phase; diff --git a/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseModel/MultiComponentPhaseModel/MultiComponentPhaseModel.C b/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseModel/MulticomponentPhaseModel/MulticomponentPhaseModel.C similarity index 84% rename from applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseModel/MultiComponentPhaseModel/MultiComponentPhaseModel.C rename to applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseModel/MulticomponentPhaseModel/MulticomponentPhaseModel.C index 203f47b916..372ac85346 100644 --- a/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseModel/MultiComponentPhaseModel/MultiComponentPhaseModel.C +++ b/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseModel/MulticomponentPhaseModel/MulticomponentPhaseModel.C @@ -23,7 +23,7 @@ License \*---------------------------------------------------------------------------*/ -#include "MultiComponentPhaseModel.H" +#include "MulticomponentPhaseModel.H" #include "phaseSystem.H" @@ -38,7 +38,7 @@ License // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template -Foam::MultiComponentPhaseModel::MultiComponentPhaseModel +Foam::MulticomponentPhaseModel::MulticomponentPhaseModel ( const phaseSystem& fluid, const word& phaseName, @@ -65,14 +65,14 @@ Foam::MultiComponentPhaseModel::MultiComponentPhaseModel // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // template -Foam::MultiComponentPhaseModel::~MultiComponentPhaseModel() +Foam::MulticomponentPhaseModel::~MulticomponentPhaseModel() {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template -void Foam::MultiComponentPhaseModel::correctSpecies() +void Foam::MulticomponentPhaseModel::correctSpecies() { this->thermo_->composition().normalise(); BasePhaseModel::correctSpecies(); @@ -80,7 +80,7 @@ void Foam::MultiComponentPhaseModel::correctSpecies() template -bool Foam::MultiComponentPhaseModel::pure() const +bool Foam::MulticomponentPhaseModel::pure() const { return false; } @@ -88,7 +88,7 @@ bool Foam::MultiComponentPhaseModel::pure() const template Foam::tmp -Foam::MultiComponentPhaseModel::YiEqn(volScalarField& Yi) +Foam::MulticomponentPhaseModel::YiEqn(volScalarField& Yi) { const volScalarField& alpha = *this; const volScalarField& rho = this->thermo().rho(); @@ -119,7 +119,7 @@ Foam::MultiComponentPhaseModel::YiEqn(volScalarField& Yi) template const Foam::PtrList& -Foam::MultiComponentPhaseModel::Y() const +Foam::MulticomponentPhaseModel::Y() const { return this->thermo_->composition().Y(); } @@ -127,7 +127,7 @@ Foam::MultiComponentPhaseModel::Y() const template const Foam::volScalarField& -Foam::MultiComponentPhaseModel::Y(const word& name) const +Foam::MulticomponentPhaseModel::Y(const word& name) const { return this->thermo_->composition().Y(name); } @@ -135,7 +135,7 @@ Foam::MultiComponentPhaseModel::Y(const word& name) const template Foam::PtrList& -Foam::MultiComponentPhaseModel::YRef() +Foam::MulticomponentPhaseModel::YRef() { return this->thermo_->composition().Y(); } @@ -143,7 +143,7 @@ Foam::MultiComponentPhaseModel::YRef() template const Foam::UPtrList& -Foam::MultiComponentPhaseModel::YActive() const +Foam::MulticomponentPhaseModel::YActive() const { return YActive_; } @@ -151,7 +151,7 @@ Foam::MultiComponentPhaseModel::YActive() const template Foam::UPtrList& -Foam::MultiComponentPhaseModel::YActiveRef() +Foam::MulticomponentPhaseModel::YActiveRef() { return YActive_; } diff --git a/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseModel/MultiComponentPhaseModel/MultiComponentPhaseModel.H b/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseModel/MulticomponentPhaseModel/MulticomponentPhaseModel.H similarity index 90% rename from applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseModel/MultiComponentPhaseModel/MultiComponentPhaseModel.H rename to applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseModel/MulticomponentPhaseModel/MulticomponentPhaseModel.H index c5d9620543..dfaac8e06f 100644 --- a/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseModel/MultiComponentPhaseModel/MultiComponentPhaseModel.H +++ b/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseModel/MulticomponentPhaseModel/MulticomponentPhaseModel.H @@ -22,19 +22,19 @@ License along with OpenFOAM. If not, see . Class - Foam::MultiComponentPhaseModel + Foam::MulticomponentPhaseModel Description Class which represents a phase with multiple species. Returns the species' mass fractions, and their governing equations. SourceFiles - MultiComponentPhaseModel.C + MulticomponentPhaseModel.C \*---------------------------------------------------------------------------*/ -#ifndef MultiComponentPhaseModel_H -#define MultiComponentPhaseModel_H +#ifndef MulticomponentPhaseModel_H +#define MulticomponentPhaseModel_H #include "phaseModel.H" @@ -44,11 +44,11 @@ namespace Foam { /*---------------------------------------------------------------------------*\ - Class MultiComponentPhaseModel Declaration + Class MulticomponentPhaseModel Declaration \*---------------------------------------------------------------------------*/ template -class MultiComponentPhaseModel +class MulticomponentPhaseModel : public BasePhaseModel { @@ -64,7 +64,7 @@ public: // Constructors - MultiComponentPhaseModel + MulticomponentPhaseModel ( const phaseSystem& fluid, const word& phaseName, @@ -74,7 +74,7 @@ public: //- Destructor - virtual ~MultiComponentPhaseModel(); + virtual ~MulticomponentPhaseModel(); // Member Functions @@ -114,7 +114,7 @@ public: // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository - #include "MultiComponentPhaseModel.C" + #include "MulticomponentPhaseModel.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // diff --git a/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseModel/phaseModel/phaseModels.C b/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseModel/phaseModel/phaseModels.C index 58141b5b85..046eeddcce 100644 --- a/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseModel/phaseModel/phaseModels.C +++ b/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseModel/phaseModel/phaseModels.C @@ -35,7 +35,7 @@ License #include "IsothermalPhaseModel.H" #include "AnisothermalPhaseModel.H" #include "PurePhaseModel.H" -#include "MultiComponentPhaseModel.H" +#include "MulticomponentPhaseModel.H" #include "InertPhaseModel.H" #include "ReactingPhaseModel.H" #include "MovingPhaseModel.H" @@ -144,7 +144,7 @@ namespace Foam typedef AnisothermalPhaseModel < - MultiComponentPhaseModel + MulticomponentPhaseModel < InertPhaseModel < @@ -155,12 +155,22 @@ namespace Foam > > > - multiComponentPhaseModel; + multicomponentPhaseModel; addNamedToRunTimeSelectionTable ( phaseModel, - multiComponentPhaseModel, + multicomponentPhaseModel, + phaseSystem, + multicomponentPhaseModel + ); + + // Also add multicomponentPhaseModel with the name multiComponentPhaseModel + // for backward-compatibility + addNamedToRunTimeSelectionTable + ( + phaseModel, + multicomponentPhaseModel, phaseSystem, multiComponentPhaseModel ); @@ -168,7 +178,7 @@ namespace Foam typedef IsothermalPhaseModel < - MultiComponentPhaseModel + MulticomponentPhaseModel < InertPhaseModel < @@ -179,20 +189,20 @@ namespace Foam > > > - multiComponentIsothermalPhaseModel; + multicomponentIsothermalPhaseModel; addNamedToRunTimeSelectionTable ( phaseModel, - multiComponentIsothermalPhaseModel, + multicomponentIsothermalPhaseModel, phaseSystem, - multiComponentIsothermalPhaseModel + multicomponentIsothermalPhaseModel ); typedef AnisothermalPhaseModel < - MultiComponentPhaseModel + MulticomponentPhaseModel < ReactingPhaseModel < diff --git a/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseSystem/phaseSystem.C b/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseSystem/phaseSystem.C index 912af832c1..3b41421372 100644 --- a/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseSystem/phaseSystem.C +++ b/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseSystem/phaseSystem.C @@ -261,24 +261,24 @@ Foam::phaseSystem::phaseSystem label movingPhasei = 0; label stationaryPhasei = 0; label anisothermalPhasei = 0; - label multiComponentPhasei = 0; + label multicomponentPhasei = 0; forAll(phaseModels_, phasei) { phaseModel& phase = phaseModels_[phasei]; movingPhasei += !phase.stationary(); stationaryPhasei += phase.stationary(); anisothermalPhasei += !phase.isothermal(); - multiComponentPhasei += !phase.pure(); + multicomponentPhasei += !phase.pure(); } movingPhaseModels_.resize(movingPhasei); stationaryPhaseModels_.resize(stationaryPhasei); anisothermalPhaseModels_.resize(anisothermalPhasei); - multiComponentPhaseModels_.resize(multiComponentPhasei); + multicomponentPhaseModels_.resize(multicomponentPhasei); movingPhasei = 0; stationaryPhasei = 0; anisothermalPhasei = 0; - multiComponentPhasei = 0; + multicomponentPhasei = 0; forAll(phaseModels_, phasei) { phaseModel& phase = phaseModels_[phasei]; @@ -296,7 +296,7 @@ Foam::phaseSystem::phaseSystem } if (!phase.pure()) { - multiComponentPhaseModels_.set(multiComponentPhasei++, &phase); + multicomponentPhaseModels_.set(multicomponentPhasei++, &phase); } } diff --git a/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseSystem/phaseSystem.H b/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseSystem/phaseSystem.H index 58773ff72d..7fbc1ff1ab 100644 --- a/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseSystem/phaseSystem.H +++ b/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseSystem/phaseSystem.H @@ -143,7 +143,7 @@ protected: phaseModelPartialList anisothermalPhaseModels_; //- Multi-component phase models - phaseModelPartialList multiComponentPhaseModels_; + phaseModelPartialList multicomponentPhaseModels_; //- Total volumetric flux surfaceScalarField phi_; @@ -302,10 +302,10 @@ public: inline phaseModelPartialList& anisothermalPhases(); //- Return the models for phases that have multiple species - inline const phaseModelPartialList& multiComponentPhases() const; + inline const phaseModelPartialList& multicomponentPhases() const; //- Access the models for phases that have multiple species - inline phaseModelPartialList& multiComponentPhases(); + inline phaseModelPartialList& multicomponentPhases(); //- Return the phase not given as an argument in a two-phase system // An error is generated if the system is not two-phase diff --git a/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseSystem/phaseSystemI.H b/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseSystem/phaseSystemI.H index 77623cd328..1f41050559 100644 --- a/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseSystem/phaseSystemI.H +++ b/applications/solvers/multiphase/multiphaseEulerFoam/phaseSystems/phaseSystem/phaseSystemI.H @@ -88,16 +88,16 @@ Foam::phaseSystem::anisothermalPhases() inline const Foam::phaseSystem::phaseModelPartialList& -Foam::phaseSystem::multiComponentPhases() const +Foam::phaseSystem::multicomponentPhases() const { - return multiComponentPhaseModels_; + return multicomponentPhaseModels_; } inline Foam::phaseSystem::phaseModelPartialList& -Foam::phaseSystem::multiComponentPhases() +Foam::phaseSystem::multicomponentPhases() { - return multiComponentPhaseModels_; + return multicomponentPhaseModels_; } diff --git a/etc/codeTemplates/dynamicCode/fluidMulticomponentThermo b/etc/codeTemplates/dynamicCode/fluidMulticomponentThermo index cc37d7f013..9ebde2d6bf 100644 --- a/etc/codeTemplates/dynamicCode/fluidMulticomponentThermo +++ b/etc/codeTemplates/dynamicCode/fluidMulticomponentThermo @@ -36,15 +36,15 @@ energy mixture ( pureMixture - multiComponentMixture - valueMultiComponentMixture - coefficientWilkeMultiComponentMixture + multicomponentMixture + valueMulticomponentMixture + coefficientWilkeMulticomponentMixture ); mixtureRenamed ( pureMixture singleComponentMixture - multiComponentMixture coefficientMultiComponentMixture + multicomponentMixture coefficientMulticomponentMixture ); transport diff --git a/src/thermophysicalModels/basic/basicThermo/basicThermoTemplates.C b/src/thermophysicalModels/basic/basicThermo/basicThermoTemplates.C index 9f1169cbb3..bc8391650b 100644 --- a/src/thermophysicalModels/basic/basicThermo/basicThermoTemplates.C +++ b/src/thermophysicalModels/basic/basicThermo/basicThermoTemplates.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2012-2021 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2012-2022 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -29,6 +29,15 @@ License // * * * * * * * * * * * * * Static Member Functions * * * * * * * * * * * * // +// Convert multiComponent -> multicomponent for backward-compatibility +inline Foam::word mixtureName(const Foam::dictionary& thermoTypeDict) +{ + return + thermoTypeDict.lookup("mixture") + .replace("multiComponent", "multicomponent"); +} + + template typename Table::iterator Foam::basicThermo::lookupCstrIter ( @@ -57,7 +66,7 @@ typename Table::iterator Foam::basicThermo::lookupCstrIter List> { {"type", thermoTypeDict.lookup("type")}, - {"mixture", thermoTypeDict.lookup("mixture")}, + {"mixture", mixtureName(thermoTypeDict)}, {"transport", thermoTypeDict.lookup("transport")}, {"thermo", thermoTypeDict.lookup("thermo")}, { @@ -161,7 +170,7 @@ typename Table::iterator Foam::basicThermo::lookupCstrIter const word thermoTypeName ( word(thermoTypeDict.lookup("type")) + '<' - + word(thermoTypeDict.lookup("mixture")) + '<' + + word(mixtureName(thermoTypeDict)) + '<' + word(thermoTypeDict.lookup("properties")) + ',' + word(thermoTypeDict.lookup("energy")) + ">>" ); @@ -193,7 +202,7 @@ typename Table::iterator Foam::basicThermo::lookupCstrIter const word thermoTypeName ( word(thermoTypeDict.lookup("type")) + '<' - + word(thermoTypeDict.lookup("mixture")) + '<' + + word(mixtureName(thermoTypeDict)) + '<' + word(thermoTypeDict.lookup("transport")) + '<' + word(thermoTypeDict.lookup("thermo")) + '<' + word(thermoTypeDict.lookup("equationOfState")) + '<' diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/chemistryModel.C b/src/thermophysicalModels/chemistryModel/chemistryModel/chemistryModel.C index 7ab7a11ba0..606e6b90d3 100644 --- a/src/thermophysicalModels/chemistryModel/chemistryModel/chemistryModel.C +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/chemistryModel.C @@ -45,7 +45,7 @@ Foam::chemistryModel::chemistryModel ? jacobianTypeNames_.read(this->lookup("jacobian")) : jacobianType::fast ), - mixture_(refCast>(this->thermo())), + mixture_(refCast>(this->thermo())), specieThermos_(mixture_.specieThermos()), reactions_(mixture_.species(), specieThermos_, this->mesh(), *this), RR_(nSpecie_), diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/chemistryModel.H b/src/thermophysicalModels/chemistryModel/chemistryModel/chemistryModel.H index 2fb706d78a..a34167888d 100644 --- a/src/thermophysicalModels/chemistryModel/chemistryModel/chemistryModel.H +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/chemistryModel.H @@ -70,7 +70,7 @@ SourceFiles #include "ReactionList.H" #include "ODESystem.H" #include "volFields.H" -#include "multiComponentMixture.H" +#include "multicomponentMixture.H" #include "chemistryReductionMethod.H" #include "chemistryTabulationMethod.H" #include "DynamicField.H" @@ -135,7 +135,7 @@ class chemistryModel const jacobianType jacobianType_; //- Reference to the multi component mixture - const multiComponentMixture& mixture_; + const multicomponentMixture& mixture_; //- Thermodynamic data of the species const PtrList& specieThermos_; @@ -215,7 +215,7 @@ public: // Member Functions //- Return reference to the mixture - inline const multiComponentMixture& mixture() const; + inline const multicomponentMixture& mixture() const; //- The reactions inline const PtrList>& reactions() const; diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/chemistryModelI.H b/src/thermophysicalModels/chemistryModel/chemistryModel/chemistryModelI.H index 5f1f7bb640..6cc7acbb52 100644 --- a/src/thermophysicalModels/chemistryModel/chemistryModel/chemistryModelI.H +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/chemistryModelI.H @@ -34,7 +34,7 @@ Foam::chemistryModel::RR() template -inline const Foam::multiComponentMixture& +inline const Foam::multicomponentMixture& Foam::chemistryModel::mixture() const { return mixture_; diff --git a/src/thermophysicalModels/multicomponentThermo/mixtures/coefficientMultiComponentMixture/coefficientMultiComponentMixture.C b/src/thermophysicalModels/multicomponentThermo/mixtures/coefficientMulticomponentMixture/coefficientMulticomponentMixture.C similarity index 84% rename from src/thermophysicalModels/multicomponentThermo/mixtures/coefficientMultiComponentMixture/coefficientMultiComponentMixture.C rename to src/thermophysicalModels/multicomponentThermo/mixtures/coefficientMulticomponentMixture/coefficientMulticomponentMixture.C index 3916ab2df9..2a33b3f573 100644 --- a/src/thermophysicalModels/multicomponentThermo/mixtures/coefficientMultiComponentMixture/coefficientMultiComponentMixture.C +++ b/src/thermophysicalModels/multicomponentThermo/mixtures/coefficientMulticomponentMixture/coefficientMulticomponentMixture.C @@ -23,20 +23,20 @@ License \*---------------------------------------------------------------------------*/ -#include "coefficientMultiComponentMixture.H" +#include "coefficientMulticomponentMixture.H" // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template -Foam::coefficientMultiComponentMixture:: -coefficientMultiComponentMixture +Foam::coefficientMulticomponentMixture:: +coefficientMulticomponentMixture ( const dictionary& thermoDict, const fvMesh& mesh, const word& phaseName ) : - multiComponentMixture + multicomponentMixture ( thermoDict, mesh, @@ -50,8 +50,8 @@ coefficientMultiComponentMixture template const typename -Foam::coefficientMultiComponentMixture::thermoMixtureType& -Foam::coefficientMultiComponentMixture::cellThermoMixture +Foam::coefficientMulticomponentMixture::thermoMixtureType& +Foam::coefficientMulticomponentMixture::cellThermoMixture ( const label celli ) const @@ -69,8 +69,8 @@ Foam::coefficientMultiComponentMixture::cellThermoMixture template const typename -Foam::coefficientMultiComponentMixture::thermoMixtureType& -Foam::coefficientMultiComponentMixture::patchFaceThermoMixture +Foam::coefficientMulticomponentMixture::thermoMixtureType& +Foam::coefficientMulticomponentMixture::patchFaceThermoMixture ( const label patchi, const label facei diff --git a/src/thermophysicalModels/multicomponentThermo/mixtures/coefficientMultiComponentMixture/coefficientMultiComponentMixture.H b/src/thermophysicalModels/multicomponentThermo/mixtures/coefficientMulticomponentMixture/coefficientMulticomponentMixture.H similarity index 85% rename from src/thermophysicalModels/multicomponentThermo/mixtures/coefficientMultiComponentMixture/coefficientMultiComponentMixture.H rename to src/thermophysicalModels/multicomponentThermo/mixtures/coefficientMulticomponentMixture/coefficientMulticomponentMixture.H index 6bea409aa0..87b3e1bdf2 100644 --- a/src/thermophysicalModels/multicomponentThermo/mixtures/coefficientMultiComponentMixture/coefficientMultiComponentMixture.H +++ b/src/thermophysicalModels/multicomponentThermo/mixtures/coefficientMulticomponentMixture/coefficientMulticomponentMixture.H @@ -22,21 +22,21 @@ License along with OpenFOAM. If not, see . Class - Foam::coefficientMultiComponentMixture + Foam::coefficientMulticomponentMixture Description Thermophysical properties mixing class which applies mass-fraction weighted mixing to the thermodynamic and transport coefficients. SourceFiles - coefficientMultiComponentMixture.C + coefficientMulticomponentMixture.C \*---------------------------------------------------------------------------*/ -#ifndef coefficientMultiComponentMixture_H -#define coefficientMultiComponentMixture_H +#ifndef coefficientMulticomponentMixture_H +#define coefficientMulticomponentMixture_H -#include "multiComponentMixture.H" +#include "multicomponentMixture.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -44,13 +44,13 @@ namespace Foam { /*---------------------------------------------------------------------------*\ - Class coefficientMultiComponentMixture Declaration + Class coefficientMulticomponentMixture Declaration \*---------------------------------------------------------------------------*/ template -class coefficientMultiComponentMixture +class coefficientMulticomponentMixture : - public multiComponentMixture + public multicomponentMixture { public: @@ -75,7 +75,7 @@ public: // Constructors //- Construct from dictionary, mesh and phase name - coefficientMultiComponentMixture + coefficientMulticomponentMixture ( const dictionary&, const fvMesh&, @@ -83,14 +83,14 @@ public: ); //- Disallow default bitwise copy construction - coefficientMultiComponentMixture + coefficientMulticomponentMixture ( - const coefficientMultiComponentMixture& + const coefficientMulticomponentMixture& ) = delete; //- Destructor - virtual ~coefficientMultiComponentMixture() + virtual ~coefficientMulticomponentMixture() {} @@ -99,7 +99,7 @@ public: //- Return the instantiated type name static word typeName() { - return "multiComponentMixture<" + ThermoType::typeName() + '>'; + return "multicomponentMixture<" + ThermoType::typeName() + '>'; } const thermoMixtureType& cellThermoMixture(const label celli) const; @@ -155,7 +155,7 @@ public: // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository - #include "coefficientMultiComponentMixture.C" + #include "coefficientMulticomponentMixture.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // diff --git a/src/thermophysicalModels/multicomponentThermo/mixtures/coefficientWilkeMultiComponentMixture/coefficientWilkeMultiComponentMixture.C b/src/thermophysicalModels/multicomponentThermo/mixtures/coefficientWilkeMulticomponentMixture/coefficientWilkeMulticomponentMixture.C similarity index 82% rename from src/thermophysicalModels/multicomponentThermo/mixtures/coefficientWilkeMultiComponentMixture/coefficientWilkeMultiComponentMixture.C rename to src/thermophysicalModels/multicomponentThermo/mixtures/coefficientWilkeMulticomponentMixture/coefficientWilkeMulticomponentMixture.C index c0b3c92eb5..4d9b7ec7a1 100644 --- a/src/thermophysicalModels/multicomponentThermo/mixtures/coefficientWilkeMultiComponentMixture/coefficientWilkeMultiComponentMixture.C +++ b/src/thermophysicalModels/multicomponentThermo/mixtures/coefficientWilkeMulticomponentMixture/coefficientWilkeMulticomponentMixture.C @@ -23,20 +23,20 @@ License \*---------------------------------------------------------------------------*/ -#include "coefficientWilkeMultiComponentMixture.H" +#include "coefficientWilkeMulticomponentMixture.H" // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template -Foam::coefficientWilkeMultiComponentMixture:: -coefficientWilkeMultiComponentMixture +Foam::coefficientWilkeMulticomponentMixture:: +coefficientWilkeMulticomponentMixture ( const dictionary& thermoDict, const fvMesh& mesh, const word& phaseName ) : - multiComponentMixture + multicomponentMixture ( thermoDict, mesh, @@ -48,7 +48,7 @@ coefficientWilkeMultiComponentMixture template -Foam::coefficientWilkeMultiComponentMixture::transportMixture:: +Foam::coefficientWilkeMulticomponentMixture::transportMixture:: transportMixture ( const PtrList& specieThermos @@ -85,7 +85,7 @@ transportMixture // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template -void Foam::coefficientWilkeMultiComponentMixture::transportMixture:: +void Foam::coefficientWilkeMulticomponentMixture::transportMixture:: WilkeWeights ( scalar p, @@ -123,7 +123,7 @@ WilkeWeights template Foam::scalar -Foam::coefficientWilkeMultiComponentMixture::transportMixture:: +Foam::coefficientWilkeMulticomponentMixture::transportMixture:: mu ( scalar p, @@ -144,7 +144,7 @@ mu template Foam::scalar -Foam::coefficientWilkeMultiComponentMixture::transportMixture:: +Foam::coefficientWilkeMulticomponentMixture::transportMixture:: kappa ( scalar p, @@ -168,8 +168,8 @@ kappa template const typename -Foam::coefficientWilkeMultiComponentMixture::thermoMixtureType& -Foam::coefficientWilkeMultiComponentMixture::cellThermoMixture +Foam::coefficientWilkeMulticomponentMixture::thermoMixtureType& +Foam::coefficientWilkeMulticomponentMixture::cellThermoMixture ( const label celli ) const @@ -187,8 +187,8 @@ Foam::coefficientWilkeMultiComponentMixture::cellThermoMixture template const typename -Foam::coefficientWilkeMultiComponentMixture::thermoMixtureType& -Foam::coefficientWilkeMultiComponentMixture::patchFaceThermoMixture +Foam::coefficientWilkeMulticomponentMixture::thermoMixtureType& +Foam::coefficientWilkeMulticomponentMixture::patchFaceThermoMixture ( const label patchi, const label facei @@ -211,8 +211,8 @@ Foam::coefficientWilkeMultiComponentMixture::patchFaceThermoMixture template const typename -Foam::coefficientWilkeMultiComponentMixture::transportMixtureType& -Foam::coefficientWilkeMultiComponentMixture::cellTransportMixture +Foam::coefficientWilkeMulticomponentMixture::transportMixtureType& +Foam::coefficientWilkeMulticomponentMixture::cellTransportMixture ( const label celli ) const @@ -240,8 +240,8 @@ Foam::coefficientWilkeMultiComponentMixture::cellTransportMixture template const typename -Foam::coefficientWilkeMultiComponentMixture::transportMixtureType& -Foam::coefficientWilkeMultiComponentMixture:: +Foam::coefficientWilkeMulticomponentMixture::transportMixtureType& +Foam::coefficientWilkeMulticomponentMixture:: patchFaceTransportMixture ( const label patchi, @@ -272,8 +272,8 @@ patchFaceTransportMixture template const typename -Foam::coefficientWilkeMultiComponentMixture::transportMixtureType& -Foam::coefficientWilkeMultiComponentMixture:: +Foam::coefficientWilkeMulticomponentMixture::transportMixtureType& +Foam::coefficientWilkeMulticomponentMixture:: cellTransportMixture ( const label celli, @@ -288,8 +288,8 @@ cellTransportMixture template const typename -Foam::coefficientWilkeMultiComponentMixture::transportMixtureType& -Foam::coefficientWilkeMultiComponentMixture:: +Foam::coefficientWilkeMulticomponentMixture::transportMixtureType& +Foam::coefficientWilkeMulticomponentMixture:: patchFaceTransportMixture ( const label patchi, diff --git a/src/thermophysicalModels/multicomponentThermo/mixtures/coefficientWilkeMultiComponentMixture/coefficientWilkeMultiComponentMixture.H b/src/thermophysicalModels/multicomponentThermo/mixtures/coefficientWilkeMulticomponentMixture/coefficientWilkeMulticomponentMixture.H similarity index 87% rename from src/thermophysicalModels/multicomponentThermo/mixtures/coefficientWilkeMultiComponentMixture/coefficientWilkeMultiComponentMixture.H rename to src/thermophysicalModels/multicomponentThermo/mixtures/coefficientWilkeMulticomponentMixture/coefficientWilkeMulticomponentMixture.H index 3fed96965b..dd2cfc3b6d 100644 --- a/src/thermophysicalModels/multicomponentThermo/mixtures/coefficientWilkeMultiComponentMixture/coefficientWilkeMultiComponentMixture.H +++ b/src/thermophysicalModels/multicomponentThermo/mixtures/coefficientWilkeMulticomponentMixture/coefficientWilkeMulticomponentMixture.H @@ -22,7 +22,7 @@ License along with OpenFOAM. If not, see . Class - Foam::coefficientWilkeMultiComponentMixture + Foam::coefficientWilkeMulticomponentMixture Description Thermophysical properties mixing class which applies mass-fraction weighted @@ -37,14 +37,14 @@ Description \endverbatim SourceFiles - coefficientWilkeMultiComponentMixture.C + coefficientWilkeMulticomponentMixture.C \*---------------------------------------------------------------------------*/ -#ifndef coefficientWilkeMultiComponentMixture_H -#define coefficientWilkeMultiComponentMixture_H +#ifndef coefficientWilkeMulticomponentMixture_H +#define coefficientWilkeMulticomponentMixture_H -#include "multiComponentMixture.H" +#include "multicomponentMixture.H" #include "scalarMatrices.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -53,13 +53,13 @@ namespace Foam { /*---------------------------------------------------------------------------*\ - Class coefficientWilkeMultiComponentMixture Declaration + Class coefficientWilkeMulticomponentMixture Declaration \*---------------------------------------------------------------------------*/ template -class coefficientWilkeMultiComponentMixture +class coefficientWilkeMulticomponentMixture : - public multiComponentMixture + public multicomponentMixture { public: @@ -96,7 +96,7 @@ public: public: - friend class coefficientWilkeMultiComponentMixture; + friend class coefficientWilkeMulticomponentMixture; // Constructors @@ -141,7 +141,7 @@ public: // Constructors //- Construct from dictionary, mesh and phase name - coefficientWilkeMultiComponentMixture + coefficientWilkeMulticomponentMixture ( const dictionary&, const fvMesh&, @@ -149,14 +149,14 @@ public: ); //- Disallow default bitwise copy construction - coefficientWilkeMultiComponentMixture + coefficientWilkeMulticomponentMixture ( - const coefficientWilkeMultiComponentMixture& + const coefficientWilkeMulticomponentMixture& ) = delete; //- Destructor - virtual ~coefficientWilkeMultiComponentMixture() + virtual ~coefficientWilkeMulticomponentMixture() {} @@ -166,7 +166,7 @@ public: static word typeName() { return - "coefficientWilkeMultiComponentMixture<" + "coefficientWilkeMulticomponentMixture<" + ThermoType::typeName() + '>'; } @@ -211,7 +211,7 @@ public: // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository - #include "coefficientWilkeMultiComponentMixture.C" + #include "coefficientWilkeMulticomponentMixture.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // diff --git a/src/thermophysicalModels/multicomponentThermo/mixtures/multiComponentMixture/multiComponentMixture.C b/src/thermophysicalModels/multicomponentThermo/mixtures/multicomponentMixture/multicomponentMixture.C similarity index 91% rename from src/thermophysicalModels/multicomponentThermo/mixtures/multiComponentMixture/multiComponentMixture.C rename to src/thermophysicalModels/multicomponentThermo/mixtures/multicomponentMixture/multicomponentMixture.C index 62aa35e6e7..3993a0b36b 100644 --- a/src/thermophysicalModels/multicomponentThermo/mixtures/multiComponentMixture/multiComponentMixture.C +++ b/src/thermophysicalModels/multicomponentThermo/mixtures/multicomponentMixture/multicomponentMixture.C @@ -23,13 +23,13 @@ License \*---------------------------------------------------------------------------*/ -#include "multiComponentMixture.H" +#include "multicomponentMixture.H" // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // template Foam::PtrList -Foam::multiComponentMixture::readSpeciesData +Foam::multicomponentMixture::readSpeciesData ( const dictionary& thermoDict ) const @@ -51,7 +51,7 @@ Foam::multiComponentMixture::readSpeciesData template Foam::List> -Foam::multiComponentMixture::readSpeciesComposition +Foam::multicomponentMixture::readSpeciesComposition ( const dictionary& thermoDict ) const @@ -87,7 +87,7 @@ Foam::multiComponentMixture::readSpeciesComposition // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template -Foam::multiComponentMixture::multiComponentMixture +Foam::multicomponentMixture::multicomponentMixture ( const dictionary& thermoDict, const fvMesh& mesh, @@ -111,7 +111,7 @@ Foam::multiComponentMixture::multiComponentMixture // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template -void Foam::multiComponentMixture::read +void Foam::multicomponentMixture::read ( const dictionary& thermoDict ) @@ -123,7 +123,7 @@ void Foam::multiComponentMixture::read template const Foam::List& -Foam::multiComponentMixture::specieComposition +Foam::multicomponentMixture::specieComposition ( const label speciei ) const diff --git a/src/thermophysicalModels/multicomponentThermo/mixtures/multiComponentMixture/multiComponentMixture.H b/src/thermophysicalModels/multicomponentThermo/mixtures/multicomponentMixture/multicomponentMixture.H similarity index 88% rename from src/thermophysicalModels/multicomponentThermo/mixtures/multiComponentMixture/multiComponentMixture.H rename to src/thermophysicalModels/multicomponentThermo/mixtures/multicomponentMixture/multicomponentMixture.H index 0efcfa8b7a..065e493eb5 100644 --- a/src/thermophysicalModels/multicomponentThermo/mixtures/multiComponentMixture/multiComponentMixture.H +++ b/src/thermophysicalModels/multicomponentThermo/mixtures/multicomponentMixture/multicomponentMixture.H @@ -22,18 +22,18 @@ License along with OpenFOAM. If not, see . Class - Foam::multiComponentMixture + Foam::multicomponentMixture Description - Foam::multiComponentMixture + Foam::multicomponentMixture SourceFiles - multiComponentMixture.C + multicomponentMixture.C \*---------------------------------------------------------------------------*/ -#ifndef multiComponentMixture_H -#define multiComponentMixture_H +#ifndef multicomponentMixture_H +#define multicomponentMixture_H #include "basicSpecieMixture.H" #include "HashPtrTable.H" @@ -45,11 +45,11 @@ namespace Foam { /*---------------------------------------------------------------------------*\ - Class multiComponentMixture Declaration + Class multicomponentMixture Declaration \*---------------------------------------------------------------------------*/ template -class multiComponentMixture +class multicomponentMixture : public basicSpecieMixture { @@ -88,17 +88,17 @@ public: // Constructors //- Construct from dictionary, mesh and phase name - multiComponentMixture(const dictionary&, const fvMesh&, const word&); + multicomponentMixture(const dictionary&, const fvMesh&, const word&); //- Disallow default bitwise copy construction - multiComponentMixture + multicomponentMixture ( - const multiComponentMixture& + const multicomponentMixture& ) = delete; //- Destructor - virtual ~multiComponentMixture() + virtual ~multicomponentMixture() {} @@ -134,7 +134,7 @@ public: // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository - #include "multiComponentMixture.C" + #include "multicomponentMixture.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // diff --git a/src/thermophysicalModels/multicomponentThermo/mixtures/valueMultiComponentMixture/valueMultiComponentMixture.C b/src/thermophysicalModels/multicomponentThermo/mixtures/valueMulticomponentMixture/valueMulticomponentMixture.C similarity index 81% rename from src/thermophysicalModels/multicomponentThermo/mixtures/valueMultiComponentMixture/valueMultiComponentMixture.C rename to src/thermophysicalModels/multicomponentThermo/mixtures/valueMulticomponentMixture/valueMulticomponentMixture.C index 23c2faa61f..3d3be6fd85 100644 --- a/src/thermophysicalModels/multicomponentThermo/mixtures/valueMultiComponentMixture/valueMultiComponentMixture.C +++ b/src/thermophysicalModels/multicomponentThermo/mixtures/valueMulticomponentMixture/valueMulticomponentMixture.C @@ -23,19 +23,19 @@ License \*---------------------------------------------------------------------------*/ -#include "valueMultiComponentMixture.H" +#include "valueMulticomponentMixture.H" // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template -Foam::valueMultiComponentMixture::valueMultiComponentMixture +Foam::valueMulticomponentMixture::valueMulticomponentMixture ( const dictionary& thermoDict, const fvMesh& mesh, const word& phaseName ) : - multiComponentMixture + multicomponentMixture ( thermoDict, mesh, @@ -50,7 +50,7 @@ Foam::valueMultiComponentMixture::valueMultiComponentMixture template Foam::scalar -Foam::valueMultiComponentMixture::thermoMixture::limit +Foam::valueMulticomponentMixture::thermoMixture::limit ( const scalar T ) const @@ -62,7 +62,7 @@ Foam::valueMultiComponentMixture::thermoMixture::limit template template Foam::scalar -Foam::valueMultiComponentMixture::thermoMixture::massWeighted +Foam::valueMulticomponentMixture::thermoMixture::massWeighted ( Method psiMethod, const Args& ... args @@ -82,7 +82,7 @@ Foam::valueMultiComponentMixture::thermoMixture::massWeighted template template Foam::scalar -Foam::valueMultiComponentMixture::thermoMixture:: +Foam::valueMulticomponentMixture::thermoMixture:: harmonicMassWeighted ( Method psiMethod, @@ -103,7 +103,7 @@ harmonicMassWeighted template template Foam::scalar -Foam::valueMultiComponentMixture::transportMixture::moleWeighted +Foam::valueMulticomponentMixture::transportMixture::moleWeighted ( Method psiMethod, const Args& ... args @@ -121,7 +121,7 @@ Foam::valueMultiComponentMixture::transportMixture::moleWeighted template -Foam::scalar Foam::valueMultiComponentMixture::thermoMixture::W +Foam::scalar Foam::valueMulticomponentMixture::thermoMixture::W () const { return harmonicMassWeighted(&ThermoType::W); @@ -129,7 +129,7 @@ Foam::scalar Foam::valueMultiComponentMixture::thermoMixture::W template -Foam::scalar Foam::valueMultiComponentMixture::thermoMixture::rho +Foam::scalar Foam::valueMulticomponentMixture::thermoMixture::rho ( scalar p, scalar T @@ -140,7 +140,7 @@ Foam::scalar Foam::valueMultiComponentMixture::thermoMixture::rho template -Foam::scalar Foam::valueMultiComponentMixture::thermoMixture::psi +Foam::scalar Foam::valueMulticomponentMixture::thermoMixture::psi ( scalar p, scalar T @@ -167,7 +167,7 @@ Foam::scalar Foam::valueMultiComponentMixture::thermoMixture::psi template -Foam::scalar Foam::valueMultiComponentMixture::thermoMixture::Hf +Foam::scalar Foam::valueMulticomponentMixture::thermoMixture::Hf () const { return massWeighted(&ThermoType::Hf); @@ -177,7 +177,7 @@ Foam::scalar Foam::valueMultiComponentMixture::thermoMixture::Hf #define thermoMixtureFunction(Func) \ template \ Foam::scalar \ -Foam::valueMultiComponentMixture::thermoMixture::Func \ +Foam::valueMulticomponentMixture::thermoMixture::Func \ ( \ scalar p, \ scalar T \ @@ -196,7 +196,7 @@ thermoMixtureFunction(HE) template -Foam::scalar Foam::valueMultiComponentMixture::thermoMixture::THE +Foam::scalar Foam::valueMulticomponentMixture::thermoMixture::THE ( const scalar he, scalar p, @@ -218,7 +218,7 @@ Foam::scalar Foam::valueMultiComponentMixture::thermoMixture::THE template Foam::scalar -Foam::valueMultiComponentMixture::transportMixture::mu +Foam::valueMulticomponentMixture::transportMixture::mu ( scalar p, scalar T @@ -230,7 +230,7 @@ Foam::valueMultiComponentMixture::transportMixture::mu template Foam::scalar -Foam::valueMultiComponentMixture::transportMixture::kappa +Foam::valueMulticomponentMixture::transportMixture::kappa ( scalar p, scalar T @@ -242,8 +242,8 @@ Foam::valueMultiComponentMixture::transportMixture::kappa template const typename -Foam::valueMultiComponentMixture::thermoMixtureType& -Foam::valueMultiComponentMixture::cellThermoMixture +Foam::valueMulticomponentMixture::thermoMixtureType& +Foam::valueMulticomponentMixture::cellThermoMixture ( const label celli ) const @@ -261,8 +261,8 @@ Foam::valueMultiComponentMixture::cellThermoMixture template const typename -Foam::valueMultiComponentMixture::thermoMixtureType& -Foam::valueMultiComponentMixture::patchFaceThermoMixture +Foam::valueMulticomponentMixture::thermoMixtureType& +Foam::valueMulticomponentMixture::patchFaceThermoMixture ( const label patchi, const label facei @@ -281,8 +281,8 @@ Foam::valueMultiComponentMixture::patchFaceThermoMixture template const typename -Foam::valueMultiComponentMixture::transportMixtureType& -Foam::valueMultiComponentMixture::cellTransportMixture +Foam::valueMulticomponentMixture::transportMixtureType& +Foam::valueMulticomponentMixture::cellTransportMixture ( const label celli ) const @@ -308,8 +308,8 @@ Foam::valueMultiComponentMixture::cellTransportMixture template const typename -Foam::valueMultiComponentMixture::transportMixtureType& -Foam::valueMultiComponentMixture::patchFaceTransportMixture +Foam::valueMulticomponentMixture::transportMixtureType& +Foam::valueMulticomponentMixture::patchFaceTransportMixture ( const label patchi, const label facei diff --git a/src/thermophysicalModels/multicomponentThermo/mixtures/valueMultiComponentMixture/valueMultiComponentMixture.H b/src/thermophysicalModels/multicomponentThermo/mixtures/valueMulticomponentMixture/valueMulticomponentMixture.H similarity index 91% rename from src/thermophysicalModels/multicomponentThermo/mixtures/valueMultiComponentMixture/valueMultiComponentMixture.H rename to src/thermophysicalModels/multicomponentThermo/mixtures/valueMulticomponentMixture/valueMulticomponentMixture.H index a25a597c21..bf43662a3e 100644 --- a/src/thermophysicalModels/multicomponentThermo/mixtures/valueMultiComponentMixture/valueMultiComponentMixture.H +++ b/src/thermophysicalModels/multicomponentThermo/mixtures/valueMulticomponentMixture/valueMulticomponentMixture.H @@ -22,7 +22,7 @@ License along with OpenFOAM. If not, see . Class - Foam::valueMultiComponentMixture + Foam::valueMulticomponentMixture Description Thermophysical properties mixing class which applies mass-fraction weighted @@ -30,14 +30,14 @@ Description transport properties. SourceFiles - valueMultiComponentMixture.C + valueMulticomponentMixture.C \*---------------------------------------------------------------------------*/ -#ifndef valueMultiComponentMixture_H -#define valueMultiComponentMixture_H +#ifndef valueMulticomponentMixture_H +#define valueMulticomponentMixture_H -#include "multiComponentMixture.H" +#include "multicomponentMixture.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -45,13 +45,13 @@ namespace Foam { /*---------------------------------------------------------------------------*\ - Class valueMultiComponentMixture Declaration + Class valueMulticomponentMixture Declaration \*---------------------------------------------------------------------------*/ template -class valueMultiComponentMixture +class valueMulticomponentMixture : - public multiComponentMixture + public multicomponentMixture { public: @@ -79,7 +79,7 @@ public: public: - friend class valueMultiComponentMixture; + friend class valueMulticomponentMixture; // Constructors @@ -159,7 +159,7 @@ public: public: - friend class valueMultiComponentMixture; + friend class valueMulticomponentMixture; transportMixture ( @@ -204,7 +204,7 @@ public: // Constructors //- Construct from dictionary, mesh and phase name - valueMultiComponentMixture + valueMulticomponentMixture ( const dictionary&, const fvMesh&, @@ -212,14 +212,14 @@ public: ); //- Disallow default bitwise copy construction - valueMultiComponentMixture + valueMulticomponentMixture ( - const valueMultiComponentMixture& + const valueMulticomponentMixture& ) = delete; //- Destructor - virtual ~valueMultiComponentMixture() + virtual ~valueMulticomponentMixture() {} @@ -229,7 +229,7 @@ public: static word typeName() { return - "valueMultiComponentMixture<" + ThermoType::typeName() + '>'; + "valueMulticomponentMixture<" + ThermoType::typeName() + '>'; } const thermoMixtureType& cellThermoMixture(const label celli) const; @@ -279,7 +279,7 @@ public: // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository - #include "valueMultiComponentMixture.C" + #include "valueMulticomponentMixture.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // diff --git a/src/thermophysicalModels/multicomponentThermo/psiMulticomponentThermo/psiMulticomponentThermos.C b/src/thermophysicalModels/multicomponentThermo/psiMulticomponentThermo/psiMulticomponentThermos.C index db8de0c1fa..a881991930 100644 --- a/src/thermophysicalModels/multicomponentThermo/psiMulticomponentThermo/psiMulticomponentThermos.C +++ b/src/thermophysicalModels/multicomponentThermo/psiMulticomponentThermo/psiMulticomponentThermos.C @@ -23,8 +23,8 @@ License \*---------------------------------------------------------------------------*/ -#include "coefficientMultiComponentMixture.H" -#include "coefficientWilkeMultiComponentMixture.H" +#include "coefficientMulticomponentMixture.H" +#include "coefficientWilkeMulticomponentMixture.H" #include "singleComponentMixture.H" #include "psiThermo.H" @@ -62,13 +62,13 @@ namespace Foam forCoeffGases ( makePsiMulticomponentThermos, - coefficientMultiComponentMixture + coefficientMulticomponentMixture ); forCoeffGases ( makePsiMulticomponentThermos, - coefficientWilkeMultiComponentMixture + coefficientWilkeMulticomponentMixture ); forGases(makePsiMulticomponentThermo, singleComponentMixture); diff --git a/src/thermophysicalModels/multicomponentThermo/rhoMulticomponentThermo/rhoMulticomponentThermos.C b/src/thermophysicalModels/multicomponentThermo/rhoMulticomponentThermo/rhoMulticomponentThermos.C index 67f4167e4e..021a452138 100644 --- a/src/thermophysicalModels/multicomponentThermo/rhoMulticomponentThermo/rhoMulticomponentThermos.C +++ b/src/thermophysicalModels/multicomponentThermo/rhoMulticomponentThermo/rhoMulticomponentThermos.C @@ -23,9 +23,9 @@ License \*---------------------------------------------------------------------------*/ -#include "coefficientMultiComponentMixture.H" -#include "coefficientWilkeMultiComponentMixture.H" -#include "valueMultiComponentMixture.H" +#include "coefficientMulticomponentMixture.H" +#include "coefficientWilkeMulticomponentMixture.H" +#include "valueMulticomponentMixture.H" #include "singleComponentMixture.H" #include "rhoThermo.H" @@ -65,13 +65,13 @@ namespace Foam forCoeffGases ( makeRhoMulticomponentThermos, - coefficientMultiComponentMixture + coefficientMulticomponentMixture ); forCoeffGases ( makeRhoMulticomponentThermos, - coefficientWilkeMultiComponentMixture + coefficientWilkeMulticomponentMixture ); forGases(makeRhoMulticomponentThermo, singleComponentMixture); @@ -79,12 +79,12 @@ namespace Foam forCoeffLiquids ( makeRhoMulticomponentThermos, - coefficientMultiComponentMixture + coefficientMulticomponentMixture ); - forLiquids(makeRhoMulticomponentThermos, valueMultiComponentMixture); + forLiquids(makeRhoMulticomponentThermos, valueMulticomponentMixture); forLiquids(makeRhoMulticomponentThermo, singleComponentMixture); - forTabulated(makeRhoMulticomponentThermos, valueMultiComponentMixture); + forTabulated(makeRhoMulticomponentThermos, valueMulticomponentMixture); forTabulated(makeRhoMulticomponentThermo, singleComponentMixture); } diff --git a/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterAndIsopropanolEvaporation/constant/phaseProperties b/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterAndIsopropanolEvaporation/constant/phaseProperties index 26d1884bf8..8f6ff2294a 100644 --- a/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterAndIsopropanolEvaporation/constant/phaseProperties +++ b/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterAndIsopropanolEvaporation/constant/phaseProperties @@ -22,7 +22,7 @@ nInterfaceCorrectors 1; gas { - type multiComponentPhaseModel; + type multicomponentPhaseModel; diameterModel none; residualAlpha 1e-6; Sct 0.7; @@ -30,7 +30,7 @@ gas liquid { - type multiComponentPhaseModel; + type multicomponentPhaseModel; diameterModel constant; d 5e-4; residualAlpha 1e-6; diff --git a/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterAndIsopropanolEvaporation/constant/physicalProperties.gas.orig b/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterAndIsopropanolEvaporation/constant/physicalProperties.gas.orig index b035590a04..31d417b512 100644 --- a/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterAndIsopropanolEvaporation/constant/physicalProperties.gas.orig +++ b/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterAndIsopropanolEvaporation/constant/physicalProperties.gas.orig @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; equationOfState perfectGas; diff --git a/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterAndIsopropanolEvaporation/constant/physicalProperties.liquid.orig b/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterAndIsopropanolEvaporation/constant/physicalProperties.liquid.orig index b3f6c96986..8fa6726833 100644 --- a/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterAndIsopropanolEvaporation/constant/physicalProperties.liquid.orig +++ b/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterAndIsopropanolEvaporation/constant/physicalProperties.liquid.orig @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport const; thermo eConst; equationOfState rhoConst; diff --git a/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterEvaporation/constant/phaseProperties b/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterEvaporation/constant/phaseProperties index e15ec97058..3d2b27cdbd 100644 --- a/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterEvaporation/constant/phaseProperties +++ b/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterEvaporation/constant/phaseProperties @@ -22,7 +22,7 @@ nInterfaceCorrectors 1; gas { - type multiComponentPhaseModel; + type multicomponentPhaseModel; diameterModel none; residualAlpha 1e-6; Sct 0.7; diff --git a/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterEvaporation/constant/physicalProperties.gas.orig b/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterEvaporation/constant/physicalProperties.gas.orig index 84b65b60ee..60a68c351a 100644 --- a/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterEvaporation/constant/physicalProperties.gas.orig +++ b/test/multiphase/multiphaseEulerFoam/interfaceComposition/waterEvaporation/constant/physicalProperties.gas.orig @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; equationOfState perfectGas; diff --git a/tutorials/combustion/buoyantReactingFoam/Lagrangian/cylinder/constant/physicalProperties b/tutorials/combustion/buoyantReactingFoam/Lagrangian/cylinder/constant/physicalProperties index 21018f7666..dd9a543d5b 100644 --- a/tutorials/combustion/buoyantReactingFoam/Lagrangian/cylinder/constant/physicalProperties +++ b/tutorials/combustion/buoyantReactingFoam/Lagrangian/cylinder/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/buoyantReactingFoam/Lagrangian/hotBoxes/constant/physicalProperties b/tutorials/combustion/buoyantReactingFoam/Lagrangian/hotBoxes/constant/physicalProperties index 21018f7666..dd9a543d5b 100644 --- a/tutorials/combustion/buoyantReactingFoam/Lagrangian/hotBoxes/constant/physicalProperties +++ b/tutorials/combustion/buoyantReactingFoam/Lagrangian/hotBoxes/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/buoyantReactingFoam/Lagrangian/rivuletPanel/constant/physicalProperties b/tutorials/combustion/buoyantReactingFoam/Lagrangian/rivuletPanel/constant/physicalProperties index 21018f7666..dd9a543d5b 100644 --- a/tutorials/combustion/buoyantReactingFoam/Lagrangian/rivuletPanel/constant/physicalProperties +++ b/tutorials/combustion/buoyantReactingFoam/Lagrangian/rivuletPanel/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/buoyantReactingFoam/Lagrangian/splashPanel/constant/physicalProperties b/tutorials/combustion/buoyantReactingFoam/Lagrangian/splashPanel/constant/physicalProperties index 21018f7666..dd9a543d5b 100644 --- a/tutorials/combustion/buoyantReactingFoam/Lagrangian/splashPanel/constant/physicalProperties +++ b/tutorials/combustion/buoyantReactingFoam/Lagrangian/splashPanel/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/buoyantReactingFoam/RAS/smallPoolFire2D/constant/physicalProperties b/tutorials/combustion/buoyantReactingFoam/RAS/smallPoolFire2D/constant/physicalProperties index a80351b921..cc9c0df58e 100644 --- a/tutorials/combustion/buoyantReactingFoam/RAS/smallPoolFire2D/constant/physicalProperties +++ b/tutorials/combustion/buoyantReactingFoam/RAS/smallPoolFire2D/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type hePsiThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/buoyantReactingFoam/RAS/smallPoolFire3D/constant/physicalProperties b/tutorials/combustion/buoyantReactingFoam/RAS/smallPoolFire3D/constant/physicalProperties index a80351b921..cc9c0df58e 100644 --- a/tutorials/combustion/buoyantReactingFoam/RAS/smallPoolFire3D/constant/physicalProperties +++ b/tutorials/combustion/buoyantReactingFoam/RAS/smallPoolFire3D/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type hePsiThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/chemFoam/gri/constant/physicalProperties b/tutorials/combustion/chemFoam/gri/constant/physicalProperties index d78a6d70fb..9b2af90f37 100644 --- a/tutorials/combustion/chemFoam/gri/constant/physicalProperties +++ b/tutorials/combustion/chemFoam/gri/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/chemFoam/h2/constant/physicalProperties b/tutorials/combustion/chemFoam/h2/constant/physicalProperties index d78a6d70fb..9b2af90f37 100644 --- a/tutorials/combustion/chemFoam/h2/constant/physicalProperties +++ b/tutorials/combustion/chemFoam/h2/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/chemFoam/ic8h18/constant/physicalProperties b/tutorials/combustion/chemFoam/ic8h18/constant/physicalProperties index d78a6d70fb..9b2af90f37 100644 --- a/tutorials/combustion/chemFoam/ic8h18/constant/physicalProperties +++ b/tutorials/combustion/chemFoam/ic8h18/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/chemFoam/ic8h18_TDAC/constant/physicalProperties b/tutorials/combustion/chemFoam/ic8h18_TDAC/constant/physicalProperties index d78a6d70fb..9b2af90f37 100644 --- a/tutorials/combustion/chemFoam/ic8h18_TDAC/constant/physicalProperties +++ b/tutorials/combustion/chemFoam/ic8h18_TDAC/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/chemFoam/nc7h16/constant/physicalProperties b/tutorials/combustion/chemFoam/nc7h16/constant/physicalProperties index d78a6d70fb..9b2af90f37 100644 --- a/tutorials/combustion/chemFoam/nc7h16/constant/physicalProperties +++ b/tutorials/combustion/chemFoam/nc7h16/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/reactingFoam/Lagrangian/aachenBomb/constant/physicalProperties b/tutorials/combustion/reactingFoam/Lagrangian/aachenBomb/constant/physicalProperties index 59006ad9dc..b70f1725c0 100644 --- a/tutorials/combustion/reactingFoam/Lagrangian/aachenBomb/constant/physicalProperties +++ b/tutorials/combustion/reactingFoam/Lagrangian/aachenBomb/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/reactingFoam/Lagrangian/filter/constant/physicalProperties b/tutorials/combustion/reactingFoam/Lagrangian/filter/constant/physicalProperties index 21018f7666..dd9a543d5b 100644 --- a/tutorials/combustion/reactingFoam/Lagrangian/filter/constant/physicalProperties +++ b/tutorials/combustion/reactingFoam/Lagrangian/filter/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/reactingFoam/Lagrangian/parcelInBox/constant/physicalProperties b/tutorials/combustion/reactingFoam/Lagrangian/parcelInBox/constant/physicalProperties index 332c4d085c..c4ab99c25c 100644 --- a/tutorials/combustion/reactingFoam/Lagrangian/parcelInBox/constant/physicalProperties +++ b/tutorials/combustion/reactingFoam/Lagrangian/parcelInBox/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/reactingFoam/Lagrangian/simplifiedSiwek/constant/physicalProperties b/tutorials/combustion/reactingFoam/Lagrangian/simplifiedSiwek/constant/physicalProperties index 05a2bcfa52..8389accc67 100644 --- a/tutorials/combustion/reactingFoam/Lagrangian/simplifiedSiwek/constant/physicalProperties +++ b/tutorials/combustion/reactingFoam/Lagrangian/simplifiedSiwek/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/reactingFoam/Lagrangian/verticalChannel/constant/physicalProperties b/tutorials/combustion/reactingFoam/Lagrangian/verticalChannel/constant/physicalProperties index 332c4d085c..c4ab99c25c 100644 --- a/tutorials/combustion/reactingFoam/Lagrangian/verticalChannel/constant/physicalProperties +++ b/tutorials/combustion/reactingFoam/Lagrangian/verticalChannel/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/reactingFoam/Lagrangian/verticalChannelLTS/constant/physicalProperties b/tutorials/combustion/reactingFoam/Lagrangian/verticalChannelLTS/constant/physicalProperties index 332c4d085c..c4ab99c25c 100644 --- a/tutorials/combustion/reactingFoam/Lagrangian/verticalChannelLTS/constant/physicalProperties +++ b/tutorials/combustion/reactingFoam/Lagrangian/verticalChannelLTS/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/reactingFoam/Lagrangian/verticalChannelSteady/constant/physicalProperties b/tutorials/combustion/reactingFoam/Lagrangian/verticalChannelSteady/constant/physicalProperties index 332c4d085c..c4ab99c25c 100644 --- a/tutorials/combustion/reactingFoam/Lagrangian/verticalChannelSteady/constant/physicalProperties +++ b/tutorials/combustion/reactingFoam/Lagrangian/verticalChannelSteady/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/physicalProperties b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/physicalProperties index b4eda587fd..d853a13680 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/physicalProperties +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/physicalProperties @@ -18,7 +18,7 @@ thermoType { type hePsiThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/physicalProperties b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/physicalProperties index 4d1e6f4875..4f148d5589 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/physicalProperties +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type hePsiThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/constant/physicalProperties b/tutorials/combustion/reactingFoam/RAS/membrane/constant/physicalProperties index d550c489ce..a354dda87d 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/constant/physicalProperties +++ b/tutorials/combustion/reactingFoam/RAS/membrane/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type hePsiThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/physicalProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/physicalProperties index b7dde9341e..e60f49594c 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/physicalProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type hePsiThermo; - mixture coefficientWilkeMultiComponentMixture; + mixture coefficientWilkeMulticomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/physicalProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/physicalProperties index b7dde9341e..e60f49594c 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/physicalProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type hePsiThermo; - mixture coefficientWilkeMultiComponentMixture; + mixture coefficientWilkeMulticomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/physicalProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/physicalProperties index 4d1e6f4875..4f148d5589 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/physicalProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type hePsiThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/physicalProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/physicalProperties index 4d1e6f4875..4f148d5589 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/physicalProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type hePsiThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/physicalProperties b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/physicalProperties index 4d1e6f4875..4f148d5589 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/physicalProperties +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type hePsiThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; energy sensibleEnthalpy; diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/physicalProperties b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/physicalProperties index 51743fa471..fbe800451e 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/physicalProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/physicalProperties @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; equationOfState perfectGas; diff --git a/tutorials/multiphase/multiphaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/constant/physicalProperties.gas b/tutorials/multiphase/multiphaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/constant/physicalProperties.gas index e33435fb90..3dacf66717 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/constant/physicalProperties.gas +++ b/tutorials/multiphase/multiphaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/constant/physicalProperties.gas @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; equationOfState perfectGas; diff --git a/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporating/constant/phaseProperties b/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporating/constant/phaseProperties index 345f79150b..f23a379909 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporating/constant/phaseProperties +++ b/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporating/constant/phaseProperties @@ -20,7 +20,7 @@ phases (gas liquid); gas { - type multiComponentPhaseModel; + type multicomponentPhaseModel; diameterModel isothermal; isothermalCoeffs { diff --git a/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporating/constant/physicalProperties.gas b/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporating/constant/physicalProperties.gas index 84b65b60ee..60a68c351a 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporating/constant/physicalProperties.gas +++ b/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporating/constant/physicalProperties.gas @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; equationOfState perfectGas; diff --git a/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/constant/phaseProperties b/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/constant/phaseProperties index 4c3532cded..07994af489 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/constant/phaseProperties +++ b/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/constant/phaseProperties @@ -20,7 +20,7 @@ phases (gas liquid); gas { - type multiComponentPhaseModel; + type multicomponentPhaseModel; diameterModel isothermal; isothermalCoeffs { @@ -33,7 +33,7 @@ gas liquid { - type multiComponentPhaseModel; + type multicomponentPhaseModel; diameterModel constant; constantCoeffs { diff --git a/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/constant/physicalProperties.gas b/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/constant/physicalProperties.gas index 3a092f4736..1e669cfda7 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/constant/physicalProperties.gas +++ b/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/constant/physicalProperties.gas @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport const; thermo eConst; equationOfState perfectGas; diff --git a/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/constant/physicalProperties.liquid b/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/constant/physicalProperties.liquid index 2f810e918f..1a267642f1 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/constant/physicalProperties.liquid +++ b/tutorials/multiphase/multiphaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/constant/physicalProperties.liquid @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport const; thermo eConst; equationOfState rPolynomial; diff --git a/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesis/constant/phaseProperties b/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesis/constant/phaseProperties index 41b5afa059..136ff3c3f6 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesis/constant/phaseProperties +++ b/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesis/constant/phaseProperties @@ -22,7 +22,7 @@ populationBalances (aggregates); particles { - type multiComponentPhaseModel; + type multicomponentPhaseModel; diameterModel velocityGroup; diff --git a/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesis/constant/physicalProperties.particles b/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesis/constant/physicalProperties.particles index 1fc1004f1f..14e99283f1 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesis/constant/physicalProperties.particles +++ b/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesis/constant/physicalProperties.particles @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport const; thermo hConst; equationOfState rhoConst; diff --git a/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesis/constant/physicalProperties.vapor b/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesis/constant/physicalProperties.vapor index 4f4c9d7519..1c5b38a15a 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesis/constant/physicalProperties.vapor +++ b/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesis/constant/physicalProperties.vapor @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; equationOfState perfectGas; diff --git a/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesisSurface/constant/phaseProperties b/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesisSurface/constant/phaseProperties index 1c9ddbc2f9..9bb5586e77 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesisSurface/constant/phaseProperties +++ b/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesisSurface/constant/phaseProperties @@ -22,7 +22,7 @@ populationBalances (aggregates); particles { - type multiComponentPhaseModel; + type multicomponentPhaseModel; diameterModel velocityGroup; diff --git a/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesisSurface/constant/physicalProperties.particles b/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesisSurface/constant/physicalProperties.particles index 47310f6c97..33919b7cdd 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesisSurface/constant/physicalProperties.particles +++ b/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesisSurface/constant/physicalProperties.particles @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport const; thermo hConst; equationOfState rhoConst; diff --git a/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesisSurface/constant/physicalProperties.vapor b/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesisSurface/constant/physicalProperties.vapor index 4f4c9d7519..1c5b38a15a 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesisSurface/constant/physicalProperties.vapor +++ b/tutorials/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesisSurface/constant/physicalProperties.vapor @@ -17,7 +17,7 @@ FoamFile thermoType { type heRhoThermo; - mixture multiComponentMixture; + mixture multicomponentMixture; transport sutherland; thermo janaf; equationOfState perfectGas;