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

Meaning of "fvc::div(phi)"

Register Blogs Community New Posts Updated Threads Search

Like Tree59Likes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 25, 2015, 08:22
Default
  #21
Senior Member
 
Przemek
Join Date: Jun 2011
Posts: 249
Rep Power: 15
gaza is on a distinguished road
Hi all
I have only the question why divU = fvc::div(phi)
When we see in the prof. Jasak's PhD in Eqn. 3.15 we have that: divU = sum(S.Uf)/Vp
where Vp is a volume of the cell.
So why in the code we don't have to do division by the cell volume?
__________________
best regards
pblasiak
gaza is offline   Reply With Quote

Old   May 26, 2018, 03:23
Default
  #22
New Member
 
Join Date: Apr 2018
Posts: 3
Rep Power: 8
kc95 is on a distinguished road
Quote:
Originally Posted by sharonyue View Post
U make it very very clear, Thanks very much. So I just make it a example.:

1. volVectorField U;
fvc::div(U);

2. volVectorField U;
phi = U & mesh.Sf();
fvc::div(phi);

So these two functions are the same rite? fvc::div(u)=fvc::div(phi).

Looks like div() has been overloaded.

I make a testify:

Code:
fvc::div(HbyA)dimensions      [0 0 -1 0 0 0 0];

internalField   nonuniform List<scalar> 9(0.000569046 -8.589e-06 -0.000648869 -0.00128281 0.000183935 0.00124553 0.00416702 3.71583e-06 -0.00422898);

fvc::div(phiHbyA):dimensions      [0 0 -1 0 0 0 0];

internalField   nonuniform List<scalar> 9(0.000569046 -8.589e-06 -0.000648869 -0.00128281 0.000183935 0.00124553 0.00416702 3.71583e-06 -0.00422898);
Its total the same. Good job.

How did you find out these numerical values? i am very new to OF. so my question might appear as silly. But, please do reply. Thanks in advance!!
kc95 is offline   Reply With Quote

Old   May 26, 2018, 03:28
Default
  #23
New Member
 
Join Date: Apr 2018
Posts: 3
Rep Power: 8
kc95 is on a distinguished road
Quote:
Originally Posted by sharonyue View Post
U make it very very clear, Thanks very much. So I just make it a example.:

1. volVectorField U;
fvc::div(U);

2. volVectorField U;
phi = U & mesh.Sf();
fvc::div(phi);

So these two functions are the same rite? fvc::div(u)=fvc::div(phi).

Looks like div() has been overloaded.

I make a testify:

Code:
fvc::div(HbyA)dimensions      [0 0 -1 0 0 0 0];

internalField   nonuniform List<scalar> 9(0.000569046 -8.589e-06 -0.000648869 -0.00128281 0.000183935 0.00124553 0.00416702 3.71583e-06 -0.00422898);

fvc::div(phiHbyA):dimensions      [0 0 -1 0 0 0 0];

internalField   nonuniform List<scalar> 9(0.000569046 -8.589e-06 -0.000648869 -0.00128281 0.000183935 0.00124553 0.00416702 3.71583e-06 -0.00422898);
Its total the same. Good job.
How did you get this numerical values? I am very new to OpenFOAM, so the question might appear as very silly. Please do reply. Thanks in Advance!!
kc95 is offline   Reply With Quote

Old   May 26, 2018, 09:23
Default
  #24
Member
 
Felipe Alves Portela
Join Date: Dec 2012
Location: FR
Posts: 70
Rep Power: 13
fportela is on a distinguished road
Quote:
Originally Posted by kc95 View Post
How did you get this numerical values? I am very new to OpenFOAM, so the question might appear as very silly. Please do reply. Thanks in Advance!!
What exactly do you want to know?
fportela is offline   Reply With Quote

Old   May 26, 2018, 09:30
Default
  #25
New Member
 
Join Date: Apr 2018
Posts: 3
Rep Power: 8
kc95 is on a distinguished road
Quote:
Originally Posted by fportela View Post
What exactly do you want to know?
How did you get these values of fvc::div(phiHbyA) as wellas fvc:HbyA)?
I mean, how can we calculate and display those values?
kc95 is offline   Reply With Quote

