Time::timeName(): no longer needed, calls replaced by name()

The timeName() function simply returns the dimensionedScalar::name() which holds
the user-time name of the current time and now that timeName() is no longer
virtual the dimensionedScalar::name() can be called directly.  The timeName()
function implementation is maintained for backward-compatibility.
This commit is contained in:
Henry Weller
2022-11-30 15:53:51 +00:00
parent 262672ec10
commit ed7e703040
546 changed files with 1612 additions and 1613 deletions

View File

@ -6,7 +6,7 @@ volScalarField p
IOobject
(
"p",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -20,7 +20,7 @@ volVectorField U
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -121,7 +121,7 @@ int main(int argc, char *argv[])
runTime.path()
/functionObjects::writeFile::outputPrefix
/"graphs"
/runTime.timeName(),
/runTime.name(),
"Ek",
runTime.graphFormat()
);

View File

@ -1,10 +1,10 @@
{
Info<< "k(" << runTime.timeName() << ") = "
Info<< "k(" << runTime.name() << ") = "
<< 3.0/2.0*average(magSqr(U)).value() << endl;
Info<< "epsilon(" << runTime.timeName() << ") = "
Info<< "epsilon(" << runTime.name() << ") = "
<< (0.5*nu*average(magSqr(twoSymm(fvc::grad(U))))).value() << endl;
Info<< "U.f(" << runTime.timeName() << ") = "
Info<< "U.f(" << runTime.name() << ") = "
<< 181.0*average(U & force).value() << endl;
}

View File

