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

using fieldAverage library to average postprocessing

Register Blogs Community New Posts Updated Threads Search

Like Tree61Likes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   November 23, 2009, 06:05
Question using fieldAverage library to average postprocessing
  #1
Senior Member
 
Eelco van Vliet
Join Date: Mar 2009
Location: The Netherlands
Posts: 124
Rep Power: 19
eelcovv is on a distinguished road
Dear programming experts,

I am stuggelling with the following: I want to obtain the average of the fields already create in the time directories (i.e., during postprocessing).

During runtime, this can be done via the functions in the controlDict by adding libfieldFunctionObjects.so

No I want to do the same as a postprocessing step.

My starting point was the postChannel application, that loops over the fields and collaps the field data that is assemed to by homogeneous. This tools requires Umean to be present. I want to create the Umean fields by a similar postprocessing tool called for instance postAverage

This new tool (if it has been developped yet, please tell me) should read the controlDict dictionary, and than read the averaging information

I took out all the functionality of postChannel (the collapsing of the fields) and I changed the line

Code:
 
// For each time step read all fields
//    forAll(timeDirs, timeI)
    while(runTime.loop())
with the while runTime.loop construction, the controlDict is read and therefore the library is included.

However, if I run this I get the complaint From function Foam::fieldAverage::initialize()
in file fieldAverage/fieldAverage/fieldAverage.C at line 102.

Of course this makes sence, because I do not do an explicit creation of the fields.

Now the simple solution would be: explicity create the field U in the postAverage.

However, this would make the utility less generic. I want it automatically to create the field that are defined in controlDict function fieldAverage.

My idea was to include the fieldobject and reuse the code for creating fieldAverageItem. Unfortunately, I can not add or reuse the library in an external code, and therefore I can not reuse this functionality.

I am relatively new to C++, but I that the power of it lies in reusing code, therefore I am quite sure this must be possible (I moreover, is desirable)

Hopefully there is an OpenFoam programming expert out there who could give me a hint how to do tackle this problem.

Or, which would be even better: is there somebody of has written a postprocessing utility to do the averaging of the time steps over a certain time range?

Any hints very much appreciated!

Regards,

Eelco
rakendd and Tom123 like this.
eelcovv is offline   Reply With Quote

Old   November 24, 2009, 07:49
Smile
  #2
Senior Member
 
Eelco van Vliet
Join Date: Mar 2009
Location: The Netherlands
Posts: 124
Rep Power: 19
eelcovv is on a distinguished road
well,

It seems there are not many users dealing with the same issue.

Let me refrase the my quest:

I want to write a program that loops of the time directories, reads the fieds, and than writes an average field in the last directory.


In this way, averaging can be done after the run as a postprocessing step, so that the first time steps can easily be left out if the start up is not stationary yet.

