mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Do not register temporaries
This commit is contained in:
@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user