Bugfixes in immersed boundary fvPatches: patch type
This commit is contained in:
parent
58421f0713
commit
012e01815a
3 changed files with 0 additions and 5 deletions
|
@ -253,8 +253,6 @@ void fixedValueIbFvPatchField<Type>::write(Ostream& os) const
|
||||||
{
|
{
|
||||||
// Resolve post-processing issues. HJ, 1/Dec/2017
|
// Resolve post-processing issues. HJ, 1/Dec/2017
|
||||||
fvPatchField<Type>::write(os);
|
fvPatchField<Type>::write(os);
|
||||||
os.writeKeyword("patchType")
|
|
||||||
<< immersedBoundaryFvPatch::typeName << token::END_STATEMENT << nl;
|
|
||||||
triValue_.writeEntry("triValue", os);
|
triValue_.writeEntry("triValue", os);
|
||||||
|
|
||||||
// The value entry needs to be written with zero size
|
// The value entry needs to be written with zero size
|
||||||
|
|
|
@ -209,7 +209,6 @@ void mixedIbFvPatchField<Type>::autoMap
|
||||||
{
|
{
|
||||||
// Base fields do not map: re-interpolate them from tri data
|
// Base fields do not map: re-interpolate them from tri data
|
||||||
this->updateIbValues();
|
this->updateIbValues();
|
||||||
mixedFvPatchField<Type>::evaluate();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -66,8 +66,6 @@ void Foam::immersedBoundaryFieldBase<Type>::setDeadValues
|
||||||
template<class Type>
|
template<class Type>
|
||||||
void Foam::immersedBoundaryFieldBase<Type>::writeDeadData(Ostream& os) const
|
void Foam::immersedBoundaryFieldBase<Type>::writeDeadData(Ostream& os) const
|
||||||
{
|
{
|
||||||
os.writeKeyword("patchType")
|
|
||||||
<< immersedBoundaryFvPatch::typeName << token::END_STATEMENT << nl;
|
|
||||||
os.writeKeyword("setDeadValue")
|
os.writeKeyword("setDeadValue")
|
||||||
<< setDeadValue_ << token::END_STATEMENT << nl;
|
<< setDeadValue_ << token::END_STATEMENT << nl;
|
||||||
os.writeKeyword("deadValue")
|
os.writeKeyword("deadValue")
|
||||||
|
|
Reference in a new issue