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
a31d0c83
Commit
a31d0c83
authored
Jun 05, 2019
by
mattijs
Committed by
Andrew Heather
Jun 05, 2019
Browse files
ENH: overset: add value field. Fixes
#1334
.
parent
1de2f305
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/overset/oversetPolyPatch/oversetFvPatchField.C
View file @
a31d0c83
...
...
@@ -350,4 +350,13 @@ void Foam::oversetFvPatchField<Type>::initEvaluate
//}
template
<
class
Type
>
void
Foam
::
oversetFvPatchField
<
Type
>::
write
(
Ostream
&
os
)
const
{
zeroGradientFvPatchField
<
Type
>::
write
(
os
);
// Make sure to write the value for ease of postprocessing.
this
->
writeEntry
(
"value"
,
os
);
}
// ************************************************************************* //
src/overset/oversetPolyPatch/oversetFvPatchField.H
View file @
a31d0c83
...
...
@@ -165,6 +165,12 @@ public:
// const direction cmpt,
// const Pstream::commsTypes commsType
// ) const;
// I-O
//- Write
virtual
void
write
(
Ostream
&
os
)
const
;
};
...
...
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