CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Post-Processing

Reynolds Stress Tensor

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By cjc96

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   April 11, 2011, 12:42
Default Reynolds Stress Tensor
  #1
New Member
 
Sergio
Join Date: Apr 2011
Posts: 8
Rep Power: 15
Sergio13 is on a distinguished road
Hello Foamers
I am quite new to CFD and OpenFoam, and I was wondering if someone can help me with this:

How can be calculated / displayed the Reynolds Stress Tensor, in order to, say, calculate the stresses at a given point of the domain.

Please also note that I am using a LES turbulence model

Thanks in advance for your help
Sergio13 is offline   Reply With Quote

Old   April 11, 2011, 13:29
Default
  #2
Member
 
longamon's Avatar
 
David Aljure
Join Date: Mar 2011
Location: CTTC Universidad Politécnica de Catalunya. Spain
Posts: 38
Rep Power: 15
longamon is on a distinguished road
In the controlDict, the last part you can choose to add functions:
Code:
functions
{
    fieldAverage1
    {
        type            fieldAverage;
        functionObjectLibs ( "libfieldFunctionObjects.so" );
        enabled         true;
        outputControl   timeStep;
        outputInterval  100;
        fields
        (
            U
            {
                mean        on;
                prime2Mean  on;
                base        time;
            }

            p
            {
                mean        on;
                prime2Mean  off;
                base        time;
            }
        );
    }
}
I'm pretty sure UPrime2Mean is the Reynolds stress tensor, (if its not, somebody please correct me)

This function will give a symmetric tensor field with 6 components for the times you choose.
longamon is offline   Reply With Quote

Old   April 12, 2011, 10:42
Default
  #3
New Member
 
Sergio
Join Date: Apr 2011
Posts: 8
Rep Power: 15
Sergio13 is on a distinguished road
Hi David, thanks for your answer. I will try it.

On the other hand, checking commands, I found stressComponents and typed it. The thing, is that it created at each time step a sigmaxx, sigma xy.... sigmazz files. However when I opened any of those files the units I found are [0 2 -2 0 0 0 0], while I was expecting [1 -1 -2 0 0 0 0].

Do you, or any other foamer have something to say about this?

Thanks
Sergio13 is offline   Reply With Quote

Old   April 12, 2011, 12:55
Default
  #4
Member
 
longamon's Avatar
 
David Aljure
Join Date: Mar 2011
Location: CTTC Universidad Politécnica de Catalunya. Spain
Posts: 38
Rep Power: 15
longamon is on a distinguished road
In its source code, stressComponents is defined as:

laminarTransport.nu()*2*dev(symm(fvc::grad(U)))

so I guess its the deviatoric stress tensor divided by the density, hence the units [0 2 -2 ...]
These stress components are different than the Reynolds stresses:
Re Stresses: velocity fluctuation.
Dev. Stresses: deformation.
longamon is offline   Reply With Quote

Old   April 12, 2011, 14:01
Default
  #5
New Member
 
Sergio
Join Date: Apr 2011
Posts: 8
Rep Power: 15
Sergio13 is on a distinguished road
Gracias David

The tech support folks from OpenFoam, have said the following about this issue
stressComponents was written for incompressible laminar flow. For LES you need to accumulate the Reynolds stress by averaging during the run.

Take a look at stressComponents.C and you will see how the stress is calculated;
it is a kinematic rather than dynamic stress.
It looks as if it is time for this newbie to dig into the programming aspects of OpenFoam (auch!!!)
Sergio13 is offline   Reply With Quote

Old   April 12, 2011, 14:20
Default
  #6
New Member
 
Sergio
Join Date: Apr 2011
Posts: 8
Rep Power: 15
Sergio13 is on a distinguished road
It finally makes some sense:

Tau= mu*dV/dy

stressComponents uses nu [m2 s-1] instead of mu [kg m-1 s-1], and that is the reason why the stress tensor yields [m2 s-2]

However I still need to know how to calculate the stress tensor components
Sergio13 is offline   Reply With Quote

Old   April 13, 2011, 03:23
Default
  #7
Member
 
longamon's Avatar
 
David Aljure
Join Date: Mar 2011
Location: CTTC Universidad Politécnica de Catalunya. Spain
Posts: 38
Rep Power: 15
longamon is on a distinguished road
If you need to calculate the Re stress tensor use the info in my first post, at the end of control dict add the fieldaveraging function, UPrime2mean gives the Re stress tensor.

I'm also a newbie at foam and programing, but I have digged several times into the source codes.

Have fun
longamon is offline   Reply With Quote

Old   April 18, 2014, 07:30
Default
  #8
Member
 
Tony
Join Date: Nov 2013
Posts: 35
Rep Power: 12
wzx1989221 is on a distinguished road
Hi David,

I saw you post about the Reynolds stress tensor. I also found that UPrime2mean yielded six columns which should be stress tensor. I was just wondering how I can get the RMS value from the UPrime2mean file. Hope you can give me some hints.

Thank you very much.

Kind regards,
Tony
wzx1989221 is offline   Reply With Quote