Ideally, I would like to use for instance the existing foamCalc utility and combine that the the fieldAverage library so that during the loop the controlDict is used to do the job. I dug into the code, but can not find how I should modify it. I am too inexperience in C++, so I leave this to the real programming experts maybe with the next release (I can imagine that I am not the only user who'd like to have this functionality)

Today I have spend my whole day digging into all the utilities to try to come up with my own solution. It is an ugly solution, in terms of proper C++ programming, but it is a start, and it works!. I am adding the code here. I would appreciate very much if somebody could comment on the most ugly construction I have used (see comments in the code). Probably there are better ways, but I just can not find how at the moment

Code:
/*---------------------------------------------------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     |
    \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
     \\/     M anipulation  |
-------------------------------------------------------------------------------
License
    This file is part of OpenFOAM.

    OpenFOAM is free software; you can redistribute it and/or modify it
    under the terms of the GNU General Public License as published by the
    Free Software Foundation; either version 2 of the License, or (at your
    option) any later version.

    OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    for more details.

    You should have received a copy of the GNU General Public License
    along with OpenFOAM; if not, write to the Free Software Foundation,
    Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

Application
    foamTimeAverage

Eelco van Vliet

Version: 
very first piece of ugly c++ code, but it works!

Description
    Calculates the time average  of the specified scalar field over the specified time range.

\*---------------------------------------------------------------------------*/

#include "fvCFD.H"
#include "argList.H"
#include "timeSelector.H"

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Main program:

int main(int argc, char *argv[])
{

    Foam::timeSelector::addOptions();
    Foam::argList::validArgs.append("fieldName");

    // the order of the calls below is important!

    // defines the first directory
#   include "setRootCase.H"
    // defines time stuff
#   include "createTime.H"

    // get filename from command line
    word fieldName(args.additionalArgs()[0]);

    // create list of time steps based on the -time argument
    instantList timeDirs = timeSelector::select0(runTime, args);

    // set the runTime at the first time step of the given range
    runTime.setTime(timeDirs[0], 0);

    // now: create mesh based on the first time step of the given range 
#   include "createMesh.H"


    // read first the field into a dummy variable, otherwise the write
    // statement at the bottom used fieldName to over write the original field.
    // How can I used change the filename instead of this trick? 
    Info<< "    Create mean field" << nl<<endl;
    volScalarField dummy
    (
     IOobject
     (
        fieldName,
        runTime.timeName(),
        mesh,
        IOobject::MUST_READ
      ),
     mesh
    );

    
    // create the new file name with the _mean extension
    const word EXT_MEAN = "_mean";
    const word meanFieldName=fieldName+EXT_MEAN;

    // create the field with the meanFieldName based on the dummy so that all
    // the properties are the same. Probably can be done much more efficient
    volScalarField mean
    (
     IOobject
     (
        meanFieldName,
        runTime.timeName(),
        mesh,
        IOobject::NO_READ
      ),
     dummy
    );

    // and now initialise at zero. Much better would be to do this right away. 
    // How can that be done?
    mean*=0;

    // start the counter out 0;
    int nfield=0;

    // loop over the time directories
    forAll(timeDirs, timeI)
    {
        // set to the current time directory 
        runTime.setTime(timeDirs[timeI], timeI);

        // give some information
        Info<< "timeI: "<< timeI<< " Time = " << runTime.timeName() << endl;

        // read the header field 'fieldName'
        IOobject fieldHeader
        (
            fieldName,
            runTime.timeName(),
            mesh,
            IOobject::MUST_READ
        );

        // Check field exists
        if (fieldHeader.headerOk())
        {
            // the mesh exists, read the data
            mesh.readUpdate();

            if (fieldHeader.headerClassName() == "volScalarField")
            {
               // the data is volScalar data -> add the field to the mean
               Info<< "    Reading volScalarField " << nfield << " " << fieldName << endl;
               volScalarField field(fieldHeader, mesh);
               mean+=field;
               nfield++;
            }
            else
            {
                FatalError
                    << "Only possible to average volScalarFields "
                    << nl << exit(FatalError);
            }
        }
        else
        {
            Info<< "    No field " << fieldName << endl;
        }

        Info<< endl;
    }


    // devide by the number of added fields
    if(nfield>0){
      Info<< "number of fields added: "<< nfield << endl;
      mean/=nfield;
    }

    Info<< "writing to file "  << endl;
    mean.write();

    Info<< "End\n" << endl;

    return 0;
}

// ************************************************************************* //
It is all based on a combination of foamCalc and the vorticity utility. Hopefully somebody can make suggestions to get this a cleaner C++ code. However, it does exactly what I want!

for instance

foamTimeAverage Ux -time 300:

gives the time average Ux_mean field from the time steps 300 to the end.
Please free to use it or come with improvements

Regards

Eelco
eelcovv is offline   Reply With Quote

Old   November 26, 2009, 00:39
Default
  #3
Senior Member
 
Eelco van Vliet
Join Date: Mar 2009
Location: The Netherlands
Posts: 124
Rep Power: 19
eelcovv is on a distinguished road
If anybody is interested in post-processing field averaging (I can hardly imagine nobody ever needs it), here an improved version thanks to a hint of Bernard Gschaider I was able to force to read the fieldAverage library in the controlDict using the runTime.functionObjects().execute() statement. In this way, all the functionality of the library is available.

The code of postAverage.C looks like
Code:
/*---------------------------------------------------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     |
    \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
     \\/     M anipulation  |
-------------------------------------------------------------------------------
License
    This file is part of OpenFOAM.

    OpenFOAM is free software; you can redistribute it and/or modify it
    under the terms of the GNU General Public License as published by the
    Free Software Foundation; either version 2 of the License, or (at your
    option) any later version.

    OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    for more details.

    You should have received a copy of the GNU General Public License
    along with OpenFOAM; if not, write to the Free Software Foundation,
    Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

Application
    postAverage

Eelco van Vliet

Description
    Post-processes data from flow calculations
    For each time: calculates the time average of a sequence of fields and 
    writes time time average in the directory



\*---------------------------------------------------------------------------*/

#include "fvCFD.H"
//#include "fieldAverageFunctionObject.H"
//#include "dictionary.H"
//#include "IFstream.H"
//#include "OFstream.H"

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
//  Main program:

int main(int argc, char *argv[])
{
    argList::noParallel();
    timeSelector::addOptions();

#   include "setRootCase.H"
#   include "createTime.H"

    instantList timeDirs = timeSelector::select0(runTime, args);
    runTime.setTime(timeDirs[0], 0);
#   include "createMesh.H"

   // what is required to initilise only the field in fieldAverage ?
// dictionary dict(IFstream("controlDict")());
// fieldAverageFunctionObject avefield() ;
// fieldAverage bla avefield.read() ;
// avefield.fieldAverage(dict);

    forAll(timeDirs, timeI)
    {
       runTime.setTime(timeDirs[timeI], timeI);
       Info<< "Adding fields for time " << runTime.timeName() << endl;
#      include "createFields.H"

      // Average fields over channel down to a line
      runTime.functionObjects().execute();
    }

    Info<< "\nEnd" << endl;


    return 0;
}

// ************************************************************************* //
and requires an include file createFields.H to read the field you want to average, for example
Code:
    Info<< "Reading field p\n" << endl;
    volScalarField p
    (
        IOobject
        (
            "p",
            runTime.timeName(),
            mesh,
            IOobject::READ_IF_PRESENT,
            IOobject::NO_WRITE
        ),
        mesh
    );

    Info<< "Reading field U\n" << endl;
    volVectorField U
    (
        IOobject
        (
            "U",
            runTime.timeName(),
            mesh,
            IOobject::READ_IF_PRESENT,
            IOobject::NO_WRITE
        ),
        mesh
    );
Using this routine allows you to read the given fields over a given time range and average them as a post-processing step, like

postAverage -time:300

The field averaging parameters should be given in the controlDict. The only important thing is that the outputControl is set on timeStep, e.g
Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  1.6                                   |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system";
    object      controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

application     channelFoam;

startFrom       startTime;

startTime       0;

stopAt          endTime;

endTime         700;

deltaT          0.01;

writeControl    adjustableRunTime;

writeInterval   100;

purgeWrite      0;

writeFormat     ascii;

writePrecision  6;

writeCompression compressed;

timeFormat      general;

timePrecision   6;

runTimeModifiable yes;

adjustTimeStep yes;

maxco             0.2;

maxDeltaT        1;

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

            p
            {
                mean        on;
                prime2Mean  on;
                base        time;
            }
        );
    }
}
I have one question, hopefully somebody is able to answer it. In the current code, the fields you want to average are given in createFields. Once you have compiled postAverage the code will always try to read all these fields, even if you only want to average say the velocity field. Much better, of course, would be if the fields to be averaged are read from the controlDict in advance, and the reading takes place based on the fields defined in the controlDict. I am sure that is possible by using the loop forAll(faItems_, fieldI) as can be found in the fieldAverage library. I have no idea, however, how to do this. I should probably define an instance of the class fieldAverage and use the method to read the dictionary, and then apply the loop to read the appropriate fields. I am unfortunately too inexperienced in C++, so I hope that somebody can a hint.

