CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Programming & Development

Conservative formulation in OpenFOAm multiphase solvers

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   August 11, 2022, 12:38
Question Conservative formulation in OpenFOAm multiphase solvers
  #1
New Member
 
Wojciech Sadowski
Join Date: Feb 2021
Posts: 1
Rep Power: 0
szynka12 is on a distinguished road
Hello everyone,

So I can't find an explanation for the way that momentum equation is coded in OF multiphase solvers. For example DPMFoam:
Code:
fvVectorMatrix UcEqn
(
    fvm::ddt(alphac, Uc) + fvm::div(alphaPhic, Uc)
  - fvm::Sp(fvc::ddt(alphac) + fvc::div(alphaPhic), Uc)
  + continuousPhaseTurbulence->divDevRhoReff(Uc)
 ==
    (1.0/rhoc)*cloudSU
);
or twoPhaseEulerFoam:
Code:
U1Eqn =
(
     fvm::ddt(alpha1, rho1, U1) + fvm::div(alphaRhoPhi1, U1)
   - fvm::Sp(contErr1, U1)
   + MRF.DDt(alpha1*rho1 + Vm, U1)
   + phase1.turbulence().divDevRhoReff(U1)
  ==
      ...
 );
What bugs me, is the Sp source in both equations. In the first case it is given as
-U\left( \frac{\partial \alpha_c}{\partial t} + \nabla\cdot(\alpha_c U_c) \right).
Here is the issue, I do recognise this as what appears from the decomposition of the conservative form and it would be logical in my opinion if this was added. My reasoning looks as follows: we have an equation in conservative form, we change it to the non-conservative, so that we solve for U instead of \alpha U:
\frac{\partial \alpha_c U}{\partial t} + \nabla\cdot (\alpha_c U U) = 
\alpha_c \frac{\partial U}{\partial t} + (\alpha_c U \cdot \nabla)U +
  U\left( \frac{\partial \alpha_c}{\partial t} + \nabla\cdot(\alpha_c U_c) \right).

Instead, it is subtracted, and I don't get why. Additionally this is supposed to make the equations conservative (look at this commit by Henry, it describes the change of the UEqns.H in twoPhaseEulerFoam in OpenFOAM 2.3x). So the question is, can someone explain or provide sources that explain what this source term actually does and how does it make the equations conservative?
szynka12 is offline   Reply With Quote

Reply

Tags
conservative form, momentum equation, multiphase flow


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Finding OpenFOAM solvers on two-phase cavitating flows (in cryogenic conditions) JD_PM OpenFOAM Running, Solving & CFD 7 December 21, 2022 06:54
OpenFOAM Training Jan-Apr 2017, Virtual, London, Houston, Berlin cfd.direct OpenFOAM Announcements from Other Sources 0 September 21, 2016 11:50
OpenFOAM Training, London, Chicago, Munich, Houston 2016-2017 cfd.direct OpenFOAM Announcements from Other Sources 0 September 14, 2016 03:19
Multiphase and FreeSurface Flows at OpenFOAM Workshop Milan 2008 egp OpenFOAM 0 March 20, 2008 06:34
OpenFOAM Debian packaging current status problems and TODOs oseen OpenFOAM Installation 9 August 26, 2007 13:50


All times are GMT -4. The time now is 08:54.