diff --git a/src/finiteVolume/interpolation/surfaceInterpolation/limitedSchemes/blended/blended.H b/src/finiteVolume/interpolation/surfaceInterpolation/limitedSchemes/blended/blended.H index f58b8c2393..3bfc47457e 100644 --- a/src/finiteVolume/interpolation/surfaceInterpolation/limitedSchemes/blended/blended.H +++ b/src/finiteVolume/interpolation/surfaceInterpolation/limitedSchemes/blended/blended.H @@ -134,7 +134,10 @@ public: ( vf.name() + "BlendingFactor", this->mesh().time().timeName(), - this->mesh() + this->mesh(), + IOobject::NO_READ, + IOobject::NO_WRITE, + false ), this->mesh(), dimensionedScalar @@ -161,7 +164,10 @@ public: ( "blendedLimiter", this->mesh().time().timeName(), - this->mesh() + this->mesh(), + IOobject::NO_READ, + IOobject::NO_WRITE, + false ), this->mesh(), dimensionedScalar diff --git a/src/finiteVolume/interpolation/surfaceInterpolation/limitedSchemes/upwind/upwind.H b/src/finiteVolume/interpolation/surfaceInterpolation/limitedSchemes/upwind/upwind.H index d3fbdb7cb4..2e04c1a19f 100644 --- a/src/finiteVolume/interpolation/surfaceInterpolation/limitedSchemes/upwind/upwind.H +++ b/src/finiteVolume/interpolation/surfaceInterpolation/limitedSchemes/upwind/upwind.H @@ -117,7 +117,10 @@ public: ( "upwindLimiter", this->mesh().time().timeName(), - this->mesh() + this->mesh(), + IOobject::NO_READ, + IOobject::NO_WRITE, + false ), this->mesh(), dimensionedScalar("upwindLimiter", dimless, 0.0) diff --git a/src/finiteVolume/interpolation/surfaceInterpolation/schemes/midPoint/midPoint.H b/src/finiteVolume/interpolation/surfaceInterpolation/schemes/midPoint/midPoint.H index 1a99c1c782..44b1f6f803 100644 --- a/src/finiteVolume/interpolation/surfaceInterpolation/schemes/midPoint/midPoint.H +++ b/src/finiteVolume/interpolation/surfaceInterpolation/schemes/midPoint/midPoint.H @@ -106,7 +106,10 @@ public: ( "midPointWeights", this->mesh().time().timeName(), - this->mesh() + this->mesh(), + IOobject::NO_READ, + IOobject::NO_WRITE, + false ), this->mesh(), dimensionedScalar("0.5", dimless, 0.5)