From 17df849a1a36bd71f264c38aed795f6f77982c43 Mon Sep 17 00:00:00 2001 From: mattijs <mattijs> Date: Tue, 1 Apr 2014 15:06:19 +0100 Subject: [PATCH] COMP: linear: single precision build --- .../blendingMethods/linear/linear.C | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/applications/solvers/multiphase/twoPhaseEulerFoam/twoPhaseSystem/BlendedInterfacialModel/blendingMethods/linear/linear.C b/applications/solvers/multiphase/twoPhaseEulerFoam/twoPhaseSystem/BlendedInterfacialModel/blendingMethods/linear/linear.C index 6bda7558208..48dcd0855e2 100644 --- a/applications/solvers/multiphase/twoPhaseEulerFoam/twoPhaseSystem/BlendedInterfacialModel/blendingMethods/linear/linear.C +++ b/applications/solvers/multiphase/twoPhaseEulerFoam/twoPhaseSystem/BlendedInterfacialModel/blendingMethods/linear/linear.C @@ -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) ); } -- GitLab