From 3f3e3301587d45f9022b3da2e9cd511e91e52ff3 Mon Sep 17 00:00:00 2001 From: Hrvoje Jasak Date: Mon, 28 May 2018 19:09:49 +0100 Subject: [PATCH] Fixed flux writing problem --- .../fields/fvPatchFields/derived/flux/fluxFvPatchField.C | 1 + 1 file changed, 1 insertion(+) diff --git a/src/finiteVolume/fields/fvPatchFields/derived/flux/fluxFvPatchField.C b/src/finiteVolume/fields/fvPatchFields/derived/flux/fluxFvPatchField.C index 960c94b1e..4c3ca171b 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/flux/fluxFvPatchField.C +++ b/src/finiteVolume/fields/fvPatchFields/derived/flux/fluxFvPatchField.C @@ -163,6 +163,7 @@ void fluxFvPatchField::write(Ostream& os) const fixedGradientFvPatchField::write(os); flux_.writeEntry("flux", os); reactivity_.writeEntry("reactivity", os); + os.writeKeyword("gamma") << gammaName_ << token::END_STATEMENT << nl; this->writeEntry("value", os); }