Skip to content
Snippets Groups Projects
Commit 75d2614b authored by Henry's avatar Henry
Browse files

XiFoam: Limit b when calculating XiEq

parent 9a7bdf6b
Branches
Tags
No related merge requests found
......@@ -63,6 +63,7 @@ if (ign.ignited())
// Solve for b
// ~~~~~~~~~~~
bEqn.relax();
bEqn.solve();
Info<< "min(b) = " << min(b).value() << endl;
......@@ -201,7 +202,7 @@ if (ign.ignited())
volScalarField XiEq
(
scalar(1.001)
+ (scalar(1) + (2*XiShapeCoef)*(scalar(0.5) - b))
+ (scalar(1) + (2*XiShapeCoef)*(scalar(0.5) - min(max(b, 0.0), 1.0)))
*(XiEqStar - scalar(1.001))
);
......
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