Thanks

Eelco


ps:
the code is attached below
Attached Files
File Type: gz postAverage.tar.gz (2.1 KB, 1067 views)
eelcovv is offline   Reply With Quote

Old   December 21, 2009, 06:55
Default
  #4
wen
New Member
 
wen hua
Join Date: Dec 2009
Posts: 1
Rep Power: 0
wen is on a distinguished road
I'm searching for this utility function. I'll try it firstly.
wen is offline   Reply With Quote

Old   March 18, 2011, 11:26
Default
  #5
New Member
 
Andreas Schwärzle
Join Date: Sep 2010
Posts: 6
Rep Power: 15
chantre is on a distinguished road
Hi Eelco,
thanks a lot for this very helpful tool

/Andreas
chantre is offline   Reply With Quote

Old   January 6, 2012, 12:55
Default
  #6
Member
 
pooyan
Join Date: Nov 2011
Posts: 62
Rep Power: 14
sam1364 is on a distinguished road
Hi guys

I want to do field averaging of Reynolds stress tensor (R) during running my code. It seems that the fieldaveraging library do the averaging just for U and P. How can I do the same thing for R?
I would be so appreciated if you can help me

Thanks
sam1364 is offline   Reply With Quote

Old   January 10, 2012, 08:16
Default
  #7
