Skip to content
Snippets Groups Projects
Commit f8db210a authored by mattijs's avatar mattijs
Browse files

clashing names of temporaries

parent cc9c4fd3
Branches
Tags
No related merge requests found
......@@ -45,7 +45,7 @@ Foam::linearUpwind<Type>::correction
(
IOobject
(
"linearUpwindCorrection(" + vf.name() + ')',
"linearUpwind::correction(" + vf.name() + ')',
mesh.time().timeName(),
mesh,
IOobject::NO_READ,
......
......@@ -131,9 +131,12 @@ public:
(
IOobject
(
vf.name(),
"cubic::correction(" + vf.name() +')',
mesh.time().timeName(),
mesh
mesh,
IOobject::NO_READ,
IOobject::NO_WRITE,
false
),
surfaceInterpolationScheme<Type>::interpolate(vf, kSc, -kSc)
)
......
......@@ -133,7 +133,7 @@ public:
(
IOobject
(
vf.name(),
"localMax::interpolate(" + vf.name() + ')',
mesh.time().timeName(),
mesh
),
......
......@@ -133,7 +133,7 @@ public:
(
IOobject
(
vf.name(),
"localMin::interpolate(" + vf.name() + ')',
mesh.time().timeName(),
mesh
),
......
......@@ -144,7 +144,7 @@ public:
(
IOobject
(
vf.name(),
"skewCorrected::skewCorrection(" + vf.name() + ')',
mesh.time().timeName(),
mesh
),
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment