Corrected line length

This commit is contained in:
Henry
2011-11-29 22:17:38 +00:00
parent 4b31cf0407
commit 03a2326eb7

View File

@ -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));