|
[Sponsors] |
Validation: Turbulent Channel Flow, pisoFoam, LES |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
January 31, 2017, 00:21 |
Validation: Turbulent Channel Flow, pisoFoam, LES
|
#1 |
New Member
Xiaoyu Yang
Join Date: Jan 2017
Location: China
Posts: 9
Rep Power: 9 |
Dear All,
First of all, wish you all have a successful year in 2017! I am relatively new to this forum and to OpenFOAM and LES. Thanks for your suggestions in advance! At the moment, I am trying to validate the code and the LES model via a fully developed incompressible turbulent channel case at Re_tau=180. The pisoFoam solver together with the dynamicKEqn LES model are used. Please I was wondering if anyone could give me some suggestions on how to choose a proper combination of numerical schemes. Instead of the default, I am seeking for higher order schemes for lower dissipation and better accuracy. The geometry of this rectangular channel is (2\pi\delta, 2\delta, \pi\delta) in the (x, y, z) directions, respectively. For Re_tau=180, the Reynolds number based on the mean centreline velocity is Re_delta=3300, and the kinematic viscosity is scaled such that the half channel height is 1m and the mean centreline velocity is 1m/s. Accordingly, to drive the flow, a corresponding constant x-momentum source term is implemented as a dynamic code through fvOptions. In accordance with this case setup, the periodic boundary conditions (cyclic B.C.) are applied in both the streamwise and spanwise directions. Comparison results of the mean velocity and the Reynolds stress with DNS (Moser, Kim, and Moin 1999) are attached. As can be seen, the numerical accuracy needs to be improved, and I am struggling with choosing a proper combination of numerical schemes for higher order accuracy. At the moment, the Crank Nicolson scheme with the coefficient 0.9 is used for time integration, and the Gauss cubic scheme is used for the gradient terms. Linear interpolation and Gauss linear corrected Laplacian terms are also used. The used fvSchemes, the fvSolution, and the turbulenceProperties files are also attached for clarity. Particularly, if the Gauss cubic scheme is used for the divergence terms, the instantaneous flow structures show irregular discontinuities even though the solver could still run. Besides, at this stage, my primary consideration is about the numerical schemes. To get more familiar with this flow solver, and to save time and get some quick answers, a coarse mesh is used for the current computation. The used grid density is about the half of the standard LES requirements in all the three directions, i.e. dx+=28, dz+=19, dy+_1st=0.36, and dy+_max=37. The noslip wall boundary condition is applied for the top and the bottom walls with the viscous sublayer resolved. Currently, I am using OpenFOAM-v3.0+ version. It seems that the Crank Nicolson scheme is a good choice for time integration. However, when with the coefficient 1.0, this implementation of the code becomes unstable and the flow diverges. Therefore, I am using the coefficient 0.9. For spatial discretizations, generally, I am trying to find a fourth order combination, preferably with lower dissipation. Please could anyone give me some suggestions for this. Thanks for your time! Xiaoyu |
|
February 8, 2017, 09:51 |
|
#2 |
Senior Member
Ehsan
Join Date: Mar 2009
Posts: 112
Rep Power: 17 |
Hello,
We have a similar problem, we tried cubic discretization for channel flow at Re_t=590. We used a relatively coarse grid but used a higher order discretization. The results lasted a lot and we did not get correct but underestimated solution. Would you please give any advice? Regards |
|
February 8, 2017, 22:28 |
|
#3 | |
New Member
Xiaoyu Yang
Join Date: Jan 2017
Location: China
Posts: 9
Rep Power: 9 |
Quote:
Good to know you are running similar simulations. For me, when the Gauss cubic scheme is used for div() terms, instantaneous flow structures show strange discontinuties. This looks like numerical disorders related to the schemes. Did you get this problem or not please? Do let me know if you get some progress. Thanks in advance, Xiaoyu |
||
February 9, 2017, 00:22 |
|
#4 |
Senior Member
Ehsan
Join Date: Mar 2009
Posts: 112
Rep Power: 17 |
Hello,
Thank you, no, we did not have this problem but our run time was really increased compared to the default setting of OpenFOAM. Another point: we used PIMPLEFoam solver for our simulation. Best Regards |
|
February 9, 2017, 04:06 |
|
#5 | |
New Member
Xiaoyu Yang
Join Date: Jan 2017
Location: China
Posts: 9
Rep Power: 9 |
Quote:
Thanks for your suggestions. Let me try the pimpleFoam solver shortly. At the moment, with a combination of the backward time integration and Gauss linear spatial discretizations, I am getting some improved results using a fine mesh (81 x 161 x 81). For this, the mean velocity profile and the Reynolds stresses are attached in the following. |
||
February 9, 2017, 04:24 |
|
#6 |
New Member
Xiaoyu Yang
Join Date: Jan 2017
Location: China
Posts: 9
Rep Power: 9 |
Hi Ehsan,
Here are the mean velocity and the Reynolds stresses profiles. As you can see, the mean flow seems acceptable with an relative error around 1%, and the log-law is captured. But the turbulence fluctuations and the Reynolds shear stress are much lower than the expected. According to these two posts, Relation between k and UPrime2Mean etc in LES https://www.cfd-online.com/Forums/op...ctrum-les.html it seems that, for LES, what I get from "UPrime2Mean" are the filtered/resolved turbulence stresses. The sub-grid scale modelled stresses have to be added into the above to get the full stresses, i.e. “total Reynolds Stress = UPrime2Mean + Subgrid_ReynoldsStress”. Have you done this before? To calculate the SGS part, is this line below correct? (2.0/3.0)*I)*k_ - nuSGS_*twoSymm(fvc::grad(U_) If so, I guess will have to play with the solver a little bit. Still, based on the current results, it seems that these Reynolds stresses are under-estimated, since I feel the SGS part would not contribute that much. Any idea about this please? Thanks in advance, Xiaoyu |
|
February 28, 2017, 20:04 |
|
#7 | |
Member
Bashar
Join Date: Jul 2015
Posts: 74
Rep Power: 11 |
Quote:
So sorry to bother you ,but is it possible to share how you plot these results in your attachment? I am looking for away to post-process the results of my LES case . I have the data for UPrime2Mean and R and I want to extract it from the files in OpenFoam and then draw it. Sorry again to ask you in your post. |
||
March 1, 2017, 05:15 |
|
#8 | |
New Member
Xiaoyu Yang
Join Date: Jan 2017
Location: China
Posts: 9
Rep Power: 9 |
Quote:
I assume that you got your Umean, UPrime2Mean, and RMean files from the solver. Then, for the channel case, you can use the tool --- postChannel to collapse the data down to single-line profiles. By default, this tool does not calculate the sub-grid-scale stresses, i.e. the RMean part. Therefore, you need to modify it a little bit. This should be straight-forward. Look for the way how the resolved Reynolds stresses are calculated. Then, copy paste and change to RMean values. Let me know if you need further assistance. Good luck...... Xiaoyu |
||
March 2, 2017, 12:35 |
|
#9 |
Member
Jingchang.Shi
Join Date: Aug 2012
Location: Hang Zhou, China
Posts: 78
Rep Power: 14 |
Hi!
I'm also trying to validate my DNS results of channel flow at Re_tau = 180, but with codes in Flux Reconstruction method. There are 2 problems I want to discuss with you. 1. How to specify Re_tau = 180? The way I'm using is illustrated in http://desperadoshi.github.io/Notes/...del/index.html. Bother you to check if it's correct. Basically it's using Dean's law. 2. How to prove the results are DNS? Of course, we can compare with published results from well-known paper. However, how can we prove it's DNS with our own framework. Do you think the convergence of the FFT of time history of pressure or velocity could prove it's indeed DNS? Maybe there is somewhat connection between turbulence energy spectra and such spectra I described above, but I guess the convergence of turbulence energy spectra should be used to prove it's DNS, instead of FFT of time history, is that true? Apart from FFT way or turbulence energy spectra way, how do you prove your results are DNS? |
|
March 2, 2017, 22:33 |
Validation: Turbulent Channel Flow, pisoFoam, LES
|
#10 | |
Member
Bashar
Join Date: Jul 2015
Posts: 74
Rep Power: 11 |
Quote:
Thanks a lot for your input. So , to clarify, I need to execute this tool in my case directory, then it will print the data , which I can plot it using any program of my choice? Regarding, the part that I need to modify the tool , that I did not understand how to do it. I will search to see how to do that since I never did such thing. Best wishes and many thanks . Bashar Sent from my iPhone using CFD Online Forum mobile app |
||
March 3, 2017, 09:24 |
|
#11 | |
New Member
Xiaoyu Yang
Join Date: Jan 2017
Location: China
Posts: 9
Rep Power: 9 |
Quote:
Good to know you are running similar cases..... For DNS case setup, the Dean's correlation is ok. I feel probably the key thing is to determine the correlation between the inner and outer scales, or equivalently the corresponding Reynolds numbers. For Retau=180, the centreline Reynolds number Remax = Umax*delta/nu is about 3300. This gives fairly accurate inner and outer scales with relative error less than 2%. For a given combination of the half channel height "delta" and the kinematic viscosity "nu", than the friction velocity "u_tau" and and the centreline velocity "Umax" may be determined. Then, the channel model should be while defined, based on Reynolds number similarity. For higher friction Reynolds number cases, I guess you need to find the corresponding "Remax". For DNS results, I guess it depends on the way how they are computed. In my mind, by definition, DNS means that the N-S equations are solved directly without any extra turbulence models, such as RANS models or LES SGS models. So I feel basically in a DNS simulation, all scales of turbulent motions are resolved directly, rather than modelled. So far this is still limited to relatively low Reynolds number flows, due to heavy computational intensity. On the other hand, once discretized, numerical issues arise such as stability, dissipation and dispersion of a particular scheme, etc. Therefore, special treatment may be needed to get a set of accurate converged solutions. But this should be a different topic. Then, for validation or benchmark purpose, I guess you might want to compare your DNS results with other available datasets, such as the mean statistics, the Reynolds stress budgets, and the spectrum, etc...... Not quite sure, but hopefully these answer your questions...... Keep in touch, Xiaoyu |
||
March 3, 2017, 09:34 |
|
#12 |
New Member
Xiaoyu Yang
Join Date: Jan 2017
Location: China
Posts: 9
Rep Power: 9 |
[QUOTE=Bashar;639260]Thanks a lot for your input. So , to clarify, I need to execute this tool in my case directory, then it will print the data , which I can plot it using any program of my choice?
Regarding, the part that I need to modify the tool , that I did not understand how to do it. I will search to see how to do that since I never did such thing. Best wishes and many thanks . Bashar Hi Bashar, Yes, in your case directory, execute the "postChannel" command, this tool will look for your time averaged datasets and collapse the data down to a single-line profile. Then, you could plot your results using other software packages, such as Tecplot or MatLAB. To modify this tool, probably, you could search for some suggestions on how to modify an application under the OpenFOAM framework. Then, look through my previous posts to see how to add in the Rmean part. Good luck, Xiaoyu |
|
March 6, 2017, 17:27 |
|
#13 |
Member
Jingchang.Shi
Join Date: Aug 2012
Location: Hang Zhou, China
Posts: 78
Rep Power: 14 |
Sorry for late reply.
Now, I modify the method I described and I'm sure it's correct. Thank you for the reply. |
|
March 7, 2017, 03:58 |
|
#14 | |
New Member
Elyas_Kermani
Join Date: Dec 2015
Location: Iran
Posts: 12
Rep Power: 10 |
Quote:
If your turbulence model is Eddy viscosity , the GenEddyVisc is used to calculate the SGS part; tmp<volSymmTensorField> GenEddyVisc::B() const { return ((2.0/3.0)*I)*k() - nuSgs_*twoSymm(fvc::grad(U())); } and if you are using another type of LES model , the GenSGSStress is used, and the SGS stress tensor will computed from your model |
||
March 7, 2017, 09:20 |
|
#15 | |
New Member
Xiaoyu Yang
Join Date: Jan 2017
Location: China
Posts: 9
Rep Power: 9 |
Quote:
Thanks a lot! Let me check this...... Regards, Xiaoyu |
||
March 24, 2017, 15:30 |
|
#16 |
New Member
kokab
Join Date: Mar 2017
Posts: 11
Rep Power: 9 |
hello everybody
I also have a problem in validating my channel for Re_tau=395. my channel is (2pi,2,pi) and LES model is WALE, all the set up are the same as channel395 in openFOAM tutorial. I have attached my plots, can anyone tell me how to improve my result? - mesh (60,60,60) - openFOAM 3.0.1 - solver algorithm pimpleFoam thanks all |
|
May 2, 2017, 05:58 |
|
#17 |
New Member
Xiaoyu Yang
Join Date: Jan 2017
Location: China
Posts: 9
Rep Power: 9 |
Hi Kokab,
It might be worth for you checking this technical report. https://www.it.uu.se/research/public...4/2015-014.pdf Hopefully, it can help you out. Best wishes, Xiaoyu |
|
May 4, 2017, 18:07 |
|
#18 |
New Member
kokab
Join Date: Mar 2017
Posts: 11
Rep Power: 9 |
Hi Xiaoyu
thank you very much actually I had read mukha's thesis many times my question was about the LES model, I mean by the WALE why can not valid my channel, however the mesh is very coarse but is there any other reason except that? now I have changed my mesh to (128,128,128) with oneEqEddy and it is valid but WALE is still a big question... again thanks a sea for your helping |
|
May 19, 2017, 05:48 |
|
#19 |
Super Moderator
Tobias Holzmann
Join Date: Oct 2010
Location: Bad Wörishofen
Posts: 2,711
Blog Entries: 6
Rep Power: 52 |
I will keep that thread in that forum because it has some analyzes
Please read the purpose of that sub-forum.
__________________
Keep foaming, Tobias Holzmann |
|
April 15, 2018, 14:43 |
New Thread
|
#20 |
Senior Member
Ehsan
Join Date: Mar 2009
Posts: 112
Rep Power: 17 |
Hello,
Any feedback on this new forum is welcome: https://www.cfd-online.com/Forums/op...tml#post688964 Regards |
|
Tags |
incompressible, les, pisofoam, turbulent channel flow, validation |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Issues on the simulation of high-speed compressible flow within turbomachinery | dowlee | OpenFOAM Running, Solving & CFD | 11 | August 6, 2021 07:40 |
Problems with validation of LES for turbulent annular flow | fgarita | OpenFOAM Verification & Validation | 0 | October 12, 2016 06:37 |
Velocity curve in channel flow by pisoFoam and LES | mxylondon | OpenFOAM Verification & Validation | 9 | June 21, 2015 08:28 |
Serious problems to perform LES of the channel flow | LB76 | OpenFOAM Verification & Validation | 5 | June 21, 2012 08:40 |
Initial conditionfor turbulent channel flow in LES | pankaj saha | Main CFD Forum | 0 | November 30, 2007 13:04 |