New Member
 
Alex
Join Date: Sep 2011
Posts: 2
Rep Power: 0
iatrid is on a distinguished road
Dear eelcovv,

<If anybody is interested in post-processing field averaging (I can hardly imagine nobody ever needs it), here an improved version thanks to a hint of Bernard <Gschaider I was able to force to read the fieldAverage library in the controlDict using the runTime.functionObjects().execute() statement. In this way, all the <functionality of the library is available. >

Thank you very much for the very important code you supplied here. But when I execute the code postAverage (including the code i added in the system/controDict file), i realize that nothing changed. Can you give me a hint? Should a new variable be generated Umean or the averaged calculation is still saved as U?

thank you once more!
Alex
iatrid is offline   Reply With Quote

Old   February 24, 2012, 05:50
Default
  #8
Senior Member
 
Eelco van Vliet
Join Date: Mar 2009
Location: The Netherlands
Posts: 124
Rep Power: 19
eelcovv is on a distinguished road
Sorry for the late reply, I only see this post now.

Please make sure that you have in you field average dictionary

outputControl outputTime;

and make sure that you write interval is equal to the write interval of the original simulation. If that is not the case, nothing is written indeed.

Good luck

Regards
eelco
Hanzo, Mariusz and Alhasan like this.
eelcovv is offline   Reply With Quote

Old   March 6, 2012, 02:04
Default
  #9
New Member
 
Alex
Join Date: Sep 2011
Posts: 2
Rep Power: 0
iatrid is on a distinguished road
Quote:
Originally Posted by eelcovv View Post
Sorry for the late reply, I only see this post now.

Please make sure that you have in you field average dictionary

outputControl outputTime;

and make sure that you write interval is equal to the write interval of the original simulation. If that is not the case, nothing is written indeed.

Good luck

Regards
eelco
thank you very much. You were very helpfull!!
iatrid is offline   Reply With Quote

Old   May 9, 2012, 03:13
Default Thank you!
  #10
New Member
 
Mireia
Join Date: Feb 2011
Posts: 2
Rep Power: 0
mirel is on a distinguished road
This tool is very helpful indeed. Thank you very much, Eelcovv!!
mirel is offline   Reply With Quote

Old   May 9, 2012, 22:46
Default
  #11
New Member
 
Forrest
Join Date: May 2012
Posts: 5
Rep Power: 13
buct11019 is on a distinguished road
hi, the unility is very helpful, and I want ask what is UPrime2mean, the computational formula of it and transient k is the same, but do they the same in real physical meanings?
buct11019 is offline   Reply With Quote

Old   May 13, 2012, 13:09
Default
  #12
Senior Member
 
Eelco van Vliet
Join Date: Mar 2009
Location: The Netherlands
Posts: 124
Rep Power: 19
eelcovv is on a distinguished road
My utility just makes a call to the averaging libraries developed by Bernard sgnaider, so don't pin me on it. But I think uprime2mean does the following. The velocity in general can be writen as U=<U>+u', where <...> indicates the ensemble average and u' is the deviation on it. The purpose at the start of the calculation is to calculate <u'^2>=<(U-<U>)^2>, i.e. the <u'^2> mean which is indeed related to k. During the run, however, <U> is not known, because you still need to average it in time. Therefore, it does not give you <u'^2>, but <U^2>. Both of them are related according to <u'^2>=<(U-<U>)^2>=<U^2> - <2*U*<U>> + <U>^2 = <U^2>-<U>^2. In other words, you can obtain the <u'^2> by subtracting the Umean squared from the Uprime2mean
zeros and Gang Wang like this.
eelcovv is offline   Reply With Quote

Old   June 21, 2012, 05:08
Thumbs up
  #13
Member
 