Old   January 4, 2017, 10:06
Default
  #9
New Member
 
DimitriF
Join Date: Dec 2016
Location: London
Posts: 19
Rep Power: 9
alekhine is on a distinguished road
Hey David,

This is quite an old post but maybe I'm lucky and get a reply. I want to plot the Reynolds stress versus the normal wall direction at a specific point. To do so, I used the post process utilities of OpenFOAM (simpleFoam -postProcess -func R -latestTime) but I cannot sample this tensor along a line.
(see my post here Sample of Reynolds Stress Normal to Wall)

I thought I can use your option which is to write the UPrime2Mean using your proposed function above. However, comparing the Reynold stress that I got from the post process utility and UPrime2Mean, there is quite a difference. Any idea why?

Cheers,
Dimitri
alekhine is offline   Reply With Quote

Old   September 5, 2019, 11:20
Default
  #10
Member
 
Farshad
Join Date: Sep 2010
Posts: 36
Rep Power: 15
farshadexp is on a distinguished road
Hi All
I wish you guys could help me with my problem.
I use following code in controlDict to calculate reynolds stress tensors. But these values are not shown in paraFoam, though they are calculated and reported in relevant file. Can anybody help me??


Code:
functions
{
    #includeFunc  R

    fieldAverage1
    {
        type            fieldAverage;
        functionObjectLibs ( "libfieldFunctionObjects.so" );
        enabled         true;
        outputControl   timeStep;
        outputInterval  100;
        fields
        (
            U
            {
                mean        on;
                prime2Mean  on;
                base        time;
            }

            p
            {
                mean        on;
                prime2Mean  off;
                base        time;
            }
        );
    }
}
farshadexp is offline   Reply With Quote

Old   April 27, 2020, 15:28
Default
  #11
Member
 
Gang Wang
Join Date: Oct 2019
Location: China
Posts: 64
Rep Power: 7
Gang Wang is on a distinguished road
Quote:
Originally Posted by longamon View Post
If you need to calculate the Re stress tensor use the info in my first post, at the end of control dict add the fieldaveraging function, UPrime2mean gives the Re stress tensor.

I'm also a newbie at foam and programing, but I have digged several times into the source codes.

Have fun
Hi!

Thanks for ur excellent post about UPrime2Mean and Reynolds Stress, In your previous post, I noticed you said UPrime2Mean (including 6 components: xx xy xz yy zz yz) is exactly the Reynolds Stress. Are u sure about that? Do you have reference about this? I, sorry because I know it's really an old thread.

Best regards,
Gang Wang
Gang Wang is offline   Reply With Quote

Old   May 8, 2020, 12:07
Default
  #12
Member
 
Conor Crickmore
Join Date: Jan 2020
Location: Leicestershire, United Kingdom
Posts: 36
Rep Power: 6
cjc96 is on a distinguished road
Quote:
Originally Posted by Gang Wang View Post
Hi!

Thanks for ur excellent post about UPrime2Mean and Reynolds Stress, In your previous post, I noticed you said UPrime2Mean (including 6 components: xx xy xz yy zz yz) is exactly the Reynolds Stress. Are u sure about that? Do you have reference about this? I, sorry because I know it's really an old thread.

Best regards,
Gang Wang
Hey Gang,
Hopefully my (no longer very recent) thread will answer your question.

In a LES simulation for example, 'Uprime2Mean' provides the Reynolds Stress Tensor of the resolved flow, while 'R' provides the sub-grid (modelled) tensor.
saidc. likes this.
__________________
Conor Crickmore
PhD Researcher in Automotive Aerodynamics
Aeronautical and Automotive Engineering
Loughborough University
LE11 3TU
cjc96 is offline   Reply With Quote

Old   May 11, 2020, 05:40
Default
  #13
Member
 
Gang Wang
Join Date: Oct 2019
Location: China
Posts: 64
Rep Power: 7
Gang Wang is on a distinguished road
Quote:
Originally Posted by cjc96 View Post
Hey Gang,
Hopefully my (no longer very recent) thread will answer your question.

In a LES simulation for example, 'Uprime2Mean' provides the Reynolds Stress Tensor of the resolved flow, while 'R' provides the sub-grid (modelled) tensor.
Hi!

I suppose you are right. So in LES, if we would like to compute the percentage of the resolved part of reynolds stress, it should be tr(UPrime2Mean) / (tr(UPrime2Mean)+tr(R) ). Am I right about this?

Best,
Gang
Gang Wang 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
post-processing utility R, calculating Reynolds stress tensor volker OpenFOAM Post-Processing 17 May 21, 2020 17:36
New implemented algebraic Reynolds stress model volker OpenFOAM 13 October 21, 2013 00:01
Reynolds Stress Models Jade M Main CFD Forum 0 April 21, 2010 16:38
Reynolds Stress Boundary Conditions tstorm FLUENT 0 July 27, 2009 14:44
Questions about the Reynolds stress model empirer2002 Main CFD Forum 1 January 5, 2006 07:37


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