diff --git a/ListOfContributors b/ListOfContributors index 0e4f43c92..36b201f73 100644 --- a/ListOfContributors +++ b/ListOfContributors @@ -81,3 +81,4 @@ Contents: Zeljko Tukovic Niklas Wikstrom Vanja Skuric + Alexander Vakhrushev 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();