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

values take by probes function object

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 7, 2014, 11:06
Default values take by probes function object
  #1
Senior Member
 
Alex
Join Date: Oct 2013
Posts: 337
Rep Power: 21
zfaraday will become famous soon enough
Dear Foamers,

I'm working in a conjugate heat transfer problem where I need to probe the values of T in the interfase between a solid and a fluid regions. In order to do that I set up probes in the controlDict-file as follows:
Code:
functions
{
    probes_object
    {
        type            probes; //patchProbes;//
        functionObjectLibs ("libsampling.so");
        region          object;
        outputControl   timeStep;
        outputInterval  100;
        probeLocations //patchName //
        (                     //points at boundary
            (0    0.1   0  )    //bottom
            (0    0.1  0.3 )    //top
            (-0.2 0.1  0.1 )    //left
            (0.2  0.1  0.1 )    //right
            (0    -0.1 0.1 )    //front
            (0    0.2  0.1 )    //back
            (0    0.1  0.15)  //inner point in object
            (0    0.48 0.1 )  //point behind object
            (0    0.25 0.4 )  //point above object
        );
        fields
        (
            T
        );
    }

    probes_air
    {
        type            probes; //patchProbes;//
        functionObjectLibs ("libsampling.so");
        region          air;
        outputControl   timeStep;
        outputInterval  100;
        probeLocations //patchName //
        (                     //points at boundary
            (0    0.1   0  )    //bottom
            (0    0.1  0.3 )    //top
            (-0.2 0.1  0.1 )    //left
            (0.2  0.1  0.1 )    //right
            (0    -0.1 0.1 )    //front
            (0    0.2  0.1 )    //back
            (0    0.1  0.15)  //inner point in object
            (0    0.48 0.1 )  //point behind object
            (0    0.25 0.4 )  //point above object
        );
        fields
        (
            T
        );
    }
}
As you can see I am probing the same point twice, once from the fluid region and once from the solid region. At this stage, a doubt came out to my mind. Where are these values taken from? All the probed points belong to the boundaries so I guess the value retrieved for one of these points is the value of T at the boundary face of the cell that contains that point. However, I don't know if the whole boundary face of a single cell has the same value of T or if only the the value at the center is calculated and then the value for the rest of the points is interpolated.

Morevoer, what if the point was inside a cell but it was not the center? I guess it is interpolated, right?

Regards,


Alex
__________________
Web site where I present my Master's Thesis: foamingtime.wordpress.com

The case I talk about in this site was solved with chtMultiRegionSimpleFoam solver and involves radiation. Some basic tutorials are also resolved step by step in the web. If you are interested in these matters, you are invited to come in!
zfaraday 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
foamToTecplot360 thomasduerr OpenFOAM Post-Processing 121 June 11, 2021 10:05
[blockMesh] Errors during blockMesh meshing Madeleine P. Vincent OpenFOAM Meshing & Mesh Conversion 51 May 30, 2016 10:51
Compilation error OF1.5-dev on Suse10.3 darenyang OpenFOAM Installation 0 April 29, 2009 04:55
Problem with rhoSimpleFoam matteo_gautero OpenFOAM Running, Solving & CFD 0 February 28, 2008 06:51
DecomposePar links against liblamso0 with OpenMPI jens_klostermann OpenFOAM Bugs 11 June 28, 2007 17:51


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