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

Interfoam: Constitutive equation and shear stresses

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 7, 2021, 11:05
Default Interfoam: Constitutive equation and shear stresses
  #1
New Member
 
Carlos Arboleda
Join Date: Jan 2016
Posts: 2
Rep Power: 0
carboleda is on a distinguished road
Dear foamers,

I am trying to understand some terms in the interfoam solver namely:

- fvm::laplacian(muEff, U)
- (fvc::grad(U) & fvc::grad(muEff))

To my current understanding, this terms arise from the constitutive equation of a Newtonian isotropic fluid and can be written disregarding the minus(-) sign as \nabla \bullet T = \mu\nabla^2 U + \nabla U \bullet \nabla \mu or in index notation T_{ij,j} = \mu U_{i,jj} + \mu_{,j}U_{i,j} where the comma (',') subscript refers to the differentiation.
The constitutive relation states that \nabla \bullet T = \nabla \bullet (2\mu S - 2\mu (\nabla \bullet U)I/3)
where S = \frac{1}{2} ( \nabla U + \nabla U^T).
Due to incompresibility, \nabla \bullet U = U_{i,i} = 0, thus:

\nabla \bullet T = \nabla \bullet (\mu ( \nabla U + \nabla U^T))

In index notation:

T_{ij,j} = (\mu (U_{i,j} + U_{j,i}))_{,j} = \mu_{,j}(U_{i,j} + U_{j,i}) + \mu (U_{i,j} + U_{j,i})_{,j} =  \mu_{,j}(U_{i,j} + U_{j,i}) + \mu U_{i,jj} + \mu U_{j,ij}
The last term U_{j,ij} can be written as (U_{j,j})_{,i} and U_{j,j} = U_{i,i} = 0.

Leaving us with a different result than the one coded in interfoam:

T_{ij,j} = \mu_{,j}(U_{i,j} + U_{j,i}) + \mu U_{i,jj} \neq \mu U_{i,jj} + \mu_{,j}U_{i,j}

or in vector notation:

\nabla \bullet T =  \nabla\mu ( \nabla U + \nabla U^T) +  \mu\nabla^2 U \neq \mu\nabla^2 U + \nabla U \bullet \nabla \mu

This is the result I have so far but it is not the accepted formulation implemented in the interfoam solver, thus my questions:
Is there a mistake in my reasoning?
Have I forgotten a term or a previous step?
What are the missing steps to achieve the formulation in interfoam?

Thanks in advance for any hint you can provide me.

Carlos

Last edited by carboleda; July 12, 2021 at 06:50.
carboleda is offline   Reply With Quote

Old   October 13, 2021, 07:50
Default Tentative solution
  #2
New Member
 
Carlos Arboleda
Join Date: Jan 2016
Posts: 2
Rep Power: 0
carboleda is on a distinguished road
The answer would be that:
Code:
fvm::laplacian(muEff, U)
Evaluates (\mu U_{i,j})_{,j} = \mu_{,j}U_{i,j} + \mu  U_{i,jj} and not only \mu  U_{i,jj}, as mistakenly stated in the initial post. Furthermore:

Code:
(fvc::grad(U) & fvc::grad(muEff))
Evaluates U_{i,j} \mu_{,i} =\mu_{,j} U_{j,i}.
Thus:
Code:
fvm::laplacian(muEff, U)+(fvc::grad(U) & fvc::grad(muEff))
Evaluates:
\mu_{,j}U_{i,j} + \mu  U_{i,jj} + \mu_{,j} U_{j,i} = \mu_{,j}(U_{i,j}+U_{j,i}) + \mu  U_{i,jj} =T_{ij,j}
carboleda is offline   Reply With Quote

Reply

Tags
interfoam, shear stress, tensor


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
Shear Stress Calculation in the flow. auburnuser FLOW-3D 11 May 12, 2018 14:49
How to add the transportation equation of insoluble surfactant to interFoam? Hsin OpenFOAM Programming & Development 0 December 25, 2016 23:21
TKE budget equation in LES doctorWho Main CFD Forum 3 March 12, 2014 12:27
Derivation of Momentum Equation in Integral Form Demonwolf Main CFD Forum 2 October 29, 2009 20:53
Calculating average wall shear? Joe CFX 3 March 17, 2007 10:42


All times are GMT -4. The time now is 06:25.