|
[Sponsors] |
June 12, 2013, 05:43 |
where does this term come from
|
#1 |
Senior Member
Join Date: Mar 2010
Posts: 181
Rep Power: 17 |
Hi everyone,
I am solving a turbine case in OF2.1.1 using SRFSimpleFoam using kOmegaSST. I am having some bounding and convergence issues but am confused about a particular term in the divSchemes subdictionary in fvSchemes: Does anyone know which equation: Code:
div((nuEff*dev(T(grad(Urel))))) Gauss upwind; //linear; thanks very much in advance jonathan |
|
June 12, 2013, 07:00 |
|
#2 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
Hi Jonathan
I had a problem like this with tauMC in rhoCentralFoam and Bruno said me that its a tensor field not a scalar or vector field that can use upwind schemes. if you can get more information or others its nice to share.
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
June 12, 2013, 09:51 |
from kOmegaSST turbulence model
|
#3 |
Senior Member
Join Date: Mar 2010
Posts: 181
Rep Power: 17 |
hi,
so the term comes from the turbulence model (kOmegaSST): From kOmegaSST.H Code:
//- Return the source term for the momentum equation virtual tmp<fvVectorMatrix> divDevReff(volVectorField& U) const; Code:
tmp<fvVectorMatrix> kOmegaSST::divDevReff(volVectorField& U) const { return ( - fvm::laplacian(nuEff(), U) - fvc::div(nuEff()*dev(T(fvc::grad(U)))) ); } |
|
June 16, 2013, 12:36 |
|
#4 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,981
Blog Entries: 45
Rep Power: 128 |
Greetings to all!
@Jonathan: The post Ehsan was talking about is this one: http://www.cfd-online.com/Forums/ope...tml#post429375 - post #4. And yes, this is basically the same pattern of mathematics going on in this case. If you run the following command, you'll see that all tutorials in OpenFOAM use "Gauss linear" for this particular kind of div: Code:
find $FOAM_TUTORIALS -name fvSchemes | xargs grep "T(grad(U" Bruno
__________________
|
|
June 17, 2013, 08:52 |
thanks
|
#5 | |
Senior Member
Join Date: Mar 2010
Posts: 181
Rep Power: 17 |
Quote:
Thanks very much - your help is much appreciated. Best regards Jon |
||
Tags |
divschemes, equation, fvschemes |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
momentum source term | zwdi | FLUENT | 14 | June 27, 2017 16:40 |
How does fluent handles the momentum source term? | QBeast | FLUENT | 0 | April 22, 2013 15:12 |
Source Term Question | Blackhawks84 | Fluent UDF and Scheme Programming | 1 | July 31, 2012 16:44 |
Large source term in species equation | MACFD | FLUENT | 4 | January 4, 2011 15:16 |
bouyancy term in epsilon equation | Michael | Main CFD Forum | 1 | June 25, 1999 11:20 |