Do not register temporaries
This commit is contained in:
parent
a4cca549e2
commit
4003887517
3 changed files with 16 additions and 4 deletions
|
|
@ -134,7 +134,10 @@ public:
|
||||||
(
|
(
|
||||||
vf.name() + "BlendingFactor",
|
vf.name() + "BlendingFactor",
|
||||||
this->mesh().time().timeName(),
|
this->mesh().time().timeName(),
|
||||||
this->mesh()
|
this->mesh(),
|
||||||
|
IOobject::NO_READ,
|
||||||
|
IOobject::NO_WRITE,
|
||||||
|
false
|
||||||
),
|
),
|
||||||
this->mesh(),
|
this->mesh(),
|
||||||
dimensionedScalar
|
dimensionedScalar
|
||||||
|
|
@ -161,7 +164,10 @@ public:
|
||||||
(
|
(
|
||||||
"blendedLimiter",
|
"blendedLimiter",
|
||||||
this->mesh().time().timeName(),
|
this->mesh().time().timeName(),
|
||||||
this->mesh()
|
this->mesh(),
|
||||||
|
IOobject::NO_READ,
|
||||||
|
IOobject::NO_WRITE,
|
||||||
|
false
|
||||||
),
|
),
|
||||||
this->mesh(),
|
this->mesh(),
|
||||||
dimensionedScalar
|
dimensionedScalar
|
||||||
|
|
|
||||||
|
|
@ -117,7 +117,10 @@ public:
|
||||||
(
|
(
|
||||||
"upwindLimiter",
|
"upwindLimiter",
|
||||||
this->mesh().time().timeName(),
|
this->mesh().time().timeName(),
|
||||||
this->mesh()
|
this->mesh(),
|
||||||
|
IOobject::NO_READ,
|
||||||
|
IOobject::NO_WRITE,
|
||||||
|
false
|
||||||
),
|
),
|
||||||
this->mesh(),
|
this->mesh(),
|
||||||
dimensionedScalar("upwindLimiter", dimless, 0.0)
|
dimensionedScalar("upwindLimiter", dimless, 0.0)
|
||||||
|
|
|
||||||
|
|
@ -106,7 +106,10 @@ public:
|
||||||
(
|
(
|
||||||
"midPointWeights",
|
"midPointWeights",
|
||||||
this->mesh().time().timeName(),
|
this->mesh().time().timeName(),
|
||||||
this->mesh()
|
this->mesh(),
|
||||||
|
IOobject::NO_READ,
|
||||||
|
IOobject::NO_WRITE,
|
||||||
|
false
|
||||||
),
|
),
|
||||||
this->mesh(),
|
this->mesh(),
|
||||||
dimensionedScalar("0.5", dimless, 0.5)
|
dimensionedScalar("0.5", dimless, 0.5)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue