Skip to content
Snippets Groups Projects
Commit 17df849a authored by mattijs's avatar mattijs Committed by Andrew Heather
Browse files

COMP: linear: single precision build

parent 2db489b5
Branches
Tags
No related merge requests found
......@@ -135,9 +135,9 @@ Foam::tmp<Foam::volScalarField> Foam::blendingMethods::linear::f1
(
(phase1 - maxFullAlpha)
/(maxPartAlpha - maxFullAlpha + SMALL),
0.0
scalar(0.0)
),
1.0
scalar(1.0)
);
}
......@@ -160,9 +160,9 @@ Foam::tmp<Foam::volScalarField> Foam::blendingMethods::linear::f2
(
(maxPartAlpha - phase2)
/(maxPartAlpha - maxFullAlpha + SMALL),
0.0
scalar(0.0)
),
1.0
scalar(1.0)
);
}
......
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