From 78b9b93f77b4e71580ee13836673be3c59981334 Mon Sep 17 00:00:00 2001 From: andy <andy> Date: Mon, 13 May 2013 17:29:38 +0100 Subject: [PATCH] BUG: Corrected particle lift force calculation - mantis #822 --- .../Kinematic/ParticleForces/Lift/LiftForce/LiftForce.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lagrangian/intermediate/submodels/Kinematic/ParticleForces/Lift/LiftForce/LiftForce.C b/src/lagrangian/intermediate/submodels/Kinematic/ParticleForces/Lift/LiftForce/LiftForce.C index 290d2f3c3d6..a4faceeec75 100644 --- a/src/lagrangian/intermediate/submodels/Kinematic/ParticleForces/Lift/LiftForce/LiftForce.C +++ b/src/lagrangian/intermediate/submodels/Kinematic/ParticleForces/Lift/LiftForce/LiftForce.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2012 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2012-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -141,7 +141,7 @@ Foam::forceSuSp Foam::LiftForce<CloudType>::calcCoupled scalar Cl = this->Cl(p, curlUc, Re, muc); - value.Su() = mass/p.rho()*p.d()/2.0*p.rhoc()*Cl*((p.Uc() - p.U())^curlUc); + value.Su() = mass/p.rho()*p.rhoc()*Cl*((p.Uc() - p.U())^curlUc); return value; } -- GitLab