Old   July 1, 2018, 12:44
Default
  #26
Senior Member
 
Reviewer #2
Join Date: Jul 2015
Location: Knoxville, TN
Posts: 141
Rep Power: 10
randolph is on a distinguished road
Quote:
Originally Posted by sharonyue View Post
U make it very very clear, Thanks very much. So I just make it a example.:

1. volVectorField U;
fvc::div(U);

2. volVectorField U;
phi = U & mesh.Sf();
fvc::div(phi);

So these two functions are the same rite? fvc::div(u)=fvc::div(phi).

Looks like div() has been overloaded.

I make a testify:

Code:
fvc::div(HbyA)dimensions      [0 0 -1 0 0 0 0];

internalField   nonuniform List<scalar> 9(0.000569046 -8.589e-06 -0.000648869 -0.00128281 0.000183935 0.00124553 0.00416702 3.71583e-06 -0.00422898);

fvc::div(phiHbyA):dimensions      [0 0 -1 0 0 0 0];

internalField   nonuniform List<scalar> 9(0.000569046 -8.589e-06 -0.000648869 -0.00128281 0.000183935 0.00124553 0.00416702 3.71583e-06 -0.00422898);
Its total the same. Good job.
1. From the continuity equation, the divergence-free condition is strictly applied to the face flux in the FVM. So it makes sense that cell value is not strictly divergence free.

2. However, I am still confused that why fvc::div(U) = fvc::div(phi) ? Isn't the phi = U*A?
randolph is offline   Reply With Quote

Old   October 13, 2020, 00:39
Default Display value of fvc::div(HbyA)
  #27
New Member
 
Duc Anh
Join Date: Dec 2018
Posts: 22
Rep Power: 7
anhkenyt is on a distinguished road
Quote:
Originally Posted by sharonyue View Post
U make it very very clear, Thanks very much. So I just make it a example.:

1. volVectorField U;
fvc::div(U);

2. volVectorField U;
phi = U & mesh.Sf();
fvc::div(phi);

So these two functions are the same rite? fvc::div(u)=fvc::div(phi).

Looks like div() has been overloaded.

I make a testify:

Code:
fvc::div(HbyA)dimensions [0 0 -1 0 0 0 0];

internalField nonuniform List<scalar> 9(0.000569046 -8.589e-06 -0.000648869 -0.00128281 0.000183935 0.00124553 0.00416702 3.71583e-06 -0.00422898);

fvc::div(phiHbyA):dimensions [0 0 -1 0 0 0 0];

internalField nonuniform List<scalar> 9(0.000569046 -8.589e-06 -0.000648869 -0.00128281 0.000183935 0.00124553 0.00416702 3.71583e-06 -0.00422898);
Its total the same. Good job.
I tried it in peqn.H in pisoFoam like that:
Code:
volScalarField rAU(1.0/UEqn.A());
volVectorField HbyA(constrainHbyA(rAU*UEqn.H(), U, p));
surfaceScalarField phiHbyA
(
    "phiHbyA",
    fvc::flux(HbyA)
  + MRF.zeroFilter(fvc::interpolate(rAU)*fvc::ddtCorr(U, phi))
);
Info<<"fvc::div(phiHbyA): "<<fvc::div(phiHbyA)<<endl;
Info<<"fvc::div(HbyA): "<<fvc::div(HbyA)<<endl;
But I faced to error
Code:
FOAM FATAL IO ERROR: 
keyword div(HbyA) is undefined in dictionary "/home/anh/OpenFOAM/anh-6/applications/solvers/src/cyclicSimpleFoam/system/fvSchemes.divSchemes"
And this is my divSchemes
Code:
divSchemes
{
    default         none;
	div(HybA)  Gauss upwind; //vda add    
//	div(U)  	 Gauss upwind; //vda add 
	div(phi,U)      bounded Gauss linearUpwind grad(U);
    div(phi,k)      bounded Gauss limitedLinear 1;
    div(phi,epsilon) bounded Gauss limitedLinear 1;
    div(phi,omega)  bounded Gauss limitedLinear 1;
    div(phi,v2)     bounded Gauss limitedLinear 1;
    div((nuEff*dev2(T(grad(U))))) Gauss linear;
    div(nonlinearStress) Gauss linear;
}
Anyone could help me display this value ?
anhkenyt is offline   Reply With Quote

