Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
53959e7e
Commit
53959e7e
authored
Jun 13, 2018
by
Mark OLESEN
Browse files
COMP: ambiguous construction from tmp (clang)
STYLE: more consistent use of dimensioned Zero
parent
a784afc8
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/functionObjects/field/stabilityBlendingFactor/stabilityBlendingFactor.C
View file @
53959e7e
...
...
@@ -70,7 +70,6 @@ bool Foam::functionObjects::stabilityBlendingFactor::calc()
bool
Foam
::
functionObjects
::
stabilityBlendingFactor
::
init
(
bool
first
)
{
const
IOField
<
scalar
>*
residualPtr
=
mesh_
.
lookupObjectPtr
<
IOField
<
scalar
>>
(
residualName_
);
...
...
@@ -100,7 +99,7 @@ bool Foam::functionObjects::stabilityBlendingFactor::init(bool first)
oldErrorIntegral_
=
errorIntegral_
;
error_
=
mag
(
meanRes
-
mag
(
*
residualPtr
));
errorIntegral_
=
oldErrorIntegral_
+
0
.
5
*
(
error_
+
oldError_
);
const
scalarField
errorDifferential
=
error_
-
oldError_
;
const
scalarField
errorDifferential
(
error_
-
oldError_
)
;
const
scalarField
factorList
(
...
...
@@ -229,7 +228,7 @@ bool Foam::functionObjects::stabilityBlendingFactor::init(bool first)
IOobject
::
NO_WRITE
),
mesh_
,
dimensionedScalar
(
"0"
,
dimless
,
Zero
),
dimensionedScalar
(
dimless
,
Zero
),
zeroGradientFvPatchScalarField
::
typeName
)
);
...
...
@@ -248,7 +247,7 @@ bool Foam::functionObjects::stabilityBlendingFactor::init(bool first)
IOobject
::
NO_WRITE
),
mesh_
,
dimensionedScalar
(
"zero"
,
dimLength
,
0
),
dimensionedScalar
(
dimLength
,
Zero
),
zeroGradientFvPatchScalarField
::
typeName
);
cci
=
mesh_
.
C
().
component
(
i
);
...
...
@@ -298,7 +297,7 @@ bool Foam::functionObjects::stabilityBlendingFactor::init(bool first)
IOobject
::
NO_WRITE
),
mesh_
,
dimensionedScalar
(
"0"
,
dimless
,
Zero
),
dimensionedScalar
(
dimless
,
Zero
),
zeroGradientFvPatchScalarField
::
typeName
)
);
...
...
@@ -360,7 +359,7 @@ Foam::functionObjects::stabilityBlendingFactor::stabilityBlendingFactor
IOobject
::
NO_WRITE
),
mesh_
,
dimensionedScalar
(
"0"
,
dimless
,
0
.
0
),
dimensionedScalar
(
dimless
,
Zero
),
zeroGradientFvPatchScalarField
::
typeName
),
nonOrthogonality_
(
dict
.
lookupOrDefault
<
Switch
>
(
"switchNonOrtho"
,
false
)),
...
...
@@ -434,7 +433,7 @@ Foam::functionObjects::stabilityBlendingFactor::stabilityBlendingFactor
IOobject
::
NO_WRITE
),
mesh_
,
dimensionedScalar
(
"0"
,
dimless
,
0
.
0
)
dimensionedScalar
(
dimless
,
Zero
)
)
);
store
(
resultName_
,
faceBlendedPtr
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment