From 03a2326eb769a40ec53547e4e975de3b844852e5 Mon Sep 17 00:00:00 2001 From: Henry <Henry> Date: Tue, 29 Nov 2011 22:17:38 +0000 Subject: [PATCH] Corrected line length --- src/combustionModels/FSD/FSD.C | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/combustionModels/FSD/FSD.C b/src/combustionModels/FSD/FSD.C index f5b3d4e8d24..c7b646d8bbd 100644 --- a/src/combustionModels/FSD/FSD.C +++ b/src/combustionModels/FSD/FSD.C @@ -319,7 +319,10 @@ void FSD<CombThermoType, ThermoType>::calculateSourceNorm() products += Yp; } - volScalarField c(max(scalar(1) - products/max(pc, scalar(1e-5)), scalar(0))); + volScalarField c + ( + max(scalar(1) - products/max(pc, scalar(1e-5)), scalar(0)) + ); pc = min(C_*c, scalar(1)); -- GitLab