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",
|
||||
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
|
||||
|
||||
@ -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)
|
||||
|
||||
@ -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)
|
||||
|
||||
Reference in New Issue
Block a user