Skip to content
Snippets Groups Projects
Commit 03a2326e authored by Henry's avatar Henry
Browse files

Corrected line length

parent 4b31cf04
Branches
Tags
No related merge requests found
......@@ -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));
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment