From be8da1ffce5abe1d1de701801b8cff30b4424f44 Mon Sep 17 00:00:00 2001 From: Alexander Vakhrushev Date: Wed, 19 Nov 2014 09:51:45 +0100 Subject: [PATCH 1/2] BUGFIX: corrected coefficient for the virtual mass force for beta phase in bubbleFoam --- applications/solvers/multiphase/bubbleFoam/UEqns.H | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/solvers/multiphase/bubbleFoam/UEqns.H b/applications/solvers/multiphase/bubbleFoam/UEqns.H index 64cc5db46..5affe683c 100644 --- a/applications/solvers/multiphase/bubbleFoam/UEqns.H +++ b/applications/solvers/multiphase/bubbleFoam/UEqns.H @@ -43,7 +43,7 @@ fvVectorMatrix UbEqn(Ub, Ub.dimensions()*dimVol/dimTime); UbEqn = ( - (scalar(1) + Cvm*rhob*alpha/rhob)* + (scalar(1) + Cvm*rhoa*alpha/rhob)* ( fvm::ddt(Ub) + fvm::div(phib, Ub, "div(phib,Ub)") @@ -61,7 +61,7 @@ fvVectorMatrix UbEqn(Ub, Ub.dimensions()*dimVol/dimTime); // g // Buoyancy term transfered to p-equation - fvm::Sp(alpha/rhob*dragCoef, Ub) //+ alpha/rhob*dragCoef*Ua // Explicit drag transfered to p-equation - + alpha/rhob*(liftCoeff + Cvm*rhob*DDtUa) + + alpha/rhob*(liftCoeff + Cvm*rhoa*DDtUa) ); UbEqn.relax(); From 81a52cfbac1396488214b6eb19ab3eadb132e29b Mon Sep 17 00:00:00 2001 From: Dominik Christ Date: Mon, 27 Apr 2015 10:34:40 +0100 Subject: [PATCH 2/2] Added Alexander Vakhrushev to ListOfContributors --- ListOfContributors | 1 + 1 file changed, 1 insertion(+) diff --git a/ListOfContributors b/ListOfContributors index c9cf38af8..9210e54db 100644 --- a/ListOfContributors +++ b/ListOfContributors @@ -74,3 +74,4 @@ Zeljko Tukovic Niklas Wikstrom Vanja Skuric + Alexander Vakhrushev