Join Date: Nov 2010
Location: Tokyo / Japan
Posts: 40
Rep Power: 15
Hanzo is on a distinguished road
Quote:
Originally Posted by eelcovv View Post
If anybody is interested in post-processing field averaging (I can hardly imagine nobody ever needs it)
Thank you for the code . Yeah, I also believe that this feature is well needed and also wonder why there is not such a tool in OpenFoam.

Could you explain how it is determined where the averaged field is written to? The code iterates over all my time steps but the effect of setting outputInterval to 2, 3, 10, 100, 1000 does not yield my desired result. (which is: save in every 2nd time step folder, every 3rd, 10th, 100th, 1000th)

Basically, I just want to have the averaged field written into the last timestep folder.
Hanzo is offline   Reply With Quote

Old   October 2, 2012, 03:30
Default
  #14
Senior Member
 
Eelco van Vliet
Join Date: Mar 2009
Location: The Netherlands
Posts: 124
Rep Power: 19
eelcovv is on a distinguished road
Hi hanzo,

without testing it I would say play with

writeControl adjustableRuntTime;

writeInterval 100;

Where 100 now is not a interval in iterations but in time step and take you last time step only. The averaging is done by fieldAverage functionobject list, so the setting is control by this lib
good luck
eelcovv is offline   Reply With Quote

Old   January 18, 2013, 01:20
Default
  #15
Senior Member
 
atmcfd's Avatar
 
ATM
Join Date: May 2009
Location: United States
Posts: 104
Rep Power: 16
atmcfd is on a distinguished road
Quote:
Originally Posted by eelcovv View Post
Hi hanzo,

without testing it I would say play with

writeControl adjustableRuntTime;

writeInterval 100;

Where 100 now is not a interval in iterations but in time step and take you last time step only. The averaging is done by fieldAverage functionobject list, so the setting is control by this lib
good luck
Hi Eelco,


Thanks for the code. I tried running it many times with the instructions in this thread - but the code reads the fields at all the times and doesnt save the mean data anywhere. Am I missing something?

Here is my controldict file:

Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.1.1                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system";
    object      controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

application     channelFoam;

startFrom       latestTime;

startTime       0;

stopAt          endTime;

endTime         1.012;

deltaT          0.0001;

writeControl    timeStep;

writeInterval   100;

purgeWrite      0;

writeFormat     ascii;

writePrecision  6;

writeCompression off;

timeFormat      general;

timePrecision   6;

runTimeModifiable true;		

// adjustTimeStep yes;

// maxCo 0.3;

// maxDeltaT 0.0001; 

functions
{
    probes
    {
        type            probes;
        functionObjectLibs ("libsampling.so");
        enabled         true;
        outputControl   timeStep;
        outputInterval  1;

        fields
        (
            p
            U
            nuSgs
            nuTilda
            k
            B
        );

        probeLocations
        (
            ( 0.005 1.2 0.5 )
            ( 0.005 1.2 1 )
            ( 0.005 1.2 1.5 )
            ( 0.005 1.2 2 )
         );

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

      p
      { 
      mean on;
      prime2Mean on;
      base time;
      }
      );
      }
    }
Can you please tell me what is wrong here? Is this declaration in Controldict all I need or do I need any other file too?
Thanks a lot. I have a lot of data to be averaged
atmcfd is offline   Reply With Quote

Old   January 18, 2013, 22:16
Default
  #16
Member
 
Join Date: Nov 2010
Location: Tokyo / Japan
Posts: 40
Rep Power: 15
Hanzo is on a distinguished road
Quote:
Originally Posted by atmcfd View Post
Hi Eelco,


Thanks for the code. I tried running it many times with the instructions in this thread - but the code reads the fields at all the times and doesnt save the mean data anywhere. Am I missing something?

Here is my controldict file:
Well, the code works, I can confirm that. But I also realised some strange (or not straightforward for me to understand) behaviour of how the output is written. At the moment I do the following:

Set
outputInterval 1;
or
outputInterval 2;

in fieldAverage1.
Then output is written to every / every second data folder. Then I copy the Mean files from the last timestep to some other place. The next step is to erase all *Mean files in the data folders.

When you have to do it only once or twice, I think it is okay to live with it.
Hanzo is offline   Reply With Quote

Old   March 21, 2013, 11:45
Default execFlowFunctionObjects
  #17
Member
 