Old   October 13, 2020, 08:35
Default
  #28
Senior Member
 
Przemek
Join Date: Jun 2011
Posts: 249
Rep Power: 15
gaza is on a distinguished road
add this
Code:
div(HbyA)      Gauss upwind;
ps

you have the typo "HybA" instead of "HbyA"
__________________
best regards
pblasiak
gaza is offline   Reply With Quote

Old   October 13, 2020, 09:13
Default
  #29
New Member
 
Duc Anh
Join Date: Dec 2018
Posts: 22
Rep Power: 7
anhkenyt is on a distinguished road
Quote:
Originally Posted by gaza View Post
add this
Code:
div(HbyA)      Gauss upwind;
ps

you have the typo "HybA" instead of "HbyA"
Thanks for the quick answer, sorry about my stupid mistake. However when I fixed it,
Code:
divSchemes
{
    default         none;
	div(HbyA)  Gauss upwind; //vda add    
//	div(U)  	 Gauss upwind; //vda add 
	div(phi,U)      bounded Gauss linearUpwind grad(U);
    div(phi,k)      bounded Gauss limitedLinear 1;
    div(phi,epsilon) bounded Gauss limitedLinear 1;
    div(phi,omega)  bounded Gauss limitedLinear 1;
    div(phi,v2)     bounded Gauss limitedLinear 1;
    div((nuEff*dev2(T(grad(U))))) Gauss linear;
    div(nonlinearStress) Gauss linear;
}
I have another error:
Code:
fvc::div(HbyA): 

--> FOAM FATAL IO ERROR: 
attempt to read beyond EOF

file: /home/anh/OpenFOAM/anh-6/applications/solvers/src/vda_meanVelocityForce/testcode/cyclicSimpleFoam/system/fvSchemes.divSchemes.div(HbyA) at line 31.
Could you give me some suggestions?
anhkenyt is offline   Reply With Quote

Old   October 13, 2020, 11:10
Default
  #30
Senior Member
 
Hojatollah Gholami
Join Date: Jan 2019
Posts: 171
Rep Power: 7
Hgholami is on a distinguished road
Hi
I want to write below equation to foam-extend 4.0

I thought to use
Quote:
fvScalarMatrix pEqn
(
fvm::grad(p) == fvc::div(U)/runTime().deltaT().value()
);
pEqn.solve();
but I know it's wrong. Do you have any tip for this?
Thanks.
Hgholami is offline   Reply With Quote

Old   October 13, 2020, 12:03
Default
  #31
New Member
 
Duc Anh
Join Date: Dec 2018
Posts: 22
Rep Power: 7
anhkenyt is on a distinguished road
Quote:
Originally Posted by Hgholami View Post
Hi
I want to write below equation to foam-extend 4.0

I thought to use but I know it's wrong. Do you have any tip for this?
Thanks.
Hi Hgholami,
In your equation, does not grad p, It should be lapacian(p). You can try:
Quote:
fvScalarMatrix pEqn
(
fvm::laplacian(p) == fvc::div(U)*rhoF/dT
);
However, I don't know to extract the meaning of index "p" and "n+1" in your eqn.
anhkenyt is offline   Reply With Quote

Old   October 13, 2020, 12:40
Default
  #32
Senior Member
 
Przemek
Join Date: Jun 2011
Posts: 249
Rep Power: 15
gaza is on a distinguished road
Quote:
Originally Posted by anhkenyt View Post
Thanks for the quick answer, sorry about my stupid mistake. However when I fixed it,
Code:
divSchemes
{
    default         none;
    div(HbyA)  Gauss upwind; //vda add    
//    div(U)       Gauss upwind; //vda add 
    div(phi,U)      bounded Gauss linearUpwind grad(U);
    div(phi,k)      bounded Gauss limitedLinear 1;
    div(phi,epsilon) bounded Gauss limitedLinear 1;
    div(phi,omega)  bounded Gauss limitedLinear 1;
    div(phi,v2)     bounded Gauss limitedLinear 1;
    div((nuEff*dev2(T(grad(U))))) Gauss linear;
    div(nonlinearStress) Gauss linear;
}
I have another error:
Code:
fvc::div(HbyA): 

