BUG: expression BCs missing their variables on output

This commit is contained in:
Mark Olesen
2019-12-13 15:49:25 +01:00
parent db8a840459
commit 6ce3e0bd67
4 changed files with 30 additions and 3 deletions

View File

@ -208,7 +208,7 @@ void Foam::exprFixedValueFvPatchField<Type>::write(Ostream& os) const
fixedValueFvPatchField<Type>::write(os);
expressions::patchExprFieldBase::write(os);
// driver_.writeCommon(os, this->debug_ || debug);
driver_.writeCommon(os, this->debug_ || debug);
}

View File

@ -302,7 +302,7 @@ void Foam::exprMixedFvPatchField<Type>::write(Ostream& os) const
mixedFvPatchField<Type>::write(os);
expressions::patchExprFieldBase::write(os);
// driver_.writeCommon(os, this->debug_ || debug);
driver_.writeCommon(os, this->debug_ || debug);
}

View File

@ -213,7 +213,7 @@ void Foam::exprValuePointPatchField<Type>::write(Ostream& os) const
this->writeEntry("value",os);
// driver_.writeCommon(os,this->debug_ || debug);
driver_.writeCommon(os,this->debug_ || debug);
}
// ************************************************************************* //