Join Date: Aug 2012
Posts: 68
Blog Entries: 1
Rep Power: 13
Nucleophobe is on a distinguished road
Thank you very much for this tool, it works well for my purposes.

I have a question however. Can the same thing be done with the 'execFlowFunctionObjects' utility? Is there an advantage to this code, or do they work about the same?

If anyone knows the clarification would help. Thanks!
Nucleophobe is offline   Reply With Quote

Old   April 2, 2013, 20:43
Default
  #18
Senior Member
 
Jie
Join Date: Jan 2010
Location: Australia
Posts: 134
Rep Power: 16
jiejie is on a distinguished road
Hi eelcovv

Thank you very much for the code, which is really handy and useful.

Quote:
Originally Posted by Hanzo View Post
Then output is written to every / every second data folder. Then I copy the Mean files from the last timestep to some other place. The next step is to erase all *Mean files in the data folders.

When you have to do it only once or twice, I think it is okay to live with it.
As Hanzo mentioned, I just wonder whether it is possible for the code to write the Mean field at the very last time step? I am having a bunch of data (about 50,000 fileld files), it will take a lot space to write the Mean field out for every time step.

Thanks

jiejie
jiejie is offline   Reply With Quote

Old   April 3, 2013, 23:57
Default
  #19
Senior Member
 
Jie
Join Date: Jan 2010
Location: Australia
Posts: 134
Rep Power: 16
jiejie is on a distinguished road
Quote:
Originally Posted by eelcovv View Post
Therefore, it does not give you <u'^2>, but <U^2>. ... In other words, you can obtain the <u'^2> by subtracting the Umean squared from the Uprime2mean
Hi eelcovv

Just got a quick question regarding to calculating <u'^2>. There are 6 values in the UPrime2Mean, which are xx,yy,zz,xy,yz,xz. Since the postAverage UPrime2Mean gives <U^2> instead of <U'^2>. Should I use the first 3 columns from postAverage's UPrime2Mean takes away UMean^2 to get the <U'^2>?

Assume the above was correct, I calculated the <U'^2>. However, I found it looks almost the same as UMean instead?

My other question is whether the UPrime2Mean is the variance of the velocity field? ( Please see this link: http://www.cfd-online.com/Forums/ope...n-etc-les.html)

Many thanks.

jiejie

Last edited by jiejie; April 4, 2013 at 00:43.
jiejie is offline   Reply With Quote

Old   April 4, 2013, 06:37
Default
  #20
Member
 
Join Date: Nov 2010
Location: Tokyo / Japan
Posts: 40
Rep Power: 15
Hanzo is on a distinguished road
Quote:
Originally Posted by jiejie View Post
Hi eelcovv

Just got a quick question regarding to calculating <u'^2>. There are 6 values in the UPrime2Mean, which are xx,yy,zz,xy,yz,xz. Since the postAverage UPrime2Mean gives <U^2> instead of <U'^2>. Should I use the first 3 columns from postAverage's UPrime2Mean takes away UMean^2 to get the <U'^2>?

Assume the above was correct, I calculated the <U'^2>. However, I found it looks almost the same as UMean instead?
If my calculations are right then UPrime2Mean should exactly be what it says:
U-prime, squared and averaged = <u'^2>. To check this, you can compute u' using U and <U> , calculate u'^2 and average it manually. I did this for a series of data sets and when I compared UPrime2Mean with manually generated <u'^2> they turned out to be the same.

Another hint is the magnitude. In my computations, the biggest components of UMean_X are around 0.97 and UPrime2Mean_XX of 0.0025.
UPrime2Mean cannot be U^2
Hanzo is offline   Reply With Quote

Reply

Tags
fieldaverage, library average, postprocessing


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
Average Facet, Surface Vertex or Area-Weighted Emmanuel FLUENT 3 March 27, 2020 10:55
problem loading UDF library in parallel cluster Veera Gutti FLUENT 8 July 26, 2016 07:24
To compute Average flowfield with oodles flying OpenFOAM Running, Solving & CFD 3 May 5, 2009 08:46
OpenFOAM141dev linking error on IBM AIX 52 matthias OpenFOAM Installation 24 April 28, 2008 15:49
Help! I cann't make library Bowling FLUENT 5 May 12, 2004 04:56


All times are GMT -4. The time now is 21:02.