Time: Removed the deprecated timeName() function

use name() instead.
This commit is contained in:
Henry Weller
2024-06-26 11:38:49 +01:00
parent 10c1f27e06
commit 8bf9afff11
14 changed files with 29 additions and 35 deletions

View File

@ -26,7 +26,7 @@ codeWrite
IOobject
(
"R",
mesh().time().timeName(),
mesh().time().name(),
mesh()
),
mag(XY & mesh().C())

View File

@ -29,19 +29,19 @@ codeWrite
vectorIOField
(
IOobject("eR", mesh().time().timeName(), mesh()),
IOobject("eR", mesh().time().name(), mesh()),
xy/mag(xy)
).write();
vectorIOField
(
IOobject("eTheta", mesh().time().timeName(), mesh()),
IOobject("eTheta", mesh().time().name(), mesh()),
(zStar ^ xy)/mag(zStar ^ xy)
).write();
vectorIOField
(
IOobject("eZ", mesh().time().timeName(), mesh()),
IOobject("eZ", mesh().time().name(), mesh()),
zStar/mag(zStar)
).write();
#};