fvModels, fvConstraints: Updated constructor argument order for consistency with functionObjects

Following the convention chosen for functionObjects the coefficients dictionary
argument is last in constructor argument list.
This commit is contained in:
Henry Weller
2023-01-28 10:28:29 +00:00
parent 5d55e0483d
commit 3d2cd9a3b2
96 changed files with 335 additions and 335 deletions

View File

@ -55,11 +55,11 @@ Foam::fv::compressible::VoFCavitation::VoFCavitation
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(sourceName, modelType, dict, mesh), fvModel(sourceName, modelType, mesh, dict),
mixture_ mixture_
( (

View File

@ -125,8 +125,8 @@ public:
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -53,11 +53,11 @@ Foam::fv::VoFClouds::VoFClouds
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(sourceName, modelType, dict, mesh), fvModel(sourceName, modelType, mesh, dict),
phaseName_(dict.lookup("phase")), phaseName_(dict.lookup("phase")),
carrierPhaseName_(dict.lookup("carrierPhase")), carrierPhaseName_(dict.lookup("carrierPhase")),
thermo_ thermo_

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -98,8 +98,8 @@ public:
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -81,11 +81,11 @@ Foam::fv::VoFSolidificationMeltingSource::VoFSolidificationMeltingSource
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
set_(mesh, coeffs()), set_(mesh, coeffs()),
alphaSolidT_(), alphaSolidT_(),
L_("L", dimEnergy/dimMass, NaN), L_("L", dimEnergy/dimMass, NaN),

View File

@ -155,8 +155,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -53,11 +53,11 @@ Foam::fv::VoFSurfaceFilm::VoFSurfaceFilm
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(sourceName, modelType, dict, mesh), fvModel(sourceName, modelType, mesh, dict),
surfaceFilm_ surfaceFilm_
( (
thermoSurfaceFilm::typeName, thermoSurfaceFilm::typeName,

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -85,8 +85,8 @@ public:
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -56,11 +56,11 @@ Foam::fv::compressible::VoFTurbulenceDamping::VoFTurbulenceDamping
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(sourceName, modelType, dict, mesh), fvModel(sourceName, modelType, mesh, dict),
phaseName_(dict.lookupOrDefault("phase", word::null)), phaseName_(dict.lookupOrDefault("phase", word::null)),
delta_("delta", dimLength, dict), delta_("delta", dimLength, dict),
mixture_ mixture_

View File

@ -135,8 +135,8 @@ public:
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -54,11 +54,11 @@ Foam::fv::VoFCavitation::VoFCavitation
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(sourceName, modelType, dict, mesh), fvModel(sourceName, modelType, mesh, dict),
mixture_ mixture_
( (

View File

@ -123,8 +123,8 @@ public:
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -53,11 +53,11 @@ Foam::fv::VoFTurbulenceDamping::VoFTurbulenceDamping
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(sourceName, modelType, dict, mesh), fvModel(sourceName, modelType, mesh, dict),
phaseName_(dict.lookupOrDefault("phase", word::null)), phaseName_(dict.lookupOrDefault("phase", word::null)),
delta_("delta", dimLength, dict), delta_("delta", dimLength, dict),
mixture_ mixture_

View File

@ -133,8 +133,8 @@ public:
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2022-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -179,11 +179,11 @@ Foam::fv::interfaceTurbulenceDamping::interfaceTurbulenceDamping
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(sourceName, modelType, dict, mesh), fvModel(sourceName, modelType, mesh, dict),
phaseName_(dict.lookup("phase")), phaseName_(dict.lookup("phase")),
delta_("delta", dimLength, dict), delta_("delta", dimLength, dict),
phase_ phase_

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2022-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -149,8 +149,8 @@ public:
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2022-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -132,11 +132,11 @@ Foam::fv::phaseTurbulenceStabilisation::phaseTurbulenceStabilisation
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(sourceName, modelType, dict, mesh), fvModel(sourceName, modelType, mesh, dict),
phaseName_(dict.lookup("phase")), phaseName_(dict.lookup("phase")),
alphaInversion_("alphaInversion", dimless, dict), alphaInversion_("alphaInversion", dimless, dict),
phase_ phase_

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2022-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -135,8 +135,8 @@ public:
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -96,11 +96,11 @@ ${typeName}FvModel${SourceType}
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
set_(mesh, coeffs()) set_(mesh, coeffs())
{ {
if (${verbose:-false}) if (${verbose:-false})

View File

@ -53,7 +53,7 @@ class ${typeName}FvModel${SourceType}
{ {
// Private Data // Private Data
//- The set of cells the fvConstraint applies to //- The set of cells the fvModel applies to
fvCellSet set_; fvCellSet set_;
@ -73,8 +73,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021 OpenFOAM Foundation \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -61,8 +61,8 @@ Foam::fvConstraint::fvConstraint
( (
const word& name, const word& name,
const word& constraintType, const word& constraintType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
name_(name), name_(name),
@ -81,8 +81,8 @@ Foam::fvConstraint::fvConstraint
Foam::autoPtr<Foam::fvConstraint> Foam::fvConstraint::New Foam::autoPtr<Foam::fvConstraint> Foam::fvConstraint::New
( (
const word& name, const word& name,
const dictionary& coeffs, const fvMesh& mesh,
const fvMesh& mesh const dictionary& coeffs
) )
{ {
const word constraintType(coeffs.lookup("type")); const word constraintType(coeffs.lookup("type"));
@ -111,7 +111,7 @@ Foam::autoPtr<Foam::fvConstraint> Foam::fvConstraint::New
return autoPtr<fvConstraint> return autoPtr<fvConstraint>
( (
cstrIter()(name, constraintType, coeffs, mesh) cstrIter()(name, constraintType, mesh, coeffs)
); );
} }

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -105,10 +105,10 @@ public:
( (
const word& name, const word& name,
const word& constraintType, const word& constraintType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
), ),
(name, constraintType, dict, mesh) (name, constraintType, mesh, dict)
); );
@ -119,8 +119,8 @@ public:
( (
const word& name, const word& name,
const word& constraintType, const word& constraintType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Return clone //- Return clone
@ -158,7 +158,7 @@ public:
return autoPtr<fvConstraint> return autoPtr<fvConstraint>
( (
fvConstraint::New(name_, dict, mesh_) fvConstraint::New(name_, mesh_, dict)
); );
} }
}; };
@ -170,8 +170,8 @@ public:
static autoPtr<fvConstraint> New static autoPtr<fvConstraint> New
( (
const word& name, const word& name,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -192,7 +192,7 @@ Foam::fvConstraints::fvConstraints
( (
i, i,
name, name,
fvConstraint::New(name, constraintDict, mesh).ptr() fvConstraint::New(name, mesh, constraintDict).ptr()
); );
constrainedFields_.set(i, new wordHashSet()); constrainedFields_.set(i, new wordHashSet());

View File

@ -73,8 +73,8 @@ Foam::fvModel::fvModel
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
name_(name), name_(name),
@ -93,8 +93,8 @@ Foam::fvModel::fvModel
Foam::autoPtr<Foam::fvModel> Foam::fvModel::New Foam::autoPtr<Foam::fvModel> Foam::fvModel::New
( (
const word& name, const word& name,
const dictionary& coeffs, const fvMesh& mesh,
const fvMesh& mesh const dictionary& coeffs
) )
{ {
const word modelType(coeffs.lookup("type")); const word modelType(coeffs.lookup("type"));
@ -123,7 +123,7 @@ Foam::autoPtr<Foam::fvModel> Foam::fvModel::New
return autoPtr<fvModel> return autoPtr<fvModel>
( (
cstrIter()(name, modelType, coeffs, mesh) cstrIter()(name, modelType, mesh, coeffs)
); );
} }

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -135,10 +135,10 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
), ),
(name, modelType, dict, mesh) (name, modelType, mesh, dict)
); );
@ -176,8 +176,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Return clone //- Return clone
@ -215,7 +215,7 @@ public:
return autoPtr<fvModel> return autoPtr<fvModel>
( (
fvModel::New(name_, dict, mesh_) fvModel::New(name_, mesh_, dict)
); );
} }
}; };
@ -227,8 +227,8 @@ public:
static autoPtr<fvModel> New static autoPtr<fvModel> New
( (
const word& name, const word& name,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );

View File

@ -192,7 +192,7 @@ Foam::fvModels::fvModels
( (
i, i,
name, name,
fvModel::New(name, modelDict, mesh).ptr() fvModel::New(name, mesh, modelDict).ptr()
); );
addSupFields_.set(i, new wordHashSet()); addSupFields_.set(i, new wordHashSet());

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2012-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2012-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -95,11 +95,11 @@ Foam::fv::fixedTemperatureConstraint::fixedTemperatureConstraint
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvConstraint(name, modelType, dict, mesh), fvConstraint(name, modelType, mesh, dict),
set_(mesh, coeffs()), set_(mesh, coeffs()),
mode_(temperatureMode::uniform), mode_(temperatureMode::uniform),
TValue_(nullptr), TValue_(nullptr),

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2012-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2012-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -135,8 +135,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2016-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2016-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -111,11 +111,11 @@ Foam::fv::fixedValueConstraint::fixedValueConstraint
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvConstraint(name, modelType, dict, mesh), fvConstraint(name, modelType, mesh, dict),
set_(mesh, coeffs()) set_(mesh, coeffs())
{ {
readCoeffs(); readCoeffs();

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2016-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2016-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -114,8 +114,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2016-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2016-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -112,11 +112,11 @@ Foam::fv::limitMag::limitMag
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvConstraint(name, modelType, dict, mesh), fvConstraint(name, modelType, mesh, dict),
set_(mesh, coeffs()), set_(mesh, coeffs()),
fieldName_(word::null), fieldName_(word::null),
max_(vGreat) max_(vGreat)

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2016-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2016-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -106,8 +106,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -159,11 +159,11 @@ Foam::fv::limitPressure::limitPressure
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvConstraint(name, modelType, dict, mesh), fvConstraint(name, modelType, mesh, dict),
pName_(word::null), pName_(word::null),
pMin_("pMin", dimPressure, 0), pMin_("pMin", dimPressure, 0),
pMax_("pMax", dimPressure, great), pMax_("pMax", dimPressure, great),

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -105,8 +105,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2012-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2012-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -61,11 +61,11 @@ Foam::fv::limitTemperature::limitTemperature
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvConstraint(name, modelType, dict, mesh), fvConstraint(name, modelType, mesh, dict),
set_(mesh, coeffs()), set_(mesh, coeffs()),
Tmin_(-vGreat), Tmin_(-vGreat),
Tmax_(vGreat), Tmax_(vGreat),

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2012-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2012-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -109,8 +109,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -90,11 +90,11 @@ Foam::fv::meanVelocityForce::meanVelocityForce
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvConstraint(name, modelType, dict, mesh), fvConstraint(name, modelType, mesh, dict),
set_(mesh, coeffs()), set_(mesh, coeffs()),
UName_(word::null), UName_(word::null),
Ubar_(vector::uniform(NaN)), Ubar_(vector::uniform(NaN)),

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -126,8 +126,8 @@ public:
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2015-2021 OpenFOAM Foundation \\ / A nd | Copyright (C) 2015-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -67,11 +67,11 @@ Foam::fv::patchMeanVelocityForce::patchMeanVelocityForce
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
meanVelocityForce(sourceName, modelType, dict, mesh), meanVelocityForce(sourceName, modelType, mesh, dict),
patch_(word::null) patch_(word::null)
{ {
readCoeffs(); readCoeffs();

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2015-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2015-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -103,8 +103,8 @@ public:
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2018-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2018-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -57,11 +57,11 @@ Foam::fv::accelerationSource::accelerationSource
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
set_(mesh, coeffs()), set_(mesh, coeffs()),
UName_(word::null), UName_(word::null),
velocity_(nullptr) velocity_(nullptr)

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2018-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2018-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -117,8 +117,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -101,11 +101,11 @@ Foam::fv::actuationDiskSource::actuationDiskSource
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
set_(mesh, coeffs()), set_(mesh, coeffs()),
phaseName_(word::null), phaseName_(word::null),
UName_(word::null), UName_(word::null),

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -153,8 +153,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2015-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2015-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -67,11 +67,11 @@ Foam::fv::buoyancyEnergy::buoyancyEnergy
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
phaseName_(word::null), phaseName_(word::null),
UName_(word::null) UName_(word::null)
{ {

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2015-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2015-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -93,8 +93,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2015-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2015-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -66,11 +66,11 @@ Foam::fv::buoyancyForce::buoyancyForce
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
phaseName_(word::null), phaseName_(word::null),
UName_(word::null), UName_(word::null),
g_ g_

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2015-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2015-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -96,8 +96,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2013-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2013-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -171,11 +171,11 @@ Foam::fv::effectivenessHeatExchangerSource::effectivenessHeatExchangerSource
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
set_(mesh, coeffs()), set_(mesh, coeffs()),
secondaryMassFlowRate_(NaN), secondaryMassFlowRate_(NaN),
secondaryInletT_(NaN), secondaryInletT_(NaN),

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2013-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2013-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -187,8 +187,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2012-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2012-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -79,11 +79,11 @@ Foam::fv::explicitPorositySource::explicitPorositySource
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
set_(mesh, coeffs()), set_(mesh, coeffs()),
UNames_(), UNames_(),
porosityPtr_(nullptr) porosityPtr_(nullptr)

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2012-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2012-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -118,8 +118,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -92,11 +92,11 @@ Foam::fv::heatSource::heatSource
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
set_(mesh, coeffs()), set_(mesh, coeffs()),
q_(nullptr) q_(nullptr)
{ {

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -94,8 +94,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -68,11 +68,11 @@ Foam::fv::heatTransfer::heatTransfer
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
set_(mesh, coeffs()), set_(mesh, coeffs()),
semiImplicit_(false), semiImplicit_(false),
TName_(word::null), TName_(word::null),

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -131,8 +131,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -203,11 +203,11 @@ Foam::fv::massSource::massSource
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
set_(mesh, coeffs()), set_(mesh, coeffs()),
phaseName_(), phaseName_(),
rhoName_(), rhoName_(),

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -163,8 +163,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2017-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2017-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -81,11 +81,11 @@ Foam::fv::phaseLimitStabilisation::phaseLimitStabilisation
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
fieldName_(word::null), fieldName_(word::null),
rateName_(word::null), rateName_(word::null),
residualAlpha_(NaN) residualAlpha_(NaN)

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2017-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2017-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -116,8 +116,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -57,11 +57,11 @@ Foam::fv::radialActuationDiskSource::radialActuationDiskSource
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
actuationDiskSource(name, modelType, dict, mesh), actuationDiskSource(name, modelType, mesh, dict),
radialCoeffs_() radialCoeffs_()
{ {
readCoeffs(); readCoeffs();

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -138,8 +138,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -509,11 +509,11 @@ Foam::fv::rotorDiskSource::rotorDiskSource
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
set_(mesh, coeffs()), set_(mesh, coeffs()),
UName_(word::null), UName_(word::null),
omega_(0), omega_(0),

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -266,8 +266,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2015-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2015-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -129,11 +129,11 @@ Foam::fv::sixDoFAccelerationSource::sixDoFAccelerationSource
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
UName_(coeffs().lookupOrDefault<word>("U", "U")), UName_(coeffs().lookupOrDefault<word>("U", "U")),
accelerations_(nullptr), accelerations_(nullptr),
g_ g_

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2015-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2015-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -119,8 +119,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2019-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2019-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -107,11 +107,11 @@ Foam::fv::solidEquilibriumEnergySource::solidEquilibriumEnergySource
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
phaseName_(word::null), phaseName_(word::null),
solidPhaseName_(word::null) solidPhaseName_(word::null)
{ {

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2019-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2019-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -109,8 +109,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2014-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2014-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -220,11 +220,11 @@ Foam::fv::solidificationMeltingSource::solidificationMeltingSource
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
set_(mesh, coeffs()), set_(mesh, coeffs()),
Tsol_(NaN), Tsol_(NaN),
Tliq_(NaN), Tliq_(NaN),

View File

@ -246,8 +246,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2019-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2019-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -265,11 +265,11 @@ Foam::fv::volumeFractionSource::volumeFractionSource
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
phiName_(word::null), phiName_(word::null),
rhoName_(word::null), rhoName_(word::null),
UName_(word::null), UName_(word::null),

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2019-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2019-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -193,8 +193,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2012-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2012-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -151,8 +151,8 @@ Foam::fvModel& Foam::fv::codedFvModel::redirectFvModel() const
redirectFvModelPtr_ = fvModel::New redirectFvModelPtr_ = fvModel::New
( (
name(), name(),
constructDict, mesh(),
mesh() constructDict
); );
} }
return redirectFvModelPtr_(); return redirectFvModelPtr_();
@ -228,11 +228,11 @@ Foam::fv::codedFvModel::codedFvModel
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
fieldName_(word::null) fieldName_(word::null)
{ {
readCoeffs(); readCoeffs();

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2012-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2012-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -173,8 +173,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -195,11 +195,11 @@ Foam::fv::semiImplicitSource::semiImplicitSource
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
set_(mesh, coeffs()), set_(mesh, coeffs()),
volumeMode_(volumeMode::absolute) volumeMode_(volumeMode::absolute)
{ {

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -189,8 +189,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Destructor //- Destructor

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2012-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2012-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -60,11 +60,11 @@ Foam::fv::interRegionExplicitPorositySource::interRegionExplicitPorositySource
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
interRegionModel(name, modelType, dict, mesh), interRegionModel(name, modelType, mesh, dict),
UName_(word::null), UName_(word::null),
filter_ filter_
( (

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2012-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2012-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -114,8 +114,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -78,11 +78,11 @@ Foam::fv::interRegionHeatTransfer::interRegionHeatTransfer
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
interRegionModel(name, modelType, dict, mesh), interRegionModel(name, modelType, mesh, dict),
semiImplicit_(false), semiImplicit_(false),
TName_(word::null), TName_(word::null),
TNbrName_(word::null), TNbrName_(word::null),

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -134,8 +134,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -133,11 +133,11 @@ Foam::fv::interRegionModel::interRegionModel
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
master_(false), master_(false),
nbrRegionName_(word::null), nbrRegionName_(word::null),
interpolationMethod_(directMethod::typeName), interpolationMethod_(directMethod::typeName),

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -98,8 +98,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -52,11 +52,11 @@ Foam::fv::clouds::clouds
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(sourceName, modelType, dict, mesh), fvModel(sourceName, modelType, mesh, dict),
g_ g_
( (
IOobject IOobject

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -146,8 +146,8 @@ public:
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2017-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2017-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -52,11 +52,11 @@ Foam::fv::radiation::radiation
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(sourceName, modelType, dict, mesh), fvModel(sourceName, modelType, mesh, dict),
radiation_ radiation_
( (
radiationModel::New radiationModel::New

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2017-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2017-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -83,8 +83,8 @@ public:
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -57,11 +57,11 @@ Foam::fv::surfaceFilms::surfaceFilms
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(sourceName, modelType, dict, mesh), fvModel(sourceName, modelType, mesh, dict),
surfaceFilms_(), surfaceFilms_(),
surfaceFilmPrimaryRhoNames_(), surfaceFilmPrimaryRhoNames_(),
fieldNames_(), fieldNames_(),

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -93,8 +93,8 @@ public:
( (
const word& sourceName, const word& sourceName,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );
//- Disallow default bitwise copy construction //- Disallow default bitwise copy construction

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2017-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2017-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -179,11 +179,11 @@ Foam::fv::forcing::forcing
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
fvModel(name, modelType, dict, mesh), fvModel(name, modelType, mesh, dict),
lambda_("lambda", dimless/dimTime, NaN), lambda_("lambda", dimless/dimTime, NaN),
scale_(nullptr), scale_(nullptr),
origins_(), origins_(),

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2017-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2017-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -106,8 +106,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2019-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2019-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -71,11 +71,11 @@ Foam::fv::isotropicDamping::isotropicDamping
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
forcing(name, modelType, dict, mesh), forcing(name, modelType, mesh, dict),
UName_(coeffs().lookupOrDefault<word>("U", "U")), UName_(coeffs().lookupOrDefault<word>("U", "U")),
value_("value", dimVelocity, vector::uniform(NaN)) value_("value", dimVelocity, vector::uniform(NaN))
{ {

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2019-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2019-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -131,8 +131,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2017-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2017-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -63,11 +63,11 @@ Foam::fv::verticalDamping::verticalDamping
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
forcing(name, modelType, dict, mesh), forcing(name, modelType, mesh, dict),
UName_(coeffs().lookupOrDefault<word>("U", "U")) UName_(coeffs().lookupOrDefault<word>("U", "U"))
{} {}

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2017-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2017-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -139,8 +139,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2022-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -50,11 +50,11 @@ Foam::fv::waveForcing::waveForcing
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
) )
: :
forcing(name, modelType, dict, mesh), forcing(name, modelType, mesh, dict),
waves_(waveSuperposition::New(mesh)), waves_(waveSuperposition::New(mesh)),
liquidPhaseName_(coeffs().lookup<word>("liquidPhase")), liquidPhaseName_(coeffs().lookup<word>("liquidPhase")),
alphaName_(IOobject::groupName("alpha", liquidPhaseName_)), alphaName_(IOobject::groupName("alpha", liquidPhaseName_)),

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2022-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -132,8 +132,8 @@ public:
( (
const word& name, const word& name,
const word& modelType, const word& modelType,
const dictionary& dict, const fvMesh& mesh,
const fvMesh& mesh const dictionary& dict
); );