@ -5,7 +5,7 @@ volScalarField T
IOobject
(
"T",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE

View File

@ -7,7 +7,7 @@
IOobject
(
"gradTx",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -20,7 +20,7 @@
IOobject
(
"gradTy",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -33,7 +33,7 @@
IOobject
(
"gradTz",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE

View File

@ -4,7 +4,7 @@ volVectorField U
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -19,7 +19,7 @@ surfaceScalarField phi
IOobject
(
"phi",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -61,7 +61,7 @@ volScalarField p
IOobject
(
pName,
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::NO_WRITE
@ -92,7 +92,7 @@ volScalarField Phi
IOobject
(
"Phi",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::NO_WRITE

View File

@ -5,7 +5,7 @@ volScalarField T
IOobject
(
"T",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -21,7 +21,7 @@ volVectorField U
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE

View File

@ -115,7 +115,7 @@ int main(int argc, char *argv[])
#include "setDeltaT.H"
runTime++;
Info<< "\n\nTime = " << runTime.timeName() << endl;
Info<< "\n\nTime = " << runTime.name() << endl;
#include "rhoEqn.H"

View File

@ -116,7 +116,7 @@ int main(int argc, char *argv[])
runTime++;
Info<< "\n\nTime = " << runTime.timeName() << endl;
Info<< "\n\nTime = " << runTime.name() << endl;
{
// Make the fluxes absolute

View File

@ -112,7 +112,7 @@ Foam::tmp<Foam::volScalarField> Foam::XiEqModels::basicSubGrid::XiEq() const
IOobject
(
"ns",
U.mesh().time().timeName(),
U.mesh().time().name(),
U.mesh(),
IOobject::NO_READ,
IOobject::NO_WRITE

View File

@ -113,7 +113,7 @@ Foam::XiEqModel::calculateSchelkinEffect(const scalar uPrimeCoef) const
IOobject
(
"tns",
mesh.time().timeName(),
mesh.time().name(),
mesh,
IOobject::NO_READ,
IOobject::NO_WRITE

View File

@ -65,7 +65,7 @@ Foam::XiModel::XiModel
IOobject
(
"Xi",
b.time().timeName(),
b.time().name(),
b.db(),
IOobject::MUST_READ,
IOobject::AUTO_WRITE

View File

@ -14,7 +14,7 @@ volScalarField rho
IOobject
(
"rho",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -33,7 +33,7 @@ volVectorField U
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -76,7 +76,7 @@ volScalarField dpdt
IOobject
(
"dpdt",
runTime.timeName(),
runTime.name(),
mesh
),
mesh,
@ -100,7 +100,7 @@ volScalarField Su
IOobject
(
"Su",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -218,7 +218,7 @@ volScalarField St
IOobject
(
"St",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE

View File

@ -14,7 +14,7 @@ volScalarField rho
IOobject
(
"rho",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -34,7 +34,7 @@ volVectorField U
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -77,7 +77,7 @@ volScalarField dpdt
IOobject
(
"dpdt",
runTime.timeName(),
runTime.name(),
mesh
),
mesh,
@ -93,7 +93,7 @@ volScalarField Xi
IOobject
(
"Xi",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -115,7 +115,7 @@ volScalarField Su
IOobject
(
"Su",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -132,7 +132,7 @@ volScalarField St
IOobject
(
"St",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE

View File

@ -1,14 +1,14 @@
// write base thermo fields - not registered since will be re-read by
// thermo package
Info<< "Creating base fields for time " << runTime.timeName() << endl;
Info<< "Creating base fields for time " << runTime.name() << endl;
{
volScalarField Ydefault
(
IOobject
(
"Ydefault",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::NO_WRITE,
@ -25,7 +25,7 @@ Info<< "Creating base fields for time " << runTime.timeName() << endl;
IOobject
(
"p",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::NO_WRITE,
@ -42,7 +42,7 @@ Info<< "Creating base fields for time " << runTime.timeName() << endl;
IOobject
(
"T",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::NO_WRITE,

View File

@ -38,7 +38,7 @@
IOobject
(
"rho",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -51,7 +51,7 @@
IOobject
(
"Rspecific",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -69,7 +69,7 @@
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::NO_WRITE

View File

@ -16,7 +16,7 @@ volVectorField U
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -29,7 +29,7 @@ volScalarField rho
IOobject
(
"rho",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -42,7 +42,7 @@ volVectorField rhoU
IOobject
(
"rhoU",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::NO_WRITE
@ -55,7 +55,7 @@ volScalarField rhoE
IOobject
(
"rhoE",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::NO_WRITE
@ -68,7 +68,7 @@ surfaceScalarField pos
IOobject
(
"pos",
runTime.timeName(),
runTime.name(),
mesh
),
mesh,
@ -80,7 +80,7 @@ surfaceScalarField neg
IOobject
(
"neg",
runTime.timeName(),
runTime.name(),
mesh
),
mesh,

View File

@ -14,7 +14,7 @@ volScalarField rho
IOobject
(
"rho",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
@ -28,7 +28,7 @@ volVectorField U
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -46,7 +46,7 @@ int main(int argc, char *argv[])
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE

View File

@ -4,7 +4,7 @@ volVectorField U
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE

View File

@ -29,7 +29,7 @@
IOobject
(
"phi",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -44,7 +44,7 @@
IOobject
(
"rho",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -59,7 +59,7 @@
IOobject
(
"rhoFlux",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::NO_WRITE

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -47,7 +47,7 @@ int main(int argc, char *argv[])
while (runTime.loop())
{
Info<< "Iteration = " << runTime.timeName() << nl << endl;
Info<< "Iteration = " << runTime.name() << nl << endl;
solve
(

View File

@ -4,7 +4,7 @@
IOobject
(
"psi",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -33,7 +33,7 @@
IOobject
(
"murf",
runTime.timeName(),
runTime.name(),
mesh
),
mesh,
@ -45,7 +45,7 @@
IOobject
(
"Mrf",
runTime.timeName(),
runTime.name(),
mesh
),
mesh,

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -90,7 +90,7 @@ int main(int argc, char *argv[])
IOobject
(
"H",
runTime.timeName(),
runTime.name(),
mesh
),
fvc::reconstruct(fvc::snGrad(psi)*mesh.magSf())
@ -100,7 +100,7 @@ int main(int argc, char *argv[])
{
Info<< nl
<< "Creating field H for time "
<< runTime.timeName() << endl;
<< runTime.name() << endl;
H.write();
}
@ -109,14 +109,14 @@ int main(int argc, char *argv[])
{
Info<< nl
<< "Creating field HdotGradH for time "
<< runTime.timeName() << endl;
<< runTime.name() << endl;
volVectorField HdotGradH
(
IOobject
(
"HdotGradH",
runTime.timeName(),
runTime.name(),
mesh
),
H & fvc::grad(H)
@ -130,14 +130,14 @@ int main(int argc, char *argv[])
{
Info<< nl
<< "Creating field B for time "
<< runTime.timeName() << endl;
<< runTime.name() << endl;
volVectorField B
(
IOobject
(
"B",
runTime.timeName(),
runTime.name(),
mesh
),
constant::electromagnetic::mu0

View File

@ -46,7 +46,7 @@ volScalarField p
IOobject
(
"p",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -61,7 +61,7 @@ volVectorField U
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -77,7 +77,7 @@ volScalarField pB
IOobject
(
"pB",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -92,7 +92,7 @@ volVectorField B
IOobject
(
"B",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE

View File

@ -1,7 +1,7 @@
typeIOobject<surfaceScalarField> phiBHeader
(
"phiB",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ
);
@ -18,7 +18,7 @@ if (phiBHeader.headerOk())
IOobject
(
"phiB",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -35,7 +35,7 @@ else
IOobject
(
"phiB",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE

View File

@ -43,7 +43,7 @@ volScalarField V
IOobject
(
"V",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -57,7 +57,7 @@ surfaceVectorField Pf
IOobject
(
"Pf",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::NO_WRITE
@ -71,7 +71,7 @@ volVectorField P
IOobject
(
"P",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::NO_WRITE
@ -90,7 +90,7 @@ volScalarField delta
IOobject
(
"delta",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -79,7 +79,7 @@ int main(int argc, char *argv[])
runTime.globalPath()
/functionObjects::writeFile::outputPrefix
/args.executable()
/runTime.timeName(),
/runTime.name(),
args.executable(),

View File

@ -112,7 +112,7 @@ int main(int argc, char *argv[])
IOobject
(
regionSolvers[i].first(),
runTime.timeName(),
runTime.name(),
runTime,
IOobject::MUST_READ
)

View File

@ -9,7 +9,7 @@ volScalarField rho
IOobject
(
"rho",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::NO_WRITE
@ -25,7 +25,7 @@ volVectorField U
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -59,7 +59,7 @@ volScalarField dpdt
IOobject
(
"dpdt",
runTime.timeName(),
runTime.name(),
mesh
),
mesh,

View File

@ -4,7 +4,7 @@ volScalarField p
IOobject
(
"p",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -18,7 +18,7 @@ volVectorField U
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -40,7 +40,7 @@ volScalarField pa
IOobject
(
"pa",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -54,7 +54,7 @@ volVectorField Ua
IOobject
(
"Ua",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -99,7 +99,7 @@ volScalarField alpha
IOobject
(
"alpha",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -38,7 +38,7 @@ surfaceScalarField phia
IOobject
(
"phia",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE

View File

@ -4,7 +4,7 @@ volVectorField U
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -19,7 +19,7 @@ surfaceScalarField phi
IOobject
(
"phi",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::NO_WRITE

View File

@ -3,7 +3,7 @@ volSymmTensorField R
IOobject
(
"R",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -18,7 +18,7 @@ setWriter::New(runTime.graphFormat())->write
runTime.globalPath()
/functionObjects::writeFile::outputPrefix
/args.executable()
/runTime.timeName(),
/runTime.name(),
args.executable(),

View File

@ -25,7 +25,7 @@ volScalarField p
IOobject
(
"p",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -40,7 +40,7 @@ volVectorField U
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE

View File

@ -4,7 +4,7 @@ volScalarField p
IOobject
(
"p",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -18,7 +18,7 @@ volVectorField U
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE

View File

@ -6,7 +6,7 @@ volScalarField h
IOobject
(
"h",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -34,7 +34,7 @@ volVectorField hU
IOobject
(
"hU",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -48,7 +48,7 @@ volVectorField U
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -62,7 +62,7 @@ volScalarField hTotal
IOobject
(
"hTotal",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -38,7 +38,7 @@ surfaceScalarField phi
IOobject
(
"phi",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2019 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -53,7 +53,7 @@ int main(int argc, char *argv[])
while (pimple.loop(runTime))
{
Info<< "\n Time = " << runTime.timeName() << nl << endl;
Info<< "\n Time = " << runTime.name() << nl << endl;
#include "CourantNo.H"

View File

@ -20,7 +20,7 @@ volVectorField Uc
IOobject
(
IOobject::groupName("U", continuousPhaseName),
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -34,7 +34,7 @@ volScalarField p
IOobject
(
"p",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -51,7 +51,7 @@ surfaceScalarField phic
IOobject
(
IOobject::groupName("phi", continuousPhaseName),
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
@ -82,7 +82,7 @@ volScalarField rhoc
IOobject
(
rhocValue.name(),
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -96,7 +96,7 @@ volScalarField muc
IOobject
(
IOobject::groupName("mu", continuousPhaseName),
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -112,7 +112,7 @@ volScalarField alphac
IOobject
(
IOobject::groupName("alpha", continuousPhaseName),
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2017-2020 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2017-2022 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -38,7 +38,7 @@ surfaceVectorField Ucf
IOobject
(
"Ucf",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2017-2020 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2017-2022 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -43,7 +43,7 @@ if (mesh.dynamic())
IOobject
(
"Ucf",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE

View File

@ -151,7 +151,7 @@ int main(int argc, char *argv[])
IOobject
(
"cloudSUu",
runTime.timeName(),
runTime.name(),
mesh
),
mesh,
@ -163,7 +163,7 @@ int main(int argc, char *argv[])
IOobject
(
"cloudSUp",
runTime.timeName(),
runTime.name(),
mesh
),
mesh,

View File

@ -6,7 +6,7 @@ volVectorField U
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -26,7 +26,7 @@ volScalarField rhoInf
IOobject
(
"rho",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -45,7 +45,7 @@ volScalarField mu
IOobject
(
"mu",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -59,7 +59,7 @@ parcelClouds& clouds = parcelClouds::New(mesh, rhoInf, U, mu, g);
typeIOobject<volVectorField> Hheader
(
"H",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -77,7 +77,7 @@ if (Hheader.headerOk())
typeIOobject<volVectorField> HdotGradHheader
(
"HdotGradH",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE

View File

@ -3,7 +3,7 @@
typeIOobject<uniformDimensionedVectorField> linearAccelerationHeader
(
"linearAcceleration",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -25,7 +25,7 @@
typeIOobject<uniformDimensionedVectorField> angularVelocityHeader
(
"angularVelocity",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -47,7 +47,7 @@
typeIOobject<uniformDimensionedVectorField> angularAccelerationHeader
(
"angularAcceleration",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -69,7 +69,7 @@
typeIOobject<uniformDimensionedVectorField> centreOfRotationHeader
(
"centreOfRotation",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE

View File

@ -13,7 +13,7 @@ volScalarField rho
IOobject
(
"rho",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -27,7 +27,7 @@ volVectorField U
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE

View File

@ -52,7 +52,7 @@ void Foam::solvers::compressibleVoF::alphaPredictor()
IOobject
(
"alphaPhi1",
runTime.timeName(),
runTime.name(),
mesh
),
mesh,
@ -64,7 +64,7 @@ void Foam::solvers::compressibleVoF::alphaPredictor()
IOobject
(
"rhoPhiSum",
runTime.timeName(),
runTime.name(),
mesh
),
mesh,

View File

@ -72,7 +72,7 @@ Foam::solvers::compressibleVoF::compressibleVoF(fvMesh& mesh)
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -85,7 +85,7 @@ Foam::solvers::compressibleVoF::compressibleVoF(fvMesh& mesh)
IOobject
(
"phi",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
@ -102,7 +102,7 @@ Foam::solvers::compressibleVoF::compressibleVoF(fvMesh& mesh)
typeIOobject<surfaceScalarField>
(
IOobject::groupName("alphaPhi", alpha1.group()),
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
@ -120,7 +120,7 @@ Foam::solvers::compressibleVoF::compressibleVoF(fvMesh& mesh)
IOobject
(
"dgdt",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
@ -148,7 +148,7 @@ Foam::solvers::compressibleVoF::compressibleVoF(fvMesh& mesh)
IOobject
(
"rhoPhi",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::NO_WRITE
@ -161,7 +161,7 @@ Foam::solvers::compressibleVoF::compressibleVoF(fvMesh& mesh)
IOobject
(
IOobject::groupName("alphaPhi", alpha1.group()),
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
@ -203,7 +203,7 @@ Foam::solvers::compressibleVoF::compressibleVoF(fvMesh& mesh)
IOobject
(
"Uf",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
@ -227,7 +227,7 @@ Foam::solvers::compressibleVoF::compressibleVoF(fvMesh& mesh)
IOobject
(
fv::localEulerDdt::rDeltaTName,
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
@ -246,7 +246,7 @@ Foam::solvers::compressibleVoF::compressibleVoF(fvMesh& mesh)
IOobject
(
"rAU",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE

View File

@ -97,7 +97,7 @@ Foam::fv::VoFSolidificationMeltingSource::VoFSolidificationMeltingSource
IOobject
(
alphaSolidName(),
mesh.time().timeName(),
mesh.time().name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE

View File

@ -64,7 +64,7 @@ Foam::solvers::incompressibleFluid::incompressibleFluid(fvMesh& mesh)
IOobject
(
"p",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -79,7 +79,7 @@ Foam::solvers::incompressibleFluid::incompressibleFluid(fvMesh& mesh)
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -92,7 +92,7 @@ Foam::solvers::incompressibleFluid::incompressibleFluid(fvMesh& mesh)
IOobject
(
"phi",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
@ -127,7 +127,7 @@ Foam::solvers::incompressibleFluid::incompressibleFluid(fvMesh& mesh)
IOobject
(
"Uf",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
@ -151,7 +151,7 @@ Foam::solvers::incompressibleFluid::incompressibleFluid(fvMesh& mesh)
IOobject
(
fv::localEulerDdt::rDeltaTName,
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE

View File

@ -100,7 +100,7 @@ Foam::solvers::isothermalFluid::isothermalFluid
IOobject
(
"rho",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
@ -113,7 +113,7 @@ Foam::solvers::isothermalFluid::isothermalFluid
IOobject
(
"dpdt",
runTime.timeName(),
runTime.name(),
mesh
),
mesh,
@ -137,7 +137,7 @@ Foam::solvers::isothermalFluid::isothermalFluid
IOobject
(
"U",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -150,7 +150,7 @@ Foam::solvers::isothermalFluid::isothermalFluid
IOobject
(
"phi",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
@ -202,7 +202,7 @@ Foam::solvers::isothermalFluid::isothermalFluid
IOobject
(
"netForce",
runTime.timeName(),
runTime.name(),
mesh
),
fvc::reconstruct
@ -222,7 +222,7 @@ Foam::solvers::isothermalFluid::isothermalFluid
IOobject
(
"rhoUf",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
@ -246,7 +246,7 @@ Foam::solvers::isothermalFluid::isothermalFluid
IOobject
(
fv::localEulerDdt::rDeltaTName,
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE

View File

@ -100,7 +100,7 @@ void Foam::solvers::multicomponentFluid::setRDeltaT()
IOobject
(
"rDeltaTY",
runTime.timeName(),
runTime.name(),
mesh
),
mesh,

View File

@ -83,7 +83,7 @@ Foam::functionObjects::phaseForces::phaseForces
IOobject
(
IOobject::groupName("dragForce", phase_.name()),
mesh_.time().timeName(),
mesh_.time().name(),
mesh_
),
mesh_,
@ -106,7 +106,7 @@ Foam::functionObjects::phaseForces::phaseForces
"virtualMassForce",
phase_.name()
),
mesh_.time().timeName(),
mesh_.time().name(),
mesh_
),
mesh_,
@ -125,7 +125,7 @@ Foam::functionObjects::phaseForces::phaseForces
IOobject
(
IOobject::groupName("liftForce", phase_.name()),
mesh_.time().timeName(),
mesh_.time().name(),
mesh_
),
mesh_,
@ -152,7 +152,7 @@ Foam::functionObjects::phaseForces::phaseForces
"wallLubricationForce",
phase_.name()
),
mesh_.time().timeName(),
mesh_.time().name(),
mesh_
),
mesh_,
@ -179,7 +179,7 @@ Foam::functionObjects::phaseForces::phaseForces
"turbulentDispersionForce",
phase_.name()
),
mesh_.time().timeName(),
mesh_.time().name(),
mesh_
),
mesh_,

View File

@ -76,7 +76,7 @@ bool Foam::functionObjects::phaseMap::write()
IOobject
(
IOobject::groupName(phases_[0].member(), "map"),
mesh_.time().timeName(),
mesh_.time().name(),
mesh_,
IOobject::NO_READ,
IOobject::AUTO_WRITE

View File

@ -801,7 +801,7 @@ Foam::functionObjects::populationBalanceMoments::read(const dictionary& dict)
IOobject
(
this->integerMomentFldName(),
mesh_.time().timeName(),
mesh_.time().name(),
mesh_,
IOobject::NO_READ,
IOobject::NO_WRITE
@ -826,7 +826,7 @@ Foam::functionObjects::populationBalanceMoments::read(const dictionary& dict)
IOobject
(
this->defaultFldName(),
mesh_.time().timeName(),
mesh_.time().name(),
mesh_,
IOobject::NO_READ,
IOobject::NO_WRITE
@ -846,7 +846,7 @@ Foam::functionObjects::populationBalanceMoments::read(const dictionary& dict)
IOobject
(
this->defaultFldName(),
mesh_.time().timeName(),
mesh_.time().name(),
mesh_,
IOobject::NO_READ,
IOobject::NO_WRITE
@ -866,7 +866,7 @@ Foam::functionObjects::populationBalanceMoments::read(const dictionary& dict)
IOobject
(
this->defaultFldName(),
mesh_.time().timeName(),
mesh_.time().name(),
mesh_,
IOobject::NO_READ,
IOobject::NO_WRITE

View File

@ -9,7 +9,7 @@ if (LTS && faceMomentum)
IOobject
(
fv::localEulerDdt::rDeltaTfName,
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE

View File

@ -53,7 +53,7 @@ Foam::interfaceCompositionModels::Henry::Henry
IOobject
(
IOobject::groupName("YSolvent", this->interface().name()),
interface.mesh().time().timeName(),
interface.mesh().time().name(),
interface.mesh()
),
interface.mesh(),

View File

@ -52,7 +52,7 @@ Foam::interfaceCompositionModels::Raoult::Raoult
IOobject
(
IOobject::groupName("YNonVapour", this->interface().name()),
interface.mesh().time().timeName(),
interface.mesh().time().name(),
interface.mesh()
),
interface.mesh(),
@ -63,7 +63,7 @@ Foam::interfaceCompositionModels::Raoult::Raoult
IOobject
(
IOobject::groupName("YNonVapourPrime", this->interface().name()),
interface.mesh().time().timeName(),
interface.mesh().time().name(),
interface.mesh()
),
interface.mesh(),

View File

@ -57,7 +57,7 @@ Foam::interfaceCompositionModels::nonRandomTwoLiquid::nonRandomTwoLiquid
IOobject
(
IOobject::groupName("gamma1", this->interface().name()),
interface.mesh().time().timeName(),
interface.mesh().time().name(),
interface.mesh()
),
interface.mesh(),
@ -68,7 +68,7 @@ Foam::interfaceCompositionModels::nonRandomTwoLiquid::nonRandomTwoLiquid
IOobject
(
IOobject::groupName("gamma2", this->interface().name()),
interface.mesh().time().timeName(),
interface.mesh().time().name(),
interface.mesh()
),
interface.mesh(),

View File

@ -51,7 +51,7 @@ Foam::interfaceSaturationTemperatureModel::interfaceSaturationTemperatureModel
IOobject
(
IOobject::groupName(typeName, interface.name()),
interface.mesh().time().timeName(),
interface.mesh().time().name(),
interface.mesh()
)
),

View File

@ -52,7 +52,7 @@ Foam::dragModel::dragModel
IOobject
(
IOobject::groupName(typeName, interface.name()),
interface.mesh().time().timeName(),
interface.mesh().time().name(),
interface.mesh(),
IOobject::NO_READ,
IOobject::NO_WRITE,

View File

@ -86,7 +86,7 @@ Foam::tmp<Foam::volScalarField> Foam::dragModels::segregated::K() const
IOobject
(
"L",
mesh.time().timeName(),
mesh.time().name(),
mesh
),
mesh,

View File

@ -56,7 +56,7 @@ Foam::phaseTransferModel::phaseTransferModel
IOobject
(
IOobject::groupName(typeName, interface.name()),
interface.mesh().time().timeName(),
interface.mesh().time().name(),
interface.mesh()
)
)

View File

@ -51,7 +51,7 @@ Foam::virtualMassModel::virtualMassModel
IOobject
(
IOobject::groupName(typeName, interface.name()),
interface.mesh().time().timeName(),
interface.mesh().time().name(),
interface.mesh(),
IOobject::NO_READ,
IOobject::NO_WRITE,

View File

@ -155,7 +155,7 @@ Foam::RASModels::kineticTheoryModel::kineticTheoryModel
IOobject
(
IOobject::groupName("Theta", phase_.name()),
U.time().timeName(),
U.time().name(),
U.mesh(),
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -168,7 +168,7 @@ Foam::RASModels::kineticTheoryModel::kineticTheoryModel
IOobject
(
IOobject::groupName(typedName("lambda"), phase_.name()),
U.time().timeName(),
U.time().name(),
U.mesh(),
IOobject::NO_READ,
IOobject::NO_WRITE
@ -182,7 +182,7 @@ Foam::RASModels::kineticTheoryModel::kineticTheoryModel
IOobject
(
IOobject::groupName(typedName("gs0"), phase_.name()),
U.time().timeName(),
U.time().name(),
U.mesh(),
IOobject::NO_READ,
IOobject::NO_WRITE
@ -196,7 +196,7 @@ Foam::RASModels::kineticTheoryModel::kineticTheoryModel
IOobject
(
IOobject::groupName(typedName("kappa"), phase_.name()),
U.time().timeName(),
U.time().name(),
U.mesh(),
IOobject::NO_READ,
IOobject::NO_WRITE
@ -210,7 +210,7 @@ Foam::RASModels::kineticTheoryModel::kineticTheoryModel
IOobject
(
IOobject::groupName(typedName("nuFric"), phase_.name()),
U.time().timeName(),
U.time().name(),
U.mesh(),
IOobject::NO_READ,
IOobject::AUTO_WRITE

View File

@ -222,7 +222,7 @@ void Foam::solvers::multiphaseEuler::cellPressureCorrector()
IOobject
(
"phiHbyA",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -245,7 +245,7 @@ void Foam::solvers::multiphaseEuler::cellPressureCorrector()
IOobject
(
"rAUf",
runTime.timeName(),
runTime.name(),
mesh
),
mesh,

View File

@ -209,7 +209,7 @@ void Foam::solvers::multiphaseEuler::facePressureCorrector()
IOobject
(
"phiHbyA",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -232,7 +232,7 @@ void Foam::solvers::multiphaseEuler::facePressureCorrector()
IOobject
(
"rAUf",
runTime.timeName(),
runTime.name(),
mesh
),
mesh,

View File

@ -115,7 +115,7 @@ Foam::solvers::multiphaseEuler::multiphaseEuler(fvMesh& mesh)
IOobject
(
fv::localEulerDdt::rDeltaTName,
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
@ -135,7 +135,7 @@ Foam::solvers::multiphaseEuler::multiphaseEuler(fvMesh& mesh)
IOobject
(
fv::localEulerDdt::rDeltaTfName,
runTime.timeName(),
runTime.name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE

View File

@ -685,7 +685,7 @@ void Foam::BlendedInterfacialModel<ModelType>::postProcessBlendingCoefficients
IOobject
(
fluid.phases()[phasei].volScalarField::name(),
mesh.time().timeName(),
mesh.time().name(),
mesh
),
mesh,
@ -1284,7 +1284,7 @@ Foam::BlendedInterfacialModel<ModelType>::BlendedInterfacialModel
IOobject
(
IOobject::groupName(typeName, interface.name()),
interface.fluid().mesh().time().timeName(),
interface.fluid().mesh().time().name(),
interface.fluid().mesh()
)
),

View File

@ -249,7 +249,7 @@ InterfaceCompositionPhaseChangePhaseSystem
"interfaceCompositionPhaseChange:dmdtf",
interface.name()
),
this->mesh().time().timeName(),
this->mesh().time().name(),
this->mesh(),
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
@ -275,7 +275,7 @@ InterfaceCompositionPhaseChangePhaseSystem
"interfaceCompositionPhaseChange:Tf",
interface.name()
),
this->mesh().time().timeName(),
this->mesh().time().name(),
this->mesh(),
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -321,7 +321,7 @@ InterfaceCompositionPhaseChangePhaseSystem
),
interface.name()
),
this->mesh().time().timeName(),
this->mesh().time().name(),
this->mesh()
),
this->mesh(),
@ -345,7 +345,7 @@ InterfaceCompositionPhaseChangePhaseSystem
),
interface.name()
),
this->mesh().time().timeName(),
this->mesh().time().name(),
this->mesh()
),
this->mesh(),

View File

@ -113,7 +113,7 @@ MomentumTransferPhaseSystem
IOobject
(
IOobject::groupName("Kd", interface.name()),
this->mesh().time().timeName(),
this->mesh().time().name(),
this->mesh()
),
this->mesh(),
@ -129,7 +129,7 @@ MomentumTransferPhaseSystem
IOobject
(
IOobject::groupName("Kdf", interface.name()),
this->mesh().time().timeName(),
this->mesh().time().name(),
this->mesh()
),
this->mesh(),
@ -155,7 +155,7 @@ MomentumTransferPhaseSystem
IOobject
(
IOobject::groupName("Vm", interface.name()),
this->mesh().time().timeName(),
this->mesh().time().name(),
this->mesh()
),
this->mesh(),
@ -171,7 +171,7 @@ MomentumTransferPhaseSystem
IOobject
(
IOobject::groupName("Vmf", interface.name()),
this->mesh().time().timeName(),
this->mesh().time().name(),
this->mesh()
),
this->mesh(),

View File

@ -175,7 +175,7 @@ Foam::PhaseTransferPhaseSystem<BasePhaseSystem>::PhaseTransferPhaseSystem
"phaseTransfer:dmdtf",
interface.name()
),
this->mesh().time().timeName(),
this->mesh().time().name(),
this->mesh()
),
this->mesh(),
@ -195,7 +195,7 @@ Foam::PhaseTransferPhaseSystem<BasePhaseSystem>::PhaseTransferPhaseSystem
"phaseTransfer:d2mdtdpf",
interface.name()
),
this->mesh().time().timeName(),
this->mesh().time().name(),
this->mesh()
),
this->mesh(),
@ -228,7 +228,7 @@ Foam::PhaseTransferPhaseSystem<BasePhaseSystem>::PhaseTransferPhaseSystem
),
interface.name()
),
this->mesh().time().timeName(),
this->mesh().time().name(),
this->mesh()
),
this->mesh(),

View File

@ -129,7 +129,7 @@ ThermalPhaseChangePhaseSystem
"thermalPhaseChange:dmdtf",
interface.name()
),
this->mesh().time().timeName(),
this->mesh().time().name(),
this->mesh(),
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
@ -151,7 +151,7 @@ ThermalPhaseChangePhaseSystem
"thermalPhaseChange:d2mdtdpf",
interface.name()
),
this->mesh().time().timeName(),
this->mesh().time().name(),
this->mesh(),
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -173,7 +173,7 @@ ThermalPhaseChangePhaseSystem
"thermalPhaseChange:Tf",
interface.name()
),
this->mesh().time().timeName(),
this->mesh().time().name(),
this->mesh(),
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
@ -197,7 +197,7 @@ ThermalPhaseChangePhaseSystem
"thermalPhaseChange:nucleation:dmdtf",
interface.name()
),
this->mesh().time().timeName(),
this->mesh().time().name(),
this->mesh(),
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE

View File

@ -41,7 +41,7 @@ Foam::SidedInterfacialModel<ModelType>::SidedInterfacialModel
IOobject
(
IOobject::groupName(typeName, interface.name()),
interface.mesh().time().timeName(),
interface.mesh().time().name(),
interface.mesh()
)
),

View File

@ -71,7 +71,7 @@ Foam::diameterModels::IATE::IATE
IOobject
(
IOobject::groupName("kappai", phase.name()),
phase.time().timeName(),
phase.time().name(),
phase.mesh(),
IOobject::MUST_READ,
IOobject::AUTO_WRITE

View File

@ -55,7 +55,7 @@ Foam::diameterModels::IATEsources::dummy::R
IOobject
(
typedName("R"),
iate_.phase().time().timeName(),
iate_.phase().time().name(),
iate_.phase().mesh()
),
iate_.phase().mesh(),

View File

@ -72,7 +72,7 @@ Foam::diameterModels::IATEsources::randomCoalescence::R
IOobject
(
typedName("R"),
iate_.phase().time().timeName(),
iate_.phase().time().name(),
iate_.phase().mesh()
),
iate_.phase().mesh(),

View File

@ -71,7 +71,7 @@ Foam::diameterModels::IATEsources::turbulentBreakUp::R
IOobject
(
typedName("R"),
iate_.phase().time().timeName(),
iate_.phase().time().name(),
iate_.phase().mesh()
),
iate_.phase().mesh(),

View File

@ -69,7 +69,7 @@ Foam::diameterModels::IATEsources::wallBoiling::R
IOobject
(
typedName("R"),
phase().time().timeName(),
phase().time().name(),
phase().mesh()
),
phase().mesh(),
@ -81,7 +81,7 @@ Foam::diameterModels::IATEsources::wallBoiling::R
IOobject
(
typedName("Rdk"),
phase().time().timeName(),
phase().time().name(),
phase().mesh()
),
phase().mesh(),

View File

@ -54,7 +54,7 @@ Foam::diameterModels::isothermal::isothermal
IOobject
(
IOobject::groupName("d", phase.name()),
phase.time().timeName(),
phase.time().name(),
phase.mesh()
),
phase.mesh(),

View File

@ -69,7 +69,7 @@ Foam::diameterModels::linearTsub::linearTsub
IOobject
(
IOobject::groupName("d", phase.name()),
phase.time().timeName(),
phase.time().name(),
phase.mesh()
),
phase.mesh(),

View File

@ -77,7 +77,7 @@ Foam::diameterModels::shapeModels::fractal::fractal
IOobject
(
"kappa" + group.name().substr(1),
group.mesh().time().timeName(),
group.mesh().time().name(),
group.mesh(),
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
@ -98,7 +98,7 @@ Foam::diameterModels::shapeModels::fractal::fractal
IOobject
(
"dColl" + group.name().substr(1),
group.mesh().time().timeName(),
group.mesh().time().name(),
group.mesh()
),
this->dColl()
@ -108,7 +108,7 @@ Foam::diameterModels::shapeModels::fractal::fractal
IOobject
(
IOobject::groupName("Su", kappa_.name()),
group.mesh().time().timeName(),
group.mesh().time().name(),
group.mesh()
),
group.mesh(),

View File

@ -116,7 +116,7 @@ Foam::diameterModels::shapeModels::sinteringModels::KochFriedlander::R() const
IOobject
(
typedName("R"),
fi.time().timeName(),
fi.time().name(),
fi.mesh()
),
fi.mesh(),

View File

@ -75,7 +75,7 @@ Foam::diameterModels::shapeModels::sinteringModels::noSintering::R() const
IOobject
(
typedName("R"),
fi.time().timeName(),
fi.time().name(),
fi.mesh()
),
fi.mesh(),

View File

@ -52,7 +52,7 @@ Foam::diameterModels::sizeGroup::sizeGroup
name,
velocityGroup.phase().name()
),
mesh.time().timeName(),
mesh.time().name(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE

View File

@ -152,7 +152,7 @@ Foam::diameterModels::velocityGroup::velocityGroup
"f",
phase.name()
),
phase.time().timeName(),
phase.time().name(),
phase.mesh(),
IOobject::MUST_READ,
IOobject::AUTO_WRITE

View File

@ -47,7 +47,7 @@ Foam::MovingPhaseModel<BasePhaseModel>::phi(const volVectorField& U) const
typeIOobject<surfaceScalarField> phiHeader
(
phiName,
U.mesh().time().timeName(),
U.mesh().time().name(),
U.mesh(),
IOobject::NO_READ
);
@ -63,7 +63,7 @@ Foam::MovingPhaseModel<BasePhaseModel>::phi(const volVectorField& U) const
IOobject
(
phiName,
U.mesh().time().timeName(),
U.mesh().time().name(),
U.mesh(),
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -97,7 +97,7 @@ Foam::MovingPhaseModel<BasePhaseModel>::phi(const volVectorField& U) const
IOobject
(
phiName,
U.mesh().time().timeName(),
U.mesh().time().name(),
U.mesh(),
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -127,7 +127,7 @@ Foam::MovingPhaseModel<BasePhaseModel>::MovingPhaseModel
IOobject
(
IOobject::groupName("U", this->name()),
fluid.mesh().time().timeName(),
fluid.mesh().time().name(),
fluid.mesh(),
IOobject::MUST_READ,
IOobject::AUTO_WRITE
@ -140,7 +140,7 @@ Foam::MovingPhaseModel<BasePhaseModel>::MovingPhaseModel
IOobject
(
IOobject::groupName("alphaPhi", this->name()),
fluid.mesh().time().timeName(),
fluid.mesh().time().name(),
fluid.mesh()
),
fluid.mesh(),
@ -151,7 +151,7 @@ Foam::MovingPhaseModel<BasePhaseModel>::MovingPhaseModel
IOobject
(
IOobject::groupName("alphaRhoPhi", this->name()),
fluid.mesh().time().timeName(),
fluid.mesh().time().name(),
fluid.mesh()
),
fluid.mesh(),
@ -186,7 +186,7 @@ Foam::MovingPhaseModel<BasePhaseModel>::MovingPhaseModel
IOobject
(
IOobject::groupName("continuityError", this->name()),
fluid.mesh().time().timeName(),
fluid.mesh().time().name(),
fluid.mesh()
),
fluid.mesh(),
@ -203,7 +203,7 @@ Foam::MovingPhaseModel<BasePhaseModel>::MovingPhaseModel
IOobject
(
IOobject::groupName("Uf", this->name()),
fluid.mesh().time().timeName(),
fluid.mesh().time().name(),
fluid.mesh(),
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE

View File

@ -54,7 +54,7 @@ Foam::phaseModel::phaseModel
IOobject
(
IOobject::groupName("alpha", phaseName),
fluid.mesh().time().timeName(),
fluid.mesh().time().name(),
fluid.mesh(),
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -67,7 +67,7 @@ Foam::phaseModel::phaseModel
IOobject
(
IOobject::groupName("alpha", phaseName),
fluid.mesh().time().timeName(),
fluid.mesh().time().name(),
fluid.mesh(),
IOobject::MUST_READ,
IOobject::AUTO_WRITE

View File

@ -241,7 +241,7 @@ Foam::phaseSystem::phaseSystem
IOobject
(
"dpdt",
mesh.time().timeName(),
mesh.time().name(),
mesh
),
mesh,

View File

@ -125,7 +125,7 @@ void Foam::phaseSystem::solve
IOobject
(
"alphaVoid",
mesh_.time().timeName(),
mesh_.time().name(),
mesh_
),
mesh_,
@ -173,7 +173,7 @@ void Foam::phaseSystem::solve
IOobject
(
"Sp",
mesh_.time().timeName(),
mesh_.time().name(),
mesh_
),
mesh_,
@ -525,7 +525,7 @@ void Foam::phaseSystem::solve
IOobject
(
"sumAlphaMoving",
mesh_.time().timeName(),
mesh_.time().name(),
mesh_
),
mesh_,

View File

@ -178,7 +178,7 @@ void Foam::phaseSystem::fillFields
IOobject
(
IOobject::groupName(name, phase.name()),
this->mesh_.time().timeName(),
this->mesh_.time().name(),
this->mesh_
),
this->mesh_,
@ -214,7 +214,7 @@ void Foam::phaseSystem::fillFields
IOobject
(
IOobject::groupName(name, phase.name()),
this->mesh_.time().timeName(),
this->mesh_.time().name(),
this->mesh_
),
this->mesh_,

View File

@ -40,7 +40,7 @@ Foam::diameterModels::LiaoBase::LiaoBase
IOobject
(
"kolmogorovLengthScale",
populationBalance_.time().timeName(),
populationBalance_.time().name(),
populationBalance_.mesh()
),
populationBalance_.mesh(),
@ -56,7 +56,7 @@ Foam::diameterModels::LiaoBase::LiaoBase
IOobject
(
"shearStrainRate",
populationBalance_.time().timeName(),
populationBalance_.time().name(),
populationBalance_.mesh()
),
populationBalance_.mesh(),
@ -72,7 +72,7 @@ Foam::diameterModels::LiaoBase::LiaoBase
IOobject
(
"eddyStrainRate",
populationBalance_.time().timeName(),
populationBalance_.time().name(),
populationBalance_.mesh()
),
populationBalance_.mesh(),

View File

@ -70,7 +70,7 @@ Foam::diameterModels::binaryBreakupModels::LuoSvendsen::LuoSvendsen
IOobject
(
"kolmogorovLengthScale",
popBal_.time().timeName(),
popBal_.time().name(),
popBal_.mesh()
),
popBal_.mesh(),

View File

@ -69,7 +69,7 @@ BrownianCollisions
IOobject
(
"lambda",
popBal_.time().timeName(),
popBal_.time().name(),
popBal_.mesh()
),
popBal_.mesh(),

View File

@ -64,7 +64,7 @@ DahnekeInterpolation
IOobject
(
"BrownianCollisionRate",
popBal_.mesh().time().timeName(),
popBal_.mesh().time().name(),
popBal_.mesh()
),
popBal_.mesh(),
@ -76,7 +76,7 @@ DahnekeInterpolation
IOobject
(
"ballisticCollisionRate",
popBal_.mesh().time().timeName(),
popBal_.mesh().time().name(),
popBal_.mesh()
),
popBal_.mesh(),

View File

@ -80,7 +80,7 @@ LiaoCoalescence
IOobject
(
"CPack",
popBal_.time().timeName(),
popBal_.time().name(),
popBal_.mesh()
),
popBal_.mesh(),
@ -100,7 +100,7 @@ LiaoCoalescence
IOobject
(
"dCrit",
popBal_.time().timeName(),
popBal_.time().name(),
popBal_.mesh()
),
popBal_.mesh(),
@ -116,7 +116,7 @@ LiaoCoalescence
IOobject
(
"uRelTurb",
popBal_.time().timeName(),
popBal_.time().name(),
popBal_.mesh()
),
popBal_.mesh(),
@ -132,7 +132,7 @@ LiaoCoalescence
IOobject
(
"uRelBuoy",
popBal_.time().timeName(),
popBal_.time().name(),
popBal_.mesh()
),
popBal_.mesh(),
@ -148,7 +148,7 @@ LiaoCoalescence
IOobject
(
"uRelShear",
popBal_.time().timeName(),
popBal_.time().name(),
popBal_.mesh()
),
popBal_.mesh(),

View File

@ -93,7 +93,7 @@ PrinceBlanch
IOobject
(
"shearStrainRate",
popBal_.time().timeName(),
popBal_.time().name(),
popBal_.mesh()
),
popBal_.mesh(),

View File

@ -71,7 +71,7 @@ Foam::diameterModels::driftModels::phaseChange::phaseChange
IOobject
(
IOobject::groupName(typedName("W"), interfaces_[i].name()),
popBal_.mesh().time().timeName(),
popBal_.mesh().time().name(),
popBal_.mesh()
),
popBal_.mesh(),

View File

@ -77,7 +77,7 @@ void Foam::diameterModels::populationBalanceModel::registerVelocityGroups()
"dilatationError",
velGroup.phase().name()
),
fluid_.time().timeName(),
fluid_.time().name(),
mesh_
),
mesh_,
@ -167,7 +167,7 @@ void Foam::diameterModels::populationBalanceModel::registerSizeGroups
IOobject
(
"Su",
fluid_.time().timeName(),
fluid_.time().name(),
mesh_
),
mesh_,
@ -182,7 +182,7 @@ void Foam::diameterModels::populationBalanceModel::registerSizeGroups
IOobject
(
"Sp",
fluid_.time().timeName(),
fluid_.time().name(),
mesh_
),
mesh_,
@ -236,7 +236,7 @@ void Foam::diameterModels::populationBalanceModel::initialiseDmdtfs()
typedName("dmdtf"),
interface.name()
),
mesh().time().timeName(),
mesh().time().name(),
mesh()
),
mesh(),
@ -815,7 +815,7 @@ Foam::diameterModels::populationBalanceModel::populationBalanceModel
IOobject
(
"Sui",
mesh_.time().timeName(),
mesh_.time().name(),
mesh_
),
mesh_,
@ -879,7 +879,7 @@ Foam::diameterModels::populationBalanceModel::populationBalanceModel
IOobject
(
"coalescenceRate",
mesh_.time().timeName(),
mesh_.time().name(),
mesh_
),
mesh_,
@ -905,7 +905,7 @@ Foam::diameterModels::populationBalanceModel::populationBalanceModel
IOobject
(
"breakupRate",
fluid_.time().timeName(),
fluid_.time().name(),
mesh_
),
mesh_,
@ -923,7 +923,7 @@ Foam::diameterModels::populationBalanceModel::populationBalanceModel
IOobject
(
"binaryBreakupRate",
fluid_.time().timeName(),
fluid_.time().name(),
mesh_
),
mesh_,
@ -959,7 +959,7 @@ Foam::diameterModels::populationBalanceModel::populationBalanceModel
IOobject
(
"driftRate",
fluid_.time().timeName(),
fluid_.time().name(),
mesh_
),
mesh_,
@ -977,7 +977,7 @@ Foam::diameterModels::populationBalanceModel::populationBalanceModel
IOobject
(
"nucleationRate",
fluid_.time().timeName(),
fluid_.time().name(),
mesh_
),
mesh_,
@ -1000,7 +1000,7 @@ Foam::diameterModels::populationBalanceModel::populationBalanceModel
IOobject
(
IOobject::groupName("alpha", this->name()),
fluid_.time().timeName(),
fluid_.time().name(),
mesh_,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -1017,7 +1017,7 @@ Foam::diameterModels::populationBalanceModel::populationBalanceModel
IOobject
(
IOobject::groupName("d", this->name()),
fluid_.time().timeName(),
fluid_.time().name(),
mesh_,
IOobject::NO_READ,
IOobject::AUTO_WRITE
@ -1034,7 +1034,7 @@ Foam::diameterModels::populationBalanceModel::populationBalanceModel
IOobject
(
IOobject::groupName("U", this->name()),
fluid_.time().timeName(),
fluid_.time().name(),
mesh_,
IOobject::NO_READ,
IOobject::AUTO_WRITE

View File

@ -9,7 +9,7 @@ correctUphiBCs(U, phi, true);
IOobject
(
"pcorr",
runTime.timeName(),
runTime.name(),
mesh,
IOobject::NO_READ,
IOobject::NO_WRITE

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