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

How to get a mean value field along one direction?

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   August 2, 2016, 09:05
Default How to get a mean value field along one direction?
  #1
New Member
 
Aaron
Join Date: Apr 2016
Posts: 24
Rep Power: 10
Aaron_L is on a distinguished road
Hi, foamers,
I want to get mean temperature field from T field if z coordinate is equal , this is my test code,
Code:
//get T mean along z axis
    forAll(mesh.C(),celli) 
    {
        scalar zi = mesh.C()[celli].component(vector::Z);
        scalar& Tmeani = T_mean[celli];
        scalar& Ti = T[celli];
        scalar Vi = mesh.V()[celli];
        scalar Vtotal = Vi;
        scalar Ttotal = Ti*Vi;
        forAll(mesh.C(),cellj)
        {
            scalar zj = mesh.C()[cellj].component(vector::Z);
            if(zi == zj)
            {
                scalar& Tj = T[cellj];
                scalar Vj = mesh.V()[cellj];
                Vtotal = Vtotal + Vj;
                Ttotal = Ttotal + Tj*Vj;
            }
        }
        Tmeani = Ttotal/Vtotal ; 
    }
but it was run too slow because I use for two nested loop, how can I handle for it for one loop?
any suggestions? or someone can give me some brief solutions?

Last edited by Aaron_L; August 2, 2016 at 21:31. Reason: add information
Aaron_L is offline   Reply With Quote

Old   August 2, 2016, 21:37
Default T_mean pic
  #2
New Member
 
Aaron
Join Date: Apr 2016
Posts: 24
Rep Power: 10
Aaron_L is on a distinguished road
attachment picture is T_mean equation, I want to get T_mean along z direction using xy plane average
Attached Images
File Type: png T_mean.png (8.7 KB, 36 views)
Aaron_L is offline   Reply With Quote

Old   November 9, 2017, 07:44
Default Process
  #3
New Member
 
Hungary (Ungarn)
Join Date: Sep 2017
Posts: 16
Rep Power: 8
miha23 is on a distinguished road
Dear Aaron!

Have you made any process with it ever since?
miha23 is offline   Reply With Quote

Old   November 12, 2017, 00:28
Default
  #4
New Member
 
Aaron
Join Date: Apr 2016
Posts: 24
Rep Power: 10
Aaron_L is on a distinguished road
no, it is not very important, so I didn't complete it.
Aaron_L is offline   Reply With Quote

Reply

Tags
mesh and grid


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
[SOWFA] NREL SOWFA ABLTerrainSolver tutorial problem cico0815 OpenFOAM Community Contributions 36 February 3, 2022 11:54
funkySetBoundaryFields - Manipulation of existing field jhertel OpenFOAM Pre-Processing 16 May 18, 2020 06:32
Openfoam - Run Wind Simulations in Different Direction YK123 OpenFOAM 3 May 16, 2016 07:38
Direction of flow for far field inlet Sharkfinner FLUENT 0 March 15, 2016 08:27
Using sample to Inlet velocity field amanbearpig OpenFOAM Running, Solving & CFD 14 November 16, 2015 05:47


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