--> FOAM FATAL IO ERROR: 
attempt to read beyond EOF

file: /home/anh/OpenFOAM/anh-6/applications/solvers/src/vda_meanVelocityForce/testcode/cyclicSimpleFoam/system/fvSchemes.divSchemes.div(HbyA) at line 31.
Could you give me some suggestions?
try Guass linear maybe
you wrote something in fvSchemes
anhkenyt likes this.
__________________
best regards
pblasiak
gaza is offline   Reply With Quote

Old   October 13, 2020, 22:22
Default
  #33
Senior Member
 
Hojatollah Gholami
Join Date: Jan 2019
Posts: 171
Rep Power: 7
Hgholami is on a distinguished road
Quote:
Originally Posted by anhkenyt View Post
Hi Hgholami,
In your equation, does not grad p, It should be lapacian(p). You can try:

However, I don't know to extract the meaning of index "p" and "n+1" in your eqn.
Hi anhkenyt
I want to use fractional-step projection method.

the index "p" and n+1 is not matter. they are predicted velocity and next time step, respectively.
my mistake may be comparison delta_t with delta_p in Eq. 10.
Hgholami is offline   Reply With Quote

Old   May 3, 2022, 14:43
Default
  #34
Member
 
Sai Guruprasad Jakkala
Join Date: Jan 2017
Posts: 34
Rep Power: 9
saiguruprasad is on a distinguished road
I am trying to write a new Particle Dispersion Model in OpenFOAM. The model requires the divergence of the Reynolds stress tensor. I am able to read the Reynolds stress tensor into the model and am able to perform the fvc::div operation.

My doubt is if this approach is correct. I tried fvc::div(U) in the same way and it gave really high values (O(1)) which are not correct because the simulation has converged and the fvc::div(U) should be a small value (O(1e-3)). So now I have doubts if fvc::div(R) is giving the right values.

I have the phi variable too which I think is U*surfaceArea. I computed div(phi, U) and div(phi), and both gave small values in O(1e-3).

Should I be using phi to compute the divergence of R? I am getting an error if I use fvc::div(phi,R). What is the difference between using div(R) and div(phi,R)?
saiguruprasad is offline   Reply With Quote

Old   July 29, 2022, 14:05
Default
  #35
New Member
 
Not applicable
Join Date: Sep 2018
Posts: 15
Rep Power: 7
kagen816 is on a distinguished road
Hi Sai,
Have you found any clue, I found a similar problem. fvc::div(U) has a much greater value than fvc::div(phi) but they have the same dimension!
Thanks
kagen816 is offline   Reply With Quote

Old   July 30, 2022, 08:40
Default
  #36
Member
 
Sai Guruprasad Jakkala
Join Date: Jan 2017
Posts: 34
Rep Power: 9
saiguruprasad is on a distinguished road
Hi Kagen816.

It seems that div(phi) is correct if you want to verify the continuity equation. phi corresponds to the flux, while U is the cell centre value of velocity.

Divergence needs to be calculated at the faces.

But I am not sure how this applies to other variables. I am still looking at div(R), where R is the Reynolds Stress.
kagen816 likes this.
saiguruprasad is offline   Reply With Quote

Reply


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
Cyclic Boundary creation, what's the meaning of "separationVector" panda60 OpenFOAM 5 April 12, 2023 17:51
What's meaning of UDF FUNCTION zhaoxinyu Fluent UDF and Scheme Programming 0 March 31, 2010 08:04
meaning of residual p-mass ? Dele CFX 0 March 4, 2008 03:23
want to know meaning Sangamesh Siemens 0 May 15, 2007 05:15
What's the meaning of "combustion scalar"and.... cfdbeginner CFX 0 November 27, 2003 09:02


All times are GMT -4. The time now is 18:05.