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 IOobject
( (
"p", "p",
runTime.timeName(), runTime.name(),
mesh, mesh,
IOobject::MUST_READ, IOobject::MUST_READ,
IOobject::AUTO_WRITE IOobject::AUTO_WRITE
@ -20,7 +20,7 @@ volVectorField U
IOobject IOobject
( (
"U", "U",
runTime.timeName(), runTime.name(),
mesh, mesh,
IOobject::MUST_READ, IOobject::MUST_READ,
IOobject::AUTO_WRITE IOobject::AUTO_WRITE

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-2022 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -121,7 +121,7 @@ int main(int argc, char *argv[])
runTime.path() runTime.path()
/functionObjects::writeFile::outputPrefix /functionObjects::writeFile::outputPrefix
/"graphs" /"graphs"
/runTime.timeName(), /runTime.name(),
"Ek", "Ek",
runTime.graphFormat() 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; << 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; << (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; << 181.0*average(U & force).value() << endl;
} }

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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-2022 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -46,7 +46,7 @@ int main(int argc, char *argv[])
IOobject IOobject
( (
"U", "U",
runTime.timeName(), runTime.name(),
mesh, mesh,
IOobject::MUST_READ, IOobject::MUST_READ,
IOobject::AUTO_WRITE IOobject::AUTO_WRITE

View File

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

View File

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

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-2018 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -47,7 +47,7 @@ int main(int argc, char *argv[])
while (runTime.loop()) while (runTime.loop())
{ {
Info<< "Iteration = " << runTime.timeName() << nl << endl; Info<< "Iteration = " << runTime.name() << nl << endl;
solve solve
( (

View File

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

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-2018 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -90,7 +90,7 @@ int main(int argc, char *argv[])
IOobject IOobject
( (
"H", "H",
runTime.timeName(), runTime.name(),
mesh mesh
), ),
fvc::reconstruct(fvc::snGrad(psi)*mesh.magSf()) fvc::reconstruct(fvc::snGrad(psi)*mesh.magSf())
@ -100,7 +100,7 @@ int main(int argc, char *argv[])
{ {
Info<< nl Info<< nl
<< "Creating field H for time " << "Creating field H for time "
<< runTime.timeName() << endl; << runTime.name() << endl;
H.write(); H.write();
} }
@ -109,14 +109,14 @@ int main(int argc, char *argv[])
{ {
Info<< nl Info<< nl
<< "Creating field HdotGradH for time " << "Creating field HdotGradH for time "
<< runTime.timeName() << endl; << runTime.name() << endl;
volVectorField HdotGradH volVectorField HdotGradH
( (
IOobject IOobject
( (
"HdotGradH", "HdotGradH",
runTime.timeName(), runTime.name(),
mesh mesh
), ),
H & fvc::grad(H) H & fvc::grad(H)
@ -130,14 +130,14 @@ int main(int argc, char *argv[])
{ {
Info<< nl Info<< nl
<< "Creating field B for time " << "Creating field B for time "
<< runTime.timeName() << endl; << runTime.name() << endl;
volVectorField B volVectorField B
( (
IOobject IOobject
( (
"B", "B",
runTime.timeName(), runTime.name(),
mesh mesh
), ),
constant::electromagnetic::mu0 constant::electromagnetic::mu0

View File

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

View File

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

View File

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

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-2022 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -79,7 +79,7 @@ int main(int argc, char *argv[])
runTime.globalPath() runTime.globalPath()
/functionObjects::writeFile::outputPrefix /functionObjects::writeFile::outputPrefix
/args.executable() /args.executable()
/runTime.timeName(), /runTime.name(),
args.executable(), args.executable(),

View File

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

View File

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

View File

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

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-2022 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -38,7 +38,7 @@ surfaceScalarField phia
IOobject IOobject
( (
"phia", "phia",
runTime.timeName(), runTime.name(),
mesh, mesh,
IOobject::READ_IF_PRESENT, IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE IOobject::AUTO_WRITE

View File

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

View File

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

View File

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

View File

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

View File

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

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-2018 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -38,7 +38,7 @@ surfaceScalarField phi
IOobject IOobject
( (
"phi", "phi",
runTime.timeName(), runTime.name(),
mesh, mesh,
IOobject::READ_IF_PRESENT, IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE IOobject::AUTO_WRITE

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-2019 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -53,7 +53,7 @@ int main(int argc, char *argv[])
while (pimple.loop(runTime)) while (pimple.loop(runTime))
{ {
Info<< "\n Time = " << runTime.timeName() << nl << endl; Info<< "\n Time = " << runTime.name() << nl << endl;
#include "CourantNo.H" #include "CourantNo.H"

View File

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

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-2020 OpenFOAM Foundation \\ / A nd | Copyright (C) 2017-2022 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -38,7 +38,7 @@ surfaceVectorField Ucf
IOobject IOobject
( (
"Ucf", "Ucf",
runTime.timeName(), runTime.name(),
mesh, mesh,
IOobject::READ_IF_PRESENT, IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE IOobject::AUTO_WRITE

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-2020 OpenFOAM Foundation \\ / A nd | Copyright (C) 2017-2022 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -43,7 +43,7 @@ if (mesh.dynamic())
IOobject IOobject
( (
"Ucf", "Ucf",
runTime.timeName(), runTime.name(),
mesh, mesh,
IOobject::READ_IF_PRESENT, IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE IOobject::AUTO_WRITE

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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